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

Latest commit

 

History

History
187 lines (168 loc) · 5.16 KB

testshape.c

File metadata and controls

187 lines (168 loc) · 5.16 KB
 
1
2
#include <stdlib.h>
#include <math.h>
Jul 30, 2010
Jul 30, 2010
3
4
5
#include <stdio.h>
#include "SDL.h"
#include "SDL_shape.h"
6
7
8
9
10
#define SHAPED_WINDOW_X 150
#define SHAPED_WINDOW_Y 150
#define SHAPED_WINDOW_DIMENSION 640
Aug 14, 2010
Aug 14, 2010
11
#define TICK_INTERVAL 1000/10
Jul 19, 2010
Jul 19, 2010
12
Jul 23, 2010
Jul 23, 2010
13
14
15
16
17
18
typedef struct LoadedPicture {
SDL_Surface *surface;
SDL_Texture *texture;
SDL_WindowShapeMode mode;
} LoadedPicture;
Jul 19, 2010
Jul 19, 2010
19
20
21
22
23
24
25
26
27
28
29
30
31
void render(SDL_Window* window,SDL_Texture *texture,SDL_Rect texture_dimensions) {
SDL_SelectRenderer(window);
//Clear render-target to blue.
SDL_SetRenderDrawColor(0x00,0x00,0xff,0xff);
SDL_RenderClear();
//Render the texture.
SDL_RenderCopy(texture,&texture_dimensions,&texture_dimensions);
SDL_RenderPresent();
}
Jul 19, 2010
Jul 19, 2010
32
33
34
static Uint32 next_time;
Uint32 time_left() {
Aug 14, 2010
Aug 14, 2010
35
36
37
Uint32 now = SDL_GetTicks();
if(next_time <= now)
return 0;
Jul 19, 2010
Jul 19, 2010
38
else
Aug 14, 2010
Aug 14, 2010
39
return next_time - now;
Jul 19, 2010
Jul 19, 2010
40
41
}
42
int main(int argc,char** argv) {
Jul 30, 2010
Jul 30, 2010
43
44
45
Uint8 num_pictures;
LoadedPicture* pictures;
int i, j;
Aug 2, 2010
Aug 2, 2010
46
SDL_PixelFormat* format = NULL;
Jul 30, 2010
Jul 30, 2010
47
48
49
50
51
52
53
SDL_Window *window;
SDL_Color black = {0,0,0,0xff};
SDL_Event event;
int event_pending = 0;
int should_exit = 0;
unsigned int current_picture;
int button_down;
Aug 2, 2010
Aug 2, 2010
54
55
Uint32 pixelFormat = 0;
int access = 0;
Jul 30, 2010
Jul 30, 2010
56
57
58
SDL_Rect texture_dimensions;;
if(argc < 2) {
Jan 19, 2011
Jan 19, 2011
59
60
61
printf("SDL_Shape requires at least one bitmap file as argument.\n");
exit(-1);
}
Jan 28, 2011
Jan 28, 2011
63
if(SDL_VideoInit(NULL) == -1) {
64
65
66
67
printf("Could not initialize SDL video.\n");
exit(-2);
}
Jul 30, 2010
Jul 30, 2010
68
69
num_pictures = argc - 1;
pictures = (LoadedPicture *)malloc(sizeof(LoadedPicture)*num_pictures);
70
for(i=0;i<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
71
pictures[i].surface = NULL;
72
for(i=0;i<num_pictures;i++) {
Jul 23, 2010
Jul 23, 2010
73
74
pictures[i].surface = SDL_LoadBMP(argv[i+1]);
if(pictures[i].surface == NULL) {
Jul 30, 2010
Jul 30, 2010
75
j = 0;
76
for(j=0;j<num_pictures;j++)
Jul 23, 2010
Jul 23, 2010
77
78
if(pictures[j].surface != NULL)
SDL_FreeSurface(pictures[j].surface);
79
80
free(pictures);
SDL_VideoQuit();
Jul 19, 2010
Jul 19, 2010
81
printf("Could not load surface from named bitmap file.\n");
Jul 30, 2010
Jul 30, 2010
84
85
format = pictures[i].surface->format;
Aug 2, 2010
Aug 2, 2010
86
if(format->Amask != 0) {
Jul 23, 2010
Jul 23, 2010
87
pictures[i].mode.mode = ShapeModeBinarizeAlpha;
Aug 16, 2010
Aug 16, 2010
88
pictures[i].mode.parameters.binarizationCutoff = 255;
Jul 23, 2010
Jul 23, 2010
89
90
91
92
93
}
else {
pictures[i].mode.mode = ShapeModeColorKey;
pictures[i].mode.parameters.colorKey = black;
}
Jul 30, 2010
Jul 30, 2010
96
window = SDL_CreateShapedWindow("SDL_Shape test",SHAPED_WINDOW_X,SHAPED_WINDOW_Y,SHAPED_WINDOW_DIMENSION,SHAPED_WINDOW_DIMENSION,SDL_WINDOW_RESIZABLE | SDL_WINDOW_SHOWN);
97
98
if(window == NULL) {
for(i=0;i<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
99
SDL_FreeSurface(pictures[i].surface);
100
101
102
103
104
free(pictures);
SDL_VideoQuit();
printf("Could not create shaped window for SDL_Shape.\n");
exit(-4);
}
Feb 1, 2011
Feb 1, 2011
105
if(SDL_CreateRenderer(window,-1,0) == -1) {
106
107
SDL_DestroyWindow(window);
for(i=0;i<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
108
SDL_FreeSurface(pictures[i].surface);
109
110
111
112
113
114
115
free(pictures);
SDL_VideoQuit();
printf("Could not create rendering context for SDL_Shape window.\n");
exit(-5);
}
for(i=0;i<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
116
pictures[i].texture = NULL;
117
for(i=0;i<num_pictures;i++) {
Jul 23, 2010
Jul 23, 2010
118
119
pictures[i].texture = SDL_CreateTextureFromSurface(0,pictures[i].surface);
if(pictures[i].texture == NULL) {
Jul 30, 2010
Jul 30, 2010
120
j = 0;
121
for(j=0;j<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
122
123
if(pictures[i].texture != NULL)
SDL_DestroyTexture(pictures[i].texture);
124
for(i=0;i<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
125
SDL_FreeSurface(pictures[i].surface);
126
127
128
129
130
131
132
133
134
free(pictures);
SDL_DestroyRenderer(window);
SDL_DestroyWindow(window);
SDL_VideoQuit();
printf("Could not create texture for SDL_shape.\n");
exit(-6);
}
}
Jul 30, 2010
Jul 30, 2010
135
136
event_pending = 0;
should_exit = 0;
137
event_pending = SDL_PollEvent(&event);
Jul 30, 2010
Jul 30, 2010
138
139
140
141
142
143
144
current_picture = 0;
button_down = 0;
texture_dimensions.h = 0;
texture_dimensions.w = 0;
texture_dimensions.x = 0;
texture_dimensions.y = 0;
SDL_QueryTexture(pictures[current_picture].texture,(Uint32 *)&pixelFormat,(int *)&access,&texture_dimensions.w,&texture_dimensions.h);
145
SDL_SetWindowSize(window,texture_dimensions.w,texture_dimensions.h);
Jul 30, 2010
Jul 30, 2010
146
SDL_SetWindowShape(window,pictures[current_picture].surface,&pictures[current_picture].mode);
Jul 19, 2010
Jul 19, 2010
147
next_time = SDL_GetTicks() + TICK_INTERVAL;
Jul 19, 2010
Jul 19, 2010
148
149
150
while(should_exit == 0) {
event_pending = SDL_PollEvent(&event);
if(event_pending == 1) {
Jul 19, 2010
Jul 19, 2010
151
152
153
154
155
156
157
if(event.type == SDL_KEYDOWN) {
button_down = 1;
if(event.key.keysym.sym == SDLK_ESCAPE)
should_exit = 1;
}
if(button_down && event.type == SDL_KEYUP) {
button_down = 0;
Jul 19, 2010
Jul 19, 2010
158
159
160
current_picture += 1;
if(current_picture >= num_pictures)
current_picture = 0;
Jul 30, 2010
Jul 30, 2010
161
SDL_QueryTexture(pictures[current_picture].texture,(Uint32 *)&pixelFormat,(int *)&access,&texture_dimensions.w,&texture_dimensions.h);
Jul 19, 2010
Jul 19, 2010
162
SDL_SetWindowSize(window,texture_dimensions.w,texture_dimensions.h);
Jul 30, 2010
Jul 30, 2010
163
SDL_SetWindowShape(window,pictures[current_picture].surface,&pictures[current_picture].mode);
Jul 19, 2010
Jul 19, 2010
164
165
166
167
}
if(event.type == SDL_QUIT)
should_exit = 1;
event_pending = 0;
Jul 23, 2010
Jul 23, 2010
169
render(window,pictures[current_picture].texture,texture_dimensions);
Jul 19, 2010
Jul 19, 2010
170
171
SDL_Delay(time_left());
next_time += TICK_INTERVAL;
172
173
174
175
}
//Free the textures.
for(i=0;i<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
176
SDL_DestroyTexture(pictures[i].texture);
177
178
179
180
//Destroy the window.
SDL_DestroyWindow(window);
//Free the original surfaces backing the textures.
for(i=0;i<num_pictures;i++)
Jul 23, 2010
Jul 23, 2010
181
SDL_FreeSurface(pictures[i].surface);
182
183
184
free(pictures);
//Call SDL_VideoQuit() before quitting.
SDL_VideoQuit();
Jul 30, 2010
Jul 30, 2010
185
186
return 0;