work on new(color) cursors
This commit is contained in:
parent
494150f1a9
commit
39a828d52f
@ -425,31 +425,52 @@ libxrdp_send_pointer(struct xrdp_session *session, int cache_idx,
|
||||
tui32 *p32;
|
||||
int i;
|
||||
int j;
|
||||
int data_bytes;
|
||||
|
||||
DEBUG(("libxrdp_send_pointer sending cursor"));
|
||||
/* error check */
|
||||
if ((session->client_info->pointer_flags & 1) == 0)
|
||||
{
|
||||
if (bpp != 0)
|
||||
{
|
||||
g_writeln("libxrdp_send_pointer: error");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if ((bpp != 0) && (bpp == 15) && (bpp != 16) &&
|
||||
(bpp != 24) && (bpp != 32))
|
||||
{
|
||||
g_writeln("libxrdp_send_pointer: error");
|
||||
return 1;
|
||||
}
|
||||
make_stream(s);
|
||||
init_stream(s, 8192);
|
||||
xrdp_rdp_init_data((struct xrdp_rdp *)session->rdp, s);
|
||||
if (bpp == 0)
|
||||
{
|
||||
out_uint16_le(s, RDP_POINTER_COLOR);
|
||||
out_uint16_le(s, 0); /* pad */
|
||||
data_bytes = 3072;
|
||||
}
|
||||
else
|
||||
{
|
||||
out_uint16_le(s, RDP_POINTER_POINTER);
|
||||
out_uint16_le(s, bpp);
|
||||
}
|
||||
out_uint16_le(s, 0); /* pad */
|
||||
out_uint16_le(s, bpp);
|
||||
data_bytes = ((bpp + 7) / 8) * 32 * 32;
|
||||
}
|
||||
out_uint16_le(s, cache_idx); /* cache_idx */
|
||||
out_uint16_le(s, x);
|
||||
out_uint16_le(s, y);
|
||||
out_uint16_le(s, 32);
|
||||
out_uint16_le(s, 32);
|
||||
out_uint16_le(s, 128);
|
||||
out_uint16_le(s, 3072);
|
||||
out_uint16_le(s, data_bytes);
|
||||
|
||||
if (bpp == 16)
|
||||
switch (bpp)
|
||||
{
|
||||
case 15:
|
||||
case 16:
|
||||
p16 = (tui16 *) data;
|
||||
for (i = 0; i < 32; i++)
|
||||
{
|
||||
@ -459,21 +480,9 @@ libxrdp_send_pointer(struct xrdp_session *session, int cache_idx,
|
||||
p16++;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (bpp == 32)
|
||||
{
|
||||
p32 = (tui32 *) data;
|
||||
for (i = 0; i < 32; i++)
|
||||
{
|
||||
for (j = 0; j < 32; j++)
|
||||
{
|
||||
out_uint32_le(s, *p32);
|
||||
p32++;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if ((bpp == 0) || (bpp == 24))
|
||||
{
|
||||
break;
|
||||
case 0:
|
||||
case 24:
|
||||
p = data;
|
||||
for (i = 0; i < 32; i++)
|
||||
{
|
||||
@ -487,11 +496,23 @@ libxrdp_send_pointer(struct xrdp_session *session, int cache_idx,
|
||||
p++;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 32:
|
||||
p32 = (tui32 *) data;
|
||||
for (i = 0; i < 32; i++)
|
||||
{
|
||||
for (j = 0; j < 32; j++)
|
||||
{
|
||||
out_uint32_le(s, *p32);
|
||||
p32++;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
out_uint8a(s, mask, 128); /* mask */
|
||||
s_mark_end(s);
|
||||
xrdp_rdp_send_data((struct xrdp_rdp *)session->rdp, s,
|
||||
xrdp_rdp_send_data((struct xrdp_rdp *)(session->rdp), s,
|
||||
RDP_DATA_PDU_POINTER);
|
||||
free_stream(s);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user