diff options
author | Aleksander Guryanov <caiiiycuk@gmail.com> | 2013-01-30 23:04:49 +0700 |
---|---|---|
committer | Aleksander Guryanov <caiiiycuk@gmail.com> | 2013-01-30 23:09:05 +0700 |
commit | bd6623777f5695602e533e741839b54842ce9926 (patch) | |
tree | 3c781482c44e3724a71d9630a2a2d9438dc83d92 /tests/sdl_canvas_palette_2.c | |
parent | 21d81d9b21832eb15f9a367dc678a4873efb96ee (diff) |
Add automation for sdl palette test
Diffstat (limited to 'tests/sdl_canvas_palette_2.c')
-rw-r--r-- | tests/sdl_canvas_palette_2.c | 60 |
1 files changed, 29 insertions, 31 deletions
diff --git a/tests/sdl_canvas_palette_2.c b/tests/sdl_canvas_palette_2.c index db9c3207..11d727ac 100644 --- a/tests/sdl_canvas_palette_2.c +++ b/tests/sdl_canvas_palette_2.c @@ -1,59 +1,40 @@ #include <stdio.h> #include <SDL/SDL.h> #include <emscripten.h> +#include <string.h> static const int COLOR_COUNT = 32; static SDL_Surface *screen; static SDL_Color pal[COLOR_COUNT +1]; -void initializePalette() { +void pallete(int red, int green, int blue) { //initialize sdl palette - //with red green and blue - //colors + //with gradient colors pal[0].r = 0; pal[0].g = 0; pal[0].b = 0; pal[0].unused = 0; for (int i=1; i< 1 + COLOR_COUNT; i++) { - pal[i].r = 255 / COLOR_COUNT * i; - pal[i].g = 0; - pal[i].b = 0; + pal[i].r = (float) red / COLOR_COUNT * i; + pal[i].g = (float) green / COLOR_COUNT * i; + pal[i].b = (float) blue / COLOR_COUNT * i; pal[i].unused = 0; } SDL_SetColors(screen, pal, 0, 1 + COLOR_COUNT); } -void animatePalette() { - SDL_Color temporary; - temporary = pal[1]; - for (int i=2; i< 1 + COLOR_COUNT; i++) { - pal[i-1] = pal[i]; - } - pal[COLOR_COUNT] = temporary; - - SDL_SetColors(screen, pal, 1, COLOR_COUNT); - - //refreshing - SDL_LockSurface(screen); - SDL_UnlockSurface(screen); - - printf("yet another cycle\n"); -} - -int main() { +int main(int argc, char** argv) { SDL_Init(SDL_INIT_VIDEO); - screen = SDL_SetVideoMode(600, 400, 8, SDL_HWSURFACE | SDL_HWPALETTE); + screen = SDL_SetVideoMode(600, 450, 8, SDL_HWSURFACE | SDL_HWPALETTE); //test empty pallete SDL_LockSurface(screen); SDL_UnlockSurface(screen); - initializePalette(); - - //palette is red yellow blue + //Draw gradient SDL_LockSurface(screen); int size = screen->h * screen->pitch; char *color = screen->pixels; @@ -66,9 +47,26 @@ int main() { } SDL_UnlockSurface(screen); - //Animation - printf("you should see red gradient animation\n"); - emscripten_set_main_loop(animatePalette, 0, 1); + //Set pallete + if (argc > 1) { + printf("%s\n", argv[1]); + if (strcmp(argv[1], "-r") == 0) { + printf("set [red]\n"); + pallete(255, 0, 0); + } + if (strcmp(argv[1], "-g") == 0) { + printf("set [green]\n"); + pallete(0, 255, 0); + } + if (strcmp(argv[1], "-b") == 0) { + printf("set [blue]\n"); + pallete(0, 0, 255); + } + } + + //refreshing + SDL_LockSurface(screen); + SDL_UnlockSurface(screen); SDL_Quit(); |