guacamole-spice-protocol/src/protocols/rdp/rdp_glyph.c

163 lines
5.2 KiB
C
Raw Normal View History

/*
* Copyright (C) 2013 Glyptodon LLC
2012-01-03 21:48:20 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
2012-01-03 21:48:20 +00:00
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
2012-01-03 21:48:20 +00:00
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
2014-01-01 22:44:28 +00:00
#include "config.h"
#include "client.h"
#include "guac_surface.h"
2014-01-01 22:44:28 +00:00
#include "rdp_glyph.h"
2014-06-11 01:45:14 +00:00
#include "rdp_settings.h"
2014-01-01 22:44:28 +00:00
2012-01-03 21:48:20 +00:00
#include <freerdp/freerdp.h>
2014-01-01 22:44:28 +00:00
#include <guacamole/client.h>
2012-01-03 21:48:20 +00:00
2013-07-17 18:54:24 +00:00
#ifdef ENABLE_WINPR
#include <winpr/wtypes.h>
#else
#include "compat/winpr-wtypes.h"
#endif
2014-06-11 01:45:14 +00:00
#include <pthread.h>
#include <stdint.h>
#include <stdlib.h>
/* Define cairo_format_stride_for_width() if missing */
#ifndef HAVE_CAIRO_FORMAT_STRIDE_FOR_WIDTH
#define cairo_format_stride_for_width(format, width) (width*4)
#endif
2012-01-03 21:48:20 +00:00
void guac_rdp_glyph_new(rdpContext* context, rdpGlyph* glyph) {
2012-02-09 18:09:14 +00:00
int x, y, i;
int stride;
unsigned char* image_buffer;
unsigned char* image_buffer_row;
unsigned char* data = glyph->aj;
int width = glyph->cx;
int height = glyph->cy;
/* Init Cairo buffer */
stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, width);
image_buffer = malloc(height*stride);
image_buffer_row = image_buffer;
/* Copy image data from image data to buffer */
for (y = 0; y<height; y++) {
unsigned int* image_buffer_current;
/* Get current buffer row, advance to next */
image_buffer_current = (unsigned int*) image_buffer_row;
image_buffer_row += stride;
for (x = 0; x<width;) {
/* Get byte from image data */
unsigned int v = *(data++);
/* Read bits, write pixels */
for (i = 0; i<8 && x<width; i++, x++) {
/* Output RGB */
if (v & 0x80)
*(image_buffer_current++) = 0xFF000000;
else
*(image_buffer_current++) = 0x00000000;
/* Next bit */
v <<= 1;
}
}
}
2012-04-05 23:45:04 +00:00
/* Store glyph surface */
((guac_rdp_glyph*) glyph)->surface = cairo_image_surface_create_for_data(
image_buffer, CAIRO_FORMAT_ARGB32, width, height, stride);
2012-02-09 18:09:14 +00:00
2012-01-03 21:48:20 +00:00
}
void guac_rdp_glyph_draw(rdpContext* context, rdpGlyph* glyph, int x, int y) {
2012-02-09 18:09:14 +00:00
2012-01-03 21:48:20 +00:00
guac_client* client = ((rdp_freerdp_context*) context)->client;
2012-02-09 18:25:06 +00:00
rdp_guac_client_data* guac_client_data = (rdp_guac_client_data*) client->data;
guac_common_surface* current_surface = guac_client_data->current_surface;
uint32_t fgcolor = guac_client_data->glyph_color;
/* Paint with glyph as mask */
guac_common_surface_paint(current_surface, x, y, ((guac_rdp_glyph*) glyph)->surface,
(fgcolor & 0xFF0000) >> 16,
(fgcolor & 0x00FF00) >> 8,
fgcolor & 0x0000FF);
2012-04-05 23:45:04 +00:00
2012-01-03 21:48:20 +00:00
}
void guac_rdp_glyph_free(rdpContext* context, rdpGlyph* glyph) {
2012-04-05 23:45:04 +00:00
unsigned char* image_buffer = cairo_image_surface_get_data(
((guac_rdp_glyph*) glyph)->surface);
/* Free surface */
cairo_surface_destroy(((guac_rdp_glyph*) glyph)->surface);
free(image_buffer);
2012-01-03 21:48:20 +00:00
}
void guac_rdp_glyph_begindraw(rdpContext* context,
2013-07-17 18:54:24 +00:00
int x, int y, int width, int height, UINT32 fgcolor, UINT32 bgcolor) {
2012-02-09 18:25:06 +00:00
guac_client* client = ((rdp_freerdp_context*) context)->client;
UINT32* palette = ((rdp_freerdp_context*) context)->palette;
rdp_guac_client_data* guac_client_data =
(rdp_guac_client_data*) client->data;
2012-02-09 18:25:06 +00:00
/* Fill background with color if specified */
if (width != 0 && height != 0) {
2012-02-09 18:25:06 +00:00
/* Convert background color */
bgcolor = freerdp_convert_gdi_order_color(bgcolor,
guac_rdp_get_depth(context->instance),
PIXEL_FORMAT_ARGB32, (BYTE*) palette);
2012-03-01 20:37:00 +00:00
guac_common_surface_rect(guac_client_data->current_surface, x, y, width, height,
(bgcolor & 0xFF0000) >> 16,
(bgcolor & 0x00FF00) >> 8,
bgcolor & 0x0000FF);
2012-04-06 05:55:46 +00:00
}
/* Convert foreground color */
guac_client_data->glyph_color =
freerdp_convert_gdi_order_color(fgcolor,
guac_rdp_get_depth(context->instance),
PIXEL_FORMAT_ARGB32, (BYTE*) palette);
}
void guac_rdp_glyph_enddraw(rdpContext* context,
2013-07-17 18:54:24 +00:00
int x, int y, int width, int height, UINT32 fgcolor, UINT32 bgcolor) {
/* IGNORE */
}