]> git.sesse.net Git - movit/blob - main.cpp
Move saturation out into its own effect, and hook up the control.
[movit] / main.cpp
1 #define GL_GLEXT_PROTOTYPES 1
2 #define NO_SDL_GLEXT 1
3
4 #define WIDTH 1280
5 #define HEIGHT 720
6 #define BUFFER_OFFSET(i) ((char *)NULL + (i))
7
8 #include <string.h>
9 #include <math.h>
10 #include <time.h>
11 #include <assert.h>
12
13 #include <string>
14 #include <vector>
15 #include <map>
16
17 #include <SDL/SDL.h>
18 #include <SDL/SDL_opengl.h>
19 #include <SDL/SDL_image.h>
20
21 #include <GL/gl.h>
22 #include <GL/glext.h>
23
24 #include "effect.h"
25 #include "effect_chain.h"
26 #include "util.h"
27 #include "widgets.h"
28 #include "texture_enum.h"
29
30 unsigned char result[WIDTH * HEIGHT * 4];
31
32 float lift_theta = 0.0f, lift_rad = 0.0f, lift_v = 0.0f;
33 float gamma_theta = 0.0f, gamma_rad = 0.0f, gamma_v = 0.5f;
34 float gain_theta = 0.0f, gain_rad = 0.0f, gain_v = 0.25f;
35 float saturation = 1.0f;
36
37 void update_hsv(Effect *lift_gamma_gain_effect, Effect *saturation_effect)
38 {
39         RGBTriplet lift(0.0f, 0.0f, 0.0f);
40         RGBTriplet gamma(1.0f, 1.0f, 1.0f);
41         RGBTriplet gain(1.0f, 1.0f, 1.0f);
42
43         hsv2rgb(lift_theta, lift_rad, lift_v, &lift.r, &lift.g, &lift.b);
44         hsv2rgb(gamma_theta, gamma_rad, gamma_v * 2.0f, &gamma.r, &gamma.g, &gamma.b);
45         hsv2rgb(gain_theta, gain_rad, gain_v * 4.0f, &gain.r, &gain.g, &gain.b);
46
47         bool ok = lift_gamma_gain_effect->set_vec3("lift", (float *)&lift);
48         ok = ok && lift_gamma_gain_effect->set_vec3("gamma", (float *)&gamma);
49         ok = ok && lift_gamma_gain_effect->set_vec3("gain", (float *)&gain);
50         assert(ok);
51
52         if (saturation < 0.0) {
53                 saturation = 0.0;
54         }
55         ok = saturation_effect->set_float("saturation", saturation);
56         assert(ok);
57 }
58
59 void mouse(int x, int y)
60 {
61         float xf = (x / (float)WIDTH) * 16.0f / 9.0f;
62         float yf = (HEIGHT - y) / (float)HEIGHT;
63
64         if (yf < 0.2f) {
65                 read_colorwheel(xf, yf, &lift_rad, &lift_theta, &lift_v);
66         } else if (yf >= 0.2f && yf < 0.4f) {
67                 read_colorwheel(xf, yf - 0.2f, &gamma_rad, &gamma_theta, &gamma_v);
68         } else if (yf >= 0.4f && yf < 0.6f) {
69                 read_colorwheel(xf, yf - 0.4f, &gain_rad, &gain_theta, &gain_v);
70         } else if (yf >= 0.6f && yf < 0.62f && xf < 0.2f) {
71                 saturation = (xf / 0.2f) * 4.0f;
72         }
73 }
74
75 unsigned char *load_image(const char *filename, unsigned *w, unsigned *h)
76 {
77         SDL_Surface *img = IMG_Load(filename);
78         if (img == NULL) {
79                 fprintf(stderr, "Load of '%s' failed\n", filename);
80                 exit(1);
81         }
82
83         // Convert to RGB.
84         SDL_PixelFormat *fmt = img->format;
85         SDL_LockSurface(img);
86         unsigned char *src_pixels = (unsigned char *)img->pixels;
87         unsigned char *dst_pixels = (unsigned char *)malloc(img->w * img->h * 3);
88         for (unsigned i = 0; i < img->w * img->h; ++i) {
89                 unsigned char r, g, b;
90                 unsigned int temp;
91                 unsigned int pixel = *(unsigned int *)(src_pixels + i * fmt->BytesPerPixel);
92
93                 temp = pixel & fmt->Rmask;
94                 temp = temp >> fmt->Rshift;
95                 temp = temp << fmt->Rloss;
96                 r = temp;
97
98                 temp = pixel & fmt->Gmask;
99                 temp = temp >> fmt->Gshift;
100                 temp = temp << fmt->Gloss;
101                 g = temp;
102
103                 temp = pixel & fmt->Bmask;
104                 temp = temp >> fmt->Bshift;
105                 temp = temp << fmt->Bloss;
106                 b = temp;
107
108                 dst_pixels[i * 3 + 0] = r;
109                 dst_pixels[i * 3 + 1] = g;
110                 dst_pixels[i * 3 + 2] = b;
111         }
112         SDL_UnlockSurface(img);
113
114         *w = img->w;
115         *h = img->h;
116
117         SDL_FreeSurface(img);
118
119         return dst_pixels;
120 }
121
122 void load_texture(const char *filename)
123 {
124         unsigned w, h;
125         unsigned char *pixels = load_image(filename, &w, &h);
126
127 #if 1
128         // we will convert to sRGB in the shader
129         glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, w, h, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels);
130         check_error();
131 #else
132         // implicit sRGB conversion in hardware
133         glTexImage2D(GL_TEXTURE_2D, 0, GL_SRGB8, w, h, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels);
134         check_error();
135 #endif
136
137         free(pixels);
138 }
139
140 void write_ppm(const char *filename, unsigned char *screenbuf)
141 {
142         FILE *fp = fopen(filename, "w");
143         fprintf(fp, "P6\n%d %d\n255\n", WIDTH, HEIGHT);
144         for (unsigned y = 0; y < HEIGHT; ++y) {
145                 unsigned char *srcptr = screenbuf + ((HEIGHT - y - 1) * WIDTH) * 4;
146                 for (unsigned x = 0; x < WIDTH; ++x) {
147                         fputc(srcptr[x * 4 + 2], fp);
148                         fputc(srcptr[x * 4 + 1], fp);
149                         fputc(srcptr[x * 4 + 0], fp);
150                 }
151         }
152         fclose(fp);
153 }
154
155 int main(int argc, char **argv)
156 {
157         int quit = 0;
158
159         SDL_Init(SDL_INIT_EVERYTHING);
160         SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0);
161         SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 0);
162         SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
163         SDL_SetVideoMode(WIDTH, HEIGHT, 0, SDL_OPENGL);
164         SDL_WM_SetCaption("OpenGL window", NULL);
165         
166         // geez 
167         glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
168         glPixelStorei(GL_PACK_ALIGNMENT, 1);
169
170         glBindTexture(GL_TEXTURE_2D, SOURCE_IMAGE);
171         check_error();
172         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
173         check_error();
174
175         unsigned img_w, img_h;
176         unsigned char *src_img = load_image("blg_wheels_woman_1.jpg", &img_w, &img_h);
177
178         EffectChain chain(WIDTH, HEIGHT);
179
180         ImageFormat inout_format;
181         inout_format.pixel_format = FORMAT_RGB;
182         inout_format.color_space = COLORSPACE_sRGB;
183         inout_format.gamma_curve = GAMMA_sRGB;
184
185         chain.add_input(inout_format);
186         Effect *lift_gamma_gain_effect = chain.add_effect(LIFT_GAMMA_GAIN);
187         Effect *saturation_effect = chain.add_effect(SATURATION);
188         chain.add_output(inout_format);
189         chain.finalize();
190
191         //glGenerateMipmap(GL_TEXTURE_2D);
192         //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_BASE_LEVEL, 4);
193         //check_error();
194
195         //load_texture("maserati_gts_wallpaper_1280x720_01.jpg");
196         //load_texture("90630d1295075297-console-games-wallpapers-wallpaper_need_for_speed_prostreet_09_1920x1080.jpg");
197         //load_texture("glacier-lake-1280-720-4087.jpg");
198
199 #if 0
200         // sRGB reverse LUT
201         glBindTexture(GL_TEXTURE_1D, SRGB_REVERSE_LUT);
202         check_error();
203         glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
204         glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
205         check_error();
206         float srgb_reverse_tex[4096];
207         for (unsigned i = 0; i < 4096; ++i) {
208                 float x = i / 4095.0;
209                 if (x < 0.0031308f) {
210                         srgb_reverse_tex[i] = 12.92f * x;
211                 } else {
212                         srgb_reverse_tex[i] = 1.055f * pow(x, 1.0f / 2.4f) - 0.055f;
213                 }
214         }
215         glTexImage1D(GL_TEXTURE_1D, 0, GL_LUMINANCE16F_ARB, 4096, 0, GL_LUMINANCE, GL_FLOAT, srgb_reverse_tex);
216         check_error();
217
218         // sRGB LUT
219         glBindTexture(GL_TEXTURE_1D, SRGB_LUT);
220         check_error();
221         glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
222         glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
223         check_error();
224         float srgb_tex[256];
225         for (unsigned i = 0; i < 256; ++i) {
226                 float x = i / 255.0;
227                 if (x < 0.04045f) {
228                         srgb_tex[i] = x * (1.0f / 12.92f);
229                 } else {
230                         srgb_tex[i] = pow((x + 0.055) * (1.0 / 1.055f), 2.4);
231                 }
232         }
233         glTexImage1D(GL_TEXTURE_1D, 0, GL_LUMINANCE16F_ARB, 256, 0, GL_LUMINANCE, GL_FLOAT, srgb_tex);
234         check_error();
235 #endif
236
237         // generate a PDO to hold the data we read back with glReadPixels()
238         // (Intel/DRI goes into a slow path if we don't read to PDO)
239         glBindBuffer(GL_PIXEL_PACK_BUFFER_ARB, 1);
240         glBufferData(GL_PIXEL_PACK_BUFFER_ARB, WIDTH * HEIGHT * 4, NULL, GL_STREAM_READ);
241
242         make_hsv_wheel_texture();
243
244         int prog = glCreateProgram();
245         GLhandleARB vs_obj = compile_shader(read_file("vs.glsl"), GL_VERTEX_SHADER);
246         GLhandleARB fs_obj = compile_shader(read_file("fs.glsl"), GL_FRAGMENT_SHADER);
247         glAttachObjectARB(prog, vs_obj);
248         check_error();
249         glAttachObjectARB(prog, fs_obj);
250         check_error();
251         glLinkProgram(prog);
252         check_error();
253
254         GLchar info_log[4096];
255         GLsizei log_length = sizeof(info_log) - 1;
256         log_length = sizeof(info_log) - 1;
257         glGetProgramInfoLog(prog, log_length, &log_length, info_log);
258         info_log[log_length] = 0; 
259         printf("link: %s\n", info_log);
260
261         struct timespec start, now;
262         int frame = 0, screenshot = 0;
263         clock_gettime(CLOCK_MONOTONIC, &start);
264
265         while (!quit) {
266                 SDL_Event event;
267                 while (SDL_PollEvent(&event)) {
268                         if (event.type == SDL_QUIT) {
269                                 quit = 1;
270                         } else if (event.type == SDL_KEYDOWN && event.key.keysym.sym == SDLK_ESCAPE) {
271                                 quit = 1;
272                         } else if (event.type == SDL_KEYDOWN && event.key.keysym.sym == SDLK_F1) {
273                                 screenshot = 1;
274                         } else if (event.type == SDL_MOUSEBUTTONDOWN && event.button.button == SDL_BUTTON_LEFT) {
275                                 mouse(event.button.x, event.button.y);
276                         } else if (event.type == SDL_MOUSEMOTION && (event.motion.state & SDL_BUTTON(1))) {
277                                 mouse(event.motion.x, event.motion.y);
278                         }
279                 }
280
281                 ++frame;
282
283                 update_hsv(lift_gamma_gain_effect, saturation_effect);
284                 chain.render_to_screen(src_img);
285                 
286                 glReadPixels(0, 0, WIDTH, HEIGHT, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV, BUFFER_OFFSET(0));
287                 check_error();
288
289                 draw_hsv_wheel(0.0f, lift_rad, lift_theta, lift_v);
290                 draw_hsv_wheel(0.2f, gamma_rad, gamma_theta, gamma_v);
291                 draw_hsv_wheel(0.4f, gain_rad, gain_theta, gain_v);
292                 draw_saturation_bar(0.6f, saturation);
293
294                 SDL_GL_SwapBuffers();
295                 check_error();
296
297                 unsigned char *screenbuf = (unsigned char *)glMapBuffer(GL_PIXEL_PACK_BUFFER_ARB, GL_READ_ONLY);
298                 check_error();
299                 if (screenshot) {
300                         char filename[256];
301                         sprintf(filename, "frame%05d.ppm", frame);
302                         write_ppm(filename, screenbuf);
303                         printf("Screenshot: %s\n", filename);
304                         screenshot = 0;
305                 }
306                 glUnmapBuffer(GL_PIXEL_PACK_BUFFER_ARB);
307                 check_error();
308
309 #if 1
310                 clock_gettime(CLOCK_MONOTONIC, &now);
311                 double elapsed = now.tv_sec - start.tv_sec +
312                         1e-9 * (now.tv_nsec - start.tv_nsec);
313                 printf("%d frames in %.3f seconds = %.1f fps (%.1f ms/frame)\n",
314                         frame, elapsed, frame / elapsed,
315                         1e3 * elapsed / frame);
316 #endif
317         }
318         return 0; 
319 }