Do NOT flush the socket after EVERY GLYPH!
[libguac-client-rdp.git] / src / rdp_glyph.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_glyph.h"
45
46 void guac_rdp_glyph_new(rdpContext* context, rdpGlyph* glyph) {
47
48     /* Allocate buffer */
49     guac_client* client = ((rdp_freerdp_context*) context)->client;
50     guac_socket* socket = client->socket;
51     guac_layer* layer = guac_client_alloc_buffer(client);
52
53     int x, y, i;
54     int stride;
55     unsigned char* image_buffer;
56     unsigned char* image_buffer_row;
57
58     unsigned char* data = glyph->aj;
59     int width  = glyph->cx;
60     int height = glyph->cy;
61
62     cairo_surface_t* surface;
63
64     /* Init Cairo buffer */
65     stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, width);
66     image_buffer = malloc(height*stride);
67     image_buffer_row = image_buffer;
68
69     /* Copy image data from image data to buffer */
70     for (y = 0; y<height; y++) {
71
72         unsigned int*  image_buffer_current;
73         
74         /* Get current buffer row, advance to next */
75         image_buffer_current  = (unsigned int*) image_buffer_row;
76         image_buffer_row     += stride;
77
78         for (x = 0; x<width;) {
79
80             /* Get byte from image data */
81             unsigned int v = *(data++);
82
83             /* Read bits, write pixels */
84             for (i = 0; i<8 && x<width; i++, x++) {
85
86                 /* Output RGB */
87                 if (v & 0x80)
88                     *(image_buffer_current++) = 0xFF000000;
89                 else
90                     *(image_buffer_current++) = 0x00000000;
91
92                 /* Next bit */
93                 v <<= 1;
94
95             }
96
97         }
98     }
99
100     surface = cairo_image_surface_create_for_data(image_buffer, CAIRO_FORMAT_ARGB32, width, height, stride);
101     guac_protocol_send_png(socket, GUAC_COMP_SRC, layer, 0, 0, surface);
102
103     /* Free surface */
104     cairo_surface_destroy(surface);
105     free(image_buffer);
106
107     /* Store layer */
108     ((guac_rdp_glyph*) glyph)->layer = layer;
109
110 }
111
112 void guac_rdp_glyph_draw(rdpContext* context, rdpGlyph* glyph, int x, int y) {
113
114     guac_client* client = ((rdp_freerdp_context*) context)->client;
115     rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
116     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
117  
118     /* Colorize glyph */
119     guac_protocol_send_rect(client->socket, ((guac_rdp_glyph*) glyph)->layer,
120             0, 0, glyph->cx, glyph->cy);
121
122     guac_protocol_send_cfill(client->socket,
123             GUAC_COMP_ATOP, ((guac_rdp_glyph*) glyph)->layer,
124             guac_client_data->foreground.red,
125             guac_client_data->foreground.green,
126             guac_client_data->foreground.blue,
127             255);
128
129     /* Draw glyph */
130     guac_protocol_send_copy(client->socket,
131            ((guac_rdp_glyph*) glyph)->layer, 0, 0, glyph->cx, glyph->cy,
132            GUAC_COMP_OVER, current_layer, x, y); 
133
134 }
135
136 void guac_rdp_glyph_free(rdpContext* context, rdpGlyph* glyph) {
137     guac_client* client = ((rdp_freerdp_context*) context)->client;
138     guac_client_free_buffer(client, ((guac_rdp_glyph*) glyph)->layer);
139 }
140
141 void guac_rdp_glyph_begindraw(rdpContext* context,
142         int x, int y, int width, int height, uint32 fgcolor, uint32 bgcolor) {
143
144     guac_client* client = ((rdp_freerdp_context*) context)->client;
145     rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
146     const guac_layer* current_layer = ((rdp_guac_client_data*) client->data)->current_surface;
147
148     bgcolor = freerdp_color_convert_var(bgcolor,
149             context->instance->settings->color_depth, 32,
150             ((rdp_freerdp_context*) context)->clrconv);
151
152     fgcolor = freerdp_color_convert_var(fgcolor,
153             context->instance->settings->color_depth, 32,
154             ((rdp_freerdp_context*) context)->clrconv);
155
156     guac_client_data->foreground.blue  =  fgcolor & 0x0000FF;
157     guac_client_data->foreground.green = (fgcolor & 0x00FF00) >> 8;
158     guac_client_data->foreground.red   = (fgcolor & 0xFF0000) >> 16;
159
160     guac_client_data->background.blue   =  bgcolor & 0x0000FF;
161     guac_client_data->background.green  = (bgcolor & 0x00FF00) >> 8;
162     guac_client_data->background.red    = (bgcolor & 0xFF0000) >> 16;
163
164     /* Paint background on destination */
165     guac_protocol_send_rect(client->socket, current_layer,
166             x, y, width, height);
167
168     guac_protocol_send_cfill(client->socket,
169             GUAC_COMP_OVER, current_layer,
170             guac_client_data->background.red,
171             guac_client_data->background.green,
172             guac_client_data->background.blue,
173             255);
174
175 }
176
177 void guac_rdp_glyph_enddraw(rdpContext* context,
178         int x, int y, int width, int height, uint32 fgcolor, uint32 bgcolor) {
179     /* UNUSED */
180 }
181