46ac9f30c20b2dfd643bc7944abc068b65e496a6
[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         /* "SRCCOPY" (src) */
83         case 0xCC: return GUAC_TRANSFER_BINARY_SRC;
84
85         /* "SDno" (src | !dest) */
86         case 0xDD: return GUAC_TRANSFER_BINARY_NDEST_OR;
87
88         /* "SRCPAINT" (src | dest) */
89         case 0xEE: return GUAC_TRANSFER_BINARY_OR;
90
91         /* 0x00 = "BLACKNESS" (0) */
92         /* 0xAA = "NOP" (dest) */
93         /* 0xFF = "WHITENESS" (1) */
94
95     }
96
97     /* Log warning if ROP3 opcode not supported */
98     guac_client_log_info (client, "guac_rdp_rop3_transfer_function: "
99             "UNSUPPORTED opcode = 0x%02X", rop3);
100
101     /* Default to BINARY_SRC */
102     return GUAC_TRANSFER_BINARY_SRC;
103
104 }
105
106 void guac_rdp_gdi_dstblt(rdpContext* context, DSTBLT_ORDER* dstblt) {
107
108     guac_client* client = ((rdp_freerdp_context*) context)->client;
109     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
110
111     switch (dstblt->bRop) {
112
113         /* Blackness */
114         case 0:
115
116             /* Send black rectangle */
117             guac_protocol_send_rect(client->socket,
118                     GUAC_COMP_OVER, current_layer,
119                     dstblt->nLeftRect, dstblt->nTopRect,
120                     dstblt->nWidth, dstblt->nHeight,
121                     0, 0, 0, 255);
122             break;
123
124         /* Unsupported ROP3 */
125         default:
126             guac_client_log_info(client,
127                     "guac_rdp_gdi_dstblt(rop3=%i)", dstblt->bRop);
128
129     }
130
131
132
133 }
134
135 void guac_rdp_gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt) {
136     guac_client* client = ((rdp_freerdp_context*) context)->client;
137     guac_client_log_info(client, "guac_rdp_gdi_patblt()");
138 }
139
140 void guac_rdp_gdi_scrblt(rdpContext* context, SCRBLT_ORDER* scrblt) {
141
142     guac_client* client = ((rdp_freerdp_context*) context)->client;
143     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
144
145     /* Copy screen rect to current surface */
146     guac_protocol_send_copy(client->socket,
147             GUAC_DEFAULT_LAYER,
148             scrblt->nXSrc, scrblt->nYSrc, scrblt->nWidth, scrblt->nHeight,
149             GUAC_COMP_OVER, current_layer,
150             scrblt->nLeftRect, scrblt->nTopRect);
151
152 }
153
154 void guac_rdp_gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt) {
155
156     guac_client* client = ((rdp_freerdp_context*) context)->client;
157     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
158     guac_socket* socket = client->socket;
159     guac_rdp_bitmap* bitmap = (guac_rdp_bitmap*) memblt->bitmap;
160
161     if (bitmap->layer != NULL) {
162
163         /* If operation is just SRC, simply copy */
164         if (memblt->bRop == 0xCC)
165             guac_protocol_send_copy(socket,
166                     bitmap->layer,
167                     memblt->nXSrc, memblt->nYSrc,
168                     memblt->nWidth, memblt->nHeight,
169                     GUAC_COMP_OVER,
170                     current_layer, memblt->nLeftRect, memblt->nTopRect);
171
172         /* Otherwise, use transfer */
173         else
174             guac_protocol_send_transfer(socket,
175                     bitmap->layer,
176                     memblt->nXSrc, memblt->nYSrc,
177                     memblt->nWidth, memblt->nHeight,
178                     guac_rdp_rop3_transfer_function(client, memblt->bRop),
179                     current_layer, memblt->nLeftRect, memblt->nTopRect);
180
181     }
182
183 }
184
185 void guac_rdp_gdi_opaquerect(rdpContext* context, OPAQUE_RECT_ORDER* opaque_rect) {
186
187     guac_client* client = ((rdp_freerdp_context*) context)->client;
188     uint32 color = freerdp_color_convert_var(opaque_rect->color,
189             context->instance->settings->color_depth, 32,
190             ((rdp_freerdp_context*) context)->clrconv);
191
192     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
193
194     guac_protocol_send_rect(client->socket,
195             GUAC_COMP_OVER, current_layer,
196             opaque_rect->nLeftRect, opaque_rect->nTopRect,
197             opaque_rect->nWidth, opaque_rect->nHeight,
198             (color >> 16) & 0xFF,
199             (color >> 8 ) & 0xFF,
200             (color      ) & 0xFF,
201             255);
202
203 }
204
205 void guac_rdp_gdi_palette_update(rdpContext* context, PALETTE_UPDATE* palette) {
206
207     CLRCONV* clrconv = ((rdp_freerdp_context*) context)->clrconv;
208     clrconv->palette->count = palette->number;
209     clrconv->palette->entries = palette->entries;
210
211 }
212
213 void guac_rdp_gdi_set_bounds(rdpContext* context, rdpBounds* bounds) {
214
215     guac_client* client = ((rdp_freerdp_context*) context)->client;
216     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
217
218     /* Set clip if specified */
219     if (bounds != NULL)
220         guac_protocol_send_clip(
221                 client->socket,
222                 current_layer,
223                 bounds->left,
224                 bounds->top,
225                 bounds->right - bounds->left + 1,
226                 bounds->bottom - bounds->top + 1);
227
228     /* Otherwise, reset clip */
229     else
230         guac_protocol_send_clip(
231                 client->socket,
232                 current_layer,
233                 0, 0,
234                 context->instance->settings->width,
235                 context->instance->settings->height);
236
237 }
238