FreeRDP/libfreerdp/cache/brush.c

238 lines
5.4 KiB
C
Raw Normal View History

2011-08-05 21:58:46 +04:00
/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
2011-08-05 21:58:46 +04:00
* Brush Cache
*
* Copyright 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <winpr/crt.h>
#include <freerdp/log.h>
#include <freerdp/update.h>
#include <freerdp/freerdp.h>
#include <winpr/stream.h>
2011-08-05 21:58:46 +04:00
#include <freerdp/cache/brush.h>
2011-08-05 21:58:46 +04:00
#define TAG FREERDP_TAG("cache.brush")
BOOL update_gdi_patblt(rdpContext* context, PATBLT_ORDER* patblt)
{
BYTE style;
BOOL ret = TRUE;
rdpBrush* brush = &patblt->brush;
rdpCache* cache = context->cache;
style = brush->style;
if (brush->style & CACHED_BRUSH)
{
brush->data = brush_cache_get(cache->brush, brush->index, &brush->bpp);
brush->style = 0x03;
}
IFCALLRET(cache->brush->PatBlt, ret, context, patblt);
brush->style = style;
return ret;
}
BOOL update_gdi_polygon_sc(rdpContext* context, POLYGON_SC_ORDER* polygon_sc)
2012-02-13 02:14:59 +04:00
{
rdpCache* cache = context->cache;
return IFCALLRESULT(TRUE, cache->brush->PolygonSC, context, polygon_sc);
2012-02-13 02:14:59 +04:00
}
BOOL update_gdi_polygon_cb(rdpContext* context, POLYGON_CB_ORDER* polygon_cb)
2012-02-13 02:14:59 +04:00
{
BYTE style;
2012-02-13 02:14:59 +04:00
rdpBrush* brush = &polygon_cb->brush;
rdpCache* cache = context->cache;
BOOL ret = TRUE;
2012-02-13 02:14:59 +04:00
style = brush->style;
if (brush->style & CACHED_BRUSH)
{
brush->data = brush_cache_get(cache->brush, brush->index, &brush->bpp);
brush->style = 0x03;
}
IFCALLRET(cache->brush->PolygonCB, ret, context, polygon_cb);
2012-02-13 02:14:59 +04:00
brush->style = style;
return ret;
2012-02-13 02:14:59 +04:00
}
static BOOL update_gdi_cache_brush(rdpContext* context, CACHE_BRUSH_ORDER* cacheBrush)
{
int length;
void* data = NULL;
rdpCache* cache = context->cache;
2013-11-03 22:51:41 +04:00
length = cacheBrush->bpp * 64 / 8;
data = malloc(length);
if (!data)
return FALSE;
2013-11-03 22:51:41 +04:00
CopyMemory(data, cacheBrush->data, length);
2013-11-03 22:51:41 +04:00
brush_cache_put(cache->brush, cacheBrush->index, data, cacheBrush->bpp);
return TRUE;
}
2013-11-03 22:51:41 +04:00
void* brush_cache_get(rdpBrushCache* brushCache, UINT32 index, UINT32* bpp)
2011-08-05 21:58:46 +04:00
{
void* entry;
if (!brushCache)
return NULL;
if (!bpp)
return NULL;
2013-09-02 12:57:44 +04:00
2011-08-08 05:12:36 +04:00
if (*bpp == 1)
2011-08-05 21:58:46 +04:00
{
2013-11-03 22:51:41 +04:00
if (index >= brushCache->maxMonoEntries)
2011-08-08 05:12:36 +04:00
{
WLog_ERR(TAG, "invalid brush (%d bpp) index: 0x%04X", *bpp, index);
2011-08-08 05:12:36 +04:00
return NULL;
}
2013-11-03 22:51:41 +04:00
*bpp = brushCache->monoEntries[index].bpp;
entry = brushCache->monoEntries[index].entry;
2011-08-08 05:12:36 +04:00
}
else
{
2013-11-03 22:51:41 +04:00
if (index >= brushCache->maxEntries)
2011-08-08 05:12:36 +04:00
{
WLog_ERR(TAG, "invalid brush (%d bpp) index: 0x%04X", *bpp, index);
2011-08-08 05:12:36 +04:00
return NULL;
}
2013-11-03 22:51:41 +04:00
*bpp = brushCache->entries[index].bpp;
entry = brushCache->entries[index].entry;
2011-08-05 21:58:46 +04:00
}
if (entry == NULL)
{
WLog_ERR(TAG, "invalid brush (%d bpp) at index: 0x%04X", *bpp, index);
2011-08-05 21:58:46 +04:00
return NULL;
}
return entry;
}
2013-11-03 22:51:41 +04:00
void brush_cache_put(rdpBrushCache* brushCache, UINT32 index, void* entry, UINT32 bpp)
2011-08-05 21:58:46 +04:00
{
2011-08-08 05:12:36 +04:00
if (bpp == 1)
2011-08-05 21:58:46 +04:00
{
2013-11-03 22:51:41 +04:00
if (index >= brushCache->maxMonoEntries)
2011-08-08 05:12:36 +04:00
{
WLog_ERR(TAG, "invalid brush (%d bpp) index: 0x%04X", bpp, index);
2015-05-11 10:07:39 +03:00
free(entry);
2011-08-08 05:12:36 +04:00
return;
}
2015-05-11 10:07:39 +03:00
free(brushCache->monoEntries[index].entry);
2012-02-02 06:11:46 +04:00
2013-11-03 22:51:41 +04:00
brushCache->monoEntries[index].bpp = bpp;
brushCache->monoEntries[index].entry = entry;
2011-08-08 05:12:36 +04:00
}
else
{
2013-11-03 22:51:41 +04:00
if (index >= brushCache->maxEntries)
2011-08-08 05:12:36 +04:00
{
WLog_ERR(TAG, "invalid brush (%d bpp) index: 0x%04X", bpp, index);
2015-05-11 10:07:39 +03:00
free(entry);
2011-08-08 05:12:36 +04:00
return;
}
2015-05-11 10:07:39 +03:00
free(brushCache->entries[index].entry);
2012-02-02 06:11:46 +04:00
2013-11-03 22:51:41 +04:00
brushCache->entries[index].bpp = bpp;
brushCache->entries[index].entry = entry;
2011-08-05 21:58:46 +04:00
}
}
void brush_cache_register_callbacks(rdpUpdate* update)
{
rdpCache* cache = update->context->cache;
cache->brush->PatBlt = update->primary->PatBlt;
2012-02-13 02:14:59 +04:00
cache->brush->PolygonSC = update->primary->PolygonSC;
cache->brush->PolygonCB = update->primary->PolygonCB;
update->primary->PatBlt = update_gdi_patblt;
2012-02-13 02:14:59 +04:00
update->primary->PolygonSC = update_gdi_polygon_sc;
update->primary->PolygonCB = update_gdi_polygon_cb;
update->secondary->CacheBrush = update_gdi_cache_brush;
}
rdpBrushCache* brush_cache_new(rdpSettings* settings)
2011-08-05 21:58:46 +04:00
{
2013-11-03 22:51:41 +04:00
rdpBrushCache* brushCache;
2011-08-05 21:58:46 +04:00
2013-11-03 22:51:41 +04:00
brushCache = (rdpBrushCache*) malloc(sizeof(rdpBrushCache));
2011-08-05 21:58:46 +04:00
2013-11-03 22:51:41 +04:00
if (brushCache)
2011-08-05 21:58:46 +04:00
{
2013-11-03 22:51:41 +04:00
ZeroMemory(brushCache, sizeof(rdpBrushCache));
brushCache->settings = settings;
2011-08-05 21:58:46 +04:00
2013-11-03 22:51:41 +04:00
brushCache->maxEntries = 64;
brushCache->maxMonoEntries = 64;
2011-08-05 21:58:46 +04:00
2013-11-03 22:51:41 +04:00
brushCache->entries = (BRUSH_ENTRY*) malloc(sizeof(BRUSH_ENTRY) * brushCache->maxEntries);
ZeroMemory(brushCache->entries, sizeof(BRUSH_ENTRY) * brushCache->maxEntries);
2013-11-03 22:51:41 +04:00
brushCache->monoEntries = (BRUSH_ENTRY*) malloc(sizeof(BRUSH_ENTRY) * brushCache->maxMonoEntries);
ZeroMemory(brushCache->monoEntries, sizeof(BRUSH_ENTRY) * brushCache->maxMonoEntries);
2011-08-05 21:58:46 +04:00
}
2013-11-03 22:51:41 +04:00
return brushCache;
2011-08-05 21:58:46 +04:00
}
2013-11-03 22:51:41 +04:00
void brush_cache_free(rdpBrushCache* brushCache)
2011-08-05 21:58:46 +04:00
{
int i;
2013-11-03 22:51:41 +04:00
if (brushCache)
2011-08-05 21:58:46 +04:00
{
2013-11-03 22:51:41 +04:00
if (brushCache->entries)
{
2013-11-03 22:51:41 +04:00
for (i = 0; i < (int) brushCache->maxEntries; i++)
2015-05-11 10:07:39 +03:00
free(brushCache->entries[i].entry);
2013-11-03 22:51:41 +04:00
free(brushCache->entries);
}
2013-11-03 22:51:41 +04:00
if (brushCache->monoEntries)
{
2013-11-03 22:51:41 +04:00
for (i = 0; i < (int) brushCache->maxMonoEntries; i++)
2015-05-11 10:07:39 +03:00
free(brushCache->monoEntries[i].entry);
2013-11-03 22:51:41 +04:00
free(brushCache->monoEntries);
}
2013-11-03 22:51:41 +04:00
free(brushCache);
2011-08-05 21:58:46 +04:00
}
}