]> git.sesse.net Git - rdpsrv/blob - Xserver/programs/Xserver/mfb/mfbimage.c
Support RDP5 logon packets.
[rdpsrv] / Xserver / programs / Xserver / mfb / mfbimage.c
1 /***********************************************************
2
3 Copyright (c) 1987  X Consortium
4
5 Permission is hereby granted, free of charge, to any person obtaining a copy
6 of this software and associated documentation files (the "Software"), to deal
7 in the Software without restriction, including without limitation the rights
8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 copies of the Software, and to permit persons to whom the Software is
10 furnished to do so, subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
18 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 Except as contained in this notice, the name of the X Consortium shall not be
23 used in advertising or otherwise to promote the sale, use or other dealings
24 in this Software without prior written authorization from the X Consortium.
25
26
27 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
28
29                         All Rights Reserved
30
31 Permission to use, copy, modify, and distribute this software and its 
32 documentation for any purpose and without fee is hereby granted, 
33 provided that the above copyright notice appear in all copies and that
34 both that copyright notice and this permission notice appear in 
35 supporting documentation, and that the name of Digital not be
36 used in advertising or publicity pertaining to distribution of the
37 software without specific, written prior permission.  
38
39 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
40 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
41 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
42 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
43 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
44 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
45 SOFTWARE.
46
47 ******************************************************************/
48 /* $XConsortium: mfbimage.c,v 5.10 94/04/17 20:28:25 dpw Exp $ */
49
50 #include "X.h"
51
52 #include "windowstr.h"
53 #include "pixmapstr.h"
54 #include "scrnintstr.h"
55 #include "gcstruct.h"
56
57 #include "mfb.h"
58 #include "mi.h"
59 #include "Xmd.h"
60
61 #include "maskbits.h"
62
63 #include "servermd.h"
64
65 /* Put and Get images on a monochrome frame buffer
66  *
67  *   we do this by creating a temporary pixmap and making its
68  * pointer to bits point to the buffer read in from the client.
69  * this works because of the padding rules specified at startup
70  *
71  * Note that CopyArea must know how to copy a bitmap into the server-format
72  * temporary pixmap.
73  *
74  * For speed, mfbPutImage should allocate the temporary pixmap on the stack.
75  *
76  *     even though an XYBitmap and an XYPixmap have the same
77  * format (for this device), PutImage has different semantics for the
78  * two.  XYPixmap just does the copy; XYBitmap takes gc.fgPixel for
79  * a 1 bit, gc.bgPixel for a 0 bit, which we notice is exactly
80  * like CopyPlane.
81  *
82  *   written by drewry, september 1986
83  */
84
85
86
87 /*ARGSUSED*/
88 void
89 mfbPutImage(dst, pGC, depth, x, y, w, h, leftPad, format, pImage)
90     DrawablePtr dst;
91     GCPtr       pGC;
92     int         depth, x, y, w, h;
93     int leftPad;
94     int format;
95     char        *pImage;
96 {
97     PixmapPtr   pPixmap;
98
99     if (!(pGC->planemask & 1))
100         return;
101
102     /* 0 may confuse CreatePixmap, and will sometimes be
103        passed by the mi text code
104     */
105     if ((w == 0) || (h == 0))
106         return;
107
108     pPixmap = GetScratchPixmapHeader(dst->pScreen, w+leftPad, h, 1, 1,
109                                 BitmapBytePad(w+leftPad), (pointer)pImage);
110     if (!pPixmap)
111         return;
112
113     ((mfbPrivGC *)(pGC->devPrivates[mfbGCPrivateIndex].ptr))->fExpose = FALSE;
114     if (format != XYBitmap)
115         (*pGC->ops->CopyArea)((DrawablePtr)pPixmap, dst, pGC, leftPad, 0,
116                               w, h, x, y);
117     else
118         (*pGC->ops->CopyPlane)((DrawablePtr)pPixmap, dst, pGC, leftPad, 0,
119                                w, h, x, y, 1);
120     ((mfbPrivGC*)(pGC->devPrivates[mfbGCPrivateIndex].ptr))->fExpose = TRUE;
121     FreeScratchPixmapHeader(pPixmap);
122 }
123
124
125 /*
126  * pdstLine points to space allocated by caller, which he can do since
127  * he knows dimensions of the pixmap
128  * we can call mfbDoBitblt because the dispatcher has promised not to send us
129  * anything that would require going over the edge of the screen.
130  *
131  *      XYPixmap and ZPixmap are the same for mfb.
132  *      For any planemask with bit 0 == 0, just fill the dst with 0.
133  */
134 /*ARGSUSED*/
135 void
136 mfbGetImage( pDrawable, sx, sy, w, h, format, planeMask, pdstLine)
137     DrawablePtr pDrawable;
138     int         sx, sy, w, h;
139     unsigned int format;
140     unsigned long planeMask;
141     char        *pdstLine;
142 {
143     PixmapPtr pPixmap;
144     BoxRec box;
145     DDXPointRec ptSrc;
146     RegionRec rgnDst;
147
148     if (planeMask & 0x1)
149     {
150         ScreenPtr pScreen = pDrawable->pScreen;
151         PixmapPtr pPixmap;
152
153         pPixmap = GetScratchPixmapHeader(pScreen, w, h, /*depth*/ 1, /*bpp*/ 1,
154                                          BitmapBytePad(w), (pointer)pdstLine);
155         if (!pPixmap)
156             return;
157
158         ptSrc.x = sx + pDrawable->x;
159         ptSrc.y = sy + pDrawable->y;
160         box.x1 = 0;
161         box.y1 = 0;
162         box.x2 = w;
163         box.y2 = h;
164         REGION_INIT(pScreen, &rgnDst, &box, 1);
165         mfbDoBitblt(pDrawable, (DrawablePtr)pPixmap,
166                     GXcopy, &rgnDst, &ptSrc);
167         REGION_UNINIT(pScreen, &rgnDst);
168         FreeScratchPixmapHeader(pPixmap);
169     }
170     else
171     {
172         bzero(pdstLine, BitmapBytePad(w) * h);
173     }
174 }