9b4aea7352d2f1299bc4b344655248667357a404
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / playback3d.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2009 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #define GL_GLEXT_PROTOTYPES
23
24 #include "bccolors.h"
25 #include "bcsignals.h"
26 #include "bcwindowbase.h"
27 #include "canvas.h"
28 #include "clip.h"
29 #include "condition.h"
30 #include "edl.h"
31 #include "maskautos.h"
32 #include "maskauto.h"
33 #include "mutex.h"
34 #include "mwindow.h"
35 #include "overlayframe.inc"
36 #include "overlayframe.h"
37 #include "playback3d.h"
38 #include "pluginclient.h"
39 #include "pluginvclient.h"
40 #include "edlsession.h"
41 #include "transportque.inc"
42 #include "vframe.h"
43
44 #ifdef HAVE_GL
45 #include <GL/gl.h>
46 #include <GL/glext.h>
47 #include <GL/glu.h>
48 #endif
49
50 #include <string.h>
51 #include <unistd.h>
52 #include <fcntl.h>
53
54 #define QQ(q)#q
55 #define SS(s)QQ(s)
56
57
58 // Shaders
59 // These should be passed to VFrame::make_shader to construct shaders.
60 // Can't hard code sampler2D
61
62
63 #ifdef HAVE_GL
64 static const char *yuv_to_rgb_frag =
65         "uniform sampler2D tex;\n"
66         "uniform mat3 yuv_to_rgb_matrix;\n"
67         "uniform float yminf;\n"
68         "void main()\n"
69         "{\n"
70         "       vec4 yuva = texture2D(tex, gl_TexCoord[0].st);\n"
71         "       yuva.rgb -= vec3(yminf, 0.5, 0.5);\n"
72         "       gl_FragColor = vec4(yuv_to_rgb_matrix * yuva.rgb, yuva.a);\n"
73         "}\n";
74
75 static const char *yuva_to_yuv_frag =
76         "uniform sampler2D tex;\n"
77         "void main()\n"
78         "{\n"
79         "       vec4 yuva = texture2D(tex, gl_TexCoord[0].st);\n"
80         "       float a = yuva.a;\n"
81         "       float anti_a = 1.0 - a;\n"
82         "       yuva.r *= a;\n"
83         "       yuva.g = yuva.g * a + 0.5 * anti_a;\n"
84         "       yuva.b = yuva.b * a + 0.5 * anti_a;\n"
85         "       yuva.a = 1.0;\n"
86         "       gl_FragColor = yuva;\n"
87         "}\n";
88
89 static const char *yuva_to_rgb_frag =
90         "uniform sampler2D tex;\n"
91         "uniform mat3 yuv_to_rgb_matrix;\n"
92         "uniform float yminf;\n"
93         "void main()\n"
94         "{\n"
95         "       vec4 yuva = texture2D(tex, gl_TexCoord[0].st);\n"
96         "       yuva.rgb -= vec3(yminf, 0.5, 0.5);\n"
97         "       yuva.rgb = yuv_to_rgb_matrix * yuva.rgb;\n"
98         "       yuva.rgb *= yuva.a;\n"
99         "       yuva.a = 1.0;\n"
100         "       gl_FragColor = yuva;\n"
101         "}\n";
102
103 static const char *rgb_to_yuv_frag =
104         "uniform sampler2D tex;\n"
105         "uniform mat3 rgb_to_yuv_matrix;\n"
106         "uniform float yminf;\n"
107         "void main()\n"
108         "{\n"
109         "       vec4 rgba = texture2D(tex, gl_TexCoord[0].st);\n"
110         "       rgba.rgb = rgb_to_yuv_matrix * rgba.rgb;\n"
111         "       rgba.rgb += vec3(yminf, 0.5, 0.5);\n"
112         "       gl_FragColor = rgba;\n"
113         "}\n";
114
115
116 static const char *rgba_to_rgb_frag =
117         "uniform sampler2D tex;\n"
118         "void main()\n"
119         "{\n"
120         "       vec4 rgba = texture2D(tex, gl_TexCoord[0].st);\n"
121         "       rgba.rgb *= rgba.a;\n"
122         "       rgba.a = 1.0;\n"
123         "       gl_FragColor = rgba;\n"
124         "}\n";
125
126 static const char *rgba_to_yuv_frag =
127         "uniform sampler2D tex;\n"
128         "uniform mat3 rgb_to_yuv_matrix;\n"
129         "uniform float yminf;\n"
130         "void main()\n"
131         "{\n"
132         "       vec4 rgba = texture2D(tex, gl_TexCoord[0].st);\n"
133         "       rgba.rgb *= rgba.a;\n"
134         "       rgba.a = 1.0;\n"
135         "       rgba.rgb = rgb_to_yuv_matrix * rgba.rgb;\n"
136         "       rgba.rgb += vec3(yminf, 0.5, 0.5);\n"
137         "       gl_FragColor = rgba;\n"
138         "}\n";
139
140 //static const char *rgba_to_rgb_flatten =
141 //      "void main() {\n"
142 //      "       gl_FragColor.rgb *= gl_FragColor.a;\n"
143 //      "       gl_FragColor.a = 1.0;\n"
144 //      "}\n";
145
146 #define GL_STD_BLEND(FN) \
147 static const char *blend_##FN##_frag = \
148         "uniform sampler2D tex2;\n" \
149         "uniform vec2 tex2_dimensions;\n" \
150         "uniform float alpha;\n" \
151         "void main() {\n" \
152         "       vec4 canvas = texture2D(tex2, gl_FragCoord.xy / tex2_dimensions);\n" \
153         "       vec4 result;\n" \
154         "       result.rgb = " SS(COLOR_##FN(1.0, gl_FragColor.rgb, gl_FragColor.a, canvas.rgb, canvas.a)) ";\n" \
155         "       result.a = " SS(ALPHA_##FN(1.0, gl_FragColor.a, canvas.a)) ";\n" \
156         "       gl_FragColor = mix(canvas, result, alpha);\n" \
157         "}\n"
158
159 #define GL_VEC_BLEND(FN) \
160 static const char *blend_##FN##_frag = \
161         "uniform sampler2D tex2;\n" \
162         "uniform vec2 tex2_dimensions;\n" \
163         "uniform float alpha;\n" \
164         "void main() {\n" \
165         "       vec4 canvas = texture2D(tex2, gl_FragCoord.xy / tex2_dimensions);\n" \
166         "       vec4 result;\n" \
167         "       result.r = " SS(COLOR_##FN(1.0, gl_FragColor.r, gl_FragColor.a, canvas.r, canvas.a)) ";\n" \
168         "       result.g = " SS(COLOR_##FN(1.0, gl_FragColor.g, gl_FragColor.a, canvas.g, canvas.a)) ";\n" \
169         "       result.b = " SS(COLOR_##FN(1.0, gl_FragColor.b, gl_FragColor.a, canvas.b, canvas.a)) ";\n" \
170         "       result.a = " SS(ALPHA_##FN(1.0, gl_FragColor.a, canvas.a)) ";\n" \
171         "       result = clamp(result, 0.0, 1.0);\n" \
172         "       gl_FragColor = mix(canvas, result, alpha);\n" \
173         "}\n"
174
175 #undef mabs
176 #define mabs abs
177 #undef mmin
178 #define mmin min
179 #undef mmax
180 #define mmax max
181
182 #undef ZERO
183 #define ZERO 0.0
184 #undef ONE
185 #define ONE 1.0
186 #undef TWO
187 #define TWO 2.0
188
189 // NORMAL
190 static const char *blend_NORMAL_frag =
191         "uniform sampler2D tex2;\n"
192         "uniform vec2 tex2_dimensions;\n"
193         "uniform float alpha;\n"
194         "void main() {\n"
195         "       vec4 canvas = texture2D(tex2, gl_FragCoord.xy / tex2_dimensions);\n"
196         "       vec4 result = mix(canvas, gl_FragColor, gl_FragColor.a);\n"
197         "       gl_FragColor = mix(canvas, result, alpha);\n"
198         "}\n";
199
200 // REPLACE
201 static const char *blend_REPLACE_frag =
202         "uniform float alpha;\n"
203         "void main() {\n"
204         "}\n";
205
206 // ADDITION
207 static const char *blend_ADDITION_frag =
208         "uniform sampler2D tex2;\n"
209         "uniform vec2 tex2_dimensions;\n"
210         "uniform float alpha;\n"
211         "void main() {\n"
212         "       vec4 canvas = texture2D(tex2, gl_FragCoord.xy / tex2_dimensions);\n"
213         "       vec4 result = clamp(gl_FragColor + canvas, 0.0, 1.0);\n"
214         "       gl_FragColor = mix(canvas, result, alpha);\n"
215         "}\n";
216
217 // SUBTRACT
218 static const char *blend_SUBTRACT_frag =
219         "uniform sampler2D tex2;\n"
220         "uniform vec2 tex2_dimensions;\n"
221         "uniform float alpha;\n"
222         "void main() {\n"
223         "       vec4 canvas = texture2D(tex2, gl_FragCoord.xy / tex2_dimensions);\n"
224         "       vec4 result = clamp(gl_FragColor - canvas, 0.0, 1.0);\n"
225         "       gl_FragColor = mix(canvas, result, alpha);\n"
226         "}\n";
227
228 GL_STD_BLEND(MULTIPLY);
229 GL_VEC_BLEND(DIVIDE);
230 GL_VEC_BLEND(MAX);
231 GL_VEC_BLEND(MIN);
232 GL_VEC_BLEND(DARKEN);
233 GL_VEC_BLEND(LIGHTEN);
234 GL_STD_BLEND(DST);
235 GL_STD_BLEND(DST_ATOP);
236 GL_STD_BLEND(DST_IN);
237 GL_STD_BLEND(DST_OUT);
238 GL_STD_BLEND(DST_OVER);
239 GL_STD_BLEND(SRC);
240 GL_STD_BLEND(SRC_ATOP);
241 GL_STD_BLEND(SRC_IN);
242 GL_STD_BLEND(SRC_OUT);
243 GL_STD_BLEND(SRC_OVER);
244 GL_STD_BLEND(AND);
245 GL_STD_BLEND(OR);
246 GL_STD_BLEND(XOR);
247 GL_VEC_BLEND(OVERLAY);
248 GL_STD_BLEND(SCREEN);
249 GL_VEC_BLEND(BURN);
250 GL_VEC_BLEND(DODGE);
251 GL_VEC_BLEND(HARDLIGHT);
252 GL_VEC_BLEND(SOFTLIGHT);
253 GL_VEC_BLEND(DIFFERENCE);
254
255 static const char *read_texture_frag =
256         "uniform sampler2D tex;\n"
257         "void main()\n"
258         "{\n"
259         "       gl_FragColor = texture2D(tex, gl_TexCoord[0].st);\n"
260         "}\n";
261
262 static const char *in_vertex_frag =
263         "#version 430 // vertex shader\n"
264         "in vec3 in_pos;\n"
265         "void main() {\n"
266         "       gl_Position = vec4(in_pos-vec3(0.5,0.5,0.), .5);\n"
267         "}\n";
268
269 static const char *feather_frag =
270         "#version 430\n"
271         "layout(location=0) out vec4 color;\n"
272         "uniform sampler2D tex;\n"
273 // apparently, only doubles index properly in shared buffers
274         "buffer buf { dvec2 points[]; };\n"
275         "uniform float r;\n"
276         "uniform float v;\n"
277         "void main() {\n"
278         "       vec2 tex_st = gl_FragCoord.xy/textureSize(tex,0);\n"
279         "       color = texture(tex, tex_st);\n"
280         "       if( r==0. ) return;\n"
281         "       float rv = r*v>0. ? 1 : -1;\n"
282         "       float rr = r*r, dr = 1./rr;\n"
283         "       float vv = v>=0 ? 1.-v : 1.+v;\n"
284         "       float fg = rv>=0 ? vv : 1.;\n"
285         "       float bg = rv>=0 ? 1. : vv;\n"
286         "       int len = points.length();\n"
287         "       for( int i=0; i<len; ++i ) {\n"
288         "               float dx = float(points[i].x) - gl_FragCoord.x;\n"
289         "               float dy = float(points[i].y) - gl_FragCoord.y;\n"
290         "               float dd = dx*dx + dy*dy;\n"
291         "               if( dd >= rr ) continue;\n"
292         "               float d = dd*dr;\n"
293         "               float a = (1.-d)*fg + d*bg;\n"
294         "               if( rv*(color.a-a) > 0 ) color = vec4(a);\n"
295         "       }\n"
296         "}\n";
297
298 static const char *multiply_mask4_frag =
299         "uniform sampler2D tex;\n"
300         "uniform sampler2D tex1;\n"
301         "void main()\n"
302         "{\n"
303         "       gl_FragColor = texture2D(tex, gl_TexCoord[0].st);\n"
304         "       gl_FragColor.a *= texture2D(tex1, gl_TexCoord[0].st).r;\n"
305         "}\n";
306
307 static const char *multiply_mask3_frag =
308         "uniform sampler2D tex;\n"
309         "uniform sampler2D tex1;\n"
310         "void main()\n"
311         "{\n"
312         "       gl_FragColor = texture2D(tex, gl_TexCoord[0].st);\n"
313         "       float a = texture2D(tex1, gl_TexCoord[0].st).r;\n"
314         "       gl_FragColor.rgb *= vec3(a, a, a);\n"
315         "}\n";
316
317 static const char *multiply_yuvmask3_frag =
318         "uniform sampler2D tex;\n"
319         "uniform sampler2D tex1;\n"
320         "void main()\n"
321         "{\n"
322         "       gl_FragColor = texture2D(tex, gl_TexCoord[0].st);\n"
323         "       float a = texture2D(tex1, gl_TexCoord[0].st).r;\n"
324         "       gl_FragColor.gb -= vec2(0.5, 0.5);\n"
325         "       gl_FragColor.rgb *= vec3(a, a, a);\n"
326         "       gl_FragColor.gb += vec2(0.5, 0.5);\n"
327         "}\n";
328
329 static const char *fade_rgba_frag =
330         "uniform sampler2D tex;\n"
331         "uniform float alpha;\n"
332         "void main()\n"
333         "{\n"
334         "       gl_FragColor = texture2D(tex, gl_TexCoord[0].st);\n"
335         "       gl_FragColor.a *= alpha;\n"
336         "}\n";
337
338 static const char *fade_yuv_frag =
339         "uniform sampler2D tex;\n"
340         "uniform float alpha;\n"
341         "void main()\n"
342         "{\n"
343         "       gl_FragColor = texture2D(tex, gl_TexCoord[0].st);\n"
344         "       gl_FragColor.r *= alpha;\n"
345         "       gl_FragColor.gb -= vec2(0.5, 0.5);\n"
346         "       gl_FragColor.g *= alpha;\n"
347         "       gl_FragColor.b *= alpha;\n"
348         "       gl_FragColor.gb += vec2(0.5, 0.5);\n"
349         "}\n";
350
351 #endif
352
353
354 Playback3DCommand::Playback3DCommand()
355  : BC_SynchronousCommand()
356 {
357         canvas = 0;
358         is_nested = 0;
359 }
360
361 void Playback3DCommand::copy_from(BC_SynchronousCommand *command)
362 {
363         Playback3DCommand *ptr = (Playback3DCommand*)command;
364         this->canvas = ptr->canvas;
365         this->is_cleared = ptr->is_cleared;
366
367         this->in_x1 = ptr->in_x1;
368         this->in_y1 = ptr->in_y1;
369         this->in_x2 = ptr->in_x2;
370         this->in_y2 = ptr->in_y2;
371         this->out_x1 = ptr->out_x1;
372         this->out_y1 = ptr->out_y1;
373         this->out_x2 = ptr->out_x2;
374         this->out_y2 = ptr->out_y2;
375         this->alpha = ptr->alpha;
376         this->mode = ptr->mode;
377         this->interpolation_type = ptr->interpolation_type;
378
379         this->input = ptr->input;
380         this->start_position_project = ptr->start_position_project;
381         this->keyframe_set = ptr->keyframe_set;
382         this->keyframe = ptr->keyframe;
383         this->default_auto = ptr->default_auto;
384         this->plugin_client = ptr->plugin_client;
385         this->want_texture = ptr->want_texture;
386         this->is_nested = ptr->is_nested;
387         this->dst_cmodel = ptr->dst_cmodel;
388
389         BC_SynchronousCommand::copy_from(command);
390 }
391
392 Playback3D::Playback3D(MWindow *mwindow)
393  : BC_Synchronous()
394 {
395         this->mwindow = mwindow;
396         temp_texture = 0;
397 }
398
399 Playback3D::~Playback3D()
400 {
401 }
402
403
404
405
406 BC_SynchronousCommand* Playback3D::new_command()
407 {
408         return new Playback3DCommand;
409 }
410
411
412
413 void Playback3D::handle_command(BC_SynchronousCommand *command)
414 {
415 //printf("Playback3D::handle_command 1 %d\n", command->command);
416         switch(command->command)
417         {
418                 case Playback3DCommand::WRITE_BUFFER:
419                         write_buffer_sync((Playback3DCommand*)command);
420                         break;
421
422                 case Playback3DCommand::CLEAR_OUTPUT:
423                         clear_output_sync((Playback3DCommand*)command);
424                         break;
425
426                 case Playback3DCommand::CLEAR_INPUT:
427                         clear_input_sync((Playback3DCommand*)command);
428                         break;
429
430                 case Playback3DCommand::DO_CAMERA:
431                         do_camera_sync((Playback3DCommand*)command);
432                         break;
433
434                 case Playback3DCommand::OVERLAY:
435                         overlay_sync((Playback3DCommand*)command);
436                         break;
437
438                 case Playback3DCommand::DO_FADE:
439                         do_fade_sync((Playback3DCommand*)command);
440                         break;
441
442                 case Playback3DCommand::DO_MASK:
443                         do_mask_sync((Playback3DCommand*)command);
444                         break;
445
446                 case Playback3DCommand::PLUGIN:
447                         run_plugin_sync((Playback3DCommand*)command);
448                         break;
449
450                 case Playback3DCommand::COPY_FROM:
451                         copy_from_sync((Playback3DCommand*)command);
452                         break;
453
454                 case Playback3DCommand::CONVERT_CMODEL:
455                         convert_cmodel_sync((Playback3DCommand*)command);
456                         break;
457
458 //              case Playback3DCommand::DRAW_REFRESH:
459 //                      draw_refresh_sync((Playback3DCommand*)command);
460 //                      break;
461         }
462 //printf("Playback3D::handle_command 10\n");
463 }
464
465
466
467
468 void Playback3D::copy_from(Canvas *canvas,
469         VFrame *dst,
470         VFrame *src,
471         int want_texture)
472 {
473         Playback3DCommand command;
474         command.command = Playback3DCommand::COPY_FROM;
475         command.canvas = canvas;
476         command.frame = dst;
477         command.input = src;
478         command.want_texture = want_texture;
479         send_command(&command);
480 }
481
482 void Playback3D::copy_from_sync(Playback3DCommand *command)
483 {
484 #ifdef HAVE_GL
485         BC_WindowBase *window =
486                 command->canvas->lock_canvas("Playback3D::copy_from_sync");
487         if( window ) {
488                 window->enable_opengl();
489                 glFinish();
490                 int w = command->input->get_w();
491                 int h = command->input->get_h();
492
493                 if(command->input->get_opengl_state() == VFrame::SCREEN &&
494                         w == command->frame->get_w() && h == command->frame->get_h())
495                 {
496 // printf("Playback3D::copy_from_sync 1 %d %d %d %d %d\n",
497 // command->input->get_w(),
498 // command->input->get_h(),
499 // command->frame->get_w(),
500 // command->frame->get_h(),
501 // command->frame->get_color_model());
502 // With NVidia at least,
503                         if(w % 4)
504                         {
505                                 printf("Playback3D::copy_from_sync: w=%d not supported because it is not divisible by 4.\n", w);
506                         }
507                         else
508 // Copy to texture
509                         if(command->want_texture)
510                         {
511 //printf("Playback3D::copy_from_sync 1 dst=%p src=%p\n", command->frame, command->input);
512 // Screen_to_texture requires the source pbuffer enabled.
513                                 command->input->enable_opengl();
514                                 command->frame->screen_to_texture();
515                                 command->frame->set_opengl_state(VFrame::TEXTURE);
516                         }
517                         else
518 // Copy to RAM
519                         {
520                                 command->input->to_texture();
521                                 command->input->bind_texture(0);
522                                 command->frame->enable_opengl();
523                                 command->frame->init_screen();
524                                 unsigned int shader = BC_CModels::is_yuv(command->input->get_color_model()) ?
525                                         VFrame::make_shader(0, yuv_to_rgb_frag, 0) : 0;
526                                 if( shader > 0 ) {
527                                         glUseProgram(shader);
528                                         int variable = glGetUniformLocation(shader, "tex");
529                                         glUniform1i(variable, 0);
530                                         BC_GL_YUV_TO_RGB(shader);
531                                 }
532                                 else
533                                         glUseProgram(0);
534                                 command->input->draw_texture(1);
535                                 command->frame->screen_to_ram();
536                                 glUseProgram(0);
537                         }
538                 }
539                 else
540                 {
541                         printf("Playback3D::copy_from_sync: invalid formats opengl_state=%d %dx%d -> %dx%d\n",
542                                 command->input->get_opengl_state(), w, h,
543                                 command->frame->get_w(), command->frame->get_h());
544                 }
545         }
546         command->canvas->unlock_canvas();
547 #endif
548 }
549
550
551
552
553 // void Playback3D::draw_refresh(Canvas *canvas,
554 //      VFrame *frame,
555 //      float in_x1,
556 //      float in_y1,
557 //      float in_x2,
558 //      float in_y2,
559 //      float out_x1,
560 //      float out_y1,
561 //      float out_x2,
562 //      float out_y2)
563 // {
564 //      Playback3DCommand command;
565 //      command.command = Playback3DCommand::DRAW_REFRESH;
566 //      command.canvas = canvas;
567 //      command.frame = frame;
568 //      command.in_x1 = in_x1;
569 //      command.in_y1 = in_y1;
570 //      command.in_x2 = in_x2;
571 //      command.in_y2 = in_y2;
572 //      command.out_x1 = out_x1;
573 //      command.out_y1 = out_y1;
574 //      command.out_x2 = out_x2;
575 //      command.out_y2 = out_y2;
576 //      send_command(&command);
577 // }
578 //
579 // void Playback3D::draw_refresh_sync(Playback3DCommand *command)
580 // {
581 // #ifdef HAVE_GL
582 //      BC_WindowBase *window =
583 //              command->canvas->lock_canvas("Playback3D::draw_refresh_sync");
584 //      if( window ) {
585 //              window->enable_opengl();
586 //
587 // // Read output pbuffer back to RAM in project colormodel
588 // // RGB 8bit is fastest for OpenGL to read back.
589 //              command->frame->reallocate(0,
590 //                      0,
591 //                      0,
592 //                      0,
593 //                      command->frame->get_w(),
594 //                      command->frame->get_h(),
595 //                      BC_RGB888,
596 //                      -1);
597 //              command->frame->screen_to_ram();
598 //
599 //              window->clear_box(0,
600 //                                              0,
601 //                                              window->get_w(),
602 //                                              window->get_h());
603 //              window->draw_vframe(command->frame,
604 //                                                      (int)command->out_x1,
605 //                                                      (int)command->out_y1,
606 //                                                      (int)(command->out_x2 - command->out_x1),
607 //                                                      (int)(command->out_y2 - command->out_y1),
608 //                                                      (int)command->in_x1,
609 //                                                      (int)command->in_y1,
610 //                                                      (int)(command->in_x2 - command->in_x1),
611 //                                                      (int)(command->in_y2 - command->in_y1),
612 //                                                      0);
613 //
614 //      }
615 //      command->canvas->unlock_canvas();
616 // #endif
617 // }
618
619
620
621
622
623 void Playback3D::write_buffer(Canvas *canvas,
624         VFrame *frame,
625         float in_x1,
626         float in_y1,
627         float in_x2,
628         float in_y2,
629         float out_x1,
630         float out_y1,
631         float out_x2,
632         float out_y2,
633         int is_cleared)
634 {
635         Playback3DCommand command;
636         command.command = Playback3DCommand::WRITE_BUFFER;
637         command.canvas = canvas;
638         command.frame = frame;
639         command.in_x1 = in_x1;
640         command.in_y1 = in_y1;
641         command.in_x2 = in_x2;
642         command.in_y2 = in_y2;
643         command.out_x1 = out_x1;
644         command.out_y1 = out_y1;
645         command.out_x2 = out_x2;
646         command.out_y2 = out_y2;
647         command.is_cleared = is_cleared;
648         send_command(&command);
649 }
650
651
652 void Playback3D::write_buffer_sync(Playback3DCommand *command)
653 {
654 #ifdef HAVE_GL
655         BC_WindowBase *window =
656                 command->canvas->lock_canvas("Playback3D::write_buffer_sync");
657         if( window ) {
658                 window->enable_opengl();
659 // Update hidden cursor
660                 window->update_video_cursor();
661                 command->frame->enable_opengl();
662                 command->frame->init_screen();
663 //printf("Playback3D::write_buffer_sync 1 %d\n", window->get_id());
664                 int frame_state = command->frame->get_opengl_state();
665                 if( frame_state != VFrame::TEXTURE )
666                         command->frame->to_texture();
667                 if( frame_state != VFrame::RAM ) {
668                         command->in_y1 = command->frame->get_h() - command->in_y1;
669                         command->in_y2 = command->frame->get_h() - command->in_y2;
670                 }
671                 window->enable_opengl();
672                 draw_output(command, 1);
673                 command->frame->set_opengl_state(frame_state);
674         }
675         command->canvas->unlock_canvas();
676 #endif
677 }
678
679
680
681 void Playback3D::draw_output(Playback3DCommand *command, int flip_y)
682 {
683 #ifdef HAVE_GL
684         int texture_id = command->frame->get_texture_id();
685         BC_WindowBase *window = command->canvas->get_canvas();
686
687 // printf("Playback3D::draw_output 1 texture_id=%d window=%p\n",
688 // texture_id,
689 // command->canvas->get_canvas());
690
691
692
693
694 // If virtual console is being used, everything in this function has
695 // already been done except the page flip.
696         if(texture_id >= 0)
697         {
698                 canvas_w = window->get_w();
699                 canvas_h = window->get_h();
700                 VFrame::init_screen(canvas_w, canvas_h);
701                 int color_model = command->frame->get_color_model();
702                 int is_yuv = BC_CModels::is_yuv(color_model);
703
704                 if(!command->is_cleared)
705                 {
706 // If we get here, the virtual console was not used.
707                         init_frame(command, 0);
708                 }
709
710 // Texture
711 // Undo any previous shader settings
712                 command->frame->bind_texture(0);
713
714 // Convert colormodel
715                 unsigned int shader = is_yuv ? VFrame::make_shader(0, yuv_to_rgb_frag, 0) : 0;
716                 if( shader > 0 ) {
717                         glUseProgram(shader);
718 // Set texture unit of the texture
719                         int variable = glGetUniformLocation(shader, "tex");
720                         glUniform1i(variable, 0);
721                         BC_GL_YUV_TO_RGB(shader);
722                 }
723
724 //              if(BC_CModels::components(color_model) == 4)
725 //              {
726 //                      glEnable(GL_BLEND);
727 //                      glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
728 //              }
729
730                 command->frame->draw_texture(
731                         command->in_x1, command->in_y1, command->in_x2, command->in_y2,
732                         command->out_x1, command->out_y1, command->out_x2, command->out_y2,
733                         flip_y);
734
735
736 //printf("Playback3D::draw_output 2 %f,%f %f,%f -> %f,%f %f,%f\n",
737 // command->in_x1, command->in_y1, command->in_x2, command->in_y2,
738 // command->out_x1, command->out_y1, command->out_x2, command->out_y2);
739
740                 glUseProgram(0);
741
742                 command->canvas->get_canvas()->flip_opengl();
743
744         }
745 #endif
746 }
747
748
749 void Playback3D::init_frame(Playback3DCommand *command, int is_yuv)
750 {
751 #ifdef HAVE_GL
752         float gbuv = is_yuv ? 0.5 : 0.0;
753         glClearColor(0.0, gbuv, gbuv, 0.0);
754         glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
755 #endif
756 }
757
758
759 void Playback3D::clear_output(Canvas *canvas, VFrame *output)
760 {
761         Playback3DCommand command;
762         command.command = Playback3DCommand::CLEAR_OUTPUT;
763         command.canvas = canvas;
764         command.frame = output;
765         send_command(&command);
766 }
767
768 void Playback3D::clear_output_sync(Playback3DCommand *command)
769 {
770 #ifdef HAVE_GL
771         BC_WindowBase *window =
772                 command->canvas->lock_canvas("Playback3D::clear_output_sync");
773         if( window ) {
774 // If we get here, the virtual console is being used.
775                 command->canvas->get_canvas()->enable_opengl();
776                 int is_yuv = 0;
777 // Using pbuffer for refresh frame.
778                 if( command->frame ) {
779                         command->frame->enable_opengl();
780                         int color_model = command->canvas->mwindow->edl->session->color_model;
781                         is_yuv = BC_CModels::is_yuv(color_model);
782                 }
783
784                 init_frame(command, is_yuv);
785         }
786         command->canvas->unlock_canvas();
787 #endif
788 }
789
790
791 void Playback3D::clear_input(Canvas *canvas, VFrame *frame)
792 {
793         Playback3DCommand command;
794         command.command = Playback3DCommand::CLEAR_INPUT;
795         command.canvas = canvas;
796         command.frame = frame;
797         send_command(&command);
798 }
799
800 void Playback3D::clear_input_sync(Playback3DCommand *command)
801 {
802 #ifdef HAVE_GL
803         BC_WindowBase *window =
804                 command->canvas->lock_canvas("Playback3D::clear_input_sync");
805         if( window ) {
806                 command->canvas->get_canvas()->enable_opengl();
807                 command->frame->enable_opengl();
808                 command->frame->clear_pbuffer();
809                 command->frame->set_opengl_state(VFrame::SCREEN);
810         }
811         command->canvas->unlock_canvas();
812 #endif
813 }
814
815 void Playback3D::do_camera(Canvas *canvas,
816         VFrame *output,
817         VFrame *input,
818         float in_x1,
819         float in_y1,
820         float in_x2,
821         float in_y2,
822         float out_x1,
823         float out_y1,
824         float out_x2,
825         float out_y2)
826 {
827         Playback3DCommand command;
828         command.command = Playback3DCommand::DO_CAMERA;
829         command.canvas = canvas;
830         command.input = input;
831         command.frame = output;
832         command.in_x1 = in_x1;
833         command.in_y1 = in_y1;
834         command.in_x2 = in_x2;
835         command.in_y2 = in_y2;
836         command.out_x1 = out_x1;
837         command.out_y1 = out_y1;
838         command.out_x2 = out_x2;
839         command.out_y2 = out_y2;
840         send_command(&command);
841 }
842
843 void Playback3D::do_camera_sync(Playback3DCommand *command)
844 {
845 #ifdef HAVE_GL
846         BC_WindowBase *window =
847                 command->canvas->lock_canvas("Playback3D::do_camera_sync");
848         if( window ) {
849                 command->canvas->get_canvas()->enable_opengl();
850
851                 command->input->to_texture();
852                 command->frame->enable_opengl();
853                 command->frame->init_screen();
854                 command->frame->clear_pbuffer();
855
856                 command->input->bind_texture(0);
857 // Must call draw_texture in input frame to get the texture coordinates right.
858
859 // printf("Playback3D::do_camera_sync 1 %.2f %.2f %.2f %.2f %.2f %.2f %.2f %.2f\n",
860 // command->in_x1,
861 // command->in_y2,
862 // command->in_x2,
863 // command->in_y1,
864 // command->out_x1,
865 // (float)command->input->get_h() - command->out_y1,
866 // command->out_x2,
867 // (float)command->input->get_h() - command->out_y2);
868                 command->input->draw_texture(
869                         command->in_x1, command->in_y2,
870                         command->in_x2, command->in_y1,
871                         command->out_x1,
872                         (float)command->frame->get_h() - command->out_y1,
873                         command->out_x2,
874                         (float)command->frame->get_h() - command->out_y2);
875
876
877                 command->frame->set_opengl_state(VFrame::SCREEN);
878                 command->frame->screen_to_ram();
879         }
880         command->canvas->unlock_canvas();
881 #endif
882 }
883
884 void Playback3D::overlay(Canvas *canvas, VFrame *input,
885         float in_x1, float in_y1, float in_x2, float in_y2,
886         float out_x1, float out_y1, float out_x2, float out_y2,
887         float alpha, int mode, int interpolation_type,
888         VFrame *output, int is_nested)
889 {
890         Playback3DCommand command;
891         command.command = Playback3DCommand::OVERLAY;
892         command.canvas = canvas;
893         command.frame = output;
894         command.input = input;
895         command.in_x1 = in_x1;
896         command.in_y1 = in_y1;
897         command.in_x2 = in_x2;
898         command.in_y2 = in_y2;
899         command.out_x1 = out_x1;
900         command.out_y1 = out_y1;
901         command.out_x2 = out_x2;
902         command.out_y2 = out_y2;
903         command.alpha = alpha;
904         command.mode = mode;
905         command.interpolation_type = interpolation_type;
906         command.is_nested = is_nested;
907         send_command(&command);
908 }
909
910 void Playback3D::overlay_sync(Playback3DCommand *command)
911 {
912 #ifdef HAVE_GL
913 // To do these operations, we need to copy the input buffer to a texture
914 // and blend 2 textures in a shader
915         static const char * const overlay_shaders[TRANSFER_TYPES] = {
916                 blend_NORMAL_frag,      // TRANSFER_NORMAL
917                 blend_ADDITION_frag,    // TRANSFER_ADDITION
918                 blend_SUBTRACT_frag,    // TRANSFER_SUBTRACT
919                 blend_MULTIPLY_frag,    // TRANSFER_MULTIPLY
920                 blend_DIVIDE_frag,      // TRANSFER_DIVIDE
921                 blend_REPLACE_frag,     // TRANSFER_REPLACE
922                 blend_MAX_frag,         // TRANSFER_MAX
923                 blend_MIN_frag,         // TRANSFER_MIN
924                 blend_DARKEN_frag,      // TRANSFER_DARKEN
925                 blend_LIGHTEN_frag,     // TRANSFER_LIGHTEN
926                 blend_DST_frag,         // TRANSFER_DST
927                 blend_DST_ATOP_frag,    // TRANSFER_DST_ATOP
928                 blend_DST_IN_frag,      // TRANSFER_DST_IN
929                 blend_DST_OUT_frag,     // TRANSFER_DST_OUT
930                 blend_DST_OVER_frag,    // TRANSFER_DST_OVER
931                 blend_SRC_frag,         // TRANSFER_SRC
932                 blend_SRC_ATOP_frag,    // TRANSFER_SRC_ATOP
933                 blend_SRC_IN_frag,      // TRANSFER_SRC_IN
934                 blend_SRC_OUT_frag,     // TRANSFER_SRC_OUT
935                 blend_SRC_OVER_frag,    // TRANSFER_SRC_OVER
936                 blend_AND_frag,         // TRANSFER_AND
937                 blend_OR_frag,          // TRANSFER_OR
938                 blend_XOR_frag,         // TRANSFER_XOR
939                 blend_OVERLAY_frag,     // TRANSFER_OVERLAY
940                 blend_SCREEN_frag,      // TRANSFER_SCREEN
941                 blend_BURN_frag,        // TRANSFER_BURN
942                 blend_DODGE_frag,       // TRANSFER_DODGE
943                 blend_HARDLIGHT_frag,   // TRANSFER_HARDLIGHT
944                 blend_SOFTLIGHT_frag,   // TRANSFER_SOFTLIGHT
945                 blend_DIFFERENCE_frag,  // TRANSFER_DIFFERENCE
946         };
947
948         BC_WindowBase *window =
949                 command->canvas->lock_canvas("Playback3D::overlay_sync");
950         if( window ) {
951 // Make sure OpenGL is enabled first.
952                 window->enable_opengl();
953                 window->update_video_cursor();
954
955                 glColor4f(1, 1, 1, 1);
956                 glDisable(GL_BLEND);
957
958
959 //printf("Playback3D::overlay_sync 1 %d\n", command->input->get_opengl_state());
960                 switch( command->input->get_opengl_state() ) {
961 // Upload texture and composite to screen
962                 case VFrame::RAM:
963                         command->input->to_texture();
964                         break;
965 // Just composite texture to screen
966                 case VFrame::TEXTURE:
967                         break;
968 // read from PBuffer to texture, then composite texture to screen
969                 case VFrame::SCREEN:
970                         command->input->enable_opengl();
971                         command->input->screen_to_texture();
972                         break;
973                 default:
974                         printf("Playback3D::overlay_sync unknown state\n");
975                         break;
976                 }
977
978                 if(command->frame) {
979 // Render to PBuffer
980                         command->frame->enable_opengl();
981                         command->frame->set_opengl_state(VFrame::SCREEN);
982                         canvas_w = command->frame->get_w();
983                         canvas_h = command->frame->get_h();
984                 }
985                 else {
986 // Render to canvas
987                         window->enable_opengl();
988                         canvas_w = window->get_w();
989                         canvas_h = window->get_h();
990                 }
991
992
993                 const char *shader_stack[16];
994                 memset(shader_stack,0, sizeof(shader_stack));
995                 int total_shaders = 0, need_matrix = 0;
996
997                 VFrame::init_screen(canvas_w, canvas_h);
998
999 // Enable texture
1000                 command->input->bind_texture(0);
1001
1002 // Convert colormodel to RGB if not nested.
1003 // The color model setting in the output frame is ignored.
1004 //              if( command->is_nested <= 0 &&  // not nested
1005 //                  BC_CModels::is_yuv(command->input->get_color_model()) ) {
1006 //                      need_matrix = 1;
1007 //                      shader_stack[total_shaders++] = yuv_to_rgb_frag;
1008 //              }
1009
1010 // get the shaders
1011 #define add_shader(s) \
1012   if(!total_shaders) shader_stack[total_shaders++] = read_texture_frag; \
1013   shader_stack[total_shaders++] = s
1014
1015                 switch(command->mode) {
1016                 case TRANSFER_REPLACE:
1017 // This requires overlaying an alpha multiplied image on a black screen.
1018                         if( command->input->get_texture_components() != 4 ) break;
1019                         add_shader(overlay_shaders[command->mode]);
1020                         break;
1021                 default:
1022                         enable_overlay_texture(command);
1023                         add_shader(overlay_shaders[command->mode]);
1024                         break;
1025                 }
1026
1027 // if to flatten alpha
1028 //              if( command->is_nested < 0 ) {
1029 //                      switch(command->input->get_color_model()) {
1030 //// yuv has already been converted to rgb
1031 //                      case BC_YUVA8888:
1032 //                      case BC_RGBA_FLOAT:
1033 //                      case BC_RGBA8888:
1034 //                              add_shader(rgba_to_rgb_flatten);
1035 //                              break;
1036 //                      }
1037 //              }
1038
1039 // run the shaders
1040                 add_shader(0);
1041                 unsigned int shader = !shader_stack[0] ? 0 :
1042                         VFrame::make_shader(shader_stack);
1043                 if( shader > 0 ) {
1044                         glUseProgram(shader);
1045                         if( need_matrix ) BC_GL_YUV_TO_RGB(shader);
1046 // Set texture unit of the texture
1047                         glUniform1i(glGetUniformLocation(shader, "tex"), 0);
1048 // Set texture unit of the temp texture
1049                         glUniform1i(glGetUniformLocation(shader, "tex2"), 1);
1050 // Set alpha
1051                         int variable = glGetUniformLocation(shader, "alpha");
1052                         glUniform1f(variable, command->alpha);
1053 // Set dimensions of the temp texture
1054                         if(temp_texture)
1055                                 glUniform2f(glGetUniformLocation(shader, "tex2_dimensions"),
1056                                         (float)temp_texture->get_texture_w(),
1057                                         (float)temp_texture->get_texture_h());
1058                 }
1059                 else
1060                         glUseProgram(0);
1061
1062
1063 //printf("Playback3D::overlay_sync %f %f %f %f %f %f %f %f\n",
1064 // command->in_x1, command->in_y1, command->in_x2, command->in_y2,
1065 // command->out_x1, command->out_y1, command->out_x2, command->out_y2);
1066
1067                 command->input->draw_texture(
1068                         command->in_x1, command->in_y1, command->in_x2, command->in_y2,
1069                         command->out_x1, command->out_y1, command->out_x2, command->out_y2,
1070                         !command->is_nested);
1071                 glUseProgram(0);
1072
1073 // Delete temp texture
1074                 if(temp_texture) {
1075                         delete temp_texture;
1076                         temp_texture = 0;
1077                         glActiveTexture(GL_TEXTURE1);
1078                         glDisable(GL_TEXTURE_2D);
1079                 }
1080                 glActiveTexture(GL_TEXTURE0);
1081                 glDisable(GL_TEXTURE_2D);
1082         }
1083         command->canvas->unlock_canvas();
1084 #endif
1085 }
1086
1087 void Playback3D::enable_overlay_texture(Playback3DCommand *command)
1088 {
1089 #ifdef HAVE_GL
1090         glDisable(GL_BLEND);
1091
1092         glActiveTexture(GL_TEXTURE1);
1093         BC_Texture::new_texture(&temp_texture, canvas_w, canvas_h,
1094                 command->input->get_color_model());
1095         temp_texture->bind(1);
1096
1097 // Read canvas into texture
1098         glReadBuffer(GL_BACK);
1099         glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 0, 0, canvas_w, canvas_h);
1100 #endif
1101 }
1102
1103
1104 void Playback3D::do_mask(Canvas *canvas,
1105         VFrame *output,
1106         int64_t start_position_project,
1107         MaskAutos *keyframe_set,
1108         MaskAuto *keyframe,
1109         MaskAuto *default_auto)
1110 {
1111         Playback3DCommand command;
1112         command.command = Playback3DCommand::DO_MASK;
1113         command.canvas = canvas;
1114         command.frame = output;
1115         command.start_position_project = start_position_project;
1116         command.keyframe_set = keyframe_set;
1117         command.keyframe = keyframe;
1118         command.default_auto = default_auto;
1119
1120         send_command(&command);
1121 }
1122
1123
1124 void Playback3D::draw_spots(MaskSpots &spots, int ix1,int iy1, int ix2,int iy2)
1125 {
1126         int x1 = iy1 < iy2 ? ix1 : ix2;
1127         int y1 = iy1 < iy2 ? iy1 : iy2;
1128         int x2 = iy1 < iy2 ? ix2 : ix1;
1129         int y2 = iy1 < iy2 ? iy2 : iy1;
1130
1131         int x = x1, y = y1;
1132         int dx = x2-x1, dy = y2-y1;
1133         int dx2 = 2*dx, dy2 = 2*dy;
1134         if( dx < 0 ) dx = -dx;
1135         int m = dx > dy ? dx : dy, n = m;
1136         if( dy >= dx ) {
1137                 if( dx2 >= 0 ) do {     /* +Y, +X */
1138                         spots.append(x, y++);
1139                         if( (m -= dx2) < 0 ) { m += dy2;  ++x; }
1140                 } while( --n >= 0 );
1141                 else do {              /* +Y, -X */
1142                         spots.append(x, y++);
1143                         if( (m += dx2) < 0 ) { m += dy2;  --x; }
1144                 } while( --n >= 0 );
1145         }
1146         else {
1147                 if( dx2 >= 0 ) do {     /* +X, +Y */
1148                         spots.append(x++, y);
1149                         if( (m -= dy2) < 0 ) { m += dx2;  ++y; }
1150                 } while( --n >= 0 );
1151                 else do {              /* -X, +Y */
1152                         spots.append(x--, y);
1153                         if( (m -= dy2) < 0 ) { m -= dx2;  ++y; }
1154                 } while( --n >= 0 );
1155         }
1156 }
1157
1158 #ifdef HAVE_GL
1159 class fb_texture : public BC_Texture
1160 {
1161 public:
1162         fb_texture(int w, int h, int colormodel);
1163         ~fb_texture();
1164         void bind(int texture_unit);
1165         void read_screen(int x, int y, int w, int h);
1166         void set_output_texture();
1167         GLuint fb, rb;
1168 };
1169
1170 fb_texture::fb_texture(int w, int h, int colormodel)
1171  : BC_Texture(w, h, colormodel)
1172 {
1173         fb = 0;  rb = 0;
1174 //      glGenRenderbuffers(1, &rb);
1175 //      glBindRenderbuffer(GL_RENDERBUFFER, rb);
1176 //      glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA, get_texture_w(), get_texture_w());
1177         glGenFramebuffers(1, &fb);
1178         glBindFramebuffer(GL_FRAMEBUFFER, fb);
1179 //      glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, rb);
1180 }
1181
1182 fb_texture::~fb_texture()
1183 {
1184         glBindFramebuffer(GL_FRAMEBUFFER, 0);
1185         glDeleteFramebuffers(1, (GLuint *)&fb);
1186 //      glBindRenderbuffer(GL_RENDERBUFFER, 0);
1187 //      glGenRenderbuffers(1, &rb);
1188 }
1189
1190 void fb_texture::bind(int texture_unit)
1191 {
1192         glBindFramebuffer(GL_FRAMEBUFFER, fb);
1193 //      glBindRenderbuffer(GL_RENDERBUFFER, rb);
1194         BC_Texture::bind(texture_unit);
1195 }
1196
1197 void fb_texture::read_screen(int x, int y, int w, int h)
1198 {
1199         glBindFramebuffer(GL_FRAMEBUFFER, 0);
1200         glReadBuffer(GL_BACK);
1201         glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0,0, x,y, w,h);
1202 }
1203
1204 void fb_texture::set_output_texture()
1205 {
1206         glFramebufferTexture(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, get_texture_id(), 0);
1207         GLenum dbo[1] = { GL_COLOR_ATTACHMENT0, }; // bind layout(location=0) out vec4 color;
1208         glDrawBuffers(1, dbo);
1209         int ret = glCheckFramebufferStatus(GL_FRAMEBUFFER);
1210         if( ret != GL_FRAMEBUFFER_COMPLETE ) {
1211                 printf("glDrawBuffer error 0x%04x\n", ret);
1212                 return;
1213         }
1214 }
1215
1216 static void combineData(GLdouble coords[3],
1217                 GLdouble *vertex_data[4], GLfloat weight[4],
1218                 GLdouble **outData, void *data)
1219 {
1220         ArrayList<double *> *invented = (ArrayList<double *> *)data;
1221         GLdouble *vertex = new double[6];
1222         invented->append(vertex);
1223         vertex[0] = coords[0];
1224         vertex[1] = coords[1];
1225         vertex[2] = coords[2];
1226         for( int i=3; i<6; ++i ) {
1227                 vertex[i] = weight[0] * vertex_data[0][i] +
1228                         weight[1] * vertex_data[1][i] +
1229                         weight[2] * vertex_data[2][i] +
1230                         weight[3] * vertex_data[3][i];
1231         }
1232         *outData = vertex;
1233 }
1234
1235 // dbug
1236 static void zglBegin(GLenum mode) { glBegin(mode); }
1237 static void zglEnd() { glEnd(); }
1238 static void zglVertex3dv(const GLdouble *v) { glVertex3dv(v); }
1239
1240 #endif
1241
1242 void Playback3D::do_mask_sync(Playback3DCommand *command)
1243 {
1244 #ifdef HAVE_GL
1245         BC_WindowBase *window =
1246                 command->canvas->lock_canvas("Playback3D::do_mask_sync");
1247         if( window ) {
1248                 window->enable_opengl();
1249
1250                 switch( command->frame->get_opengl_state() ) {
1251                 case VFrame::RAM:
1252 // upload frame to the texture
1253                         command->frame->to_texture();
1254                         break;
1255
1256                 case VFrame::SCREEN:
1257 // Read back from PBuffer
1258 // Bind context to pbuffer
1259                         command->frame->enable_opengl();
1260                         command->frame->screen_to_texture();
1261                         break;
1262                 }
1263
1264 // Initialize coordinate system
1265                 command->frame->enable_opengl();
1266                 command->frame->init_screen();
1267                 int color_model = command->frame->get_color_model();
1268                 int w = command->frame->get_w();
1269                 int h = command->frame->get_h();
1270                 MaskEdges edges;
1271                 float faders[SUBMASKS], feathers[SUBMASKS], bg = 1;
1272                 MaskPointSet point_set[SUBMASKS];
1273 // Draw every submask as a new polygon
1274                 int total_submasks = command->keyframe_set->total_submasks(
1275                         command->start_position_project, PLAY_FORWARD);
1276
1277                 for(int k = 0; k < total_submasks; k++) {
1278                         MaskPointSet &points = point_set[k];
1279                         command->keyframe_set->get_points(&points,
1280                                 k, command->start_position_project, PLAY_FORWARD);
1281                         float fader = command->keyframe_set->get_fader(
1282                                 command->start_position_project, k, PLAY_FORWARD);
1283                         float v = fader/100.;
1284                         faders[k] = v;
1285                         if( v < 0 && (v+=1) < bg ) bg = v;
1286                         float feather = command->keyframe_set->get_feather(
1287                                 command->start_position_project, k, PLAY_FORWARD);
1288                         feathers[k] = feather;
1289                 }
1290 // clear screen
1291                 glDisable(GL_TEXTURE_2D);
1292                 glClearColor(bg, bg, bg, bg);
1293                 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
1294
1295                 for(int k = 0; k < total_submasks; k++) {
1296                         MaskPointSet &points = point_set[k];
1297                         MaskEdge &edge = *edges.append(new MaskEdge());
1298                         int first_point = 0;
1299 // Need to tabulate every vertex in persistent memory because
1300 // gluTessVertex doesn't copy them.
1301                         for(int i = 0; i < points.total; i++) {
1302                                 MaskPoint *point1 = points.values[i];
1303                                 MaskPoint *point2 = (i >= points.total - 1) ?
1304                                         points.values[0] : points.values[i + 1];
1305
1306                                 float x, y;
1307                                 int segments = 0;
1308                                 if( point1->control_x2 == 0 && point1->control_y2 == 0 &&
1309                                     point2->control_x1 == 0 && point2->control_y1 == 0 )
1310                                         segments = 1;
1311
1312                                 float x0 = point1->x, y0 = point1->y;
1313                                 float x1 = point1->x + point1->control_x2;
1314                                 float y1 = point1->y + point1->control_y2;
1315                                 float x2 = point2->x + point2->control_x1;
1316                                 float y2 = point2->y + point2->control_y1;
1317                                 float x3 = point2->x, y3 = point2->y;
1318
1319                                 // forward differencing bezier curves implementation taken from GPL code at
1320                                 // http://cvs.sourceforge.net/viewcvs.py/guliverkli/guliverkli/src/subtitles/Rasterizer.cpp?rev=1.3
1321
1322                                 float cx3, cx2, cx1, cx0, cy3, cy2, cy1, cy0;
1323
1324                                 // [-1 +3 -3 +1]
1325                                 // [+3 -6 +3  0]
1326                                 // [-3 +3  0  0]
1327                                 // [+1  0  0  0]
1328
1329                                 cx3 = -  x0 + 3*x1 - 3*x2 + x3;
1330                                 cx2 =  3*x0 - 6*x1 + 3*x2;
1331                                 cx1 = -3*x0 + 3*x1;
1332                                 cx0 =    x0;
1333
1334                                 cy3 = -  y0 + 3*y1 - 3*y2 + y3;
1335                                 cy2 =  3*y0 - 6*y1 + 3*y2;
1336                                 cy1 = -3*y0 + 3*y1;
1337                                 cy0 =    y0;
1338
1339                                 // This equation is from Graphics Gems I.
1340                                 //
1341                                 // The idea is that since we're approximating a cubic curve with lines,
1342                                 // any error we incur is due to the curvature of the line, which we can
1343                                 // estimate by calculating the maximum acceleration of the curve.  For
1344                                 // a cubic, the acceleration (second derivative) is a line, meaning that
1345                                 // the absolute maximum acceleration must occur at either the beginning
1346                                 // (|c2|) or the end (|c2+c3|).  Our bounds here are a little more
1347                                 // conservative than that, but that's okay.
1348                                 if (segments == 0) {
1349                                         float maxaccel1 = fabs(2*cy2) + fabs(6*cy3);
1350                                         float maxaccel2 = fabs(2*cx2) + fabs(6*cx3);
1351
1352                                         float maxaccel = maxaccel1 > maxaccel2 ? maxaccel1 : maxaccel2;
1353                                         float h = 1.0;
1354
1355                                         if(maxaccel > 8.0) h = sqrt((8.0) / maxaccel);
1356                                         segments = int(1/h);
1357                                 }
1358
1359                                 for(int j = 0; j <= segments; j++) {
1360                                         float t = (float)j / segments;
1361                                         x = cx0 + t*(cx1 + t*(cx2 + t*cx3));
1362                                         y = cy0 + t*(cy1 + t*(cy2 + t*cy3));
1363
1364                                         if(j > 0 || first_point) {
1365                                                 edge.append(x, y - h);
1366                                                 first_point = 0;
1367                                         }
1368                                 }
1369                         }
1370                         if( edge.size() > 0 ) {
1371 // draw polygon
1372                                 float fader = faders[k];
1373                                 float v = fader < 0 ? 1 : 1-fader;
1374                                 glColor4f(v, v, v, v);
1375                                 int display_list = glGenLists(1);
1376                                 glNewList(display_list, GL_COMPILE);
1377 #if 0
1378                                 glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
1379                                 glBegin(GL_POLYGON);
1380                                 MaskCoord *c = &edge[0];
1381                                 for( int i=edge.size(); --i>=0; ++c )
1382                                         glVertex2f(c->x, c->y);
1383                                 glEnd();
1384 #else
1385                                 GLUtesselator *tess = gluNewTess();
1386                                 gluTessCallback(tess, GLU_TESS_VERTEX,(GLvoid (*)()) &zglVertex3dv);
1387                                 gluTessCallback(tess, GLU_TESS_BEGIN,(GLvoid (*)()) &zglBegin);
1388                                 gluTessCallback(tess, GLU_TESS_END,(GLvoid (*)()) &zglEnd);
1389                                 gluTessCallback(tess, GLU_TESS_COMBINE_DATA,(GLvoid (*)()) &combineData);
1390                                 ArrayList<double *> invented;
1391                                 invented.set_array_delete();
1392
1393                                 gluTessBeginPolygon(tess, &invented);
1394                                 gluTessBeginContour(tess);
1395                                 MaskCoord *c = &edge[0];
1396                                 for( int i=edge.size(); --i>=0; ++c )
1397                                         gluTessVertex(tess, (GLdouble *)c, c);
1398                                 gluTessEndContour(tess);
1399                                 gluTessEndPolygon(tess);
1400                                 gluDeleteTess(tess);
1401                                 invented.remove_all_objects();
1402 #endif
1403                                 glEndList();
1404                                 glCallList(display_list);
1405                                 glDeleteLists(1, display_list);
1406                         }
1407                 }
1408
1409 // in/out textures
1410                 fb_texture *in = new fb_texture(w, h, color_model);
1411                 in->bind(0);
1412                 in->read_screen(0,0, w,h);
1413                 fb_texture *out = new fb_texture(w, h, color_model);
1414
1415                 unsigned int frag_shader =
1416                         VFrame::make_shader(0, in_vertex_frag, feather_frag, 0);
1417                 if( frag_shader > 0 ) {
1418                         GLuint points[1];
1419                         glGenBuffers(1, points);
1420                         for(int k = 0; k < total_submasks; k++) {
1421                                 MaskEdge &edge = *edges[k];
1422                                 if( !edge.size() ) continue;
1423                                 if( !faders[k] ) continue;
1424                                 if( !feathers[k] ) continue;
1425                                 MaskSpots spots;
1426                                 for( int i=0; i<edge.size(); ++i ) {
1427                                         MaskCoord &a = edge[i];
1428                                         MaskCoord &b = i<edge.size()-1 ? edge[i+1] : edge[0];
1429                                         draw_spots(spots, a.x,a.y+h, b.x,b.y+h);
1430                                 }
1431                                 int sz = spots.size() * sizeof(MaskSpot);
1432                                 glBindBufferRange(GL_SHADER_STORAGE_BUFFER, 0, points[0], 0, sz);
1433                                 glBufferData(GL_SHADER_STORAGE_BUFFER, sz, &spots[0], GL_DYNAMIC_COPY);
1434                                 glBindBuffer(GL_SHADER_STORAGE_BUFFER, 0);
1435                                 glUseProgram(frag_shader);
1436                                 float r = feathers[k], v = faders[k];
1437                                 glUniform1f(glGetUniformLocation(frag_shader, "r"), r);
1438                                 glUniform1f(glGetUniformLocation(frag_shader, "v"), v);
1439                                 in->bind(0);
1440                                 glUniform1i(glGetUniformLocation(frag_shader, "tex"), 0);
1441                                 out->set_output_texture();
1442                                 glViewport(0,0, w,h);
1443                                 out->draw_texture(0,0, w,h, 0,0, w,h);
1444                                 glUseProgram(0);
1445                                 fb_texture *t = in;  in = out;  out = t;
1446                         }
1447                         glDeleteBuffers(1, points);
1448                 }
1449
1450                 glDrawBuffers(0, 0);
1451                 glBindFramebuffer(GL_FRAMEBUFFER, 0);
1452
1453                 const char *alpha_shader = BC_CModels::has_alpha(color_model) ?
1454                                 multiply_mask4_frag :
1455                         !BC_CModels::is_yuv(color_model) ?
1456                                 multiply_mask3_frag :
1457                                 multiply_yuvmask3_frag;
1458                 unsigned int shader = VFrame::make_shader(0, alpha_shader, 0);
1459                 glUseProgram(shader);
1460                 if( shader > 0 ) {
1461                         command->frame->bind_texture(0);
1462                         in->BC_Texture::bind(1);
1463                         glUniform1i(glGetUniformLocation(shader, "tex"), 0);
1464                         glUniform1i(glGetUniformLocation(shader, "tex1"), 1);
1465                 }
1466                 command->frame->draw_texture();
1467                 command->frame->set_opengl_state(VFrame::SCREEN);
1468                 glUseProgram(0);
1469                 delete in;
1470                 delete out;
1471 // Default drawable
1472                 glDisable(GL_TEXTURE_2D);
1473                 glColor4f(1, 1, 1, 1);
1474                 glActiveTexture(GL_TEXTURE0);
1475                 window->enable_opengl();
1476         }
1477         command->canvas->unlock_canvas();
1478 #endif
1479 }
1480
1481
1482 void Playback3D::convert_cmodel(Canvas *canvas,
1483         VFrame *output,
1484         int dst_cmodel)
1485 {
1486 // Do nothing if colormodels are equivalent in OpenGL & the image is in hardware.
1487         int src_cmodel = output->get_color_model();
1488         if(
1489                 (output->get_opengl_state() == VFrame::TEXTURE ||
1490                 output->get_opengl_state() == VFrame::SCREEN) &&
1491 // OpenGL has no floating point.
1492                 ( (src_cmodel == BC_RGB888 && dst_cmodel == BC_RGB_FLOAT) ||
1493                   (src_cmodel == BC_RGBA8888 && dst_cmodel == BC_RGBA_FLOAT) ||
1494                   (src_cmodel == BC_RGB_FLOAT && dst_cmodel == BC_RGB888) ||
1495                   (src_cmodel == BC_RGBA_FLOAT && dst_cmodel == BC_RGBA8888) ||
1496 // OpenGL sets alpha to 1 on import
1497                   (src_cmodel == BC_RGB888 && dst_cmodel == BC_RGBA8888) ||
1498                   (src_cmodel == BC_YUV888 && dst_cmodel == BC_YUVA8888) ||
1499                   (src_cmodel == BC_RGB_FLOAT && dst_cmodel == BC_RGBA_FLOAT) )
1500                 ) return;
1501
1502
1503
1504         Playback3DCommand command;
1505         command.command = Playback3DCommand::CONVERT_CMODEL;
1506         command.canvas = canvas;
1507         command.frame = output;
1508         command.dst_cmodel = dst_cmodel;
1509         send_command(&command);
1510 }
1511
1512 void Playback3D::convert_cmodel_sync(Playback3DCommand *command)
1513 {
1514 #ifdef HAVE_GL
1515         BC_WindowBase *window =
1516                 command->canvas->lock_canvas("Playback3D::convert_cmodel_sync");
1517         if( window ) {
1518                 window->enable_opengl();
1519
1520 // Import into hardware
1521                 command->frame->enable_opengl();
1522                 command->frame->init_screen();
1523                 command->frame->to_texture();
1524
1525 // Colormodel permutation
1526                 int src_cmodel = command->frame->get_color_model();
1527                 int dst_cmodel = command->dst_cmodel;
1528                 typedef struct {
1529                         int src, dst, typ;
1530                         const char *shader;
1531                 } cmodel_shader_table_t;
1532                 enum { rgb_to_rgb, rgb_to_yuv, yuv_to_rgb, yuv_to_yuv, };
1533                 int type = -1;
1534                 static cmodel_shader_table_t cmodel_shader_table[]  = {
1535                         { BC_RGB888,    BC_YUV888,      rgb_to_yuv, rgb_to_yuv_frag  },
1536                         { BC_RGB888,    BC_YUVA8888,    rgb_to_yuv, rgb_to_yuv_frag  },
1537                         { BC_RGBA8888,  BC_RGB888,      rgb_to_rgb, rgba_to_rgb_frag },
1538                         { BC_RGBA8888,  BC_RGB_FLOAT,   rgb_to_rgb, rgba_to_rgb_frag },
1539                         { BC_RGBA8888,  BC_YUV888,      rgb_to_yuv, rgba_to_yuv_frag },
1540                         { BC_RGBA8888,  BC_YUVA8888,    rgb_to_yuv, rgb_to_yuv_frag  },
1541                         { BC_RGB_FLOAT, BC_YUV888,      rgb_to_yuv, rgb_to_yuv_frag  },
1542                         { BC_RGB_FLOAT, BC_YUVA8888,    rgb_to_yuv, rgb_to_yuv_frag  },
1543                         { BC_RGBA_FLOAT,BC_RGB888,      rgb_to_rgb, rgba_to_rgb_frag },
1544                         { BC_RGBA_FLOAT,BC_RGB_FLOAT,   rgb_to_rgb, rgba_to_rgb_frag },
1545                         { BC_RGBA_FLOAT,BC_YUV888,      rgb_to_yuv, rgba_to_yuv_frag },
1546                         { BC_RGBA_FLOAT,BC_YUVA8888,    rgb_to_yuv, rgb_to_yuv_frag  },
1547                         { BC_YUV888,    BC_RGB888,      yuv_to_rgb, yuv_to_rgb_frag  },
1548                         { BC_YUV888,    BC_RGBA8888,    yuv_to_rgb, yuv_to_rgb_frag  },
1549                         { BC_YUV888,    BC_RGB_FLOAT,   yuv_to_rgb, yuv_to_rgb_frag  },
1550                         { BC_YUV888,    BC_RGBA_FLOAT,  yuv_to_rgb, yuv_to_rgb_frag  },
1551                         { BC_YUVA8888,  BC_RGB888,      yuv_to_rgb, yuva_to_rgb_frag },
1552                         { BC_YUVA8888,  BC_RGBA8888,    yuv_to_rgb, yuv_to_rgb_frag  },
1553                         { BC_YUVA8888,  BC_RGB_FLOAT,   yuv_to_rgb, yuva_to_rgb_frag },
1554                         { BC_YUVA8888,  BC_RGBA_FLOAT,  yuv_to_rgb, yuv_to_rgb_frag  },
1555                         { BC_YUVA8888,  BC_YUV888,      yuv_to_yuv, yuva_to_yuv_frag },
1556                 };
1557
1558                 const char *shader = 0;
1559                 int table_size = sizeof(cmodel_shader_table) / sizeof(cmodel_shader_table_t);
1560                 for( int i=0; i<table_size; ++i ) {
1561                         if( cmodel_shader_table[i].src == src_cmodel &&
1562                             cmodel_shader_table[i].dst == dst_cmodel ) {
1563                                 shader = cmodel_shader_table[i].shader;
1564                                 type = cmodel_shader_table[i].typ;
1565                                 break;
1566                         }
1567                 }
1568
1569 // printf("Playback3D::convert_cmodel_sync %d %d %d shader=\n%s",
1570 // __LINE__,
1571 // command->frame->get_color_model(),
1572 // command->dst_cmodel,
1573 // shader);
1574
1575                 const char *shader_stack[9];
1576                 memset(shader_stack,0, sizeof(shader_stack));
1577                 int current_shader = 0;
1578
1579                 if( shader ) {
1580 //printf("Playback3D::convert_cmodel_sync %d\n", __LINE__);
1581                         shader_stack[current_shader++] = shader;
1582                         shader_stack[current_shader] = 0;
1583                         unsigned int shader_id = VFrame::make_shader(shader_stack);
1584
1585                         command->frame->bind_texture(0);
1586                         glUseProgram(shader_id);
1587
1588                         glUniform1i(glGetUniformLocation(shader_id, "tex"), 0);
1589                         switch( type ) {
1590                         case rgb_to_yuv:
1591                                 BC_GL_RGB_TO_YUV(shader_id);
1592                                 break;
1593                         case yuv_to_rgb:
1594                                 BC_GL_YUV_TO_RGB(shader_id);
1595                                 break;
1596                         }
1597
1598                         command->frame->draw_texture();
1599                         if(shader) glUseProgram(0);
1600                         command->frame->set_opengl_state(VFrame::SCREEN);
1601                 }
1602         }
1603
1604         command->canvas->unlock_canvas();
1605 #endif // HAVE_GL
1606 }
1607
1608 void Playback3D::do_fade(Canvas *canvas, VFrame *frame, float fade)
1609 {
1610         Playback3DCommand command;
1611         command.command = Playback3DCommand::DO_FADE;
1612         command.canvas = canvas;
1613         command.frame = frame;
1614         command.alpha = fade;
1615         send_command(&command);
1616 }
1617
1618 void Playback3D::do_fade_sync(Playback3DCommand *command)
1619 {
1620 #ifdef HAVE_GL
1621         BC_WindowBase *window =
1622                 command->canvas->lock_canvas("Playback3D::do_fade_sync");
1623         if( window ) {
1624                 window->enable_opengl();
1625                 switch( command->frame->get_opengl_state() ) {
1626                 case VFrame::RAM:
1627                         command->frame->to_texture();
1628                         break;
1629
1630                 case VFrame::SCREEN:
1631 // Read back from PBuffer
1632 // Bind context to pbuffer
1633                         command->frame->enable_opengl();
1634                         command->frame->screen_to_texture();
1635                         break;
1636                 }
1637
1638                 command->frame->enable_opengl();
1639                 command->frame->init_screen();
1640                 command->frame->bind_texture(0);
1641
1642 //              glClearColor(0.0, 0.0, 0.0, 0.0);
1643 //              glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
1644                 glDisable(GL_BLEND);
1645                 unsigned int frag_shader = 0;
1646                 switch(command->frame->get_color_model())
1647                 {
1648 // For the alpha colormodels, the native function seems to multiply the
1649 // components by the alpha instead of just the alpha.
1650                         case BC_RGBA8888:
1651                         case BC_RGBA_FLOAT:
1652                         case BC_YUVA8888:
1653                                 frag_shader = VFrame::make_shader(0, fade_rgba_frag, 0);
1654                                 break;
1655
1656                         case BC_RGB888:
1657                                 glEnable(GL_BLEND);
1658                                 glBlendFunc(GL_SRC_ALPHA, GL_ZERO);
1659                                 glColor4f(command->alpha, command->alpha, command->alpha, 1);
1660                                 break;
1661
1662
1663                         case BC_YUV888:
1664                                 frag_shader = VFrame::make_shader(0, fade_yuv_frag, 0);
1665                                 break;
1666                 }
1667
1668
1669                 if( frag_shader ) {
1670                         glUseProgram(frag_shader);
1671                         int variable;
1672                         if((variable = glGetUniformLocation(frag_shader, "tex")) >= 0)
1673                                 glUniform1i(variable, 0);
1674                         if((variable = glGetUniformLocation(frag_shader, "alpha")) >= 0)
1675                                 glUniform1f(variable, command->alpha);
1676                 }
1677
1678                 command->frame->draw_texture();
1679                 command->frame->set_opengl_state(VFrame::SCREEN);
1680
1681                 if(frag_shader)
1682                 {
1683                         glUseProgram(0);
1684                 }
1685
1686                 glColor4f(1, 1, 1, 1);
1687                 glDisable(GL_BLEND);
1688         }
1689         command->canvas->unlock_canvas();
1690 #endif
1691 }
1692
1693
1694 int Playback3D::run_plugin(Canvas *canvas, PluginClient *client)
1695 {
1696         Playback3DCommand command;
1697         command.command = Playback3DCommand::PLUGIN;
1698         command.canvas = canvas;
1699         command.plugin_client = client;
1700         return send_command(&command);
1701 }
1702
1703 void Playback3D::run_plugin_sync(Playback3DCommand *command)
1704 {
1705         BC_WindowBase *window =
1706                 command->canvas->lock_canvas("Playback3D::run_plugin_sync");
1707         if( window ) {
1708                 window->enable_opengl();
1709                 command->result = ((PluginVClient*)command->plugin_client)->handle_opengl();
1710         }
1711         command->canvas->unlock_canvas();
1712 }
1713
1714