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

Latest commit

 

History

History
145 lines (123 loc) · 5.04 KB

SDL_win32shape.c

File metadata and controls

145 lines (123 loc) · 5.04 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 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
Aug 9, 2010
Aug 9, 2010
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
result->usershownflag = 0;
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;
Jul 30, 2010
Jul 30, 2010
42
Aug 9, 2010
Aug 9, 2010
43
return result;
Jul 7, 2010
Jul 7, 2010
44
45
}
Aug 10, 2010
Aug 10, 2010
46
47
48
49
50
typedef struct {
POINT corners[4];
void* next;
} SDL_ShapeRect;
Aug 9, 2010
Aug 9, 2010
51
void
Aug 10, 2010
Aug 10, 2010
52
CombineRectRegions(SDL_ShapeTree* node,void* closure) {
Aug 14, 2010
Aug 14, 2010
53
char debug_str[200];
Aug 10, 2010
Aug 10, 2010
54
SDL_ShapeRect* rect_list = *((SDL_ShapeRect**)closure);
Aug 9, 2010
Aug 9, 2010
55
if(node->kind == OpaqueShape) {
Aug 10, 2010
Aug 10, 2010
56
SDL_ShapeRect* rect = SDL_malloc(sizeof(SDL_ShapeRect));
Aug 14, 2010
Aug 14, 2010
57
58
59
60
61
sprintf_s(&debug_str[0],200,"x: %u y: %u, x+w: %u, y+h: %u\n",
node->data.shape.x,node->data.shape.y,
node->data.shape.x + node->data.shape.w,node->data.shape.y + node->data.shape.h);
OutputDebugStringA(debug_str);
OutputDebugStringA("Converting SDL_ShapeTree opaque node to Windows rectangle.\n");
Aug 10, 2010
Aug 10, 2010
62
63
64
65
66
67
rect->corners[0].x = node->data.shape.x; rect->corners[0].y = node->data.shape.y;
rect->corners[1].x = node->data.shape.x + node->data.shape.w; rect->corners[1].y = node->data.shape.y;
rect->corners[2].x = node->data.shape.x + node->data.shape.w; rect->corners[2].y = node->data.shape.y + node->data.shape.h;
rect->corners[3].x = node->data.shape.x; rect->corners[3].y = node->data.shape.y + node->data.shape.h;
rect->next = *((SDL_ShapeRect**)closure);
*((SDL_ShapeRect**)closure) = rect;
Aug 9, 2010
Aug 9, 2010
68
}
Jul 29, 2010
Jul 29, 2010
69
70
}
Aug 10, 2010
Aug 10, 2010
71
72
73
74
75
76
77
Uint32 num_shape_rects(SDL_ShapeRect* rect) {
if(rect == NULL)
return 0;
else
return 1 + num_shape_rects(rect->next);
}
Aug 9, 2010
Aug 9, 2010
78
int
Aug 14, 2010
Aug 14, 2010
79
Win32_SetWindowShape(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode) {
Aug 9, 2010
Aug 9, 2010
80
81
SDL_ShapeData *data;
HRGN mask_region;
Aug 10, 2010
Aug 10, 2010
82
83
84
85
SDL_ShapeRect* rects = NULL,*old = NULL;
Uint16 num_rects = 0,i = 0;
int* polygonVertexNumbers = NULL;
POINT* polygons = NULL;
Aug 14, 2010
Aug 14, 2010
86
char debug_str[200];
Jul 30, 2010
Jul 30, 2010
87
Aug 9, 2010
Aug 9, 2010
88
89
if (shaper == NULL || shape == NULL)
return SDL_INVALID_SHAPE_ARGUMENT;
Aug 14, 2010
Aug 14, 2010
90
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
91
92
93
94
95
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
96
data->mask_tree = SDL_CalculateShapeTree(*shape_mode,shape);
Aug 9, 2010
Aug 9, 2010
97
Aug 10, 2010
Aug 10, 2010
98
99
100
101
102
103
104
SDL_TraverseShapeTree(data->mask_tree,&CombineRectRegions,&rects);
num_rects = num_shape_rects(rects);
polygonVertexNumbers = (int*)SDL_malloc(sizeof(int)*num_rects);
for(i=0;i<num_rects;i++)
polygonVertexNumbers[i] = 4;
polygons = (POINT*)SDL_malloc(sizeof(POINT)*4*num_rects);
for(i=0;i<num_rects*4;i++) {
Aug 14, 2010
Aug 14, 2010
105
polygons[i] = rects->corners[i % 4];
Aug 10, 2010
Aug 10, 2010
106
if(i % 4 == 3) {
Aug 14, 2010
Aug 14, 2010
107
108
109
110
sprintf_s(&debug_str[0],200,"x: %u y: %u, x+w: %u, y+h: %u\n",
rects->corners[0].x,rects->corners[0].y,
rects->corners[2].x,rects->corners[2].y);
OutputDebugStringA(debug_str);
Aug 10, 2010
Aug 10, 2010
111
112
113
114
115
116
old = rects;
rects = rects->next;
SDL_free(old);
}
}
Aug 9, 2010
Aug 9, 2010
117
118
119
/*
* Set the new region mask for the window
*/
Aug 12, 2010
Aug 12, 2010
120
mask_region = CreatePolyPolygonRgn(polygons,polygonVertexNumbers,num_rects,WINDING);
Aug 10, 2010
Aug 10, 2010
121
122
SetWindowRgn(((SDL_WindowData *)(shaper->window->driverdata))->hwnd, mask_region, TRUE);
Aug 12, 2010
Aug 12, 2010
123
124
SDL_free(polygons);
SDL_free(polygonVertexNumbers);
Aug 9, 2010
Aug 9, 2010
125
126
return 0;
Jul 7, 2010
Jul 7, 2010
127
128
}
Aug 9, 2010
Aug 9, 2010
129
130
131
int
Win32_ResizeWindowShape(SDL_Window *window) {
SDL_ShapeData* data;
Jul 30, 2010
Jul 30, 2010
132
Aug 9, 2010
Aug 9, 2010
133
134
135
136
137
138
139
140
141
142
143
144
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);
window->shaper->usershownflag |= window->flags & SDL_WINDOW_SHOWN;
return 0;
Jul 7, 2010
Jul 7, 2010
145
}