2010-07-18 21:31:22 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
2010-07-30 18:04:21 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "SDL.h"
|
|
|
|
#include "SDL_shape.h"
|
2010-07-18 21:31:22 -04:00
|
|
|
|
|
|
|
#define SHAPED_WINDOW_X 150
|
|
|
|
#define SHAPED_WINDOW_Y 150
|
|
|
|
#define SHAPED_WINDOW_DIMENSION 640
|
|
|
|
|
2010-08-14 16:14:36 -04:00
|
|
|
#define TICK_INTERVAL 1000/10
|
2010-07-19 00:24:02 -04:00
|
|
|
|
2010-07-23 01:48:42 -04:00
|
|
|
typedef struct LoadedPicture {
|
|
|
|
SDL_Surface *surface;
|
|
|
|
SDL_Texture *texture;
|
|
|
|
SDL_WindowShapeMode mode;
|
|
|
|
} LoadedPicture;
|
|
|
|
|
2010-07-18 23:51:47 -04:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2010-07-19 00:24:02 -04:00
|
|
|
static Uint32 next_time;
|
|
|
|
|
|
|
|
Uint32 time_left() {
|
2010-08-14 16:14:36 -04:00
|
|
|
Uint32 now = SDL_GetTicks();
|
|
|
|
if(next_time <= now)
|
|
|
|
return 0;
|
2010-07-19 00:24:02 -04:00
|
|
|
else
|
2010-08-14 16:14:36 -04:00
|
|
|
return next_time - now;
|
2010-07-19 00:24:02 -04:00
|
|
|
}
|
|
|
|
|
2010-07-18 21:31:22 -04:00
|
|
|
int main(int argc,char** argv) {
|
2010-07-30 18:04:21 -04:00
|
|
|
Uint8 num_pictures;
|
|
|
|
LoadedPicture* pictures;
|
|
|
|
int i, j;
|
2010-08-01 21:10:42 -04:00
|
|
|
SDL_PixelFormat* format = NULL;
|
2010-07-30 18:04:21 -04:00
|
|
|
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;
|
2010-08-01 21:10:42 -04:00
|
|
|
Uint32 pixelFormat = 0;
|
|
|
|
int access = 0;
|
2010-07-30 18:04:21 -04:00
|
|
|
SDL_Rect texture_dimensions;;
|
|
|
|
|
|
|
|
if(argc < 2) {
|
2011-01-19 11:35:31 -08:00
|
|
|
printf("SDL_Shape requires at least one bitmap file as argument.\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
2010-07-18 21:31:22 -04:00
|
|
|
|
2011-01-27 22:44:08 -08:00
|
|
|
if(SDL_VideoInit(NULL) == -1) {
|
2010-07-18 21:31:22 -04:00
|
|
|
printf("Could not initialize SDL video.\n");
|
|
|
|
exit(-2);
|
|
|
|
}
|
|
|
|
|
2010-07-30 18:04:21 -04:00
|
|
|
num_pictures = argc - 1;
|
|
|
|
pictures = (LoadedPicture *)malloc(sizeof(LoadedPicture)*num_pictures);
|
2010-07-18 21:31:22 -04:00
|
|
|
for(i=0;i<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
pictures[i].surface = NULL;
|
2010-07-18 21:31:22 -04:00
|
|
|
for(i=0;i<num_pictures;i++) {
|
2010-07-23 01:48:42 -04:00
|
|
|
pictures[i].surface = SDL_LoadBMP(argv[i+1]);
|
|
|
|
if(pictures[i].surface == NULL) {
|
2010-07-30 18:04:21 -04:00
|
|
|
j = 0;
|
2010-07-18 21:31:22 -04:00
|
|
|
for(j=0;j<num_pictures;j++)
|
2010-07-23 01:48:42 -04:00
|
|
|
if(pictures[j].surface != NULL)
|
|
|
|
SDL_FreeSurface(pictures[j].surface);
|
2010-07-18 21:31:22 -04:00
|
|
|
free(pictures);
|
|
|
|
SDL_VideoQuit();
|
2010-07-18 23:05:40 -04:00
|
|
|
printf("Could not load surface from named bitmap file.\n");
|
2010-07-18 21:31:22 -04:00
|
|
|
exit(-3);
|
|
|
|
}
|
2010-07-30 18:04:21 -04:00
|
|
|
|
|
|
|
format = pictures[i].surface->format;
|
2010-08-01 21:10:42 -04:00
|
|
|
if(format->Amask != 0) {
|
2010-07-23 01:48:42 -04:00
|
|
|
pictures[i].mode.mode = ShapeModeBinarizeAlpha;
|
2010-08-16 09:55:35 -04:00
|
|
|
pictures[i].mode.parameters.binarizationCutoff = 255;
|
2010-07-23 01:48:42 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
pictures[i].mode.mode = ShapeModeColorKey;
|
|
|
|
pictures[i].mode.parameters.colorKey = black;
|
|
|
|
}
|
2010-07-18 21:31:22 -04:00
|
|
|
}
|
|
|
|
|
2010-07-30 18:04:21 -04:00
|
|
|
window = SDL_CreateShapedWindow("SDL_Shape test",SHAPED_WINDOW_X,SHAPED_WINDOW_Y,SHAPED_WINDOW_DIMENSION,SHAPED_WINDOW_DIMENSION,SDL_WINDOW_RESIZABLE | SDL_WINDOW_SHOWN);
|
2010-07-18 21:31:22 -04:00
|
|
|
if(window == NULL) {
|
|
|
|
for(i=0;i<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
SDL_FreeSurface(pictures[i].surface);
|
2010-07-18 21:31:22 -04:00
|
|
|
free(pictures);
|
|
|
|
SDL_VideoQuit();
|
|
|
|
printf("Could not create shaped window for SDL_Shape.\n");
|
|
|
|
exit(-4);
|
|
|
|
}
|
2011-02-01 12:19:46 -08:00
|
|
|
if(SDL_CreateRenderer(window,-1,0) == -1) {
|
2010-07-18 21:31:22 -04:00
|
|
|
SDL_DestroyWindow(window);
|
|
|
|
for(i=0;i<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
SDL_FreeSurface(pictures[i].surface);
|
2010-07-18 21:31:22 -04:00
|
|
|
free(pictures);
|
|
|
|
SDL_VideoQuit();
|
|
|
|
printf("Could not create rendering context for SDL_Shape window.\n");
|
|
|
|
exit(-5);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i=0;i<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
pictures[i].texture = NULL;
|
2010-07-18 21:31:22 -04:00
|
|
|
for(i=0;i<num_pictures;i++) {
|
2010-07-23 01:48:42 -04:00
|
|
|
pictures[i].texture = SDL_CreateTextureFromSurface(0,pictures[i].surface);
|
|
|
|
if(pictures[i].texture == NULL) {
|
2010-07-30 18:04:21 -04:00
|
|
|
j = 0;
|
2010-07-18 21:31:22 -04:00
|
|
|
for(j=0;j<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
if(pictures[i].texture != NULL)
|
|
|
|
SDL_DestroyTexture(pictures[i].texture);
|
2010-07-18 21:31:22 -04:00
|
|
|
for(i=0;i<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
SDL_FreeSurface(pictures[i].surface);
|
2010-07-18 21:31:22 -04:00
|
|
|
free(pictures);
|
|
|
|
SDL_DestroyRenderer(window);
|
|
|
|
SDL_DestroyWindow(window);
|
|
|
|
SDL_VideoQuit();
|
|
|
|
printf("Could not create texture for SDL_shape.\n");
|
|
|
|
exit(-6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-30 18:04:21 -04:00
|
|
|
event_pending = 0;
|
|
|
|
should_exit = 0;
|
2010-07-18 21:31:22 -04:00
|
|
|
event_pending = SDL_PollEvent(&event);
|
2010-07-30 18:04:21 -04:00
|
|
|
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);
|
2010-07-18 21:31:22 -04:00
|
|
|
SDL_SetWindowSize(window,texture_dimensions.w,texture_dimensions.h);
|
2010-07-30 18:04:21 -04:00
|
|
|
SDL_SetWindowShape(window,pictures[current_picture].surface,&pictures[current_picture].mode);
|
2010-07-19 00:24:02 -04:00
|
|
|
next_time = SDL_GetTicks() + TICK_INTERVAL;
|
2010-07-18 22:17:52 -04:00
|
|
|
while(should_exit == 0) {
|
|
|
|
event_pending = SDL_PollEvent(&event);
|
|
|
|
if(event_pending == 1) {
|
2010-07-18 23:36:39 -04:00
|
|
|
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;
|
2010-07-18 22:17:52 -04:00
|
|
|
current_picture += 1;
|
|
|
|
if(current_picture >= num_pictures)
|
|
|
|
current_picture = 0;
|
2010-07-30 18:04:21 -04:00
|
|
|
SDL_QueryTexture(pictures[current_picture].texture,(Uint32 *)&pixelFormat,(int *)&access,&texture_dimensions.w,&texture_dimensions.h);
|
2010-07-18 22:17:52 -04:00
|
|
|
SDL_SetWindowSize(window,texture_dimensions.w,texture_dimensions.h);
|
2010-07-30 18:04:21 -04:00
|
|
|
SDL_SetWindowShape(window,pictures[current_picture].surface,&pictures[current_picture].mode);
|
2010-07-18 22:17:52 -04:00
|
|
|
}
|
|
|
|
if(event.type == SDL_QUIT)
|
|
|
|
should_exit = 1;
|
|
|
|
event_pending = 0;
|
2010-07-18 21:31:22 -04:00
|
|
|
}
|
2010-07-23 01:48:42 -04:00
|
|
|
render(window,pictures[current_picture].texture,texture_dimensions);
|
2010-07-19 00:24:02 -04:00
|
|
|
SDL_Delay(time_left());
|
|
|
|
next_time += TICK_INTERVAL;
|
2010-07-18 21:31:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
//Free the textures.
|
|
|
|
for(i=0;i<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
SDL_DestroyTexture(pictures[i].texture);
|
2010-07-18 21:31:22 -04:00
|
|
|
//Destroy the window.
|
|
|
|
SDL_DestroyWindow(window);
|
|
|
|
//Free the original surfaces backing the textures.
|
|
|
|
for(i=0;i<num_pictures;i++)
|
2010-07-23 01:48:42 -04:00
|
|
|
SDL_FreeSurface(pictures[i].surface);
|
2010-07-18 21:31:22 -04:00
|
|
|
free(pictures);
|
|
|
|
//Call SDL_VideoQuit() before quitting.
|
|
|
|
SDL_VideoQuit();
|
2010-07-30 18:04:21 -04:00
|
|
|
|
|
|
|
return 0;
|
2010-07-18 21:31:22 -04:00
|
|
|
}
|