Implement EndPaint.
[libguac-client-rdp.git] / src / rdp_gdi.c
1
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is libguac-client-rdp.
16  *
17  * The Initial Developer of the Original Code is
18  * Michael Jumper.
19  * Portions created by the Initial Developer are Copyright (C) 2011
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  * Matt Hortman
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39 #include <freerdp/freerdp.h>
40
41 #include <guacamole/client.h>
42
43 #include "client.h"
44 #include "rdp_bitmap.h"
45
46 guac_transfer_function guac_rdp_rop3_transfer_function(guac_client* client,
47         int rop3) {
48
49     /* Translate supported ROP3 opcodes into composite modes */
50     switch (rop3) {
51
52         /* "DSon" !(src | dest) */
53         case 0x11: return GUAC_TRANSFER_BINARY_NOR;
54
55         /* "DSna" !src & dest */
56         case 0x22: return GUAC_TRANSFER_BINARY_NSRC_AND;
57
58         /* "Sn" !src */
59         case 0x33: return GUAC_TRANSFER_BINARY_NSRC;
60
61         /* "SDna" (src & !dest) */
62         case 0x44: return GUAC_TRANSFER_BINARY_NDEST_AND;
63
64         /* "Dn" !dest */
65         case 0x55: return GUAC_TRANSFER_BINARY_NDEST;
66
67         /* "SRCINVERT" (src ^ dest) */
68         case 0x66: return GUAC_TRANSFER_BINARY_XOR;
69
70         /* "DSan" !(src & dest) */
71         case 0x77: return GUAC_TRANSFER_BINARY_NAND;
72
73         /* "SRCAND" (src & dest) */
74         case 0x88: return GUAC_TRANSFER_BINARY_AND;
75
76         /* "DSxn" !(src ^ dest) */
77         case 0x99: return GUAC_TRANSFER_BINARY_XNOR;
78
79         /* "MERGEPAINT" (!src | dest)*/
80         case 0xBB: return GUAC_TRANSFER_BINARY_NSRC_OR;
81
82         /* "SDno" (src | !dest) */
83         case 0xDD: return GUAC_TRANSFER_BINARY_NDEST_OR;
84
85         /* "SRCPAINT" (src | dest) */
86         case 0xEE: return GUAC_TRANSFER_BINARY_OR;
87
88         /* 0x00 = "BLACKNESS" (0) */
89         /* 0xAA = "NOP" (dest) */
90         /* 0xCC = "SRCCOPY" (src) */
91         /* 0xFF = "WHITENESS" (1) */
92
93     }
94
95     /* Log warning if ROP3 opcode not supported */
96     guac_client_log_info (client, "guac_rdp_rop3_transfer_function: "
97             "UNSUPPORTED opcode = 0x%02X", rop3);
98
99     /* Default to BINARY_SRC */
100     return GUAC_TRANSFER_BINARY_SRC;
101
102 }
103
104 void guac_rdp_gdi_dstblt(rdpContext* context, DSTBLT_ORDER* dstblt) {
105
106     guac_client* client = ((rdp_freerdp_context*) context)->client;
107     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
108
109     switch (dstblt->bRop) {
110
111         /* Blackness */
112         case 0:
113
114             /* Send black rectangle */
115             guac_protocol_send_rect(client->socket, current_layer,
116                     dstblt->nLeftRect, dstblt->nTopRect,
117                     dstblt->nWidth, dstblt->nHeight);
118
119             guac_protocol_send_cfill(client->socket,
120                     GUAC_COMP_OVER, current_layer,
121                     0, 0, 0, 255);
122
123             break;
124
125         /* Unsupported ROP3 */
126         default:
127             guac_client_log_info(client,
128                     "guac_rdp_gdi_dstblt(rop3=%i)", dstblt->bRop);
129
130     }
131
132
133
134 }
135
136 void guac_rdp_gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt) {
137     guac_client* client = ((rdp_freerdp_context*) context)->client;
138     guac_client_log_info(client, "guac_rdp_gdi_patblt()");
139 }
140
141 void guac_rdp_gdi_scrblt(rdpContext* context, SCRBLT_ORDER* scrblt) {
142
143     guac_client* client = ((rdp_freerdp_context*) context)->client;
144     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
145
146     /* Copy screen rect to current surface */
147     guac_protocol_send_copy(client->socket,
148             GUAC_DEFAULT_LAYER,
149             scrblt->nXSrc, scrblt->nYSrc, scrblt->nWidth, scrblt->nHeight,
150             GUAC_COMP_OVER, current_layer,
151             scrblt->nLeftRect, scrblt->nTopRect);
152
153 }
154
155 void guac_rdp_gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt) {
156
157     guac_client* client = ((rdp_freerdp_context*) context)->client;
158     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
159     guac_socket* socket = client->socket;
160     guac_rdp_bitmap* bitmap = (guac_rdp_bitmap*) memblt->bitmap;
161
162     if (bitmap->layer != NULL) {
163
164         switch (memblt->bRop) {
165
166         /* If blackness, send black rectangle */
167         case 0x00:
168             guac_protocol_send_rect(client->socket, current_layer,
169                     memblt->nLeftRect, memblt->nTopRect,
170                     memblt->nWidth, memblt->nHeight);
171
172             guac_protocol_send_cfill(client->socket,
173                     GUAC_COMP_OVER, current_layer,
174                     0x00, 0x00, 0x00, 0xFF);
175             break;
176
177         /* If NOP, do nothing */
178         case 0xAA:
179             break;
180
181         /* If operation is just SRC, simply copy */
182         case 0xCC: 
183             guac_protocol_send_copy(socket,
184                     bitmap->layer,
185                     memblt->nXSrc, memblt->nYSrc,
186                     memblt->nWidth, memblt->nHeight,
187                     GUAC_COMP_OVER,
188                     current_layer, memblt->nLeftRect, memblt->nTopRect);
189             break;
190
191         /* If whiteness, send white rectangle */
192         case 0xFF:
193             guac_protocol_send_rect(client->socket, current_layer,
194                     memblt->nLeftRect, memblt->nTopRect,
195                     memblt->nWidth, memblt->nHeight);
196
197             guac_protocol_send_cfill(client->socket,
198                     GUAC_COMP_OVER, current_layer,
199                     0xFF, 0xFF, 0xFF, 0xFF);
200             break;
201
202         /* Otherwise, use transfer */
203         default:
204             guac_protocol_send_transfer(socket,
205                     bitmap->layer,
206                     memblt->nXSrc, memblt->nYSrc,
207                     memblt->nWidth, memblt->nHeight,
208                     guac_rdp_rop3_transfer_function(client, memblt->bRop),
209                     current_layer, memblt->nLeftRect, memblt->nTopRect);
210
211         }
212
213     } /* end if layer not NULL */
214
215 }
216
217 void guac_rdp_gdi_opaquerect(rdpContext* context, OPAQUE_RECT_ORDER* opaque_rect) {
218
219     guac_client* client = ((rdp_freerdp_context*) context)->client;
220     uint32 color = freerdp_color_convert_var(opaque_rect->color,
221             context->instance->settings->color_depth, 32,
222             ((rdp_freerdp_context*) context)->clrconv);
223
224     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
225
226     guac_protocol_send_rect(client->socket, current_layer,
227             opaque_rect->nLeftRect, opaque_rect->nTopRect,
228             opaque_rect->nWidth, opaque_rect->nHeight);
229
230     guac_protocol_send_cfill(client->socket,
231             GUAC_COMP_OVER, current_layer,
232             (color >> 16) & 0xFF,
233             (color >> 8 ) & 0xFF,
234             (color      ) & 0xFF,
235             255);
236
237 }
238
239 void guac_rdp_gdi_palette_update(rdpContext* context, PALETTE_UPDATE* palette) {
240
241     CLRCONV* clrconv = ((rdp_freerdp_context*) context)->clrconv;
242     clrconv->palette->count = palette->number;
243     clrconv->palette->entries = palette->entries;
244
245 }
246
247 void guac_rdp_gdi_set_bounds(rdpContext* context, rdpBounds* bounds) {
248
249     guac_client* client = ((rdp_freerdp_context*) context)->client;
250     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
251
252     /* Reset clip */
253     guac_protocol_send_reset(client->socket, current_layer);
254
255     /* Set clip if specified */
256     if (bounds != NULL) {
257         guac_protocol_send_rect(client->socket, current_layer,
258                 bounds->left, bounds->top,
259                 bounds->right - bounds->left + 1,
260                 bounds->bottom - bounds->top + 1);
261
262         guac_protocol_send_clip(client->socket, current_layer);
263     }
264
265 }
266
267 void guac_rdp_gdi_end_paint(rdpContext* context) {
268     guac_client* client = ((rdp_freerdp_context*) context)->client;
269     guac_socket_flush(client->socket);
270 }
271