Changed tabs to spaces, removed execute permissions from source.
[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  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 #include <freerdp/freerdp.h>
39
40 #include <guacamole/client.h>
41
42 #include "client.h"
43 #include "rdp_bitmap.h"
44
45 void guac_rdp_gdi_dstblt(rdpContext* context, DSTBLT_ORDER* dstblt) {
46
47     guac_client* client = ((rdp_freerdp_context*) context)->client;
48     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
49
50     switch (dstblt->bRop) {
51
52         /* Blackness */
53         case 0:
54
55             /* Send black rectangle */
56             guac_protocol_send_rect(client->socket,
57                     GUAC_COMP_OVER, current_layer,
58                     dstblt->nLeftRect, dstblt->nTopRect,
59                     dstblt->nWidth, dstblt->nHeight,
60                     0, 0, 0, 255);
61             break;
62
63         /* Unsupported ROP3 */
64         default:
65             guac_client_log_info(client,
66                     "guac_rdp_gdi_dstblt(rop3=%i)", dstblt->bRop);
67
68     }
69
70
71
72 }
73
74 void guac_rdp_gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt) {
75     guac_client* client = ((rdp_freerdp_context*) context)->client;
76     guac_client_log_info(client, "guac_rdp_gdi_patblt()");
77 }
78
79 void guac_rdp_gdi_scrblt(rdpContext* context, SCRBLT_ORDER* scrblt) {
80
81     guac_client* client = ((rdp_freerdp_context*) context)->client;
82     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
83
84     /* Copy screen rect to current surface */
85     guac_protocol_send_copy(client->socket,
86             GUAC_DEFAULT_LAYER,
87             scrblt->nXSrc, scrblt->nYSrc, scrblt->nWidth, scrblt->nHeight,
88             GUAC_COMP_OVER, current_layer,
89             scrblt->nLeftRect, scrblt->nTopRect);
90
91 }
92
93 void guac_rdp_gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt) {
94
95     guac_client* client = ((rdp_freerdp_context*) context)->client;
96     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
97     guac_socket* socket = client->socket;
98     guac_rdp_bitmap* bitmap = (guac_rdp_bitmap*) memblt->bitmap;
99
100     guac_composite_mode cmode = GUAC_COMP_OVER;
101
102     if (memblt->bRop == 204) cmode = GUAC_COMP_OVER;
103     else if (memblt->bRop == 238) cmode = GUAC_COMP_OR;
104     else if (memblt->bRop == 136) cmode = GUAC_COMP_AND;
105     else if (memblt->bRop == 102) cmode = GUAC_COMP_XOR2;
106     else if (memblt->bRop == 187) cmode = GUAC_COMP_NOR;
107     else
108     {
109         guac_client_log_info (client, "guac_rdp_gdi_memblt: UNSUPPORTED opcode = %d (0x%02X)", memblt->bRop, memblt->bRop);
110     }
111
112     if (bitmap->layer != NULL)
113         guac_protocol_send_copy(socket,
114                 bitmap->layer,
115                 memblt->nXSrc, memblt->nYSrc, memblt->nWidth, memblt->nHeight,
116                 cmode,
117                 current_layer, memblt->nLeftRect, memblt->nTopRect);
118
119 }
120
121 void guac_rdp_gdi_opaquerect(rdpContext* context, OPAQUE_RECT_ORDER* opaque_rect) {
122
123     guac_client* client = ((rdp_freerdp_context*) context)->client;
124     uint32 color = freerdp_color_convert_var(opaque_rect->color,
125             context->instance->settings->color_depth, 32,
126             ((rdp_freerdp_context*) context)->clrconv);
127
128     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
129
130     guac_protocol_send_rect(client->socket,
131             GUAC_COMP_OVER, current_layer,
132             opaque_rect->nLeftRect, opaque_rect->nTopRect,
133             opaque_rect->nWidth, opaque_rect->nHeight,
134             (color >> 16) & 0xFF,
135             (color >> 8 ) & 0xFF,
136             (color      ) & 0xFF,
137             255);
138
139 }
140
141 void guac_rdp_gdi_palette_update(rdpContext* context, PALETTE_UPDATE* palette) {
142
143     CLRCONV* clrconv = ((rdp_freerdp_context*) context)->clrconv;
144     clrconv->palette->count = palette->number;
145     clrconv->palette->entries = palette->entries;
146
147 }
148
149 void guac_rdp_gdi_set_bounds(rdpContext* context, rdpBounds* bounds) {
150
151     guac_client* client = ((rdp_freerdp_context*) context)->client;
152     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
153
154     /* Set clip if specified */
155     if (bounds != NULL)
156         guac_protocol_send_clip(
157                 client->socket,
158                 current_layer,
159                 bounds->left,
160                 bounds->top,
161                 bounds->right - bounds->left + 1,
162                 bounds->bottom - bounds->top + 1);
163
164     /* Otherwise, reset clip */
165     else
166         guac_protocol_send_clip(
167                 client->socket,
168                 current_layer,
169                 0, 0,
170                 context->instance->settings->width,
171                 context->instance->settings->height);
172
173 }
174