2006-04-30 23:28:36 +02:00
|
|
|
#define CONCAT_I(a, b) a ## b
|
|
|
|
#define CONCAT(a, b) CONCAT_I(a, b)
|
|
|
|
#define pixel_t CONCAT(uint, CONCAT(BPP, _t))
|
2006-05-14 20:11:49 +02:00
|
|
|
#ifdef GENERIC
|
2008-09-15 18:03:41 +02:00
|
|
|
#define NAME CONCAT(generic_, BPP)
|
2006-05-14 20:11:49 +02:00
|
|
|
#else
|
|
|
|
#define NAME BPP
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void CONCAT(send_hextile_tile_, NAME)(VncState *vs,
|
|
|
|
int x, int y, int w, int h,
|
2008-09-15 18:03:41 +02:00
|
|
|
void *last_bg_,
|
|
|
|
void *last_fg_,
|
2006-05-14 20:11:49 +02:00
|
|
|
int *has_bg, int *has_fg)
|
2006-04-30 23:28:36 +02:00
|
|
|
{
|
2009-08-03 11:54:32 +02:00
|
|
|
VncDisplay *vd = vs->vd;
|
2012-10-10 13:29:43 +02:00
|
|
|
uint8_t *row = vnc_server_fb_ptr(vd, x, y);
|
2006-04-30 23:28:36 +02:00
|
|
|
pixel_t *irow = (pixel_t *)row;
|
|
|
|
int j, i;
|
2008-09-15 18:03:41 +02:00
|
|
|
pixel_t *last_bg = (pixel_t *)last_bg_;
|
|
|
|
pixel_t *last_fg = (pixel_t *)last_fg_;
|
2006-04-30 23:28:36 +02:00
|
|
|
pixel_t bg = 0;
|
|
|
|
pixel_t fg = 0;
|
|
|
|
int n_colors = 0;
|
|
|
|
int bg_count = 0;
|
|
|
|
int fg_count = 0;
|
|
|
|
int flags = 0;
|
2012-10-10 13:29:43 +02:00
|
|
|
uint8_t data[(vs->client_pf.bytes_per_pixel + 2) * 16 * 16];
|
2006-04-30 23:28:36 +02:00
|
|
|
int n_data = 0;
|
|
|
|
int n_subtiles = 0;
|
|
|
|
|
|
|
|
for (j = 0; j < h; j++) {
|
|
|
|
for (i = 0; i < w; i++) {
|
|
|
|
switch (n_colors) {
|
|
|
|
case 0:
|
|
|
|
bg = irow[i];
|
|
|
|
n_colors = 1;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (irow[i] != bg) {
|
|
|
|
fg = irow[i];
|
|
|
|
n_colors = 2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (irow[i] != bg && irow[i] != fg) {
|
|
|
|
n_colors = 3;
|
|
|
|
} else {
|
|
|
|
if (irow[i] == bg)
|
|
|
|
bg_count++;
|
|
|
|
else if (irow[i] == fg)
|
|
|
|
fg_count++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (n_colors > 2)
|
|
|
|
break;
|
2012-10-10 13:29:43 +02:00
|
|
|
irow += vnc_server_fb_stride(vd) / sizeof(pixel_t);
|
2006-04-30 23:28:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (n_colors > 1 && fg_count > bg_count) {
|
|
|
|
pixel_t tmp = fg;
|
|
|
|
fg = bg;
|
|
|
|
bg = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*has_bg || *last_bg != bg) {
|
|
|
|
flags |= 0x02;
|
|
|
|
*has_bg = 1;
|
|
|
|
*last_bg = bg;
|
|
|
|
}
|
|
|
|
|
2009-12-14 21:11:56 +01:00
|
|
|
if (n_colors < 3 && (!*has_fg || *last_fg != fg)) {
|
2006-04-30 23:28:36 +02:00
|
|
|
flags |= 0x04;
|
|
|
|
*has_fg = 1;
|
|
|
|
*last_fg = fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (n_colors) {
|
|
|
|
case 1:
|
|
|
|
n_data = 0;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
flags |= 0x08;
|
|
|
|
|
|
|
|
irow = (pixel_t *)row;
|
2007-09-16 23:08:06 +02:00
|
|
|
|
2006-04-30 23:28:36 +02:00
|
|
|
for (j = 0; j < h; j++) {
|
|
|
|
int min_x = -1;
|
|
|
|
for (i = 0; i < w; i++) {
|
|
|
|
if (irow[i] == fg) {
|
|
|
|
if (min_x == -1)
|
|
|
|
min_x = i;
|
|
|
|
} else if (min_x != -1) {
|
|
|
|
hextile_enc_cord(data + n_data, min_x, j, i - min_x, 1);
|
|
|
|
n_data += 2;
|
|
|
|
n_subtiles++;
|
|
|
|
min_x = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (min_x != -1) {
|
|
|
|
hextile_enc_cord(data + n_data, min_x, j, i - min_x, 1);
|
|
|
|
n_data += 2;
|
|
|
|
n_subtiles++;
|
|
|
|
}
|
2012-10-10 13:29:43 +02:00
|
|
|
irow += vnc_server_fb_stride(vd) / sizeof(pixel_t);
|
2006-04-30 23:28:36 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
flags |= 0x18;
|
|
|
|
|
|
|
|
irow = (pixel_t *)row;
|
|
|
|
|
|
|
|
if (!*has_bg || *last_bg != bg)
|
|
|
|
flags |= 0x02;
|
|
|
|
|
|
|
|
for (j = 0; j < h; j++) {
|
|
|
|
int has_color = 0;
|
|
|
|
int min_x = -1;
|
2006-12-21 17:50:09 +01:00
|
|
|
pixel_t color = 0; /* shut up gcc */
|
2006-04-30 23:28:36 +02:00
|
|
|
|
|
|
|
for (i = 0; i < w; i++) {
|
|
|
|
if (!has_color) {
|
|
|
|
if (irow[i] == bg)
|
|
|
|
continue;
|
|
|
|
color = irow[i];
|
|
|
|
min_x = i;
|
|
|
|
has_color = 1;
|
|
|
|
} else if (irow[i] != color) {
|
|
|
|
has_color = 0;
|
2006-05-14 20:11:49 +02:00
|
|
|
#ifdef GENERIC
|
|
|
|
vnc_convert_pixel(vs, data + n_data, color);
|
2012-10-10 13:29:43 +02:00
|
|
|
n_data += vs->client_pf.bytes_per_pixel;
|
2006-05-14 20:11:49 +02:00
|
|
|
#else
|
2006-04-30 23:28:36 +02:00
|
|
|
memcpy(data + n_data, &color, sizeof(color));
|
2006-05-14 20:11:49 +02:00
|
|
|
n_data += sizeof(pixel_t);
|
|
|
|
#endif
|
|
|
|
hextile_enc_cord(data + n_data, min_x, j, i - min_x, 1);
|
|
|
|
n_data += 2;
|
2006-04-30 23:28:36 +02:00
|
|
|
n_subtiles++;
|
|
|
|
|
|
|
|
min_x = -1;
|
|
|
|
if (irow[i] != bg) {
|
|
|
|
color = irow[i];
|
|
|
|
min_x = i;
|
|
|
|
has_color = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (has_color) {
|
2006-05-14 20:11:49 +02:00
|
|
|
#ifdef GENERIC
|
|
|
|
vnc_convert_pixel(vs, data + n_data, color);
|
2012-10-10 13:29:43 +02:00
|
|
|
n_data += vs->client_pf.bytes_per_pixel;
|
2006-05-14 20:11:49 +02:00
|
|
|
#else
|
|
|
|
memcpy(data + n_data, &color, sizeof(color));
|
|
|
|
n_data += sizeof(pixel_t);
|
|
|
|
#endif
|
|
|
|
hextile_enc_cord(data + n_data, min_x, j, i - min_x, 1);
|
|
|
|
n_data += 2;
|
2006-04-30 23:28:36 +02:00
|
|
|
n_subtiles++;
|
|
|
|
}
|
2012-10-10 13:29:43 +02:00
|
|
|
irow += vnc_server_fb_stride(vd) / sizeof(pixel_t);
|
2006-04-30 23:28:36 +02:00
|
|
|
}
|
|
|
|
|
2010-01-07 14:55:34 +01:00
|
|
|
/* A SubrectsColoured subtile invalidates the foreground color */
|
|
|
|
*has_fg = 0;
|
2006-04-30 23:28:36 +02:00
|
|
|
if (n_data > (w * h * sizeof(pixel_t))) {
|
|
|
|
n_colors = 4;
|
|
|
|
flags = 0x01;
|
|
|
|
*has_bg = 0;
|
|
|
|
|
|
|
|
/* we really don't have to invalidate either the bg or fg
|
|
|
|
but we've lost the old values. oh well. */
|
|
|
|
}
|
2012-02-25 14:57:03 +01:00
|
|
|
break;
|
2006-04-30 23:28:36 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n_colors > 3) {
|
|
|
|
flags = 0x01;
|
|
|
|
*has_fg = 0;
|
|
|
|
*has_bg = 0;
|
|
|
|
n_colors = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
vnc_write_u8(vs, flags);
|
|
|
|
if (n_colors < 4) {
|
|
|
|
if (flags & 0x02)
|
2012-10-10 13:29:43 +02:00
|
|
|
vs->write_pixels(vs, last_bg, sizeof(pixel_t));
|
2006-04-30 23:28:36 +02:00
|
|
|
if (flags & 0x04)
|
2012-10-10 13:29:43 +02:00
|
|
|
vs->write_pixels(vs, last_fg, sizeof(pixel_t));
|
2006-04-30 23:28:36 +02:00
|
|
|
if (n_subtiles) {
|
|
|
|
vnc_write_u8(vs, n_subtiles);
|
|
|
|
vnc_write(vs, data, n_data);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (j = 0; j < h; j++) {
|
2012-10-10 13:29:43 +02:00
|
|
|
vs->write_pixels(vs, row, w * 4);
|
|
|
|
row += vnc_server_fb_stride(vd);
|
2006-04-30 23:28:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-14 20:11:49 +02:00
|
|
|
#undef NAME
|
2006-04-30 23:28:36 +02:00
|
|
|
#undef pixel_t
|
|
|
|
#undef CONCAT_I
|
|
|
|
#undef CONCAT
|