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

Latest commit

 

History

History
97 lines (77 loc) · 3.08 KB

SDL_win32shape.c

File metadata and controls

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