1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#include <stdio.h>
#include <SDL2/SDL.h>
int main(int argc, char** argv)
{
if(argc < 2) {
fprintf(stderr, "Usage: %s <image_file> <...>\n", argv[0]);
exit(1);
}
if(SDL_Init(SDL_INIT_VIDEO) != 0) {
fprintf(stderr, "SDL Failed to Init: %s\n", SDL_GetError());
exit(1);
}
const int width = 1280;
const int height = 720;
SDL_Window *window = SDL_CreateWindow(
"imv",
SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED,
width, height,
SDL_WINDOW_RESIZABLE);
SDL_Renderer *renderer =
SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED);
const char** paths = (const char**)&argv[1];
const int num_paths = argc - 1;
int cur_path = -1;
int next_path = 0;
int quit = 0;
int redraw = 1;
while(!quit) {
SDL_Event e;
while(!quit && SDL_PollEvent(&e)) {
switch(e.type) {
case SDL_QUIT:
quit = 1;
break;
case SDL_KEYDOWN:
switch (e.key.keysym.sym) {
case SDLK_q:
quit = 1;
break;
case SDLK_RIGHT:
next_path = (next_path + 1) % num_paths;
break;
case SDLK_LEFT:
next_path -= 1;
if(next_path < 0)
next_path = num_paths - 1;
break;
}
break;
case SDL_WINDOWEVENT:
if(e.window.event == SDL_WINDOWEVENT_SIZE_CHANGED
|| e.window.event == SDL_WINDOWEVENT_RESIZED) {
redraw = 1;
}
break;
}
}
if(quit) {
break;
}
if(next_path != cur_path) {
cur_path = next_path;
fprintf(stdout, "current image: %s\n", paths[cur_path]);
redraw = 1;
}
if(redraw) {
SDL_RenderClear(renderer);
//SDL_RenderCopy(renderer, tex, srcrect, dstrect);
SDL_RenderPresent(renderer);
redraw = 0;
}
SDL_Delay(10);
}
SDL_DestroyRenderer(renderer);
SDL_DestroyWindow(window);
SDL_Quit();
return 0;
}
|