Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
104 lines (86 loc) · 3.58 KB

SDL_windowsshape.c

File metadata and controls

104 lines (86 loc) · 3.58 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
SDL - Simple DirectMedia Layer
Copyright (C) 2010 Eli Gottlieb
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Eli Gottlieb
eligottlieb@gmail.com
*/
Aug 14, 2010
Aug 14, 2010
23
#include <stdio.h>
Aug 15, 2010
Aug 15, 2010
24
#include "SDL_assert.h"
Jan 21, 2011
Jan 21, 2011
25
26
#include "SDL_windowsshape.h"
#include "SDL_windowsvideo.h"
Jun 5, 2010
Jun 5, 2010
27
Aug 9, 2010
Aug 9, 2010
28
29
30
31
32
33
34
SDL_WindowShaper*
Win32_CreateShaper(SDL_Window * window) {
int resized_properly;
SDL_WindowShaper* result = (SDL_WindowShaper *)SDL_malloc(sizeof(SDL_WindowShaper));
result->window = window;
result->mode.mode = ShapeModeDefault;
result->mode.parameters.binarizationCutoff = 1;
Aug 15, 2010
Aug 15, 2010
35
result->userx = result->usery = 0;
Aug 9, 2010
Aug 9, 2010
36
37
38
39
40
41
42
result->driverdata = (SDL_ShapeData*)SDL_malloc(sizeof(SDL_ShapeData));
((SDL_ShapeData*)result->driverdata)->mask_tree = NULL;
//Put some driver-data here.
window->shaper = result;
resized_properly = Win32_ResizeWindowShape(window);
if (resized_properly != 0)
return NULL;
Aug 16, 2010
Aug 16, 2010
43
Aug 9, 2010
Aug 9, 2010
44
return result;
Jul 7, 2010
Jul 7, 2010
45
46
}
Aug 9, 2010
Aug 9, 2010
47
void
Aug 10, 2010
Aug 10, 2010
48
CombineRectRegions(SDL_ShapeTree* node,void* closure) {
Aug 15, 2010
Aug 15, 2010
49
HRGN mask_region = *((HRGN*)closure),temp_region = NULL;
Aug 9, 2010
Aug 9, 2010
50
if(node->kind == OpaqueShape) {
Aug 15, 2010
Aug 15, 2010
51
//Win32 API regions exclude their outline, so we widen the region by one pixel in each direction to include the real outline.
Aug 16, 2010
Aug 16, 2010
52
temp_region = CreateRectRgn(node->data.shape.x,node->data.shape.y,node->data.shape.x + node->data.shape.w + 1,node->data.shape.y + node->data.shape.h + 1);
Aug 15, 2010
Aug 15, 2010
53
54
55
56
57
58
59
if(mask_region != NULL) {
CombineRgn(mask_region,mask_region,temp_region,RGN_OR);
DeleteObject(temp_region);
}
else
*((HRGN*)closure) = temp_region;
}
Aug 10, 2010
Aug 10, 2010
60
61
}
Aug 9, 2010
Aug 9, 2010
62
int
Aug 14, 2010
Aug 14, 2010
63
Win32_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode) {
Aug 9, 2010
Aug 9, 2010
64
SDL_ShapeData *data;
Aug 15, 2010
Aug 15, 2010
65
HRGN mask_region = NULL;
Jul 30, 2010
Jul 30, 2010
66
Aug 9, 2010
Aug 9, 2010
67
68
if (shaper == NULL || shape == NULL)
return SDL_INVALID_SHAPE_ARGUMENT;
Aug 14, 2010
Aug 14, 2010
69
if(shape->format->Amask == 0 && shape_mode->mode != ShapeModeColorKey || shape->w != shaper->window->w || shape->h != shaper->window->h)
Aug 9, 2010
Aug 9, 2010
70
71
72
73
74
return SDL_INVALID_SHAPE_ARGUMENT;
data = (SDL_ShapeData*)shaper->driverdata;
if(data->mask_tree != NULL)
SDL_FreeShapeTree(&data->mask_tree);
Aug 14, 2010
Aug 14, 2010
75
data->mask_tree = SDL_CalculateShapeTree(*shape_mode,shape);
Aug 9, 2010
Aug 9, 2010
76
Aug 15, 2010
Aug 15, 2010
77
78
SDL_TraverseShapeTree(data->mask_tree,&CombineRectRegions,&mask_region);
SDL_assert(mask_region != NULL);
Aug 10, 2010
Aug 10, 2010
79
80
SetWindowRgn(((SDL_WindowData *)(shaper->window->driverdata))->hwnd, mask_region, TRUE);
Aug 9, 2010
Aug 9, 2010
81
82
return 0;
Jul 7, 2010
Jul 7, 2010
83
84
}
Aug 9, 2010
Aug 9, 2010
85
86
87
int
Win32_ResizeWindowShape(SDL_Window *window) {
SDL_ShapeData* data;
Jul 30, 2010
Jul 30, 2010
88
Aug 9, 2010
Aug 9, 2010
89
90
91
92
93
94
95
96
if (window == NULL)
return -1;
data = (SDL_ShapeData *)window->shaper->driverdata;
if (data == NULL)
return -1;
if(data->mask_tree != NULL)
SDL_FreeShapeTree(&data->mask_tree);
Aug 16, 2010
Aug 16, 2010
97
98
99
100
101
if(window->shaper->hasshape == SDL_TRUE) {
window->shaper->userx = window->x;
window->shaper->usery = window->y;
SDL_SetWindowPosition(window,-1000,-1000);
}
Aug 9, 2010
Aug 9, 2010
102
103
return 0;
Jul 7, 2010
Jul 7, 2010
104
}