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

Latest commit

 

History

History
105 lines (85 loc) · 3.29 KB

SDL_win32shape.c

File metadata and controls

105 lines (85 loc) · 3.29 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 7, 2010
Aug 7, 2010
23
#include "SDL_assert.h"
Aug 2, 2010
Aug 2, 2010
24
#include "SDL_win32shape.h"
Jul 30, 2010
Jul 30, 2010
25
#include "SDL_win32video.h"
Jun 5, 2010
Jun 5, 2010
26
Jul 7, 2010
Jul 7, 2010
27
SDL_WindowShaper* Win32_CreateShaper(SDL_Window * window) {
Jul 30, 2010
Jul 30, 2010
28
29
int resized_properly;
SDL_WindowShaper* result = (SDL_WindowShaper *)SDL_malloc(sizeof(SDL_WindowShaper));
Jul 7, 2010
Jul 7, 2010
30
result->window = window;
Jul 23, 2010
Jul 23, 2010
31
32
result->mode.mode = ShapeModeDefault;
result->mode.parameters.binarizationCutoff = 1;
Jul 7, 2010
Jul 7, 2010
33
result->usershownflag = 0;
Aug 2, 2010
Aug 2, 2010
34
35
result->driverdata = (SDL_ShapeData*)SDL_malloc(sizeof(SDL_ShapeData));
((SDL_ShapeData*)result->driverdata)->mask_tree = NULL;
Jul 7, 2010
Jul 7, 2010
36
37
//Put some driver-data here.
window->shaper = result;
Jul 30, 2010
Jul 30, 2010
38
39
40
41
resized_properly = Win32_ResizeWindowShape(window);
if (resized_properly != 0)
return NULL;
Jul 7, 2010
Jul 7, 2010
42
43
44
return result;
}
Jul 30, 2010
Jul 30, 2010
45
46
void CombineRectRegions(SDL_ShapeTree* node, void* closure) {
HRGN* mask_region = (HRGN *)closure;
Aug 7, 2010
Aug 7, 2010
47
int combined = -1;
Jul 29, 2010
Jul 29, 2010
48
49
if(node->kind == OpaqueShape) {
HRGN temp_region = CreateRectRgn(node->data.shape.x,node->data.shape.y,node->data.shape.w,node->data.shape.h);
Aug 7, 2010
Aug 7, 2010
50
51
52
SDL_assert(temp_region != NULL);
combined = CombineRgn(*mask_region,*mask_region,temp_region, RGN_OR);
SDL_assert(combined == SIMPLEREGION || combined == COMPLEXREGION);
Jul 29, 2010
Jul 29, 2010
53
54
55
56
DeleteObject(temp_region);
}
}
Jul 7, 2010
Jul 7, 2010
57
int Win32_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shapeMode) {
Jul 30, 2010
Jul 30, 2010
58
59
SDL_ShapeData *data;
HRGN mask_region;
Aug 2, 2010
Aug 2, 2010
60
SDL_WindowData *windowdata;
Jul 30, 2010
Jul 30, 2010
61
62
63
64
HWND hwnd;
if (shaper == NULL || shape == NULL)
return SDL_INVALID_SHAPE_ARGUMENT;
Aug 2, 2010
Aug 2, 2010
65
if(shape->format->Amask == 0 && shapeMode->mode != ShapeModeColorKey || shape->w != shaper->window->w || shape->h != shaper->window->h)
Jul 29, 2010
Jul 29, 2010
66
return SDL_INVALID_SHAPE_ARGUMENT;
Jul 7, 2010
Jul 7, 2010
67
Jul 30, 2010
Jul 30, 2010
68
data = (SDL_ShapeData*)shaper->driverdata;
Aug 2, 2010
Aug 2, 2010
69
70
if(data->mask_tree != NULL)
SDL_FreeShapeTree(&data->mask_tree);
Aug 7, 2010
Aug 7, 2010
71
data->mask_tree = SDL_CalculateShapeTree(*shapeMode,shape);
Jul 29, 2010
Jul 29, 2010
72
Jul 7, 2010
Jul 7, 2010
73
/*
Jul 29, 2010
Jul 29, 2010
74
* Start with empty region
Jul 7, 2010
Jul 7, 2010
75
*/
Jul 30, 2010
Jul 30, 2010
76
mask_region = CreateRectRgn(0, 0, 0, 0);
Jul 9, 2010
Jul 9, 2010
77
Jul 29, 2010
Jul 29, 2010
78
SDL_TraverseShapeTree(data->mask_tree,&CombineRectRegions,&mask_region);
Jul 7, 2010
Jul 7, 2010
79
Jul 9, 2010
Jul 9, 2010
80
81
82
/*
* Set the new region mask for the window
*/
Aug 2, 2010
Aug 2, 2010
83
windowdata=(SDL_WindowData *)(shaper->window->driverdata);
Jul 30, 2010
Jul 30, 2010
84
hwnd = windowdata->hwnd;
Aug 7, 2010
Aug 7, 2010
85
SDL_assert(SetWindowRgn(hwnd, mask_region, TRUE) != 0);
Jul 29, 2010
Jul 29, 2010
86
87
return 0;
Jul 7, 2010
Jul 7, 2010
88
89
90
}
int Win32_ResizeWindowShape(SDL_Window *window) {
Jul 30, 2010
Jul 30, 2010
91
92
93
94
95
96
97
SDL_ShapeData* data;
if (window == NULL)
return -1;
data = (SDL_ShapeData *)window->shaper->driverdata;
if (data == NULL)
return -1;
Jul 7, 2010
Jul 7, 2010
98
Jul 29, 2010
Jul 29, 2010
99
100
if(data->mask_tree != NULL)
SDL_FreeShapeTree(&data->mask_tree);
Jul 7, 2010
Jul 7, 2010
101
Jul 19, 2010
Jul 19, 2010
102
window->shaper->usershownflag |= window->flags & SDL_WINDOW_SHOWN;
Jul 7, 2010
Jul 7, 2010
103
104
105
return 0;
}