Added missing brace...
[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,
116                     GUAC_COMP_OVER, current_layer,
117                     dstblt->nLeftRect, dstblt->nTopRect,
118                     dstblt->nWidth, dstblt->nHeight,
119                     0, 0, 0, 255);
120             break;
121
122         /* Unsupported ROP3 */
123         default:
124             guac_client_log_info(client,
125                     "guac_rdp_gdi_dstblt(rop3=%i)", dstblt->bRop);
126
127     }
128
129
130
131 }
132
133 void guac_rdp_gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt) {
134     guac_client* client = ((rdp_freerdp_context*) context)->client;
135     guac_client_log_info(client, "guac_rdp_gdi_patblt()");
136 }
137
138 void guac_rdp_gdi_scrblt(rdpContext* context, SCRBLT_ORDER* scrblt) {
139
140     guac_client* client = ((rdp_freerdp_context*) context)->client;
141     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
142
143     /* Copy screen rect to current surface */
144     guac_protocol_send_copy(client->socket,
145             GUAC_DEFAULT_LAYER,
146             scrblt->nXSrc, scrblt->nYSrc, scrblt->nWidth, scrblt->nHeight,
147             GUAC_COMP_OVER, current_layer,
148             scrblt->nLeftRect, scrblt->nTopRect);
149
150 }
151
152 void guac_rdp_gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt) {
153
154     guac_client* client = ((rdp_freerdp_context*) context)->client;
155     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
156     guac_socket* socket = client->socket;
157     guac_rdp_bitmap* bitmap = (guac_rdp_bitmap*) memblt->bitmap;
158
159     if (bitmap->layer != NULL) {
160
161         switch (memblt->bRop) {
162
163         /* If blackness, send black rectangle */
164         case 0x00:
165             guac_protocol_send_rect(client->socket,
166                     GUAC_COMP_OVER, current_layer,
167                     memblt->nLeftRect, memblt->nTopRect,
168                     memblt->nWidth, memblt->nHeight,
169                     0x00, 0x00, 0x00, 0xFF);
170             break;
171
172         /* If NOP, do nothing */
173         case 0xAA:
174             break;
175
176         /* If operation is just SRC, simply copy */
177         case 0xCC: 
178             guac_protocol_send_copy(socket,
179                     bitmap->layer,
180                     memblt->nXSrc, memblt->nYSrc,
181                     memblt->nWidth, memblt->nHeight,
182                     GUAC_COMP_OVER,
183                     current_layer, memblt->nLeftRect, memblt->nTopRect);
184             break;
185
186         /* If whiteness, send white rectangle */
187         case 0xFF:
188             guac_protocol_send_rect(client->socket,
189                     GUAC_COMP_OVER, current_layer,
190                     memblt->nLeftRect, memblt->nTopRect,
191                     memblt->nWidth, memblt->nHeight,
192                     0xFF, 0xFF, 0xFF, 0xFF);
193             break;
194
195         /* Otherwise, use transfer */
196         default:
197             guac_protocol_send_transfer(socket,
198                     bitmap->layer,
199                     memblt->nXSrc, memblt->nYSrc,
200                     memblt->nWidth, memblt->nHeight,
201                     guac_rdp_rop3_transfer_function(client, memblt->bRop),
202                     current_layer, memblt->nLeftRect, memblt->nTopRect);
203
204         }
205
206     } /* end if layer not NULL */
207
208 }
209
210 void guac_rdp_gdi_opaquerect(rdpContext* context, OPAQUE_RECT_ORDER* opaque_rect) {
211
212     guac_client* client = ((rdp_freerdp_context*) context)->client;
213     uint32 color = freerdp_color_convert_var(opaque_rect->color,
214             context->instance->settings->color_depth, 32,
215             ((rdp_freerdp_context*) context)->clrconv);
216
217     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
218
219     guac_protocol_send_rect(client->socket,
220             GUAC_COMP_OVER, current_layer,
221             opaque_rect->nLeftRect, opaque_rect->nTopRect,
222             opaque_rect->nWidth, opaque_rect->nHeight,
223             (color >> 16) & 0xFF,
224             (color >> 8 ) & 0xFF,
225             (color      ) & 0xFF,
226             255);
227
228 }
229
230 void guac_rdp_gdi_palette_update(rdpContext* context, PALETTE_UPDATE* palette) {
231
232     CLRCONV* clrconv = ((rdp_freerdp_context*) context)->clrconv;
233     clrconv->palette->count = palette->number;
234     clrconv->palette->entries = palette->entries;
235
236 }
237
238 void guac_rdp_gdi_set_bounds(rdpContext* context, rdpBounds* bounds) {
239
240     guac_client* client = ((rdp_freerdp_context*) context)->client;
241     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
242
243     /* Set clip if specified */
244     if (bounds != NULL)
245         guac_protocol_send_clip(
246                 client->socket,
247                 current_layer,
248                 bounds->left,
249                 bounds->top,
250                 bounds->right - bounds->left + 1,
251                 bounds->bottom - bounds->top + 1);
252
253     /* Otherwise, reset clip */
254     else
255         guac_protocol_send_clip(
256                 client->socket,
257                 current_layer,
258                 0, 0,
259                 context->instance->settings->width,
260                 context->instance->settings->height);
261
262 }
263