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