freerdp_color_convert is now freerdp_color_convert_var as of FreeRDP 1.0.1 release.
[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     if (bitmap->layer != NULL)
101         guac_protocol_send_copy(socket,
102                 bitmap->layer,
103                 memblt->nXSrc, memblt->nYSrc, memblt->nWidth, memblt->nHeight,
104                 GUAC_COMP_OVER,
105                 current_layer, memblt->nLeftRect, memblt->nTopRect);
106
107 }
108
109 void guac_rdp_gdi_opaquerect(rdpContext* context, OPAQUE_RECT_ORDER* opaque_rect) {
110
111     guac_client* client = ((rdp_freerdp_context*) context)->client;
112     uint32 color = freerdp_color_convert_var(opaque_rect->color,
113             context->instance->settings->color_depth, 32,
114             ((rdp_freerdp_context*) context)->clrconv);
115
116     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
117
118     guac_protocol_send_rect(client->socket,
119             GUAC_COMP_OVER, current_layer,
120             opaque_rect->nLeftRect, opaque_rect->nTopRect,
121             opaque_rect->nWidth, opaque_rect->nHeight,
122             (color >> 16) & 0xFF,
123             (color >> 8 ) & 0xFF,
124             (color      ) & 0xFF,
125             255);
126
127 }
128
129 void guac_rdp_gdi_palette_update(rdpContext* context, PALETTE_UPDATE* palette) {
130
131     CLRCONV* clrconv = ((rdp_freerdp_context*) context)->clrconv;
132     clrconv->palette->count = palette->number;
133     clrconv->palette->entries = palette->entries;
134
135 }
136
137 void guac_rdp_gdi_set_bounds(rdpContext* context, rdpBounds* bounds) {
138
139     guac_client* client = ((rdp_freerdp_context*) context)->client;
140     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
141
142     /* Set clip if specified */
143     if (bounds != NULL)
144         guac_protocol_send_clip(
145                 client->socket,
146                 current_layer,
147                 bounds->left,
148                 bounds->top,
149                 bounds->right - bounds->left + 1,
150                 bounds->bottom - bounds->top + 1);
151
152     /* Otherwise, reset clip */
153     else
154         guac_protocol_send_clip(
155                 client->socket,
156                 current_layer,
157                 0, 0,
158                 context->instance->settings->width,
159                 context->instance->settings->height);
160
161 }
162