2011-07-01 05:23:36 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-01 05:23:36 +04:00
|
|
|
* GDI Library
|
|
|
|
*
|
|
|
|
* Copyright 2010-2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
2011-10-02 23:16:22 +04:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-07-01 05:23:36 +04:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2012-08-15 01:09:01 +04:00
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
|
2011-08-31 12:35:50 +04:00
|
|
|
#include <freerdp/api.h>
|
2011-07-01 05:23:36 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
2011-08-10 18:51:55 +04:00
|
|
|
#include <freerdp/constants.h>
|
2011-09-02 07:00:07 +04:00
|
|
|
#include <freerdp/utils/bitmap.h>
|
2011-10-03 04:28:20 +04:00
|
|
|
#include <freerdp/codec/color.h>
|
2011-10-03 07:09:13 +04:00
|
|
|
#include <freerdp/codec/bitmap.h>
|
2011-10-03 04:52:17 +04:00
|
|
|
#include <freerdp/codec/rfx.h>
|
|
|
|
#include <freerdp/codec/nsc.h>
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2011-08-22 21:08:01 +04:00
|
|
|
#include <freerdp/gdi/dc.h>
|
|
|
|
#include <freerdp/gdi/pen.h>
|
|
|
|
#include <freerdp/gdi/line.h>
|
|
|
|
#include <freerdp/gdi/shape.h>
|
|
|
|
#include <freerdp/gdi/brush.h>
|
|
|
|
#include <freerdp/gdi/region.h>
|
|
|
|
#include <freerdp/gdi/bitmap.h>
|
|
|
|
#include <freerdp/gdi/palette.h>
|
|
|
|
#include <freerdp/gdi/drawing.h>
|
|
|
|
#include <freerdp/gdi/clipping.h>
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2011-08-15 22:33:04 +04:00
|
|
|
#include <freerdp/gdi/gdi.h>
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2011-10-21 01:28:59 +04:00
|
|
|
#include "gdi.h"
|
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
/* Ternary Raster Operation Table */
|
2012-10-09 11:26:39 +04:00
|
|
|
static const UINT32 rop3_code_table[] =
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
|
|
|
0x00000042, /* 0 */
|
|
|
|
0x00010289, /* DPSoon */
|
|
|
|
0x00020C89, /* DPSona */
|
|
|
|
0x000300AA, /* PSon */
|
|
|
|
0x00040C88, /* SDPona */
|
|
|
|
0x000500A9, /* DPon */
|
|
|
|
0x00060865, /* PDSxnon */
|
|
|
|
0x000702C5, /* PDSaon */
|
|
|
|
0x00080F08, /* SDPnaa */
|
|
|
|
0x00090245, /* PDSxon */
|
|
|
|
0x000A0329, /* DPna */
|
|
|
|
0x000B0B2A, /* PSDnaon */
|
|
|
|
0x000C0324, /* SPna */
|
|
|
|
0x000D0B25, /* PDSnaon */
|
|
|
|
0x000E08A5, /* PDSonon */
|
|
|
|
0x000F0001, /* Pn */
|
|
|
|
0x00100C85, /* PDSona */
|
|
|
|
0x001100A6, /* DSon */
|
|
|
|
0x00120868, /* SDPxnon */
|
|
|
|
0x001302C8, /* SDPaon */
|
|
|
|
0x00140869, /* DPSxnon */
|
|
|
|
0x001502C9, /* DPSaon */
|
|
|
|
0x00165CCA, /* PSDPSanaxx */
|
|
|
|
0x00171D54, /* SSPxDSxaxn */
|
|
|
|
0x00180D59, /* SPxPDxa */
|
|
|
|
0x00191CC8, /* SDPSanaxn */
|
|
|
|
0x001A06C5, /* PDSPaox */
|
|
|
|
0x001B0768, /* SDPSxaxn */
|
|
|
|
0x001C06CA, /* PSDPaox */
|
|
|
|
0x001D0766, /* DSPDxaxn */
|
|
|
|
0x001E01A5, /* PDSox */
|
|
|
|
0x001F0385, /* PDSoan */
|
|
|
|
0x00200F09, /* DPSnaa */
|
|
|
|
0x00210248, /* SDPxon */
|
|
|
|
0x00220326, /* DSna */
|
|
|
|
0x00230B24, /* SPDnaon */
|
|
|
|
0x00240D55, /* SPxDSxa */
|
|
|
|
0x00251CC5, /* PDSPanaxn */
|
|
|
|
0x002606C8, /* SDPSaox */
|
|
|
|
0x00271868, /* SDPSxnox */
|
|
|
|
0x00280369, /* DPSxa */
|
|
|
|
0x002916CA, /* PSDPSaoxxn */
|
|
|
|
0x002A0CC9, /* DPSana */
|
|
|
|
0x002B1D58, /* SSPxPDxaxn */
|
|
|
|
0x002C0784, /* SPDSoax */
|
|
|
|
0x002D060A, /* PSDnox */
|
|
|
|
0x002E064A, /* PSDPxox */
|
|
|
|
0x002F0E2A, /* PSDnoan */
|
|
|
|
0x0030032A, /* PSna */
|
|
|
|
0x00310B28, /* SDPnaon */
|
|
|
|
0x00320688, /* SDPSoox */
|
|
|
|
0x00330008, /* Sn */
|
|
|
|
0x003406C4, /* SPDSaox */
|
|
|
|
0x00351864, /* SPDSxnox */
|
|
|
|
0x003601A8, /* SDPox */
|
|
|
|
0x00370388, /* SDPoan */
|
|
|
|
0x0038078A, /* PSDPoax */
|
|
|
|
0x00390604, /* SPDnox */
|
|
|
|
0x003A0644, /* SPDSxox */
|
|
|
|
0x003B0E24, /* SPDnoan */
|
|
|
|
0x003C004A, /* PSx */
|
|
|
|
0x003D18A4, /* SPDSonox */
|
|
|
|
0x003E1B24, /* SPDSnaox */
|
|
|
|
0x003F00EA, /* PSan */
|
|
|
|
0x00400F0A, /* PSDnaa */
|
|
|
|
0x00410249, /* DPSxon */
|
|
|
|
0x00420D5D, /* SDxPDxa */
|
|
|
|
0x00431CC4, /* SPDSanaxn */
|
|
|
|
0x00440328, /* SDna */
|
|
|
|
0x00450B29, /* DPSnaon */
|
|
|
|
0x004606C6, /* DSPDaox */
|
|
|
|
0x0047076A, /* PSDPxaxn */
|
|
|
|
0x00480368, /* SDPxa */
|
|
|
|
0x004916C5, /* PDSPDaoxxn */
|
|
|
|
0x004A0789, /* DPSDoax */
|
|
|
|
0x004B0605, /* PDSnox */
|
|
|
|
0x004C0CC8, /* SDPana */
|
|
|
|
0x004D1954, /* SSPxDSxoxn */
|
|
|
|
0x004E0645, /* PDSPxox */
|
|
|
|
0x004F0E25, /* PDSnoan */
|
|
|
|
0x00500325, /* PDna */
|
|
|
|
0x00510B26, /* DSPnaon */
|
|
|
|
0x005206C9, /* DPSDaox */
|
|
|
|
0x00530764, /* SPDSxaxn */
|
|
|
|
0x005408A9, /* DPSonon */
|
|
|
|
0x00550009, /* Dn */
|
|
|
|
0x005601A9, /* DPSox */
|
|
|
|
0x00570389, /* DPSoan */
|
|
|
|
0x00580785, /* PDSPoax */
|
|
|
|
0x00590609, /* DPSnox */
|
|
|
|
0x005A0049, /* DPx */
|
|
|
|
0x005B18A9, /* DPSDonox */
|
|
|
|
0x005C0649, /* DPSDxox */
|
|
|
|
0x005D0E29, /* DPSnoan */
|
|
|
|
0x005E1B29, /* DPSDnaox */
|
|
|
|
0x005F00E9, /* DPan */
|
|
|
|
0x00600365, /* PDSxa */
|
|
|
|
0x006116C6, /* DSPDSaoxxn */
|
|
|
|
0x00620786, /* DSPDoax */
|
|
|
|
0x00630608, /* SDPnox */
|
|
|
|
0x00640788, /* SDPSoax */
|
|
|
|
0x00650606, /* DSPnox */
|
|
|
|
0x00660046, /* DSx */
|
|
|
|
0x006718A8, /* SDPSonox */
|
|
|
|
0x006858A6, /* DSPDSonoxxn */
|
|
|
|
0x00690145, /* PDSxxn */
|
|
|
|
0x006A01E9, /* DPSax */
|
|
|
|
0x006B178A, /* PSDPSoaxxn */
|
|
|
|
0x006C01E8, /* SDPax */
|
|
|
|
0x006D1785, /* PDSPDoaxxn */
|
|
|
|
0x006E1E28, /* SDPSnoax */
|
|
|
|
0x006F0C65, /* PDSxnan */
|
|
|
|
0x00700CC5, /* PDSana */
|
|
|
|
0x00711D5C, /* SSDxPDxaxn */
|
|
|
|
0x00720648, /* SDPSxox */
|
|
|
|
0x00730E28, /* SDPnoan */
|
|
|
|
0x00740646, /* DSPDxox */
|
|
|
|
0x00750E26, /* DSPnoan */
|
|
|
|
0x00761B28, /* SDPSnaox */
|
|
|
|
0x007700E6, /* DSan */
|
|
|
|
0x007801E5, /* PDSax */
|
|
|
|
0x00791786, /* DSPDSoaxxn */
|
|
|
|
0x007A1E29, /* DPSDnoax */
|
|
|
|
0x007B0C68, /* SDPxnan */
|
|
|
|
0x007C1E24, /* SPDSnoax */
|
|
|
|
0x007D0C69, /* DPSxnan */
|
|
|
|
0x007E0955, /* SPxDSxo */
|
|
|
|
0x007F03C9, /* DPSaan */
|
|
|
|
0x008003E9, /* DPSaa */
|
|
|
|
0x00810975, /* SPxDSxon */
|
|
|
|
0x00820C49, /* DPSxna */
|
|
|
|
0x00831E04, /* SPDSnoaxn */
|
|
|
|
0x00840C48, /* SDPxna */
|
|
|
|
0x00851E05, /* PDSPnoaxn */
|
|
|
|
0x008617A6, /* DSPDSoaxx */
|
|
|
|
0x008701C5, /* PDSaxn */
|
|
|
|
0x008800C6, /* DSa */
|
|
|
|
0x00891B08, /* SDPSnaoxn */
|
|
|
|
0x008A0E06, /* DSPnoa */
|
|
|
|
0x008B0666, /* DSPDxoxn */
|
|
|
|
0x008C0E08, /* SDPnoa */
|
|
|
|
0x008D0668, /* SDPSxoxn */
|
|
|
|
0x008E1D7C, /* SSDxPDxax */
|
|
|
|
0x008F0CE5, /* PDSanan */
|
|
|
|
0x00900C45, /* PDSxna */
|
|
|
|
0x00911E08, /* SDPSnoaxn */
|
|
|
|
0x009217A9, /* DPSDPoaxx */
|
|
|
|
0x009301C4, /* SPDaxn */
|
|
|
|
0x009417AA, /* PSDPSoaxx */
|
|
|
|
0x009501C9, /* DPSaxn */
|
|
|
|
0x00960169, /* DPSxx */
|
|
|
|
0x0097588A, /* PSDPSonoxx */
|
|
|
|
0x00981888, /* SDPSonoxn */
|
|
|
|
0x00990066, /* DSxn */
|
|
|
|
0x009A0709, /* DPSnax */
|
|
|
|
0x009B07A8, /* SDPSoaxn */
|
|
|
|
0x009C0704, /* SPDnax */
|
|
|
|
0x009D07A6, /* DSPDoaxn */
|
|
|
|
0x009E16E6, /* DSPDSaoxx */
|
|
|
|
0x009F0345, /* PDSxan */
|
|
|
|
0x00A000C9, /* DPa */
|
|
|
|
0x00A11B05, /* PDSPnaoxn */
|
|
|
|
0x00A20E09, /* DPSnoa */
|
|
|
|
0x00A30669, /* DPSDxoxn */
|
|
|
|
0x00A41885, /* PDSPonoxn */
|
|
|
|
0x00A50065, /* PDxn */
|
|
|
|
0x00A60706, /* DSPnax */
|
|
|
|
0x00A707A5, /* PDSPoaxn */
|
|
|
|
0x00A803A9, /* DPSoa */
|
|
|
|
0x00A90189, /* DPSoxn */
|
|
|
|
0x00AA0029, /* D */
|
|
|
|
0x00AB0889, /* DPSono */
|
|
|
|
0x00AC0744, /* SPDSxax */
|
|
|
|
0x00AD06E9, /* DPSDaoxn */
|
|
|
|
0x00AE0B06, /* DSPnao */
|
|
|
|
0x00AF0229, /* DPno */
|
|
|
|
0x00B00E05, /* PDSnoa */
|
|
|
|
0x00B10665, /* PDSPxoxn */
|
|
|
|
0x00B21974, /* SSPxDSxox */
|
|
|
|
0x00B30CE8, /* SDPanan */
|
|
|
|
0x00B4070A, /* PSDnax */
|
|
|
|
0x00B507A9, /* DPSDoaxn */
|
|
|
|
0x00B616E9, /* DPSDPaoxx */
|
|
|
|
0x00B70348, /* SDPxan */
|
|
|
|
0x00B8074A, /* PSDPxax */
|
|
|
|
0x00B906E6, /* DSPDaoxn */
|
|
|
|
0x00BA0B09, /* DPSnao */
|
|
|
|
0x00BB0226, /* DSno */
|
|
|
|
0x00BC1CE4, /* SPDSanax */
|
|
|
|
0x00BD0D7D, /* SDxPDxan */
|
|
|
|
0x00BE0269, /* DPSxo */
|
|
|
|
0x00BF08C9, /* DPSano */
|
|
|
|
0x00C000CA, /* PSa */
|
|
|
|
0x00C11B04, /* SPDSnaoxn */
|
|
|
|
0x00C21884, /* SPDSonoxn */
|
|
|
|
0x00C3006A, /* PSxn */
|
|
|
|
0x00C40E04, /* SPDnoa */
|
|
|
|
0x00C50664, /* SPDSxoxn */
|
|
|
|
0x00C60708, /* SDPnax */
|
|
|
|
0x00C707AA, /* PSDPoaxn */
|
|
|
|
0x00C803A8, /* SDPoa */
|
|
|
|
0x00C90184, /* SPDoxn */
|
|
|
|
0x00CA0749, /* DPSDxax */
|
|
|
|
0x00CB06E4, /* SPDSaoxn */
|
|
|
|
0x00CC0020, /* S */
|
|
|
|
0x00CD0888, /* SDPono */
|
|
|
|
0x00CE0B08, /* SDPnao */
|
|
|
|
0x00CF0224, /* SPno */
|
|
|
|
0x00D00E0A, /* PSDnoa */
|
|
|
|
0x00D1066A, /* PSDPxoxn */
|
|
|
|
0x00D20705, /* PDSnax */
|
|
|
|
0x00D307A4, /* SPDSoaxn */
|
|
|
|
0x00D41D78, /* SSPxPDxax */
|
|
|
|
0x00D50CE9, /* DPSanan */
|
|
|
|
0x00D616EA, /* PSDPSaoxx */
|
|
|
|
0x00D70349, /* DPSxan */
|
|
|
|
0x00D80745, /* PDSPxax */
|
|
|
|
0x00D906E8, /* SDPSaoxn */
|
|
|
|
0x00DA1CE9, /* DPSDanax */
|
|
|
|
0x00DB0D75, /* SPxDSxan */
|
|
|
|
0x00DC0B04, /* SPDnao */
|
|
|
|
0x00DD0228, /* SDno */
|
|
|
|
0x00DE0268, /* SDPxo */
|
|
|
|
0x00DF08C8, /* SDPano */
|
|
|
|
0x00E003A5, /* PDSoa */
|
|
|
|
0x00E10185, /* PDSoxn */
|
|
|
|
0x00E20746, /* DSPDxax */
|
|
|
|
0x00E306EA, /* PSDPaoxn */
|
|
|
|
0x00E40748, /* SDPSxax */
|
|
|
|
0x00E506E5, /* PDSPaoxn */
|
|
|
|
0x00E61CE8, /* SDPSanax */
|
|
|
|
0x00E70D79, /* SPxPDxan */
|
|
|
|
0x00E81D74, /* SSPxDSxax */
|
|
|
|
0x00E95CE6, /* DSPDSanaxxn */
|
|
|
|
0x00EA02E9, /* DPSao */
|
|
|
|
0x00EB0849, /* DPSxno */
|
|
|
|
0x00EC02E8, /* SDPao */
|
|
|
|
0x00ED0848, /* SDPxno */
|
|
|
|
0x00EE0086, /* DSo */
|
|
|
|
0x00EF0A08, /* SDPnoo */
|
|
|
|
0x00F00021, /* P */
|
|
|
|
0x00F10885, /* PDSono */
|
|
|
|
0x00F20B05, /* PDSnao */
|
|
|
|
0x00F3022A, /* PSno */
|
|
|
|
0x00F40B0A, /* PSDnao */
|
|
|
|
0x00F50225, /* PDno */
|
|
|
|
0x00F60265, /* PDSxo */
|
|
|
|
0x00F708C5, /* PDSano */
|
|
|
|
0x00F802E5, /* PDSao */
|
|
|
|
0x00F90845, /* PDSxno */
|
|
|
|
0x00FA0089, /* DPo */
|
|
|
|
0x00FB0A09, /* DPSnoo */
|
|
|
|
0x00FC008A, /* PSo */
|
|
|
|
0x00FD0A0A, /* PSDnoo */
|
|
|
|
0x00FE02A9, /* DPSoo */
|
|
|
|
0x00FF0062 /* 1 */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* GDI Helper Functions */
|
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
INLINE UINT32 gdi_rop3_code(BYTE code)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
|
|
|
return rop3_code_table[code];
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
INLINE BYTE* gdi_get_bitmap_pointer(HGDI_DC hdcBmp, int x, int y)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* p;
|
2011-07-01 05:23:36 +04:00
|
|
|
HGDI_BITMAP hBmp = (HGDI_BITMAP) hdcBmp->selectedObject;
|
|
|
|
|
|
|
|
if (x >= 0 && x < hBmp->width && y >= 0 && y < hBmp->height)
|
|
|
|
{
|
|
|
|
p = hBmp->data + (y * hBmp->width * hdcBmp->bytesPerPixel) + (x * hdcBmp->bytesPerPixel);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("gdi_get_bitmap_pointer: requesting invalid pointer: (%d,%d) in %dx%d\n", x, y, hBmp->width, hBmp->height);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
INLINE BYTE* gdi_get_brush_pointer(HGDI_DC hdcBrush, int x, int y)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE * p;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
|
|
|
if (hdcBrush->brush != NULL)
|
|
|
|
{
|
|
|
|
if (hdcBrush->brush->style == GDI_BS_PATTERN)
|
|
|
|
{
|
|
|
|
HGDI_BITMAP hBmpBrush = hdcBrush->brush->pattern;
|
|
|
|
|
|
|
|
if (x >= 0 && y >= 0)
|
|
|
|
{
|
|
|
|
x = x % hBmpBrush->width;
|
|
|
|
y = y % hBmpBrush->height;
|
|
|
|
p = hBmpBrush->data + (y * hBmpBrush->scanline) + (x * hBmpBrush->bytesPerPixel);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
p = (BYTE*) &(hdcBrush->textColor);
|
2011-07-01 05:23:36 +04:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
INLINE int gdi_is_mono_pixel_set(BYTE* data, int x, int y, int width)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
|
|
|
int byte;
|
|
|
|
int shift;
|
|
|
|
|
|
|
|
width = (width + 7) / 8;
|
|
|
|
byte = (y * width) + (x / 8);
|
|
|
|
shift = x % 8;
|
|
|
|
|
|
|
|
return (data[byte] & (0x80 >> shift)) != 0;
|
|
|
|
}
|
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
gdiBitmap* gdi_glyph_new(rdpGdi* gdi, GLYPH_DATA* glyph)
|
2011-09-19 02:29:23 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* extra;
|
2011-10-13 23:51:07 +04:00
|
|
|
gdiBitmap* gdi_bmp;
|
2011-09-19 02:29:23 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
gdi_bmp = (gdiBitmap*) malloc(sizeof(gdiBitmap));
|
2011-09-19 02:29:23 +04:00
|
|
|
|
|
|
|
gdi_bmp->hdc = gdi_GetDC();
|
|
|
|
gdi_bmp->hdc->bytesPerPixel = 1;
|
|
|
|
gdi_bmp->hdc->bitsPerPixel = 1;
|
|
|
|
|
|
|
|
extra = freerdp_glyph_convert(glyph->cx, glyph->cy, glyph->aj);
|
|
|
|
gdi_bmp->bitmap = gdi_CreateBitmap(glyph->cx, glyph->cy, 1, extra);
|
|
|
|
gdi_bmp->bitmap->bytesPerPixel = 1;
|
|
|
|
gdi_bmp->bitmap->bitsPerPixel = 1;
|
|
|
|
|
|
|
|
gdi_SelectObject(gdi_bmp->hdc, (HGDIOBJECT) gdi_bmp->bitmap);
|
|
|
|
gdi_bmp->org_bitmap = NULL;
|
|
|
|
|
|
|
|
return gdi_bmp;
|
|
|
|
}
|
|
|
|
|
2011-10-13 23:51:07 +04:00
|
|
|
void gdi_glyph_free(gdiBitmap *gdi_bmp)
|
2011-09-19 02:29:23 +04:00
|
|
|
{
|
|
|
|
if (gdi_bmp != 0)
|
|
|
|
{
|
|
|
|
gdi_SelectObject(gdi_bmp->hdc, (HGDIOBJECT) gdi_bmp->org_bitmap);
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi_bmp->bitmap);
|
|
|
|
gdi_DeleteDC(gdi_bmp->hdc);
|
|
|
|
free(gdi_bmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
gdiBitmap* gdi_bitmap_new_ex(rdpGdi* gdi, int width, int height, int bpp, BYTE* data)
|
2011-07-28 09:34:53 +04:00
|
|
|
{
|
2011-10-21 01:28:59 +04:00
|
|
|
gdiBitmap* bitmap;
|
2011-07-28 09:34:53 +04:00
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
bitmap = (gdiBitmap*) malloc(sizeof(gdiBitmap));
|
2011-10-21 01:28:59 +04:00
|
|
|
bitmap->hdc = gdi_CreateCompatibleDC(gdi->hdc);
|
2011-08-06 00:56:40 +04:00
|
|
|
|
2011-10-21 01:28:59 +04:00
|
|
|
DEBUG_GDI("gdi_bitmap_new: width:%d height:%d bpp:%d", width, height, bpp);
|
2011-08-06 00:56:40 +04:00
|
|
|
|
2011-10-21 01:28:59 +04:00
|
|
|
if (data == NULL)
|
|
|
|
bitmap->bitmap = gdi_CreateCompatibleBitmap(gdi->hdc, width, height);
|
|
|
|
else
|
|
|
|
bitmap->bitmap = gdi_create_bitmap(gdi, width, height, bpp, data);
|
2011-08-06 00:56:40 +04:00
|
|
|
|
2011-10-21 01:28:59 +04:00
|
|
|
gdi_SelectObject(bitmap->hdc, (HGDIOBJECT) bitmap->bitmap);
|
|
|
|
bitmap->org_bitmap = NULL;
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gdi_bitmap_free_ex(gdiBitmap* bitmap)
|
|
|
|
{
|
|
|
|
if (bitmap != NULL)
|
|
|
|
{
|
|
|
|
gdi_SelectObject(bitmap->hdc, (HGDIOBJECT) bitmap->org_bitmap);
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) bitmap->bitmap);
|
|
|
|
gdi_DeleteDC(bitmap->hdc);
|
|
|
|
free(bitmap);
|
2011-07-28 09:34:53 +04:00
|
|
|
}
|
2011-07-28 22:32:16 +04:00
|
|
|
}
|
2011-07-28 09:34:53 +04:00
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
void gdi_palette_update(rdpContext* context, PALETTE_UPDATE* palette)
|
2011-07-28 22:32:16 +04:00
|
|
|
{
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2011-10-21 20:17:04 +04:00
|
|
|
gdi->clrconv->palette->count = palette->number;
|
|
|
|
gdi->clrconv->palette->entries = palette->entries;
|
2011-07-28 22:32:16 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
void gdi_set_bounds(rdpContext* context, rdpBounds* bounds)
|
2011-07-28 22:32:16 +04:00
|
|
|
{
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2011-07-28 22:32:16 +04:00
|
|
|
|
|
|
|
if (bounds != NULL)
|
|
|
|
{
|
|
|
|
gdi_SetClipRgn(gdi->drawing->hdc, bounds->left, bounds->top,
|
|
|
|
bounds->right - bounds->left + 1, bounds->bottom - bounds->top + 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdi_SetNullClipRgn(gdi->drawing->hdc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_dstblt(rdpContext* context, DSTBLT_ORDER* dstblt)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2011-08-02 20:59:45 +04:00
|
|
|
|
|
|
|
gdi_BitBlt(gdi->drawing->hdc, dstblt->nLeftRect, dstblt->nTopRect,
|
|
|
|
dstblt->nWidth, dstblt->nHeight, NULL, 0, 0, gdi_rop3_code(dstblt->bRop));
|
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* data;
|
2011-10-21 01:28:59 +04:00
|
|
|
rdpBrush* brush;
|
2011-08-02 20:59:45 +04:00
|
|
|
HGDI_BRUSH originalBrush;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2011-08-08 05:12:36 +04:00
|
|
|
brush = &patblt->brush;
|
2011-08-05 21:58:46 +04:00
|
|
|
|
2011-08-16 23:35:29 +04:00
|
|
|
if (brush->style == GDI_BS_SOLID)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 color;
|
2011-08-02 20:59:45 +04:00
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
|
2011-12-30 19:00:03 +04:00
|
|
|
color = freerdp_color_convert_rgb(patblt->foreColor, gdi->srcBpp, 32, gdi->clrconv);
|
2011-08-02 20:59:45 +04:00
|
|
|
gdi->drawing->hdc->brush = gdi_CreateSolidBrush(color);
|
|
|
|
|
|
|
|
gdi_PatBlt(gdi->drawing->hdc, patblt->nLeftRect, patblt->nTopRect,
|
|
|
|
patblt->nWidth, patblt->nHeight, gdi_rop3_code(patblt->bRop));
|
|
|
|
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
|
|
|
}
|
2011-08-16 23:35:29 +04:00
|
|
|
else if (brush->style == GDI_BS_PATTERN)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
|
|
|
HGDI_BITMAP hBmp;
|
|
|
|
|
2011-08-08 05:12:36 +04:00
|
|
|
if (brush->bpp > 1)
|
|
|
|
{
|
2011-09-14 03:03:06 +04:00
|
|
|
data = freerdp_image_convert(brush->data, NULL, 8, 8, gdi->srcBpp, gdi->dstBpp, gdi->clrconv);
|
2011-08-08 05:12:36 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-14 03:03:06 +04:00
|
|
|
data = freerdp_mono_image_convert(brush->data, 8, 8, gdi->srcBpp, gdi->dstBpp,
|
2011-08-02 20:59:45 +04:00
|
|
|
patblt->backColor, patblt->foreColor, gdi->clrconv);
|
2011-08-08 05:12:36 +04:00
|
|
|
}
|
2011-08-02 20:59:45 +04:00
|
|
|
|
|
|
|
hBmp = gdi_CreateBitmap(8, 8, gdi->drawing->hdc->bitsPerPixel, data);
|
|
|
|
|
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
gdi->drawing->hdc->brush = gdi_CreatePatternBrush(hBmp);
|
|
|
|
|
|
|
|
gdi_PatBlt(gdi->drawing->hdc, patblt->nLeftRect, patblt->nTopRect,
|
|
|
|
patblt->nWidth, patblt->nHeight, gdi_rop3_code(patblt->bRop));
|
|
|
|
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
|
|
|
}
|
2011-08-04 11:39:10 +04:00
|
|
|
else
|
|
|
|
{
|
2011-08-08 05:12:36 +04:00
|
|
|
printf("unimplemented brush style:%d\n", brush->style);
|
2011-08-04 11:39:10 +04:00
|
|
|
}
|
2011-08-02 20:59:45 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_scrblt(rdpContext* context, SCRBLT_ORDER* scrblt)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2011-08-02 20:59:45 +04:00
|
|
|
|
|
|
|
gdi_BitBlt(gdi->drawing->hdc, scrblt->nLeftRect, scrblt->nTopRect,
|
|
|
|
scrblt->nWidth, scrblt->nHeight, gdi->primary->hdc,
|
|
|
|
scrblt->nXSrc, scrblt->nYSrc, gdi_rop3_code(scrblt->bRop));
|
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_opaque_rect(rdpContext* context, OPAQUE_RECT_ORDER* opaque_rect)
|
2011-07-28 22:32:16 +04:00
|
|
|
{
|
|
|
|
GDI_RECT rect;
|
|
|
|
HGDI_BRUSH hBrush;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 brush_color;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi *gdi = context->gdi;
|
2011-07-28 22:32:16 +04:00
|
|
|
|
|
|
|
gdi_CRgnToRect(opaque_rect->nLeftRect, opaque_rect->nTopRect,
|
|
|
|
opaque_rect->nWidth, opaque_rect->nHeight, &rect);
|
|
|
|
|
2011-12-30 19:00:03 +04:00
|
|
|
brush_color = freerdp_color_convert_var_bgr(opaque_rect->color, gdi->srcBpp, 32, gdi->clrconv);
|
2011-07-28 22:32:16 +04:00
|
|
|
|
|
|
|
hBrush = gdi_CreateSolidBrush(brush_color);
|
|
|
|
gdi_FillRect(gdi->drawing->hdc, &rect, hBrush);
|
|
|
|
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) hBrush);
|
2011-07-28 09:34:53 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_multi_opaque_rect(rdpContext* context, MULTI_OPAQUE_RECT_ORDER* multi_opaque_rect)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2011-08-04 01:09:12 +04:00
|
|
|
int i;
|
|
|
|
GDI_RECT rect;
|
|
|
|
HGDI_BRUSH hBrush;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 brush_color;
|
2011-08-04 01:09:12 +04:00
|
|
|
DELTA_RECT* rectangle;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi *gdi = context->gdi;
|
2011-08-04 01:09:12 +04:00
|
|
|
|
2011-12-04 02:24:18 +04:00
|
|
|
for (i = 1; i < (int) multi_opaque_rect->numRectangles + 1; i++)
|
2011-08-04 01:09:12 +04:00
|
|
|
{
|
|
|
|
rectangle = &multi_opaque_rect->rectangles[i];
|
|
|
|
|
2011-08-04 11:23:53 +04:00
|
|
|
gdi_CRgnToRect(rectangle->left, rectangle->top,
|
|
|
|
rectangle->width, rectangle->height, &rect);
|
2011-08-04 01:09:12 +04:00
|
|
|
|
2011-12-30 19:00:03 +04:00
|
|
|
brush_color = freerdp_color_convert_var_bgr(multi_opaque_rect->color, gdi->srcBpp, 32, gdi->clrconv);
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2011-08-04 01:09:12 +04:00
|
|
|
hBrush = gdi_CreateSolidBrush(brush_color);
|
|
|
|
gdi_FillRect(gdi->drawing->hdc, &rect, hBrush);
|
|
|
|
|
2011-08-13 12:52:05 +04:00
|
|
|
gdi_DeleteObject((HGDIOBJECT) hBrush);
|
|
|
|
}
|
2011-08-02 20:59:45 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_line_to(rdpContext* context, LINE_TO_ORDER* line_to)
|
2011-08-03 11:29:56 +04:00
|
|
|
{
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 color;
|
2011-08-03 11:29:56 +04:00
|
|
|
HGDI_PEN hPen;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi *gdi = context->gdi;
|
2011-08-03 11:29:56 +04:00
|
|
|
|
2011-12-30 19:00:03 +04:00
|
|
|
color = freerdp_color_convert_rgb(line_to->penColor, gdi->srcBpp, 32, gdi->clrconv);
|
2011-08-03 11:29:56 +04:00
|
|
|
hPen = gdi_CreatePen(line_to->penStyle, line_to->penWidth, (GDI_COLOR) color);
|
|
|
|
gdi_SelectObject(gdi->drawing->hdc, (HGDIOBJECT) hPen);
|
|
|
|
gdi_SetROP2(gdi->drawing->hdc, line_to->bRop2);
|
|
|
|
|
|
|
|
gdi_MoveToEx(gdi->drawing->hdc, line_to->nXStart, line_to->nYStart, NULL);
|
|
|
|
gdi_LineTo(gdi->drawing->hdc, line_to->nXEnd, line_to->nYEnd);
|
|
|
|
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) hPen);
|
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_polyline(rdpContext* context, POLYLINE_ORDER* polyline)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
|
|
|
int i;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 color;
|
2011-08-05 00:22:15 +04:00
|
|
|
HGDI_PEN hPen;
|
|
|
|
DELTA_POINT* points;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2012-10-09 11:26:39 +04:00
|
|
|
INT32 x;
|
|
|
|
INT32 y;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-12-30 19:00:03 +04:00
|
|
|
color = freerdp_color_convert_rgb(polyline->penColor, gdi->srcBpp, 32, gdi->clrconv);
|
2011-12-02 07:59:23 +04:00
|
|
|
hPen = gdi_CreatePen(GDI_PS_SOLID, 1, (GDI_COLOR) color);
|
2011-08-05 00:22:15 +04:00
|
|
|
gdi_SelectObject(gdi->drawing->hdc, (HGDIOBJECT) hPen);
|
|
|
|
gdi_SetROP2(gdi->drawing->hdc, polyline->bRop2);
|
|
|
|
|
2011-12-02 07:59:23 +04:00
|
|
|
x = polyline->xStart;
|
|
|
|
y = polyline->yStart;
|
|
|
|
gdi_MoveToEx(gdi->drawing->hdc, x, y, NULL);
|
2011-09-10 15:32:09 +04:00
|
|
|
|
2011-08-05 00:22:15 +04:00
|
|
|
points = polyline->points;
|
2011-12-04 02:24:18 +04:00
|
|
|
for (i = 0; i < (int) polyline->numPoints; i++)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2011-12-02 07:59:23 +04:00
|
|
|
x += points[i].x;
|
|
|
|
y += points[i].y;
|
|
|
|
gdi_LineTo(gdi->drawing->hdc, x, y);
|
|
|
|
gdi_MoveToEx(gdi->drawing->hdc, x, y, NULL);
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) hPen);
|
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt)
|
2011-10-05 05:29:01 +04:00
|
|
|
{
|
2011-10-13 23:51:07 +04:00
|
|
|
gdiBitmap* bitmap;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2011-10-05 05:29:01 +04:00
|
|
|
|
2011-10-13 23:51:07 +04:00
|
|
|
bitmap = (gdiBitmap*) memblt->bitmap;
|
2011-10-10 05:23:18 +04:00
|
|
|
|
2011-10-05 05:29:01 +04:00
|
|
|
gdi_BitBlt(gdi->drawing->hdc, memblt->nLeftRect, memblt->nTopRect,
|
2011-10-13 23:51:07 +04:00
|
|
|
memblt->nWidth, memblt->nHeight, bitmap->hdc,
|
2011-10-05 05:29:01 +04:00
|
|
|
memblt->nXSrc, memblt->nYSrc, gdi_rop3_code(memblt->bRop));
|
|
|
|
}
|
|
|
|
|
2011-11-22 03:11:43 +04:00
|
|
|
void gdi_mem3blt(rdpContext* context, MEM3BLT_ORDER* mem3blt)
|
2011-10-05 05:29:01 +04:00
|
|
|
{
|
2012-02-13 04:41:39 +04:00
|
|
|
rdpBrush* brush;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 foreColor;
|
|
|
|
UINT32 backColor;
|
2012-02-13 04:41:39 +04:00
|
|
|
gdiBitmap* bitmap;
|
|
|
|
HGDI_BRUSH originalBrush;
|
|
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
|
|
|
|
brush = &mem3blt->brush;
|
|
|
|
bitmap = (gdiBitmap*) mem3blt->bitmap;
|
|
|
|
|
|
|
|
foreColor = freerdp_color_convert_rgb(mem3blt->foreColor, gdi->srcBpp, 32, gdi->clrconv);
|
|
|
|
backColor = freerdp_color_convert_rgb(mem3blt->backColor, gdi->srcBpp, 32, gdi->clrconv);
|
|
|
|
|
|
|
|
if (brush->style == GDI_BS_SOLID)
|
|
|
|
{
|
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
gdi->drawing->hdc->brush = gdi_CreateSolidBrush(foreColor);
|
|
|
|
|
|
|
|
gdi_BitBlt(gdi->drawing->hdc, mem3blt->nLeftRect, mem3blt->nTopRect,
|
|
|
|
mem3blt->nWidth, mem3blt->nHeight, bitmap->hdc,
|
|
|
|
mem3blt->nXSrc, mem3blt->nYSrc, gdi_rop3_code(mem3blt->bRop));
|
|
|
|
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Mem3Blt unimplemented brush style:%d\n", brush->style);
|
|
|
|
}
|
2012-02-13 00:21:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gdi_polygon_sc(rdpContext* context, POLYGON_SC_ORDER* polygon_sc)
|
|
|
|
{
|
|
|
|
printf("PolygonSC\n");
|
|
|
|
}
|
2011-10-05 05:29:01 +04:00
|
|
|
|
2012-02-13 00:21:08 +04:00
|
|
|
void gdi_polygon_cb(rdpContext* context, POLYGON_CB_ORDER* polygon_cb)
|
|
|
|
{
|
|
|
|
printf("PolygonCB\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void gdi_ellipse_sc(rdpContext* context, ELLIPSE_SC_ORDER* ellipse_sc)
|
|
|
|
{
|
|
|
|
printf("EllipseSC\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void gdi_ellipse_cb(rdpContext* context, ELLIPSE_CB_ORDER* ellipse_cb)
|
|
|
|
{
|
|
|
|
printf("EllipseCB\n");
|
2011-10-05 05:29:01 +04:00
|
|
|
}
|
|
|
|
|
2011-09-02 07:00:07 +04:00
|
|
|
int tilenum = 0;
|
|
|
|
|
2011-11-22 04:41:49 +04:00
|
|
|
void gdi_surface_bits(rdpContext* context, SURFACE_BITS_COMMAND* surface_bits_command)
|
2011-08-10 18:51:55 +04:00
|
|
|
{
|
2011-08-10 19:19:01 +04:00
|
|
|
int i, j;
|
|
|
|
int tx, ty;
|
2011-09-02 07:00:07 +04:00
|
|
|
char* tile_bitmap;
|
2011-09-01 04:36:46 +04:00
|
|
|
RFX_MESSAGE* message;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
RFX_CONTEXT* rfx_context = (RFX_CONTEXT*) gdi->rfx_context;
|
|
|
|
NSC_CONTEXT* nsc_context = (NSC_CONTEXT*) gdi->nsc_context;
|
2011-10-02 23:16:22 +04:00
|
|
|
|
2011-08-10 19:55:47 +04:00
|
|
|
DEBUG_GDI("destLeft %d destTop %d destRight %d destBottom %d "
|
2011-08-10 18:51:55 +04:00
|
|
|
"bpp %d codecID %d width %d height %d length %d",
|
|
|
|
surface_bits_command->destLeft, surface_bits_command->destTop,
|
|
|
|
surface_bits_command->destRight, surface_bits_command->destBottom,
|
|
|
|
surface_bits_command->bpp, surface_bits_command->codecID,
|
|
|
|
surface_bits_command->width, surface_bits_command->height,
|
|
|
|
surface_bits_command->bitmapDataLength);
|
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
tile_bitmap = (char*) malloc(32);
|
|
|
|
ZeroMemory(tile_bitmap, 32);
|
2011-09-02 07:00:07 +04:00
|
|
|
|
2013-01-12 17:49:01 +04:00
|
|
|
if (surface_bits_command->codecID == RDP_CODEC_ID_REMOTEFX)
|
2011-08-10 18:51:55 +04:00
|
|
|
{
|
2011-11-22 04:41:49 +04:00
|
|
|
message = rfx_process_message(rfx_context,
|
|
|
|
surface_bits_command->bitmapData, surface_bits_command->bitmapDataLength);
|
2011-08-10 19:19:01 +04:00
|
|
|
|
2011-08-10 19:55:47 +04:00
|
|
|
DEBUG_GDI("num_rects %d num_tiles %d", message->num_rects, message->num_tiles);
|
|
|
|
|
2011-09-14 23:09:49 +04:00
|
|
|
/* blit each tile */
|
|
|
|
for (i = 0; i < message->num_tiles; i++)
|
2011-08-10 19:19:01 +04:00
|
|
|
{
|
2011-09-14 23:09:49 +04:00
|
|
|
tx = message->tiles[i]->x + surface_bits_command->destLeft;
|
|
|
|
ty = message->tiles[i]->y + surface_bits_command->destTop;
|
2011-08-10 19:19:01 +04:00
|
|
|
|
2011-09-14 23:09:49 +04:00
|
|
|
freerdp_image_convert(message->tiles[i]->data, gdi->tile->bitmap->data, 64, 64, 32, 32, gdi->clrconv);
|
2011-08-10 19:19:01 +04:00
|
|
|
|
2011-09-02 07:00:07 +04:00
|
|
|
#ifdef DUMP_REMOTEFX_TILES
|
2011-09-14 23:09:49 +04:00
|
|
|
sprintf(tile_bitmap, "/tmp/rfx/tile_%d.bmp", tilenum++);
|
|
|
|
freerdp_bitmap_write(tile_bitmap, gdi->tile->bitmap->data, 64, 64, 32);
|
2011-09-02 07:00:07 +04:00
|
|
|
#endif
|
|
|
|
|
2011-09-14 23:09:49 +04:00
|
|
|
for (j = 0; j < message->num_rects; j++)
|
2011-08-10 19:19:01 +04:00
|
|
|
{
|
2011-09-14 23:09:49 +04:00
|
|
|
gdi_SetClipRgn(gdi->primary->hdc,
|
|
|
|
surface_bits_command->destLeft + message->rects[j].x,
|
|
|
|
surface_bits_command->destTop + message->rects[j].y,
|
|
|
|
message->rects[j].width, message->rects[j].height);
|
2011-09-02 07:00:07 +04:00
|
|
|
|
2011-08-10 19:19:01 +04:00
|
|
|
gdi_BitBlt(gdi->primary->hdc, tx, ty, 64, 64, gdi->tile->hdc, 0, 0, GDI_SRCCOPY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-14 23:09:49 +04:00
|
|
|
gdi_SetNullClipRgn(gdi->primary->hdc);
|
2011-11-22 04:41:49 +04:00
|
|
|
rfx_message_free(rfx_context, message);
|
2011-08-10 18:51:55 +04:00
|
|
|
}
|
2013-01-12 17:49:01 +04:00
|
|
|
else if (surface_bits_command->codecID == RDP_CODEC_ID_NSCODEC)
|
2011-10-02 23:16:22 +04:00
|
|
|
{
|
2012-03-05 13:32:14 +04:00
|
|
|
nsc_process_message(nsc_context, surface_bits_command->bpp, surface_bits_command->width, surface_bits_command->height,
|
|
|
|
surface_bits_command->bitmapData, surface_bits_command->bitmapDataLength);
|
2011-10-02 23:16:22 +04:00
|
|
|
gdi->image->bitmap->width = surface_bits_command->width;
|
|
|
|
gdi->image->bitmap->height = surface_bits_command->height;
|
|
|
|
gdi->image->bitmap->bitsPerPixel = surface_bits_command->bpp;
|
|
|
|
gdi->image->bitmap->bytesPerPixel = gdi->image->bitmap->bitsPerPixel / 8;
|
2012-10-09 11:01:37 +04:00
|
|
|
gdi->image->bitmap->data = (BYTE*) realloc(gdi->image->bitmap->data, gdi->image->bitmap->width * gdi->image->bitmap->height * 4);
|
2011-11-22 04:41:49 +04:00
|
|
|
freerdp_image_flip(nsc_context->bmpdata, gdi->image->bitmap->data, gdi->image->bitmap->width, gdi->image->bitmap->height, 32);
|
2011-10-02 23:16:22 +04:00
|
|
|
gdi_BitBlt(gdi->primary->hdc, surface_bits_command->destLeft, surface_bits_command->destTop, surface_bits_command->width, surface_bits_command->height, gdi->image->hdc, 0, 0, GDI_SRCCOPY);
|
|
|
|
}
|
2013-01-12 17:49:01 +04:00
|
|
|
else if (surface_bits_command->codecID == RDP_CODEC_ID_NONE)
|
2011-09-01 04:36:46 +04:00
|
|
|
{
|
|
|
|
gdi->image->bitmap->width = surface_bits_command->width;
|
|
|
|
gdi->image->bitmap->height = surface_bits_command->height;
|
|
|
|
gdi->image->bitmap->bitsPerPixel = surface_bits_command->bpp;
|
|
|
|
gdi->image->bitmap->bytesPerPixel = gdi->image->bitmap->bitsPerPixel / 8;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
gdi->image->bitmap->data = (BYTE*) realloc(gdi->image->bitmap->data,
|
2011-09-01 04:36:46 +04:00
|
|
|
gdi->image->bitmap->width * gdi->image->bitmap->height * 4);
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if ((surface_bits_command->bpp != 32) || (gdi->clrconv->alpha == TRUE))
|
2011-09-01 04:36:46 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* temp_image;
|
2011-10-05 00:05:09 +04:00
|
|
|
|
2011-09-14 03:03:06 +04:00
|
|
|
freerdp_image_convert(surface_bits_command->bitmapData, gdi->image->bitmap->data,
|
2011-09-01 04:36:46 +04:00
|
|
|
gdi->image->bitmap->width, gdi->image->bitmap->height,
|
|
|
|
gdi->image->bitmap->bitsPerPixel, 32, gdi->clrconv);
|
|
|
|
|
|
|
|
surface_bits_command->bpp = 32;
|
|
|
|
surface_bits_command->bitmapData = gdi->image->bitmap->data;
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
temp_image = (BYTE*) malloc(gdi->image->bitmap->width * gdi->image->bitmap->height * 4);
|
2011-10-05 05:29:01 +04:00
|
|
|
freerdp_image_flip(gdi->image->bitmap->data, temp_image, gdi->image->bitmap->width, gdi->image->bitmap->height, 32);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(gdi->image->bitmap->data);
|
2011-09-29 13:26:55 +04:00
|
|
|
gdi->image->bitmap->data = temp_image;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-05 05:29:01 +04:00
|
|
|
freerdp_image_flip(surface_bits_command->bitmapData, gdi->image->bitmap->data,
|
2011-09-29 13:26:55 +04:00
|
|
|
gdi->image->bitmap->width, gdi->image->bitmap->height, 32);
|
|
|
|
}
|
2011-09-01 04:36:46 +04:00
|
|
|
|
|
|
|
gdi_BitBlt(gdi->primary->hdc, surface_bits_command->destLeft, surface_bits_command->destTop,
|
|
|
|
surface_bits_command->width, surface_bits_command->height, gdi->image->hdc, 0, 0, GDI_SRCCOPY);
|
|
|
|
}
|
2011-08-10 18:51:55 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Unsupported codecID %d\n", surface_bits_command->codecID);
|
|
|
|
}
|
2011-09-07 10:19:11 +04:00
|
|
|
|
2011-10-05 00:05:09 +04:00
|
|
|
if (tile_bitmap != NULL)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(tile_bitmap);
|
2011-08-10 18:51:55 +04:00
|
|
|
}
|
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
/**
|
2011-08-05 00:22:15 +04:00
|
|
|
* Register GDI callbacks with libfreerdp-core.
|
2011-07-01 05:23:36 +04:00
|
|
|
* @param inst current instance
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
2011-07-28 09:17:17 +04:00
|
|
|
void gdi_register_update_callbacks(rdpUpdate* update)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpPrimaryUpdate* primary = update->primary;
|
|
|
|
|
2011-07-28 22:32:16 +04:00
|
|
|
update->Palette = gdi_palette_update;
|
|
|
|
update->SetBounds = gdi_set_bounds;
|
2011-11-22 03:11:43 +04:00
|
|
|
|
|
|
|
primary->DstBlt = gdi_dstblt;
|
|
|
|
primary->PatBlt = gdi_patblt;
|
|
|
|
primary->ScrBlt = gdi_scrblt;
|
|
|
|
primary->OpaqueRect = gdi_opaque_rect;
|
|
|
|
primary->DrawNineGrid = NULL;
|
|
|
|
primary->MultiDstBlt = NULL;
|
|
|
|
primary->MultiPatBlt = NULL;
|
|
|
|
primary->MultiScrBlt = NULL;
|
|
|
|
primary->MultiOpaqueRect = gdi_multi_opaque_rect;
|
|
|
|
primary->MultiDrawNineGrid = NULL;
|
|
|
|
primary->LineTo = gdi_line_to;
|
2011-12-02 07:59:23 +04:00
|
|
|
primary->Polyline = gdi_polyline;
|
2011-11-22 03:11:43 +04:00
|
|
|
primary->MemBlt = gdi_memblt;
|
|
|
|
primary->Mem3Blt = gdi_mem3blt;
|
|
|
|
primary->SaveBitmap = NULL;
|
|
|
|
primary->GlyphIndex = NULL;
|
|
|
|
primary->FastIndex = NULL;
|
|
|
|
primary->FastGlyph = NULL;
|
2012-02-13 00:21:08 +04:00
|
|
|
primary->PolygonSC = gdi_polygon_sc;
|
|
|
|
primary->PolygonCB = gdi_polygon_cb;
|
|
|
|
primary->EllipseSC = gdi_ellipse_sc;
|
|
|
|
primary->EllipseCB = gdi_ellipse_cb;
|
2011-08-05 09:21:32 +04:00
|
|
|
|
2011-08-10 18:51:55 +04:00
|
|
|
update->SurfaceBits = gdi_surface_bits;
|
2011-07-01 05:23:36 +04:00
|
|
|
}
|
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
void gdi_init_primary(rdpGdi* gdi)
|
2011-09-07 09:26:17 +04:00
|
|
|
{
|
2011-10-13 23:51:07 +04:00
|
|
|
gdi->primary = gdi_bitmap_new_ex(gdi, gdi->width, gdi->height, gdi->dstBpp, gdi->primary_buffer);
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi->primary_buffer = gdi->primary->bitmap->data;
|
|
|
|
|
|
|
|
if (gdi->drawing == NULL)
|
|
|
|
gdi->drawing = gdi->primary;
|
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
gdi->primary->hdc->hwnd = (HGDI_WND) malloc(sizeof(GDI_WND));
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi->primary->hdc->hwnd->invalid = gdi_CreateRectRgn(0, 0, 0, 0);
|
|
|
|
gdi->primary->hdc->hwnd->invalid->null = 1;
|
|
|
|
|
|
|
|
gdi->primary->hdc->hwnd->count = 32;
|
2012-10-09 07:21:26 +04:00
|
|
|
gdi->primary->hdc->hwnd->cinvalid = (HGDI_RGN) malloc(sizeof(GDI_RGN) * gdi->primary->hdc->hwnd->count);
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi->primary->hdc->hwnd->ninvalid = 0;
|
|
|
|
}
|
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
void gdi_resize(rdpGdi* gdi, int width, int height)
|
2011-09-07 09:26:17 +04:00
|
|
|
{
|
|
|
|
if (gdi && gdi->primary)
|
|
|
|
{
|
|
|
|
if (gdi->width != width || gdi->height != height)
|
|
|
|
{
|
|
|
|
if (gdi->drawing == gdi->primary)
|
|
|
|
gdi->drawing = NULL;
|
|
|
|
|
|
|
|
gdi->width = width;
|
|
|
|
gdi->height = height;
|
2011-10-13 23:51:07 +04:00
|
|
|
gdi_bitmap_free_ex(gdi->primary);
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi_init_primary(gdi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
/**
|
|
|
|
* Initialize GDI
|
|
|
|
* @param inst current instance
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:26:39 +04:00
|
|
|
int gdi_init(freerdp* instance, UINT32 flags, BYTE* buffer)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2011-10-16 08:50:10 +04:00
|
|
|
rdpGdi* gdi;
|
|
|
|
rdpCache* cache;
|
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
gdi = (rdpGdi*) malloc(sizeof(rdpGdi));
|
|
|
|
ZeroMemory(gdi, sizeof(rdpGdi));
|
2011-10-16 08:50:10 +04:00
|
|
|
|
|
|
|
instance->context->gdi = gdi;
|
|
|
|
cache = instance->context->cache;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2012-11-07 19:33:06 +04:00
|
|
|
gdi->width = instance->settings->DesktopWidth;
|
|
|
|
gdi->height = instance->settings->DesktopHeight;
|
|
|
|
gdi->srcBpp = instance->settings->ColorDepth;
|
2011-10-05 00:05:09 +04:00
|
|
|
gdi->primary_buffer = buffer;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
|
|
|
/* default internal buffer format */
|
|
|
|
gdi->dstBpp = 32;
|
|
|
|
gdi->bytesPerPixel = 4;
|
|
|
|
|
|
|
|
if (gdi->srcBpp > 16)
|
|
|
|
{
|
|
|
|
if (flags & CLRBUF_32BPP)
|
|
|
|
{
|
|
|
|
gdi->dstBpp = 32;
|
|
|
|
gdi->bytesPerPixel = 4;
|
|
|
|
}
|
2011-10-05 00:05:09 +04:00
|
|
|
else if (flags & CLRBUF_24BPP)
|
|
|
|
{
|
|
|
|
gdi->dstBpp = 24;
|
|
|
|
gdi->bytesPerPixel = 3;
|
|
|
|
}
|
2011-07-01 05:23:36 +04:00
|
|
|
else if (flags & CLRBUF_16BPP)
|
|
|
|
{
|
|
|
|
gdi->dstBpp = 16;
|
|
|
|
gdi->bytesPerPixel = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (flags & CLRBUF_16BPP)
|
|
|
|
{
|
|
|
|
gdi->dstBpp = 16;
|
|
|
|
gdi->bytesPerPixel = 2;
|
|
|
|
}
|
|
|
|
else if (flags & CLRBUF_32BPP)
|
|
|
|
{
|
|
|
|
gdi->dstBpp = 32;
|
|
|
|
gdi->bytesPerPixel = 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gdi->hdc = gdi_GetDC();
|
|
|
|
gdi->hdc->bitsPerPixel = gdi->dstBpp;
|
|
|
|
gdi->hdc->bytesPerPixel = gdi->bytesPerPixel;
|
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
gdi->clrconv = (HCLRCONV) malloc(sizeof(CLRCONV));
|
2011-07-01 05:23:36 +04:00
|
|
|
gdi->clrconv->alpha = (flags & CLRCONV_ALPHA) ? 1 : 0;
|
|
|
|
gdi->clrconv->invert = (flags & CLRCONV_INVERT) ? 1 : 0;
|
|
|
|
gdi->clrconv->rgb555 = (flags & CLRCONV_RGB555) ? 1 : 0;
|
2012-10-09 07:21:26 +04:00
|
|
|
gdi->clrconv->palette = (rdpPalette*) malloc(sizeof(rdpPalette));
|
2011-07-01 05:23:36 +04:00
|
|
|
|
|
|
|
gdi->hdc->alpha = gdi->clrconv->alpha;
|
|
|
|
gdi->hdc->invert = gdi->clrconv->invert;
|
|
|
|
gdi->hdc->rgb555 = gdi->clrconv->rgb555;
|
|
|
|
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi_init_primary(gdi);
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2011-10-13 23:51:07 +04:00
|
|
|
gdi->tile = gdi_bitmap_new_ex(gdi, 64, 64, 32, NULL);
|
|
|
|
gdi->image = gdi_bitmap_new_ex(gdi, 64, 64, 32, NULL);
|
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
if (cache == NULL)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
2011-10-16 08:50:10 +04:00
|
|
|
cache = cache_new(instance->settings);
|
|
|
|
instance->context->cache = cache;
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2011-07-28 09:17:17 +04:00
|
|
|
gdi_register_update_callbacks(instance->update);
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2011-10-21 07:15:18 +04:00
|
|
|
brush_cache_register_callbacks(instance->update);
|
2011-11-09 08:26:44 +04:00
|
|
|
glyph_cache_register_callbacks(instance->update);
|
2011-10-13 23:51:07 +04:00
|
|
|
bitmap_cache_register_callbacks(instance->update);
|
|
|
|
offscreen_cache_register_callbacks(instance->update);
|
2011-11-11 11:07:53 +04:00
|
|
|
palette_cache_register_callbacks(instance->update);
|
2011-10-21 02:18:45 +04:00
|
|
|
|
|
|
|
gdi_register_graphics(instance->context->graphics);
|
2011-08-05 06:43:36 +04:00
|
|
|
|
2011-10-29 18:01:50 +04:00
|
|
|
gdi->rfx_context = rfx_context_new();
|
2011-10-02 23:16:22 +04:00
|
|
|
gdi->nsc_context = nsc_context_new();
|
2011-08-10 18:51:55 +04:00
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-28 09:17:17 +04:00
|
|
|
void gdi_free(freerdp* instance)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2011-10-16 08:50:10 +04:00
|
|
|
rdpGdi* gdi = instance->context->gdi;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
|
|
|
if (gdi)
|
|
|
|
{
|
2011-10-13 23:51:07 +04:00
|
|
|
gdi_bitmap_free_ex(gdi->primary);
|
|
|
|
gdi_bitmap_free_ex(gdi->tile);
|
|
|
|
gdi_bitmap_free_ex(gdi->image);
|
2011-07-27 17:45:44 +04:00
|
|
|
gdi_DeleteDC(gdi->hdc);
|
2013-01-26 02:52:37 +04:00
|
|
|
rfx_context_free((RFX_CONTEXT*) gdi->rfx_context);
|
|
|
|
nsc_context_free((NSC_CONTEXT*) gdi->nsc_context);
|
|
|
|
free(gdi->clrconv->palette);
|
2011-07-01 05:23:36 +04:00
|
|
|
free(gdi->clrconv);
|
|
|
|
free(gdi);
|
|
|
|
}
|
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
instance->context->gdi = (rdpGdi*) NULL;
|
2011-07-01 05:23:36 +04:00
|
|
|
}
|
2011-07-28 08:38:25 +04:00
|
|
|
|