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>
|
2016-04-05 18:07:45 +03:00
|
|
|
* Copyright 2016 Armin Novak <armin.novak@thincast.com>
|
|
|
|
* Copyright 2016 Thincast Technologies GmbH
|
2011-07-01 05:23:36 +04:00
|
|
|
*
|
|
|
|
* 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 <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>
|
2014-09-12 16:36:29 +04:00
|
|
|
#include <freerdp/log.h>
|
2011-07-01 05:23:36 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
|
2011-08-22 21:08:01 +04:00
|
|
|
#include <freerdp/gdi/dc.h>
|
|
|
|
#include <freerdp/gdi/pen.h>
|
|
|
|
#include <freerdp/gdi/shape.h>
|
|
|
|
#include <freerdp/gdi/region.h>
|
|
|
|
#include <freerdp/gdi/bitmap.h>
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
#include "drawing.h"
|
|
|
|
#include "clipping.h"
|
|
|
|
#include "brush.h"
|
|
|
|
#include "line.h"
|
2011-10-21 01:28:59 +04:00
|
|
|
#include "gdi.h"
|
|
|
|
|
2014-09-12 16:36:29 +04:00
|
|
|
#define TAG FREERDP_TAG("gdi")
|
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
/* Ternary Raster Operation Table */
|
2015-06-26 15:32:38 +03:00
|
|
|
static const DWORD 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 */
|
|
|
|
};
|
|
|
|
|
2013-02-04 18:58:22 +04:00
|
|
|
/* Hatch Patterns as monochrome data */
|
2016-07-14 13:42:24 +03:00
|
|
|
static const BYTE GDI_BS_HATCHED_PATTERNS[] =
|
2014-01-29 06:46:47 +04:00
|
|
|
{
|
2013-02-04 18:58:22 +04:00
|
|
|
0xFF, 0xFF, 0xFF, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, /* HS_HORIZONTAL */
|
|
|
|
0xF7, 0xF7, 0xF7, 0xF7, 0xF7, 0xF7, 0xF7, 0xF7, /* HS_VERTICAL */
|
|
|
|
0xFE, 0xFD, 0xFB, 0xF7, 0xEF, 0xDF, 0xBF, 0x7F, /* HS_FDIAGONAL */
|
|
|
|
0x7F, 0xBF, 0xDF, 0xEF, 0xF7, 0xFB, 0xFD, 0xFE, /* HS_BDIAGONAL */
|
|
|
|
0xF7, 0xF7, 0xF7, 0x00, 0xF7, 0xF7, 0xF7, 0xF7, /* HS_CROSS */
|
|
|
|
0x7E, 0xBD, 0xDB, 0xE7, 0xE7, 0xDB, 0xBD, 0x7E /* HS_DIACROSS */
|
|
|
|
};
|
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
INLINE BOOL gdi_decode_color(rdpGdi* gdi, const UINT32 srcColor,
|
|
|
|
UINT32* color, UINT32* format)
|
2016-07-18 12:16:36 +03:00
|
|
|
{
|
|
|
|
UINT32 SrcFormat = gdi_get_pixel_format(gdi->context->settings->ColorDepth,
|
|
|
|
FALSE);
|
|
|
|
|
|
|
|
if (format)
|
|
|
|
*format = SrcFormat;
|
|
|
|
|
|
|
|
*color = ConvertColor(srcColor, SrcFormat,
|
|
|
|
gdi->drawing->hdc->format, &gdi->palette);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
/* GDI Helper Functions */
|
2015-06-26 15:32:38 +03:00
|
|
|
INLINE DWORD gdi_rop3_code(BYTE code)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
|
|
|
return rop3_code_table[code];
|
|
|
|
}
|
|
|
|
|
2014-09-12 04:46:15 +04:00
|
|
|
UINT32 gdi_get_pixel_format(UINT32 bitsPerPixel, BOOL vFlip)
|
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
UINT32 format = PIXEL_FORMAT_XBGR32_VF;
|
2014-09-12 04:46:15 +04:00
|
|
|
|
|
|
|
switch (bitsPerPixel)
|
|
|
|
{
|
|
|
|
case 32:
|
2016-04-11 18:30:29 +03:00
|
|
|
format = vFlip ? PIXEL_FORMAT_XRGB32_VF : PIXEL_FORMAT_XRGB32;
|
2014-09-12 04:46:15 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 24:
|
2016-07-15 17:45:26 +03:00
|
|
|
format = vFlip ? PIXEL_FORMAT_BGR24_VF : PIXEL_FORMAT_BGR24;
|
2014-09-12 04:46:15 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 16:
|
|
|
|
format = vFlip ? PIXEL_FORMAT_RGB16_VF : PIXEL_FORMAT_RGB16;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 15:
|
|
|
|
format = vFlip ? PIXEL_FORMAT_RGB15_VF : PIXEL_FORMAT_RGB15;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
format = vFlip ? PIXEL_FORMAT_RGB8_VF : PIXEL_FORMAT_RGB8;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return format;
|
|
|
|
}
|
|
|
|
|
2016-07-11 12:05:38 +03:00
|
|
|
BYTE* gdi_get_bitmap_pointer(HGDI_DC hdcBmp, UINT32 x, UINT32 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;
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
if (x >= 0 && x < hBmp->width && y >= 0 && y < hBmp->height)
|
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
p = hBmp->data + (y * hBmp->scanline) + (x * GetBytesPerPixel(hdcBmp->format));
|
2011-07-01 05:23:36 +04:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
WLog_ERR(TAG,
|
2016-07-14 13:42:24 +03:00
|
|
|
"gdi_get_bitmap_pointer: requesting invalid pointer: (%d,%d) in %dx%d",
|
|
|
|
x, y, hBmp->width, hBmp->height);
|
2011-07-01 05:23:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-15 21:52:02 +03:00
|
|
|
/**
|
|
|
|
* Get current color in brush bitmap according to dest coordinates.\n
|
|
|
|
* @msdn{dd183396}
|
|
|
|
* @param x dest x-coordinate
|
|
|
|
* @param y dest y-coordinate
|
|
|
|
* @return color
|
|
|
|
*/
|
2016-07-11 12:05:38 +03:00
|
|
|
BYTE* gdi_get_brush_pointer(HGDI_DC hdcBrush, UINT32 x, UINT32 y)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
BYTE* p;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
|
|
|
if (hdcBrush->brush != NULL)
|
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
if ((hdcBrush->brush->style == GDI_BS_PATTERN)
|
2016-04-25 10:42:59 +03:00
|
|
|
|| (hdcBrush->brush->style == GDI_BS_HATCHED))
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
|
|
|
HGDI_BITMAP hBmpBrush = hdcBrush->brush->pattern;
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-10-15 21:52:02 +03:00
|
|
|
/* According to @msdn{dd183396}, the system always positions a brush bitmap
|
|
|
|
* at the brush origin and copy across the client area.
|
|
|
|
* Calculate the offset of the mapped pixel in the brush bitmap according to
|
|
|
|
* brush origin and dest coordinates */
|
2011-07-01 05:23:36 +04:00
|
|
|
if (x >= 0 && y >= 0)
|
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
x = (x + hBmpBrush->width - (hdcBrush->brush->nXOrg % hBmpBrush->width)) %
|
2016-04-25 10:42:59 +03:00
|
|
|
hBmpBrush->width;
|
2016-04-05 18:07:45 +03:00
|
|
|
y = (y + hBmpBrush->height - (hdcBrush->brush->nYOrg % hBmpBrush->height)) %
|
2016-04-25 10:42:59 +03:00
|
|
|
hBmpBrush->height;
|
2016-04-05 18:07:45 +03:00
|
|
|
p = hBmpBrush->data + (y * hBmpBrush->scanline) + (x * GetBytesPerPixel(
|
2016-07-14 13:42:24 +03:00
|
|
|
hBmpBrush->format));
|
2011-07-01 05:23:36 +04:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
p = (BYTE*) & (hdcBrush->textColor);
|
2011-07-01 05:23:36 +04:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
gdiBitmap* gdi_bitmap_new_ex(rdpGdi* gdi, int width, int height, int bpp,
|
2016-07-14 13:42:24 +03:00
|
|
|
BYTE* data)
|
2011-07-28 09:34:53 +04:00
|
|
|
{
|
2011-10-21 01:28:59 +04:00
|
|
|
gdiBitmap* bitmap;
|
2015-08-12 11:49:59 +03:00
|
|
|
bitmap = (gdiBitmap*) calloc(1, sizeof(gdiBitmap));
|
2014-07-08 23:07:19 +04:00
|
|
|
|
|
|
|
if (!bitmap)
|
2015-05-08 22:39:23 +03:00
|
|
|
goto fail_bitmap;
|
2014-07-08 23:07:19 +04:00
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!(bitmap->hdc = gdi_CreateCompatibleDC(gdi->hdc)))
|
|
|
|
goto fail_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
|
|
|
|
2014-07-08 23:07:19 +04:00
|
|
|
if (!data)
|
2011-10-21 01:28:59 +04:00
|
|
|
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
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!bitmap->bitmap)
|
|
|
|
goto fail_bitmap_bitmap;
|
|
|
|
|
2011-10-21 01:28:59 +04:00
|
|
|
gdi_SelectObject(bitmap->hdc, (HGDIOBJECT) bitmap->bitmap);
|
|
|
|
bitmap->org_bitmap = NULL;
|
|
|
|
return bitmap;
|
2015-05-08 22:39:23 +03:00
|
|
|
fail_bitmap_bitmap:
|
|
|
|
gdi_DeleteDC(bitmap->hdc);
|
|
|
|
fail_hdc:
|
|
|
|
free(bitmap);
|
|
|
|
fail_bitmap:
|
|
|
|
return NULL;
|
2011-10-21 01:28:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void gdi_bitmap_free_ex(gdiBitmap* bitmap)
|
|
|
|
{
|
2014-02-13 20:59:05 +04:00
|
|
|
if (bitmap)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_bitmap_update(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const BITMAP_UPDATE* bitmapUpdate)
|
2014-09-12 04:12:32 +04:00
|
|
|
{
|
|
|
|
UINT32 index;
|
|
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
rdpCodecs* codecs = context->codecs;
|
|
|
|
|
|
|
|
for (index = 0; index < bitmapUpdate->number; index++)
|
|
|
|
{
|
2016-04-14 00:37:23 +03:00
|
|
|
const BITMAP_DATA* bitmap = &(bitmapUpdate->rectangles[index]);
|
|
|
|
UINT32 nXSrc = 0;
|
|
|
|
UINT32 nYSrc = 0;
|
|
|
|
UINT32 nXDst = bitmap->destLeft;
|
|
|
|
UINT32 nYDst = bitmap->destTop;
|
|
|
|
UINT32 nWidth = bitmap->width;
|
|
|
|
UINT32 nHeight = bitmap->height;
|
|
|
|
const BYTE* pSrcData = bitmap->bitmapDataStream;
|
|
|
|
UINT32 SrcSize = bitmap->bitmapLength;
|
|
|
|
BOOL compressed = bitmap->compressed;
|
|
|
|
UINT32 bitsPerPixel = bitmap->bitsPerPixel;
|
2014-09-12 04:12:32 +04:00
|
|
|
|
|
|
|
if (compressed)
|
|
|
|
{
|
|
|
|
if (bitsPerPixel < 32)
|
|
|
|
{
|
2016-07-18 12:16:36 +03:00
|
|
|
if (!interleaved_decompress(codecs->interleaved,
|
|
|
|
pSrcData, SrcSize,
|
|
|
|
bitsPerPixel,
|
|
|
|
gdi->primary_buffer,
|
|
|
|
gdi->primary->hdc->format,
|
|
|
|
gdi->stride, nXDst, nYDst,
|
|
|
|
nWidth, nHeight,
|
|
|
|
&gdi->palette))
|
|
|
|
return FALSE;
|
2014-09-12 04:12:32 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-18 12:16:36 +03:00
|
|
|
if (!planar_decompress(codecs->planar, pSrcData,
|
|
|
|
SrcSize, gdi->primary_buffer,
|
|
|
|
gdi->primary->hdc->format,
|
|
|
|
gdi->stride,
|
|
|
|
nXDst, nYDst, nWidth, nHeight, TRUE))
|
|
|
|
return FALSE;
|
2014-09-12 04:12:32 +04:00
|
|
|
}
|
|
|
|
}
|
2016-04-19 23:11:12 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
UINT32 SrcFormat = gdi_get_pixel_format(bitsPerPixel, TRUE);
|
|
|
|
UINT32 nSrcStep = nWidth * GetBytesPerPixel(SrcFormat);
|
|
|
|
nWidth = MIN(bitmap->destRight,
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->width - 1) - bitmap->destLeft + 1; /* clip width */
|
2016-04-19 23:11:12 +03:00
|
|
|
nHeight = MIN(bitmap->destBottom,
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->height - 1) - bitmap->destTop + 1; /* clip height */
|
2014-09-12 04:46:15 +04:00
|
|
|
|
2016-07-18 12:16:36 +03:00
|
|
|
if (!freerdp_image_copy(gdi->primary_buffer, gdi->primary->hdc->format,
|
|
|
|
gdi->stride,
|
2016-07-14 13:42:24 +03:00
|
|
|
nXDst, nYDst, nWidth, nHeight,
|
|
|
|
pSrcData, SrcFormat, nSrcStep,
|
|
|
|
nXSrc, nYSrc, &gdi->palette))
|
2016-04-23 12:25:55 +03:00
|
|
|
return FALSE;
|
2015-10-18 12:53:22 +03:00
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-04-14 00:37:23 +03:00
|
|
|
if (!gdi_InvalidateRegion(gdi->primary->hdc, nXDst, nYDst,
|
2016-07-14 13:42:24 +03:00
|
|
|
nWidth, nHeight))
|
2015-04-20 12:43:44 +03:00
|
|
|
return FALSE;
|
2014-09-12 04:12:32 +04:00
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-09-12 04:12:32 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_palette_update(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const PALETTE_UPDATE* palette)
|
2011-07-28 22:32:16 +04:00
|
|
|
{
|
2016-07-14 13:42:24 +03:00
|
|
|
UINT32 index;
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2016-04-23 12:25:55 +03:00
|
|
|
gdi->palette.format = gdi->dstFormat;
|
2014-09-18 02:30:09 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
for (index = 0; index < palette->number; index++)
|
2014-09-18 02:30:09 +04:00
|
|
|
{
|
2016-07-14 13:42:24 +03:00
|
|
|
const PALETTE_ENTRY* pe = &(palette->entries[index]);
|
2016-04-19 23:11:12 +03:00
|
|
|
gdi->palette.palette[index] =
|
2016-04-25 10:42:59 +03:00
|
|
|
GetColor(gdi->dstFormat, pe->red, pe->green, pe->blue, 0xFF);
|
2014-09-18 02:30:09 +04:00
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-07-28 22:32:16 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_set_bounds(rdpContext* context, const 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
|
|
|
|
2014-02-13 20:59:05 +04:00
|
|
|
if (bounds)
|
2011-07-28 22:32:16 +04:00
|
|
|
{
|
|
|
|
gdi_SetClipRgn(gdi->drawing->hdc, bounds->left, bounds->top,
|
2016-07-14 13:42:24 +03:00
|
|
|
bounds->right - bounds->left + 1, bounds->bottom - bounds->top + 1);
|
2011-07-28 22:32:16 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
gdi_SetNullClipRgn(gdi->drawing->hdc);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-07-28 22:32:16 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_dstblt(rdpContext* context, const DSTBLT_ORDER* dstblt)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2016-07-18 13:36:22 +03:00
|
|
|
rdpGdi* gdi;
|
|
|
|
|
|
|
|
if (!context || !dstblt)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gdi = context->gdi;
|
2015-06-26 15:32:38 +03:00
|
|
|
return gdi_BitBlt(gdi->drawing->hdc, dstblt->nLeftRect, dstblt->nTopRect,
|
2016-07-14 13:42:24 +03:00
|
|
|
dstblt->nWidth, dstblt->nHeight, NULL, 0, 0,
|
|
|
|
gdi_rop3_code(dstblt->bRop), &gdi->palette);
|
2011-08-02 20:59:45 +04:00
|
|
|
}
|
|
|
|
|
2016-07-13 14:13:28 +03:00
|
|
|
static BOOL gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2016-04-25 10:42:59 +03:00
|
|
|
const rdpBrush* brush = &patblt->brush;
|
2014-02-13 20:59:05 +04:00
|
|
|
UINT32 foreColor;
|
|
|
|
UINT32 backColor;
|
2016-04-05 18:07:45 +03:00
|
|
|
UINT32 originalColor;
|
2011-08-02 20:59:45 +04:00
|
|
|
HGDI_BRUSH originalBrush;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2015-04-14 11:14:23 +03:00
|
|
|
BOOL ret = TRUE;
|
2016-07-18 12:16:36 +03:00
|
|
|
const DWORD rop = gdi_rop3_code(patblt->bRop);
|
2016-07-11 12:29:26 +03:00
|
|
|
UINT32 nXSrc = 0;
|
|
|
|
UINT32 nYSrc = 0;
|
2016-07-18 12:16:36 +03:00
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, patblt->foreColor, &foreColor, NULL))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, patblt->backColor, &backColor, NULL))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2014-02-13 20:59:05 +04:00
|
|
|
originalColor = gdi_SetTextColor(gdi->drawing->hdc, foreColor);
|
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
switch (brush->style)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2016-07-14 13:42:24 +03:00
|
|
|
case GDI_BS_SOLID:
|
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
gdi->drawing->hdc->brush = gdi_CreateSolidBrush(foreColor);
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi->drawing->hdc->brush)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi_PatBlt(gdi->drawing->hdc, patblt->nLeftRect, patblt->nTopRect,
|
|
|
|
patblt->nWidth, patblt->nHeight, rop,
|
|
|
|
gdi->primary->hdc, nXSrc, nYSrc))
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
2013-02-04 18:58:22 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
|
|
|
break;
|
2014-10-22 05:56:10 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
case GDI_BS_HATCHED:
|
|
|
|
{
|
|
|
|
const BYTE* hatched;
|
|
|
|
HGDI_BITMAP hBmp;
|
2016-07-15 17:23:00 +03:00
|
|
|
BYTE* data = (BYTE*) _aligned_malloc(8 * 8 * GetBytesPerPixel(
|
|
|
|
gdi->drawing->hdc->format),
|
2016-07-14 13:42:24 +03:00
|
|
|
16);
|
2014-10-22 05:56:10 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!data)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
2013-02-04 18:58:22 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
hatched = GDI_BS_HATCHED_PATTERNS + (8 * brush->hatch);
|
2016-07-15 17:23:00 +03:00
|
|
|
freerdp_image_copy_from_monochrome(data, gdi->drawing->hdc->format, 0, 0, 0, 8,
|
|
|
|
8,
|
2016-07-14 13:42:24 +03:00
|
|
|
hatched, backColor, foreColor, &gdi->palette);
|
|
|
|
hBmp = gdi_CreateBitmap(8, 8, gdi->drawing->hdc->format, data);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!hBmp)
|
|
|
|
{
|
|
|
|
_aligned_free(data);
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
gdi->drawing->hdc->brush = gdi_CreateHatchBrush(hBmp);
|
2013-02-04 18:58:22 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi->drawing->hdc->brush)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
2013-02-04 18:58:22 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->drawing->hdc->brush->nXOrg = brush->x;
|
|
|
|
gdi->drawing->hdc->brush->nYOrg = brush->y;
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi_PatBlt(gdi->drawing->hdc, patblt->nLeftRect, patblt->nTopRect,
|
|
|
|
patblt->nWidth, patblt->nHeight, rop,
|
|
|
|
gdi->primary->hdc, nXSrc, nYSrc))
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
2014-10-22 05:56:10 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
2015-04-14 11:14:23 +03:00
|
|
|
}
|
2016-07-14 13:42:24 +03:00
|
|
|
break;
|
2014-10-22 05:56:10 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
case GDI_BS_PATTERN:
|
2016-04-23 12:25:55 +03:00
|
|
|
{
|
2016-07-14 13:42:24 +03:00
|
|
|
HGDI_BITMAP hBmp;
|
|
|
|
UINT32 brushFormat;
|
2016-07-15 17:23:00 +03:00
|
|
|
BYTE* data = (BYTE*) _aligned_malloc(8 * 8 * GetBytesPerPixel(
|
|
|
|
gdi->drawing->hdc->format),
|
2016-07-14 13:42:24 +03:00
|
|
|
16);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!data)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
2014-10-22 05:56:10 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (brush->bpp > 1)
|
|
|
|
{
|
|
|
|
brushFormat = gdi_get_pixel_format(brush->bpp, FALSE);
|
|
|
|
|
2016-07-15 17:23:00 +03:00
|
|
|
if (!freerdp_image_copy(data, gdi->drawing->hdc->format, 0, 0, 0,
|
2016-07-14 13:42:24 +03:00
|
|
|
8, 8, brush->data, brushFormat, 0, 0, 0,
|
|
|
|
&gdi->palette))
|
|
|
|
{
|
|
|
|
_aligned_free(data);
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-15 17:23:00 +03:00
|
|
|
if (!freerdp_image_copy_from_monochrome(data, gdi->drawing->hdc->format, 0, 0,
|
|
|
|
0, 8, 8,
|
2016-07-14 13:42:24 +03:00
|
|
|
brush->data, backColor, foreColor, &gdi->palette))
|
|
|
|
{
|
|
|
|
_aligned_free(data);
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
}
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
hBmp = gdi_CreateBitmap(8, 8, gdi->drawing->hdc->format, data);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!hBmp)
|
|
|
|
{
|
|
|
|
_aligned_free(data);
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
gdi->drawing->hdc->brush = gdi_CreatePatternBrush(hBmp);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi->drawing->hdc->brush)
|
|
|
|
{
|
|
|
|
_aligned_free(data);
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_error;
|
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->drawing->hdc->brush->nXOrg = brush->x;
|
|
|
|
gdi->drawing->hdc->brush->nYOrg = brush->y;
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi_PatBlt(gdi->drawing->hdc, patblt->nLeftRect, patblt->nTopRect,
|
|
|
|
patblt->nWidth, patblt->nHeight, rop,
|
|
|
|
gdi->primary->hdc, nXSrc, nYSrc))
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
}
|
2011-08-02 20:59:45 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
WLog_ERR(TAG, "unimplemented brush style:%d", brush->style);
|
|
|
|
break;
|
2011-08-04 11:39:10 +04:00
|
|
|
}
|
2014-02-13 20:59:05 +04:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
out_error:
|
2014-02-13 20:59:05 +04:00
|
|
|
gdi_SetTextColor(gdi->drawing->hdc, originalColor);
|
2015-04-14 11:14:23 +03:00
|
|
|
return ret;
|
2011-08-02 20:59:45 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_scrblt(rdpContext* context, const SCRBLT_ORDER* scrblt)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2015-06-26 15:32:38 +03:00
|
|
|
return gdi_BitBlt(gdi->drawing->hdc, scrblt->nLeftRect, scrblt->nTopRect,
|
2016-07-14 13:42:24 +03:00
|
|
|
scrblt->nWidth, scrblt->nHeight, gdi->primary->hdc,
|
|
|
|
scrblt->nXSrc, scrblt->nYSrc, gdi_rop3_code(scrblt->bRop),
|
|
|
|
&gdi->palette);
|
2011-08-02 20:59:45 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_opaque_rect(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const 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;
|
2014-02-13 20:59:05 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2015-06-26 15:32:38 +03:00
|
|
|
BOOL ret;
|
2011-07-28 22:32:16 +04:00
|
|
|
gdi_CRgnToRect(opaque_rect->nLeftRect, opaque_rect->nTopRect,
|
2016-07-14 13:42:24 +03:00
|
|
|
opaque_rect->nWidth, opaque_rect->nHeight, &rect);
|
2016-07-18 12:16:36 +03:00
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, opaque_rect->color, &brush_color, NULL))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
2011-07-28 22:32:16 +04:00
|
|
|
|
2015-06-26 15:32:38 +03:00
|
|
|
if (!(hBrush = gdi_CreateSolidBrush(brush_color)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
ret = gdi_FillRect(gdi->drawing->hdc, &rect, hBrush);
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) hBrush);
|
2015-04-14 11:14:23 +03:00
|
|
|
return ret;
|
2011-07-28 09:34:53 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_multi_opaque_rect(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const MULTI_OPAQUE_RECT_ORDER* multi_opaque_rect)
|
2011-08-02 20:59:45 +04:00
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
UINT32 i;
|
2011-08-04 01:09:12 +04:00
|
|
|
GDI_RECT rect;
|
|
|
|
HGDI_BRUSH hBrush;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 brush_color;
|
2014-02-13 20:59:05 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2015-04-14 11:14:23 +03:00
|
|
|
BOOL ret = TRUE;
|
2011-08-04 01:09:12 +04:00
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, multi_opaque_rect->color, &brush_color, NULL))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
hBrush = gdi_CreateSolidBrush(brush_color);
|
|
|
|
|
|
|
|
if (!hBrush)
|
|
|
|
return FALSE;
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
for (i = 1; i < multi_opaque_rect->numRectangles + 1; i++)
|
2011-08-04 01:09:12 +04:00
|
|
|
{
|
2016-07-18 12:16:36 +03:00
|
|
|
const DELTA_RECT* rectangle = &multi_opaque_rect->rectangles[i];
|
2011-08-04 11:23:53 +04:00
|
|
|
gdi_CRgnToRect(rectangle->left, rectangle->top,
|
2016-07-14 13:42:24 +03:00
|
|
|
rectangle->width, rectangle->height, &rect);
|
2016-04-05 18:07:45 +03:00
|
|
|
gdi_FillRect(gdi->drawing->hdc, &rect, hBrush);
|
2011-08-13 12:52:05 +04:00
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-18 12:16:36 +03:00
|
|
|
gdi_DeleteObject((HGDIOBJECT) hBrush);
|
2015-04-14 11:14:23 +03:00
|
|
|
return ret;
|
2011-08-02 20:59:45 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_line_to(rdpContext* context, const LINE_TO_ORDER* lineTo)
|
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;
|
2016-07-18 12:16:36 +03:00
|
|
|
UINT32 SrcFormat;
|
2014-02-13 20:59:05 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2016-07-18 12:16:36 +03:00
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, lineTo->backColor, &color, &SrcFormat))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
2011-08-03 11:29:56 +04:00
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
if (!(hPen = gdi_CreatePen(lineTo->penStyle, lineTo->penWidth, color,
|
2016-07-14 13:42:24 +03:00
|
|
|
SrcFormat, &gdi->palette)))
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2015-06-26 15:32:38 +03:00
|
|
|
|
2015-04-26 23:28:49 +03:00
|
|
|
gdi_SelectObject(gdi->drawing->hdc, (HGDIOBJECT) hPen);
|
2014-02-13 20:59:05 +04:00
|
|
|
gdi_SetROP2(gdi->drawing->hdc, lineTo->bRop2);
|
|
|
|
gdi_MoveToEx(gdi->drawing->hdc, lineTo->nXStart, lineTo->nYStart, NULL);
|
|
|
|
gdi_LineTo(gdi->drawing->hdc, lineTo->nXEnd, lineTo->nYEnd);
|
2011-08-03 11:29:56 +04:00
|
|
|
gdi_DeleteObject((HGDIOBJECT) hPen);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-08-03 11:29:56 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_polyline(rdpContext* context, const POLYLINE_ORDER* polyline)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
UINT32 i;
|
2014-02-13 20:59:05 +04:00
|
|
|
INT32 x;
|
|
|
|
INT32 y;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 color;
|
2011-08-05 00:22:15 +04:00
|
|
|
HGDI_PEN hPen;
|
|
|
|
DELTA_POINT* points;
|
2016-07-18 12:16:36 +03:00
|
|
|
UINT32 SrcFormat;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2016-07-18 12:16:36 +03:00
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, polyline->penColor, &color, &SrcFormat))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2016-04-23 12:25:55 +03:00
|
|
|
if (!(hPen = gdi_CreatePen(GDI_PS_SOLID, 1, color, SrcFormat, &gdi->palette)))
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2015-06-26 15:32:38 +03:00
|
|
|
|
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-08-05 00:22:15 +04:00
|
|
|
points = polyline->points;
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2014-10-09 14:11:38 +04:00
|
|
|
for (i = 0; i < (int) polyline->numDeltaEntries; 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);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
static BOOL gdi_memblt(rdpContext* context, MEMBLT_ORDER* memblt)
|
2011-10-05 05:29:01 +04:00
|
|
|
{
|
2016-07-14 13:42:24 +03:00
|
|
|
gdiBitmap* bitmap = (gdiBitmap*) memblt->bitmap;
|
2011-11-22 03:11:43 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2015-06-26 15:32:38 +03:00
|
|
|
return gdi_BitBlt(gdi->drawing->hdc, memblt->nLeftRect, memblt->nTopRect,
|
2016-07-14 13:42:24 +03:00
|
|
|
memblt->nWidth, memblt->nHeight, bitmap->hdc,
|
|
|
|
memblt->nXSrc, memblt->nYSrc, gdi_rop3_code(memblt->bRop),
|
|
|
|
&gdi->palette);
|
2011-10-05 05:29:01 +04:00
|
|
|
}
|
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
static BOOL gdi_mem3blt(rdpContext* context, MEM3BLT_ORDER* mem3blt)
|
2011-10-05 05:29:01 +04:00
|
|
|
{
|
2012-02-13 04:41:39 +04:00
|
|
|
HGDI_BRUSH originalBrush;
|
|
|
|
rdpGdi* gdi = context->gdi;
|
2015-04-14 11:14:23 +03:00
|
|
|
BOOL ret = TRUE;
|
2016-07-14 13:42:24 +03:00
|
|
|
const rdpBrush* brush = &mem3blt->brush;
|
|
|
|
gdiBitmap* bitmap = (gdiBitmap*) mem3blt->bitmap;
|
2016-07-18 12:16:36 +03:00
|
|
|
UINT32 foreColor;
|
|
|
|
UINT32 backColor;
|
|
|
|
UINT32 originalColor;
|
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, mem3blt->foreColor, &foreColor, NULL))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_decode_color(gdi, mem3blt->backColor, &backColor, NULL))
|
2016-07-18 12:16:36 +03:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
originalColor = gdi_SetTextColor(gdi->drawing->hdc, foreColor);
|
2016-07-14 13:42:24 +03:00
|
|
|
|
|
|
|
switch (brush->style)
|
2013-02-04 20:40:40 +04:00
|
|
|
{
|
2016-07-14 13:42:24 +03:00
|
|
|
case GDI_BS_SOLID:
|
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
gdi->drawing->hdc->brush = gdi_CreateSolidBrush(foreColor);
|
2013-02-04 20:40:40 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi->drawing->hdc->brush)
|
2015-04-14 11:14:23 +03:00
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_fail;
|
|
|
|
}
|
2014-10-22 05:56:10 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
ret = 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->palette);
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
|
|
|
break;
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
case GDI_BS_PATTERN:
|
2015-04-14 11:14:23 +03:00
|
|
|
{
|
2016-07-14 13:42:24 +03:00
|
|
|
HGDI_BITMAP hBmp;
|
|
|
|
UINT32 brushFormat;
|
2016-07-18 12:16:36 +03:00
|
|
|
BYTE* data = (BYTE*) _aligned_malloc(8 * 8 * GetBytesPerPixel(
|
|
|
|
gdi->drawing->hdc->format),
|
2016-07-14 13:42:24 +03:00
|
|
|
16);
|
2014-10-22 05:56:10 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!data)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
goto out_fail;
|
|
|
|
}
|
2013-02-04 20:40:40 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (brush->bpp > 1)
|
|
|
|
{
|
|
|
|
brushFormat = gdi_get_pixel_format(brush->bpp, FALSE);
|
|
|
|
|
2016-07-18 12:16:36 +03:00
|
|
|
if (!freerdp_image_copy(data, gdi->drawing->hdc->format, 0, 0, 0,
|
2016-07-14 13:42:24 +03:00
|
|
|
8, 8, brush->data, brushFormat,
|
|
|
|
0, 0, 0, &gdi->palette))
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
_aligned_free(data);
|
|
|
|
goto out_fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-18 12:16:36 +03:00
|
|
|
if (!freerdp_image_copy_from_monochrome(data, gdi->drawing->hdc->format, 0, 0,
|
|
|
|
0, 8, 8,
|
2016-07-14 13:42:24 +03:00
|
|
|
brush->data, backColor, foreColor,
|
|
|
|
&gdi->palette))
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
_aligned_free(data);
|
|
|
|
goto out_fail;
|
|
|
|
}
|
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
hBmp = gdi_CreateBitmap(8, 8, gdi->drawing->hdc->format, data);
|
2013-02-04 20:40:40 +04:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!hBmp)
|
|
|
|
{
|
|
|
|
ret = FALSE;
|
|
|
|
_aligned_free(data);
|
|
|
|
goto out_fail;
|
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
originalBrush = gdi->drawing->hdc->brush;
|
|
|
|
gdi->drawing->hdc->brush = gdi_CreatePatternBrush(hBmp);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-14 13:42:24 +03:00
|
|
|
if (!gdi->drawing->hdc->brush)
|
|
|
|
{
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) hBmp);
|
|
|
|
goto out_fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdi->drawing->hdc->brush->nXOrg = brush->x;
|
|
|
|
gdi->drawing->hdc->brush->nYOrg = brush->y;
|
|
|
|
ret = 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->palette);
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->drawing->hdc->brush);
|
|
|
|
gdi->drawing->hdc->brush = originalBrush;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
WLog_ERR(TAG, "Mem3Blt unimplemented brush style:%d", brush->style);
|
|
|
|
break;
|
2012-02-13 04:41:39 +04:00
|
|
|
}
|
2014-02-12 03:02:26 +04:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
out_fail:
|
2014-02-12 03:02:26 +04:00
|
|
|
gdi_SetTextColor(gdi->drawing->hdc, originalColor);
|
2015-04-14 11:14:23 +03:00
|
|
|
return ret;
|
2012-02-13 00:21:08 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_polygon_sc(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const POLYGON_SC_ORDER* polygon_sc)
|
2012-02-13 00:21:08 +04:00
|
|
|
{
|
2015-06-26 15:32:38 +03:00
|
|
|
WLog_VRB(TAG, "%s: not implemented", __FUNCTION__);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2012-02-13 00:21:08 +04:00
|
|
|
}
|
2011-10-05 05:29:01 +04:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
static BOOL gdi_polygon_cb(rdpContext* context, POLYGON_CB_ORDER* polygon_cb)
|
2012-02-13 00:21:08 +04:00
|
|
|
{
|
2015-06-26 15:32:38 +03:00
|
|
|
WLog_VRB(TAG, "%s: not implemented", __FUNCTION__);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2012-02-13 00:21:08 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_ellipse_sc(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const ELLIPSE_SC_ORDER* ellipse_sc)
|
2012-02-13 00:21:08 +04:00
|
|
|
{
|
2015-06-26 15:32:38 +03:00
|
|
|
WLog_VRB(TAG, "%s: not implemented", __FUNCTION__);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2012-02-13 00:21:08 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_ellipse_cb(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const ELLIPSE_CB_ORDER* ellipse_cb)
|
2012-02-13 00:21:08 +04:00
|
|
|
{
|
2015-06-26 15:32:38 +03:00
|
|
|
WLog_VRB(TAG, "%s: not implemented", __FUNCTION__);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-10-05 05:29:01 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_frame_marker(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const FRAME_MARKER_ORDER* frameMarker)
|
2014-09-06 00:06:19 +04:00
|
|
|
{
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-09-06 00:06:19 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
BOOL gdi_surface_frame_marker(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const SURFACE_FRAME_MARKER* surfaceFrameMarker)
|
2013-07-15 17:00:18 +04:00
|
|
|
{
|
|
|
|
DEBUG_GDI("frameId %d frameAction %d",
|
2016-07-14 13:42:24 +03:00
|
|
|
surfaceFrameMarker->frameId,
|
|
|
|
surfaceFrameMarker->frameAction);
|
2013-07-15 17:00:18 +04:00
|
|
|
|
2014-09-19 22:45:58 +04:00
|
|
|
switch (surfaceFrameMarker->frameAction)
|
2013-07-15 17:00:18 +04:00
|
|
|
{
|
|
|
|
case SURFACECMD_FRAMEACTION_BEGIN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SURFACECMD_FRAMEACTION_END:
|
2014-09-19 22:45:58 +04:00
|
|
|
if (context->settings->FrameAcknowledge > 0)
|
2013-07-15 17:00:18 +04:00
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
IFCALL(context->update->SurfaceFrameAcknowledge, context,
|
2016-04-25 10:42:59 +03:00
|
|
|
surfaceFrameMarker->frameId);
|
2013-07-15 17:00:18 +04:00
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2013-07-15 17:00:18 +04:00
|
|
|
break;
|
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2013-07-15 17:00:18 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_surface_bits(rdpContext* context,
|
2016-07-14 13:42:24 +03:00
|
|
|
const SURFACE_BITS_COMMAND* cmd)
|
2011-08-10 18:51:55 +04:00
|
|
|
{
|
2011-11-22 04:41:49 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
2011-08-10 19:55:47 +04:00
|
|
|
DEBUG_GDI("destLeft %d destTop %d destRight %d destBottom %d "
|
2016-07-14 13:42:24 +03:00
|
|
|
"bpp %d codecID %d width %d height %d length %d",
|
|
|
|
cmd->destLeft, cmd->destTop, cmd->destRight, cmd->destBottom,
|
|
|
|
cmd->bpp, cmd->codecID, cmd->width, cmd->height, cmd->bitmapDataLength);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-04-25 10:42:59 +03:00
|
|
|
switch (cmd->codecID)
|
2016-04-11 18:30:29 +03:00
|
|
|
{
|
2016-04-25 10:42:59 +03:00
|
|
|
case RDP_CODEC_ID_REMOTEFX:
|
|
|
|
{
|
2016-07-13 17:06:59 +03:00
|
|
|
if (!rfx_process_message(context->codecs->rfx, cmd->bitmapData,
|
2016-07-14 13:42:24 +03:00
|
|
|
PIXEL_FORMAT_BGRX32,
|
|
|
|
cmd->bitmapDataLength,
|
|
|
|
0, 0,
|
|
|
|
gdi->bitmap_buffer, gdi->dstFormat,
|
|
|
|
cmd->width * GetBytesPerPixel(gdi->dstFormat),
|
|
|
|
cmd->height, NULL))
|
2016-04-25 10:42:59 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "Failed to process RemoteFX message");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RDP_CODEC_ID_NSCODEC:
|
|
|
|
{
|
2016-07-13 17:06:59 +03:00
|
|
|
if (!nsc_process_message(context->codecs->nsc, cmd->bpp, cmd->width,
|
2016-07-14 13:42:24 +03:00
|
|
|
cmd->height, cmd->bitmapData,
|
|
|
|
cmd->bitmapDataLength, gdi->primary_buffer,
|
|
|
|
gdi->dstFormat, gdi->stride, cmd->destLeft, cmd->destTop,
|
|
|
|
cmd->width, cmd->height))
|
2016-04-25 10:42:59 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RDP_CODEC_ID_NONE:
|
|
|
|
{
|
|
|
|
if (!freerdp_image_copy(gdi->primary_buffer, gdi->dstFormat, gdi->stride,
|
2016-07-14 13:42:24 +03:00
|
|
|
cmd->destLeft, cmd->destTop, cmd->width, cmd->height,
|
|
|
|
cmd->bitmapData, PIXEL_FORMAT_XRGB32_VF, 0, 0, 0,
|
|
|
|
&gdi->palette))
|
2016-04-25 10:42:59 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
WLog_ERR(TAG, "Unsupported codecID %d", cmd->codecID);
|
|
|
|
break;
|
2011-08-10 18:51:55 +04:00
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
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
|
|
|
|
*/
|
|
|
|
|
2016-07-18 15:16:13 +03:00
|
|
|
static 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-10 18:51:55 +04:00
|
|
|
update->SurfaceBits = gdi_surface_bits;
|
2013-07-15 17:00:18 +04:00
|
|
|
update->SurfaceFrameMarker = gdi_surface_frame_marker;
|
2014-09-06 00:06:19 +04:00
|
|
|
update->altsec->FrameMarker = gdi_frame_marker;
|
2011-07-01 05:23:36 +04:00
|
|
|
}
|
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
static BOOL gdi_init_primary(rdpGdi* gdi, UINT32 stride, UINT32 format,
|
|
|
|
BYTE* buffer, void (*pfree)(void*))
|
2011-09-07 09:26:17 +04:00
|
|
|
{
|
2015-05-08 22:39:23 +03:00
|
|
|
gdi->primary = (gdiBitmap*) calloc(1, sizeof(gdiBitmap));
|
2014-07-08 23:07:19 +04:00
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (format > 0)
|
|
|
|
gdi->dstFormat = format;
|
|
|
|
|
|
|
|
if (stride > 0)
|
|
|
|
gdi->stride = stride;
|
|
|
|
|
2014-07-08 23:07:19 +04:00
|
|
|
if (!gdi->primary)
|
2015-05-08 22:39:23 +03:00
|
|
|
goto fail_primary;
|
2014-07-08 23:07:19 +04:00
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!(gdi->primary->hdc = gdi_CreateCompatibleDC(gdi->hdc)))
|
|
|
|
goto fail_hdc;
|
2013-09-04 05:48:26 +04:00
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
if (!buffer)
|
|
|
|
{
|
|
|
|
gdi->primary->bitmap = gdi_CreateCompatibleBitmap(
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->hdc, gdi->width, gdi->height);
|
2016-04-05 18:07:45 +03:00
|
|
|
}
|
2013-09-04 05:48:26 +04:00
|
|
|
else
|
2016-04-05 18:07:45 +03:00
|
|
|
{
|
|
|
|
gdi->primary->bitmap = gdi_CreateBitmapEx(gdi->width, gdi->height,
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->dstFormat,
|
|
|
|
gdi->stride,
|
|
|
|
gdi->primary_buffer, pfree);
|
2016-04-05 18:07:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
gdi->stride = gdi->primary->bitmap->scanline;
|
2013-09-04 05:48:26 +04:00
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!gdi->primary->bitmap)
|
|
|
|
goto fail_bitmap;
|
|
|
|
|
2013-09-04 05:48:26 +04:00
|
|
|
gdi_SelectObject(gdi->primary->hdc, (HGDIOBJECT) gdi->primary->bitmap);
|
|
|
|
gdi->primary->org_bitmap = NULL;
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi->primary_buffer = gdi->primary->bitmap->data;
|
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!(gdi->primary->hdc->hwnd = (HGDI_WND) calloc(1, sizeof(GDI_WND))))
|
|
|
|
goto fail_hwnd;
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!(gdi->primary->hdc->hwnd->invalid = gdi_CreateRectRgn(0, 0, 0, 0)))
|
|
|
|
goto fail_hwnd;
|
2011-09-07 09:26:17 +04:00
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
gdi->primary->hdc->hwnd->invalid->null = 1;
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi->primary->hdc->hwnd->count = 32;
|
2016-04-05 18:07:45 +03:00
|
|
|
|
|
|
|
if (!(gdi->primary->hdc->hwnd->cinvalid = (HGDI_RGN) calloc(
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->primary->hdc->hwnd->count, sizeof(GDI_RGN))))
|
2015-05-08 22:39:23 +03:00
|
|
|
goto fail_hwnd;
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2011-09-07 09:26:17 +04:00
|
|
|
gdi->primary->hdc->hwnd->ninvalid = 0;
|
2015-05-08 22:39:23 +03:00
|
|
|
|
|
|
|
if (!gdi->drawing)
|
|
|
|
gdi->drawing = gdi->primary;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
fail_hwnd:
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi->primary->bitmap);
|
|
|
|
fail_bitmap:
|
|
|
|
gdi_DeleteDC(gdi->primary->hdc);
|
|
|
|
fail_hdc:
|
|
|
|
free(gdi->primary);
|
|
|
|
gdi->primary = NULL;
|
|
|
|
fail_primary:
|
|
|
|
return FALSE;
|
2011-09-07 09:26:17 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
BOOL gdi_resize(rdpGdi* gdi, UINT32 width, UINT32 height)
|
|
|
|
{
|
|
|
|
return gdi_resize_ex(gdi, width, height, -1, -1, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL gdi_resize_ex(rdpGdi* gdi, UINT32 width, UINT32 height,
|
2016-07-18 13:36:22 +03:00
|
|
|
UINT32 stride, UINT32 format, BYTE* buffer,
|
2016-07-14 13:42:24 +03:00
|
|
|
void (*pfree)(void*))
|
2011-09-07 09:26:17 +04:00
|
|
|
{
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!gdi || !gdi->primary)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (gdi->width == width && gdi->height == height)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (gdi->drawing == gdi->primary)
|
|
|
|
gdi->drawing = NULL;
|
|
|
|
|
|
|
|
gdi->width = width;
|
|
|
|
gdi->height = height;
|
|
|
|
gdi_bitmap_free_ex(gdi->primary);
|
|
|
|
gdi->primary = NULL;
|
|
|
|
gdi->primary_buffer = NULL;
|
2016-07-18 13:36:22 +03:00
|
|
|
return gdi_init_primary(gdi, stride, format, buffer, pfree);
|
2011-09-07 09:26:17 +04:00
|
|
|
}
|
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
/**
|
|
|
|
* Initialize GDI
|
|
|
|
* @param inst current instance
|
|
|
|
* @return
|
|
|
|
*/
|
2016-04-05 18:07:45 +03:00
|
|
|
BOOL gdi_init(freerdp* instance, UINT32 format)
|
|
|
|
{
|
|
|
|
return gdi_init_ex(instance, format, 0, NULL, _aligned_free);
|
|
|
|
}
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
BOOL gdi_init_ex(freerdp* instance, UINT32 format, UINT32 stride, BYTE* buffer,
|
2016-07-14 13:42:24 +03:00
|
|
|
void (*pfree)(void*))
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
UINT32 SrcFormat = gdi_get_pixel_format(instance->settings->ColorDepth, FALSE);
|
2016-07-11 12:52:56 +03:00
|
|
|
rdpGdi* gdi = (rdpGdi*) calloc(1, sizeof(rdpGdi));
|
|
|
|
rdpContext* context = instance->context;
|
2014-07-08 23:07:19 +04:00
|
|
|
|
|
|
|
if (!gdi)
|
2016-07-11 12:52:56 +03:00
|
|
|
goto fail;
|
2011-10-16 08:50:10 +04:00
|
|
|
|
|
|
|
instance->context->gdi = gdi;
|
2014-09-12 22:57:44 +04:00
|
|
|
gdi->context = instance->context;
|
2012-11-07 19:33:06 +04:00
|
|
|
gdi->width = instance->settings->DesktopWidth;
|
|
|
|
gdi->height = instance->settings->DesktopHeight;
|
2016-04-05 18:07:45 +03:00
|
|
|
gdi->dstFormat = format;
|
2011-07-01 05:23:36 +04:00
|
|
|
/* default internal buffer format */
|
2016-04-05 18:07:45 +03:00
|
|
|
WLog_INFO(TAG, "Local framebuffer format %s",
|
2016-07-14 13:42:24 +03:00
|
|
|
GetColorFormatName(gdi->dstFormat));
|
2016-04-05 18:07:45 +03:00
|
|
|
WLog_INFO(TAG, "Remote framebuffer format %s",
|
2016-07-14 13:42:24 +03:00
|
|
|
GetColorFormatName(SrcFormat));
|
2014-09-16 00:08:06 +04:00
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!(gdi->hdc = gdi_GetDC()))
|
2016-07-11 12:52:56 +03:00
|
|
|
goto fail;
|
2015-05-08 22:39:23 +03:00
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
gdi->hdc->format = gdi->dstFormat;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2016-07-18 13:36:22 +03:00
|
|
|
if (!gdi_init_primary(gdi, stride, gdi->dstFormat, buffer, pfree))
|
2016-07-11 12:52:56 +03:00
|
|
|
goto fail;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2016-07-15 17:23:00 +03:00
|
|
|
if (!(context->cache = cache_new(instance->settings)))
|
|
|
|
goto fail;
|
2011-10-13 23:51:07 +04:00
|
|
|
|
2016-07-14 17:08:06 +03:00
|
|
|
if (!freerdp_client_codecs_prepare(context->codecs, FREERDP_CODEC_ALL,
|
|
|
|
gdi->width, gdi->height))
|
2016-07-11 12:52:56 +03:00
|
|
|
goto fail;
|
2016-04-19 23:11:12 +03:00
|
|
|
|
2011-07-28 09:17:17 +04:00
|
|
|
gdi_register_update_callbacks(instance->update);
|
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
|
|
|
|
2015-05-08 22:39:23 +03:00
|
|
|
if (!gdi_register_graphics(instance->context->graphics))
|
2016-07-11 12:52:56 +03:00
|
|
|
goto fail;
|
2011-08-05 06:43:36 +04:00
|
|
|
|
2014-09-12 04:12:32 +04:00
|
|
|
instance->update->BitmapUpdate = gdi_bitmap_update;
|
2015-05-08 22:39:23 +03:00
|
|
|
return TRUE;
|
2016-07-11 12:52:56 +03:00
|
|
|
fail:
|
|
|
|
gdi_free(instance);
|
2015-05-08 22:39:23 +03:00
|
|
|
WLog_ERR(TAG, "failed to initialize gdi");
|
|
|
|
return FALSE;
|
2011-07-01 05:23:36 +04:00
|
|
|
}
|
|
|
|
|
2011-07-28 09:17:17 +04:00
|
|
|
void gdi_free(freerdp* instance)
|
2011-07-01 05:23:36 +04:00
|
|
|
{
|
2016-07-11 12:52:56 +03:00
|
|
|
rdpGdi* gdi;
|
|
|
|
rdpContext* context;
|
|
|
|
|
|
|
|
if (!instance || !instance->context)
|
|
|
|
return;
|
2011-07-01 05:23:36 +04:00
|
|
|
|
2016-07-11 12:52:56 +03:00
|
|
|
gdi = instance->context->gdi;
|
2016-07-14 13:42:24 +03:00
|
|
|
|
2011-07-01 05:23:36 +04:00
|
|
|
if (gdi)
|
|
|
|
{
|
2011-10-13 23:51:07 +04:00
|
|
|
gdi_bitmap_free_ex(gdi->primary);
|
2011-07-27 17:45:44 +04:00
|
|
|
gdi_DeleteDC(gdi->hdc);
|
2011-07-01 05:23:36 +04:00
|
|
|
free(gdi);
|
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2016-07-11 12:52:56 +03:00
|
|
|
context = instance->context;
|
2016-07-15 17:23:00 +03:00
|
|
|
cache_free(context->cache);
|
|
|
|
context->cache = NULL;
|
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
|
|
|
|