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

Latest commit

 

History

History
175 lines (159 loc) · 5.13 KB

testshape.c

File metadata and controls

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