Mercurial > sdl-ios-xcode
annotate src/video/SDL_shape.c @ 4847:4201864f77e7
Fixing variable naming style.
author | egottlieb |
---|---|
date | Tue, 10 Aug 2010 16:30:53 -0400 |
parents | 4f1573996a65 |
children | b67815cf9f25 |
rev | line source |
---|---|
4765
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
1 /* |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
2 SDL - Simple DirectMedia Layer |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
3 Copyright (C) 2010 Eli Gottlieb |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
4 |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
5 This library is free software; you can redistribute it and/or |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
7 License as published by the Free Software Foundation; either |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
9 |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
10 This library is distributed in the hope that it will be useful, |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
13 Lesser General Public License for more details. |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
14 |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
18 |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
19 Eli Gottlieb |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
20 eligottlieb@gmail.com |
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
21 */ |
4769
83f9b95da263
Added the standard headers and footers that make SDL_shape.h and SDL_shape.c integrate properly into the build.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4766
diff
changeset
|
22 #include "SDL_config.h" |
4776
29dcad9c58b3
Removed and added back SDL_shape.{c,h} wholesale. Will this get them tracked properly?
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4775
diff
changeset
|
23 |
4769
83f9b95da263
Added the standard headers and footers that make SDL_shape.h and SDL_shape.c integrate properly into the build.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4766
diff
changeset
|
24 #include "SDL.h" |
4841
740e833b2c00
Fixed overwriting of SDL_shape.c in merge.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4839
diff
changeset
|
25 #include "SDL_assert.h" |
4769
83f9b95da263
Added the standard headers and footers that make SDL_shape.h and SDL_shape.c integrate properly into the build.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4766
diff
changeset
|
26 #include "SDL_video.h" |
83f9b95da263
Added the standard headers and footers that make SDL_shape.h and SDL_shape.c integrate properly into the build.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4766
diff
changeset
|
27 #include "SDL_sysvideo.h" |
4782
b6930aefd008
Finished X11 shaped-window functionality and removed ellipse+polygon rendering.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4781
diff
changeset
|
28 #include "SDL_pixels.h" |
b6930aefd008
Finished X11 shaped-window functionality and removed ellipse+polygon rendering.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4781
diff
changeset
|
29 #include "SDL_surface.h" |
4765
5ff305de5834
Added stub files, working on sample program SDLeyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
diff
changeset
|
30 #include "SDL_shape.h" |
4841
740e833b2c00
Fixed overwriting of SDL_shape.c in merge.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4839
diff
changeset
|
31 #include "SDL_shape_internals.h" |
4766
7b50faf23907
Moved SDL_shape.h, and building out the API as needed by SDL_Eyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4765
diff
changeset
|
32 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
33 SDL_Window* |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
34 SDL_CreateShapedWindow(const char *title,unsigned int x,unsigned int y,unsigned int w,unsigned int h,Uint32 flags) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
35 SDL_Window *result = SDL_CreateWindow(title,x,y,w,h,SDL_WINDOW_BORDERLESS | flags & !SDL_WINDOW_FULLSCREEN & !SDL_WINDOW_SHOWN); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
36 if(result != NULL) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
37 result->shaper = result->display->device->shape_driver.CreateShaper(result); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
38 if(result->shaper != NULL) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
39 result->shaper->usershownflag = flags & SDL_WINDOW_SHOWN; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
40 result->shaper->mode.mode = ShapeModeDefault; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
41 result->shaper->mode.parameters.binarizationCutoff = 1; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
42 result->shaper->hasshape = SDL_FALSE; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
43 return result; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
44 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
45 else { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
46 SDL_DestroyWindow(result); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
47 return NULL; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
48 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
49 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
50 else |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
51 return NULL; |
4766
7b50faf23907
Moved SDL_shape.h, and building out the API as needed by SDL_Eyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4765
diff
changeset
|
52 } |
7b50faf23907
Moved SDL_shape.h, and building out the API as needed by SDL_Eyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4765
diff
changeset
|
53 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
54 SDL_bool |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
55 SDL_IsShapedWindow(const SDL_Window *window) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
56 if(window == NULL) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
57 return SDL_FALSE; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
58 else |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
59 return (SDL_bool)(window->shaper != NULL); |
4782
b6930aefd008
Finished X11 shaped-window functionality and removed ellipse+polygon rendering.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4781
diff
changeset
|
60 } |
b6930aefd008
Finished X11 shaped-window functionality and removed ellipse+polygon rendering.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4781
diff
changeset
|
61 |
4813
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
62 /* REQUIRES that bitmap point to a w-by-h bitmap with ppb pixels-per-byte. */ |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
63 void |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
64 SDL_CalculateShapeBitmap(SDL_WindowShapeMode mode,SDL_Surface *shape,Uint8* bitmap,Uint8 ppb) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
65 int x = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
66 int y = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
67 Uint8 r = 0,g = 0,b = 0,alpha = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
68 Uint8* pixel = NULL; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
69 Uint32 bitmap_pixel,pixel_value = 0,mask_value = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
70 SDL_Color key; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
71 if(SDL_MUSTLOCK(shape)) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
72 SDL_LockSurface(shape); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
73 pixel = (Uint8*)shape->pixels; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
74 for(y = 0;y<shape->h;y++) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
75 for(x=0;x<shape->w;x++) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
76 alpha = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
77 pixel_value = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
78 pixel = (Uint8 *)(shape->pixels) + (y*shape->pitch) + (x*shape->format->BytesPerPixel); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
79 switch(shape->format->BytesPerPixel) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
80 case(1): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
81 pixel_value = *(Uint8*)pixel; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
82 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
83 case(2): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
84 pixel_value = *(Uint16*)pixel; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
85 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
86 case(3): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
87 pixel_value = *(Uint32*)pixel & (~shape->format->Amask); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
88 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
89 case(4): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
90 pixel_value = *(Uint32*)pixel; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
91 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
92 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
93 SDL_GetRGBA(pixel_value,shape->format,&r,&g,&b,&alpha); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
94 bitmap_pixel = y*shape->w + x; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
95 switch(mode.mode) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
96 case(ShapeModeDefault): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
97 mask_value = (alpha >= 1 ? 1 : 0); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
98 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
99 case(ShapeModeBinarizeAlpha): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
100 mask_value = (alpha >= mode.parameters.binarizationCutoff ? 1 : 0); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
101 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
102 case(ShapeModeReverseBinarizeAlpha): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
103 mask_value = (alpha <= mode.parameters.binarizationCutoff ? 1 : 0); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
104 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
105 case(ShapeModeColorKey): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
106 key = mode.parameters.colorKey; |
4846
4f1573996a65
Fixed a bug in X11 shaping that refused to use color-key mode.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4843
diff
changeset
|
107 mask_value = ((key.r != r || key.g != g || key.b != b) ? 1 : 0); |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
108 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
109 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
110 bitmap[bitmap_pixel / ppb] |= mask_value << (7 - ((ppb - 1) - (bitmap_pixel % ppb))); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
111 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
112 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
113 if(SDL_MUSTLOCK(shape)) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
114 SDL_UnlockSurface(shape); |
4766
7b50faf23907
Moved SDL_shape.h, and building out the API as needed by SDL_Eyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4765
diff
changeset
|
115 } |
7b50faf23907
Moved SDL_shape.h, and building out the API as needed by SDL_Eyes.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4765
diff
changeset
|
116 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
117 SDL_ShapeTree* |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
118 RecursivelyCalculateShapeTree(SDL_WindowShapeMode mode,SDL_Surface* mask,SDL_Rect dimensions) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
119 int x = 0,y = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
120 Uint8* pixel = NULL; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
121 Uint32 pixel_value = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
122 Uint8 r = 0,g = 0,b = 0,a = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
123 SDL_bool pixel_opaque = SDL_FALSE; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
124 int last_opaque = -1; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
125 SDL_Color key; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
126 SDL_ShapeTree* result = (SDL_ShapeTree*)SDL_malloc(sizeof(SDL_ShapeTree)); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
127 SDL_Rect next = {0,0,0,0}; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
128 for(y=dimensions.y;y<dimensions.y + dimensions.h;y++) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
129 for(x=dimensions.x;x<dimensions.x + dimensions.w;x++) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
130 pixel_value = 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
131 pixel = (Uint8 *)(mask->pixels) + (y*mask->pitch) + (x*mask->format->BytesPerPixel); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
132 switch(mask->format->BytesPerPixel) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
133 case(1): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
134 pixel_value = *(Uint8*)pixel; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
135 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
136 case(2): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
137 pixel_value = *(Uint16*)pixel; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
138 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
139 case(3): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
140 pixel_value = *(Uint32*)pixel & (~mask->format->Amask); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
141 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
142 case(4): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
143 pixel_value = *(Uint32*)pixel; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
144 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
145 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
146 SDL_GetRGBA(pixel_value,mask->format,&r,&g,&b,&a); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
147 switch(mode.mode) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
148 case(ShapeModeDefault): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
149 pixel_opaque = (a >= 1 ? SDL_TRUE : SDL_FALSE); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
150 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
151 case(ShapeModeBinarizeAlpha): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
152 pixel_opaque = (a >= mode.parameters.binarizationCutoff ? SDL_TRUE : SDL_FALSE); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
153 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
154 case(ShapeModeReverseBinarizeAlpha): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
155 pixel_opaque = (a <= mode.parameters.binarizationCutoff ? SDL_TRUE : SDL_FALSE); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
156 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
157 case(ShapeModeColorKey): |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
158 key = mode.parameters.colorKey; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
159 pixel_opaque = ((key.r == r && key.g == g && key.b == b) ? SDL_TRUE : SDL_FALSE); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
160 break; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
161 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
162 if(last_opaque == -1) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
163 last_opaque = pixel_opaque; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
164 if(last_opaque != pixel_opaque) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
165 result->kind = QuadShape; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
166 //These will stay the same. |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
167 next.w = dimensions.w / 2; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
168 next.h = dimensions.h / 2; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
169 //These will change from recursion to recursion. |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
170 next.x = dimensions.x; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
171 next.y = dimensions.y; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
172 result->data.children.upleft = (struct SDL_ShapeTree *)RecursivelyCalculateShapeTree(mode,mask,next); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
173 next.x = dimensions.w / 2; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
174 //Unneeded: next.y = dimensions.y; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
175 result->data.children.upright = (struct SDL_ShapeTree *)RecursivelyCalculateShapeTree(mode,mask,next); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
176 next.x = dimensions.x; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
177 next.y = dimensions.h / 2; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
178 result->data.children.downleft = (struct SDL_ShapeTree *)RecursivelyCalculateShapeTree(mode,mask,next); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
179 next.x = dimensions.w / 2; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
180 //Unneeded: next.y = dimensions.h / 2 + 1; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
181 result->data.children.downright = (struct SDL_ShapeTree *)RecursivelyCalculateShapeTree(mode,mask,next); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
182 return result; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
183 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
184 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
185 //If we never recursed, all the pixels in this quadrant have the same "value". |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
186 result->kind = (last_opaque == SDL_TRUE ? OpaqueShape : TransparentShape); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
187 result->data.shape = dimensions; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
188 return result; |
4813
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
189 } |
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
190 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
191 SDL_ShapeTree* |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
192 SDL_CalculateShapeTree(SDL_WindowShapeMode mode,SDL_Surface* shape) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
193 SDL_Rect dimensions = {0,0,shape->w,shape->h}; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
194 SDL_ShapeTree* result = NULL; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
195 if(SDL_MUSTLOCK(shape)) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
196 SDL_LockSurface(shape); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
197 result = RecursivelyCalculateShapeTree(mode,shape,dimensions); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
198 if(SDL_MUSTLOCK(shape)) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
199 SDL_UnlockSurface(shape); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
200 return result; |
4813
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
201 } |
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
202 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
203 void |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
204 SDL_TraverseShapeTree(SDL_ShapeTree *tree,SDL_TraversalFunction function,void* closure) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
205 SDL_assert(tree != NULL); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
206 if(tree->kind == QuadShape) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
207 SDL_TraverseShapeTree((SDL_ShapeTree *)tree->data.children.upleft,function,closure); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
208 SDL_TraverseShapeTree((SDL_ShapeTree *)tree->data.children.upright,function,closure); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
209 SDL_TraverseShapeTree((SDL_ShapeTree *)tree->data.children.downleft,function,closure); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
210 SDL_TraverseShapeTree((SDL_ShapeTree *)tree->data.children.downright,function,closure); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
211 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
212 else |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
213 function(tree,closure); |
4813
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
214 } |
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
215 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
216 void |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
217 SDL_FreeShapeTree(SDL_ShapeTree** shapeTree) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
218 if((*shapeTree)->kind == QuadShape) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
219 SDL_FreeShapeTree((SDL_ShapeTree **)&(*shapeTree)->data.children.upleft); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
220 SDL_FreeShapeTree((SDL_ShapeTree **)&(*shapeTree)->data.children.upright); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
221 SDL_FreeShapeTree((SDL_ShapeTree **)&(*shapeTree)->data.children.downleft); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
222 SDL_FreeShapeTree((SDL_ShapeTree **)&(*shapeTree)->data.children.downright); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
223 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
224 SDL_free(*shapeTree); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
225 *shapeTree = NULL; |
4813
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
226 } |
5b4c7d7d8953
Wrote out the system for breaking shape-masks into quad-trees of rectangles, and added code to conglomerate those quad-trees of rectangles into regions for setting shapes under Win32.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4810
diff
changeset
|
227 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
228 int |
4847 | 229 SDL_SetWindowShape(SDL_Window *window,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode) { |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
230 int result; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
231 if(window == NULL || !SDL_IsShapedWindow(window)) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
232 //The window given was not a shapeable window. |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
233 return SDL_NONSHAPEABLE_WINDOW; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
234 if(shape == NULL) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
235 //Invalid shape argument. |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
236 return SDL_INVALID_SHAPE_ARGUMENT; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
237 |
4847 | 238 if(shape_mode != NULL) |
239 window->shaper->mode = *shape_mode; | |
240 result = window->display->device->shape_driver.SetWindowShape(window->shaper,shape,shape_mode); | |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
241 window->shaper->hasshape = SDL_TRUE; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
242 if((window->shaper->usershownflag & SDL_WINDOW_SHOWN) == SDL_WINDOW_SHOWN) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
243 SDL_ShowWindow(window); |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
244 window->shaper->usershownflag &= !SDL_WINDOW_SHOWN; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
245 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
246 return result; |
4782
b6930aefd008
Finished X11 shaped-window functionality and removed ellipse+polygon rendering.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4781
diff
changeset
|
247 } |
b6930aefd008
Finished X11 shaped-window functionality and removed ellipse+polygon rendering.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4781
diff
changeset
|
248 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
249 SDL_bool |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
250 SDL_WindowHasAShape(SDL_Window *window) { |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
251 if (window == NULL || !SDL_IsShapedWindow(window)) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
252 return SDL_FALSE; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
253 return window->shaper->hasshape; |
4778
9838d3525a1b
Stubbed out the new get/set parameter functions, added the start of the enum, union, and struct for those parameters themselves, and added doxygen comments throughout the SDL_shape.h header.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4776
diff
changeset
|
254 } |
9838d3525a1b
Stubbed out the new get/set parameter functions, added the start of the enum, union, and struct for those parameters themselves, and added doxygen comments throughout the SDL_shape.h header.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4776
diff
changeset
|
255 |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
256 int |
4847 | 257 SDL_GetShapedWindowMode(SDL_Window *window,SDL_WindowShapeMode *shape_mode) { |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
258 if(window != NULL && SDL_IsShapedWindow(window)) { |
4847 | 259 if(shape_mode == NULL) { |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
260 if(SDL_WindowHasAShape(window)) |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
261 //The window given has a shape. |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
262 return 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
263 else |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
264 //The window given is shapeable but lacks a shape. |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
265 return SDL_WINDOW_LACKS_SHAPE; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
266 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
267 else { |
4847 | 268 *shape_mode = window->shaper->mode; |
4843
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
269 return 0; |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
270 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
271 } |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
272 else |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
273 //The window given is not a valid shapeable window. |
0998d1b5dd23
Fixed formatting of SDL_shape.c post-merge again.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4841
diff
changeset
|
274 return SDL_NONSHAPEABLE_WINDOW; |
4778
9838d3525a1b
Stubbed out the new get/set parameter functions, added the start of the enum, union, and struct for those parameters themselves, and added doxygen comments throughout the SDL_shape.h header.
Eli Gottlieb <eligottlieb@gmail.com>
parents:
4776
diff
changeset
|
275 } |