upgrade to ffmpeg 4.2, rework mask for speedup
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / gwindowgui.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 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 #include "autoconf.h"
23 #include "bchash.h"
24 #include "bcsignals.h"
25 #include "clip.h"
26 #include "condition.h"
27 #include "edl.h"
28 #include "edlsession.h"
29 #include "gwindowgui.h"
30 #include "keys.h"
31 #include "language.h"
32 #include "localsession.h"
33 #include "mainmenu.h"
34 #include "mainsession.h"
35 #include "mwindow.h"
36 #include "mwindowgui.h"
37 #include "theme.h"
38 #include "tracks.h"
39 #include "trackcanvas.h"
40 #include "zoombar.h"
41
42 #include <math.h>
43
44
45
46 GWindowGUI::GWindowGUI(MWindow *mwindow, int w, int h)
47  : BC_Window(_(PROGRAM_NAME ": Overlays"),
48         mwindow->session->gwindow_x, mwindow->session->gwindow_y,
49         w, h, w, h, 0, 0, 1)
50 {
51         this->mwindow = mwindow;
52         camera_xyz = 0;
53         projector_xyz = 0;
54 }
55
56 GWindowGUI::~GWindowGUI()
57 {
58 }
59
60 const char *GWindowGUI::non_auto_text[NON_AUTOMATION_TOTAL] =
61 {
62         N_("Assets"),
63         N_("Titles"),
64         N_("Transitions"),
65         N_("Plugin Keyframes"),
66         N_("Hard Edges"),
67 };
68
69 const char *GWindowGUI::auto_text[AUTOMATION_TOTAL] =
70 {
71         N_("Mute"),
72         N_("Camera X"),
73         N_("Camera Y"),
74         N_("Camera Z"),
75         N_("Projector X"),
76         N_("Projector Y"),
77         N_("Projector Z"),
78         N_("Fade"),
79         N_("Pan"),
80         N_("Mode"),
81         N_("Mask"),
82         N_("Speed")
83 };
84
85 int GWindowGUI::auto_colors[AUTOMATION_TOTAL] =
86 {
87         PINK,
88         RED,
89         GREEN,
90         BLUE,
91         LTPINK,
92         LTGREEN,
93         LTBLUE,
94         LTPURPLE,
95         0,
96         0,
97         0,
98         ORANGE,
99 };
100
101 void GWindowGUI::load_defaults()
102 {
103         BC_Hash *defaults = mwindow->defaults;
104         auto_colors[AUTOMATION_MUTE] = defaults->get("AUTO_COLOR_MUTE", auto_colors[AUTOMATION_MUTE]);
105         auto_colors[AUTOMATION_CAMERA_X] = defaults->get("AUTO_COLOR_CAMERA_X", auto_colors[AUTOMATION_CAMERA_X]);
106         auto_colors[AUTOMATION_CAMERA_Y] = defaults->get("AUTO_COLOR_CAMERA_Y", auto_colors[AUTOMATION_CAMERA_Y]);
107         auto_colors[AUTOMATION_CAMERA_Z] = defaults->get("AUTO_COLOR_CAMERA_Z", auto_colors[AUTOMATION_CAMERA_Z]);
108         auto_colors[AUTOMATION_PROJECTOR_X] = defaults->get("AUTO_COLOR_PROJECTOR_X", auto_colors[AUTOMATION_PROJECTOR_X]);
109         auto_colors[AUTOMATION_PROJECTOR_Y] = defaults->get("AUTO_COLOR_PROJECTOR_Y", auto_colors[AUTOMATION_PROJECTOR_Y]);
110         auto_colors[AUTOMATION_PROJECTOR_Z] = defaults->get("AUTO_COLOR_PROJECTOR_Z", auto_colors[AUTOMATION_PROJECTOR_Z]);
111         auto_colors[AUTOMATION_FADE] = defaults->get("AUTO_COLOR_FADE", auto_colors[AUTOMATION_FADE]);
112         auto_colors[AUTOMATION_SPEED] = defaults->get("AUTO_COLOR_SPEED", auto_colors[AUTOMATION_SPEED]);
113 }
114
115 void GWindowGUI::save_defaults()
116 {
117         BC_Hash *defaults = mwindow->defaults;
118         defaults->update("AUTO_COLOR_MUTE", auto_colors[AUTOMATION_MUTE]);
119         defaults->update("AUTO_COLOR_CAMERA_X", auto_colors[AUTOMATION_CAMERA_X]);
120         defaults->update("AUTO_COLOR_CAMERA_Y", auto_colors[AUTOMATION_CAMERA_Y]);
121         defaults->update("AUTO_COLOR_CAMERA_Z", auto_colors[AUTOMATION_CAMERA_Z]);
122         defaults->update("AUTO_COLOR_PROJECTOR_X", auto_colors[AUTOMATION_PROJECTOR_X]);
123         defaults->update("AUTO_COLOR_PROJECTOR_Y", auto_colors[AUTOMATION_PROJECTOR_Y]);
124         defaults->update("AUTO_COLOR_PROJECTOR_Z", auto_colors[AUTOMATION_PROJECTOR_Z]);
125         defaults->update("AUTO_COLOR_FADE", auto_colors[AUTOMATION_FADE]);
126         defaults->update("AUTO_COLOR_SPEED", auto_colors[AUTOMATION_SPEED]);
127 }
128
129 static toggleinfo toggle_order[] =
130 {
131         {0, NON_AUTOMATION_ASSETS},
132         {0, NON_AUTOMATION_TITLES},
133         {0, NON_AUTOMATION_TRANSITIONS},
134         {0, NON_AUTOMATION_PLUGIN_AUTOS},
135         {0, -1}, // bar
136         {1, AUTOMATION_FADE},
137         {1, AUTOMATION_MUTE},
138         {1, AUTOMATION_SPEED},
139         {1, AUTOMATION_MODE},
140         {1, AUTOMATION_PAN},
141         {1, AUTOMATION_MASK},
142         {-1, NON_AUTOMATION_HARD_EDGES},
143         {0, -1}, // bar
144         {1, AUTOMATION_CAMERA_X},
145         {1, AUTOMATION_CAMERA_Y},
146         {1, AUTOMATION_CAMERA_Z},
147         {-1, NONAUTOTOGGLES_CAMERA_XYZ},
148         {0, -1}, // bar
149         {1, AUTOMATION_PROJECTOR_X},
150         {1, AUTOMATION_PROJECTOR_Y},
151         {1, AUTOMATION_PROJECTOR_Z},
152         {-1, NONAUTOTOGGLES_PROJECTOR_XYZ},
153 };
154
155 const char *GWindowGUI::toggle_text(toggleinfo *tp)
156 {
157         if( tp->isauto > 0 ) return _(auto_text[tp->ref]);
158         if( !tp->isauto ) return _(non_auto_text[tp->ref]);
159         switch( tp->ref ) {
160         case NONAUTOTOGGLES_CAMERA_XYZ:
161         case NONAUTOTOGGLES_PROJECTOR_XYZ:
162                 return _("XYZ");
163         case NON_AUTOMATION_HARD_EDGES:
164                 return _("Hard Edges");
165         }
166         return "()";
167 }
168
169 void GWindowGUI::calculate_extents(BC_WindowBase *gui, int *w, int *h)
170 {
171         int temp1, temp2, temp3, temp4, temp5, temp6, temp7;
172         int current_w, current_h;
173         *w = 10;
174         *h = 10;
175
176         for( int i=0; i<(int)(sizeof(toggle_order)/sizeof(toggle_order[0])); ++i ) {
177                 toggleinfo *tp = &toggle_order[i];
178                 int ref = tp->ref;
179                 if( ref < 0 ) {
180                         *h += get_resources()->bar_data->get_h() + 5;
181                         continue;
182                 }
183                 BC_Toggle::calculate_extents(gui,
184                         BC_WindowBase::get_resources()->checkbox_images,
185                         0, &temp1, &current_w, &current_h,
186                         &temp2, &temp3, &temp4, &temp5, &temp6, &temp7,
187                         toggle_text(tp), MEDIUMFONT);
188                 current_w += current_h;
189                 *w = MAX(current_w, *w);
190                 *h += current_h + 5;
191         }
192
193         *h += 10;
194         *w += 20;
195 }
196
197 GWindowColorButton::GWindowColorButton(GWindowToggle *auto_toggle,
198                 int x, int y, int w, int color)
199  : ColorCircleButton(auto_toggle->caption, x, y, w, w, color, -1, 1)
200 {
201         this->auto_toggle = auto_toggle;
202         this->color = color;
203 }
204
205 GWindowColorButton::~GWindowColorButton()
206 {
207 }
208
209 int GWindowColorButton::handle_new_color(int color, int alpha)
210 {
211         this->color = color;
212         return 1;
213 }
214
215 void GWindowColorButton::handle_done_event(int result)
216 {
217         ColorCircleButton::handle_done_event(result);
218         int ref = auto_toggle->info->ref;
219         GWindowGUI *gui = auto_toggle->gui;
220         gui->lock_window("GWindowColorThread::handle_done_event");
221         if( !result ) {
222                 GWindowGUI::auto_colors[ref] = color;
223                 auto_toggle->update_gui(color);
224                 gui->save_defaults();
225         }
226         else {
227                 color = GWindowGUI::auto_colors[ref];
228                 update_gui(color);
229         }
230         gui->unlock_window();
231         MWindowGUI *mwindow_gui = gui->mwindow->gui;
232         mwindow_gui->lock_window("GWindowColorUpdate::run");
233         mwindow_gui->draw_overlays(1);
234         mwindow_gui->unlock_window();
235 }
236
237
238 void GWindowGUI::create_objects()
239 {
240         int x = 10, y = 10;
241         lock_window("GWindowGUI::create_objects");
242
243         for( int i=0; i<(int)(sizeof(toggle_order)/sizeof(toggle_order[0])); ++i ) {
244                 toggleinfo *tp = &toggle_order[i];
245                 int ref = tp->ref;
246                 if( ref < 0 ) {
247                         BC_Bar *bar = new BC_Bar(x,y,get_w()-x-10);
248                         add_tool(bar);
249                         toggles[i] = 0;
250                         y += bar->get_h() + 5;
251                         continue;
252                 }
253                 const char *label = toggle_text(tp);
254                 int color = tp->isauto > 0 ?
255                         auto_colors[tp->ref] :
256                         get_resources()->text_default ;
257                 GWindowToggle *toggle = new GWindowToggle(this, x, y, label, color, tp);
258                 add_tool(toggles[i] = toggle);
259                 if( tp->isauto > 0 ) {
260                         VFrame *vframe = 0;
261                         switch( ref ) {
262                         case AUTOMATION_MODE: vframe = mwindow->theme->modekeyframe_data;  break;
263                         case AUTOMATION_PAN:  vframe = mwindow->theme->pankeyframe_data;   break;
264                         case AUTOMATION_MASK: vframe = mwindow->theme->maskkeyframe_data;  break;
265                         }
266                         if( !vframe ) {
267                                 int wh = toggle->get_h() - 4;
268                                 GWindowColorButton *color_button =
269                                         new GWindowColorButton(toggle, get_w()-wh-10, y+2, wh, color);
270                                 add_tool(color_button);
271                                 color_button->create_objects();
272                         }
273                         else
274                                 draw_vframe(vframe, get_w()-vframe->get_w()-10, y);
275                 }
276                 else {
277                         const char *accel = 0;
278                         switch( ref ) {
279                         case NONAUTOTOGGLES_CAMERA_XYZ:
280                                 camera_xyz = toggle;
281                                 accel = _("Shift-F1");
282                                 break;
283                         case NONAUTOTOGGLES_PROJECTOR_XYZ:
284                                 projector_xyz = toggle;
285                                 accel = _("Shift-F2");
286                                 break;
287                         case NON_AUTOMATION_HARD_EDGES:
288                                 VFrame *vframe = mwindow->theme->hardedge_data;
289                                 draw_vframe(vframe, get_w()-vframe->get_w()-10, y);
290                                 hard_edges = toggle;
291                                 break;
292                         }
293                          if( accel ) {
294                                 int x1 = get_w() - BC_Title::calculate_w(this, accel) - 10;
295                                 add_subwindow(new BC_Title(x1, y, accel));
296                         }
297                 }
298                 y += toggles[i]->get_h() + 5;
299         }
300         update_toggles(0);
301         unlock_window();
302 }
303
304 void GWindowGUI::update_mwindow(int toggles, int overlays)
305 {
306         unlock_window();
307         mwindow->gui->lock_window("GWindowGUI::update_mwindow");
308         if( toggles )
309                 mwindow->gui->mainmenu->update_toggles(0);
310         if( overlays )
311                 mwindow->gui->draw_overlays(1);
312         mwindow->gui->unlock_window();
313         lock_window("GWindowGUI::update_mwindow");
314 }
315
316 void GWindowGUI::update_toggles(int use_lock)
317 {
318         if(use_lock) {
319                 lock_window("GWindowGUI::update_toggles");
320                 set_cool(0);
321         }
322
323         for( int i=0; i<(int)(sizeof(toggle_order)/sizeof(toggle_order[0])); ++i ) {
324                 if( toggles[i] ) toggles[i]->update();
325         }
326
327         camera_xyz->set_value(check_xyz(AUTOMATION_CAMERA_X) > 0 ? 1 : 0);
328         projector_xyz->set_value(check_xyz(AUTOMATION_PROJECTOR_X) > 0 ? 1 : 0);
329
330         if(use_lock) unlock_window();
331 }
332
333 void GWindowGUI::toggle_camera_xyz()
334 {
335         int v = camera_xyz->get_value() ? 0 : 1;
336         camera_xyz->set_value(v);
337         xyz_check(AUTOMATION_CAMERA_X, v);
338         update_toggles(0);
339         update_mwindow(1, 1);
340 }
341
342 void GWindowGUI::toggle_projector_xyz()
343 {
344         int v = projector_xyz->get_value() ? 0 : 1;
345         projector_xyz->set_value(v);
346         xyz_check(AUTOMATION_PROJECTOR_X, v);
347         update_toggles(0);
348         update_mwindow(1, 1);
349 }
350
351 int GWindowGUI::translation_event()
352 {
353         mwindow->session->gwindow_x = get_x();
354         mwindow->session->gwindow_y = get_y();
355         return 0;
356 }
357
358 int GWindowGUI::close_event()
359 {
360         hide_window();
361         mwindow->session->show_gwindow = 0;
362         unlock_window();
363
364         mwindow->gui->lock_window("GWindowGUI::close_event");
365         mwindow->gui->mainmenu->show_gwindow->set_checked(0);
366         mwindow->gui->unlock_window();
367
368         lock_window("GWindowGUI::close_event");
369         mwindow->save_defaults();
370         return 1;
371 }
372
373 int GWindowGUI::keypress_event()
374 {
375         if( ctrl_down() && shift_down() ) {
376                 switch(get_keypress()) {
377                 case KEY_F1:
378                 case KEY_F2:
379                 case KEY_F3:
380                 case KEY_F4:
381                         if( ctrl_down() && shift_down() ) {
382                                 resend_event(mwindow->gui);
383                                 return 1;
384                         }
385                 }
386         }
387         else if( !ctrl_down() && shift_down() ) {
388                 switch(get_keypress()) {
389                 case KEY_F1:
390                         toggle_camera_xyz();
391                         return 1;
392                 case KEY_F2:
393                         toggle_projector_xyz();
394                         return 1;
395                 }
396         }
397         switch(get_keypress()) {
398         case 'w':
399         case 'W':
400         case '0':
401                 if( ctrl_down() ) {
402                         close_event();
403                         return 1;
404                 }
405                 break;
406         }
407         return 0;
408 }
409
410 int GWindowGUI::check_xyz(int group)
411 {
412 // returns 1=all set, -1=all clear, 0=mixed
413         int *autos = mwindow->edl->session->auto_conf->autos;
414         int v = autos[group], ret = v ? 1 : -1;
415         if( autos[group+1] != v || autos[group+2] != v ) ret = 0;
416         return ret;
417 }
418 void GWindowGUI::xyz_check(int group, int v)
419 {
420         int *autos = mwindow->edl->session->auto_conf->autos;
421         autos[group+0] = v;
422         autos[group+1] = v;
423         autos[group+2] = v;
424 }
425
426 int* GWindowGUI::get_main_value(toggleinfo *info)
427 {
428         if( info->isauto > 0 )
429                 return &mwindow->edl->session->auto_conf->autos[info->ref];
430         switch( info->ref ) {
431         case NON_AUTOMATION_ASSETS: return &mwindow->edl->session->show_assets;
432         case NON_AUTOMATION_TITLES: return &mwindow->edl->session->show_titles;
433         case NON_AUTOMATION_TRANSITIONS: return &mwindow->edl->session->auto_conf->transitions;
434         case NON_AUTOMATION_PLUGIN_AUTOS: return &mwindow->edl->session->auto_conf->plugins;
435         case NON_AUTOMATION_HARD_EDGES: return &mwindow->edl->session->auto_conf->hard_edges;
436         }
437         return 0;
438 }
439
440
441 GWindowToggle::GWindowToggle(GWindowGUI *gui, int x, int y,
442         const char *text, int color, toggleinfo *info)
443  : BC_CheckBox(x, y, 0, text, MEDIUMFONT, color)
444 {
445         this->gui = gui;
446         this->info = info;
447         this->color = color;
448         this->color_button = 0;
449         hot = hot_value = 0;
450 }
451
452 GWindowToggle::~GWindowToggle()
453 {
454         delete color_button;
455 }
456
457 int GWindowToggle::handle_event()
458 {
459         int value = get_value();
460         if( shift_down() ) {
461                 if( !hot ) {
462                         gui->set_hot(this);
463                         value = 1;
464                 }
465                 else {
466                         gui->set_cool(1);
467                         value = hot_value;
468                 }
469         }
470         else
471                 gui->set_cool(0);
472         if( info->isauto >= 0 ) {
473                 *gui->get_main_value(info) = value;
474                 switch( info->ref ) {
475                 case AUTOMATION_CAMERA_X:
476                 case AUTOMATION_CAMERA_Y:
477                 case AUTOMATION_CAMERA_Z: {
478                         int v = gui->check_xyz(AUTOMATION_CAMERA_X);
479                         gui->camera_xyz->set_value(v > 0 ? 1 : 0);
480                         break; }
481                 case AUTOMATION_PROJECTOR_X:
482                 case AUTOMATION_PROJECTOR_Y:
483                 case AUTOMATION_PROJECTOR_Z: {
484                         int v = gui->check_xyz(AUTOMATION_PROJECTOR_X);
485                         gui->projector_xyz->set_value(v > 0 ? 1 : 0);
486                         break; }
487                 }
488         }
489         else {
490                 int group = -1;
491                 switch( info->ref ) {
492                 case NONAUTOTOGGLES_CAMERA_XYZ:     group = AUTOMATION_CAMERA_X;     break;
493                 case NONAUTOTOGGLES_PROJECTOR_XYZ:  group = AUTOMATION_PROJECTOR_X;  break;
494                 case NON_AUTOMATION_HARD_EDGES: *gui->get_main_value(info) = value;  break;
495                 }
496                 if( group >= 0 ) {
497                         gui->xyz_check(group, value);
498                         gui->update_toggles(0);
499                 }
500         }
501         gui->update_mwindow(1, 0);
502
503 // Update stuff in MWindow
504         unlock_window();
505         MWindow *mwindow = gui->mwindow;
506         mwindow->gui->lock_window("GWindowToggle::handle_event");
507
508         mwindow->gui->update(1, NORMAL_DRAW, 0, 0, 1, 0, 0);
509         mwindow->gui->draw_overlays(1);
510
511         if( value && info->isauto > 0 ) {
512                 int autogroup_type = -1;
513                 switch( info->ref ) {
514                 case AUTOMATION_FADE:
515                         autogroup_type = mwindow->edl->tracks->recordable_video_tracks() ?
516                                 AUTOGROUPTYPE_VIDEO_FADE : AUTOGROUPTYPE_AUDIO_FADE ;
517                         break;
518                 case AUTOMATION_SPEED:
519                         autogroup_type = AUTOGROUPTYPE_SPEED;
520                         break;
521                 case AUTOMATION_CAMERA_X:
522                 case AUTOMATION_PROJECTOR_X:
523                         autogroup_type = AUTOGROUPTYPE_X;
524                         break;
525                 case AUTOMATION_CAMERA_Y:
526                 case AUTOMATION_PROJECTOR_Y:
527                         autogroup_type = AUTOGROUPTYPE_Y;
528                         break;
529                 case AUTOMATION_CAMERA_Z:
530                 case AUTOMATION_PROJECTOR_Z:
531                         autogroup_type = AUTOGROUPTYPE_ZOOM;
532                         break;
533                 }
534                 if( autogroup_type >= 0 ) {
535                         mwindow->edl->local_session->zoombar_showautotype = autogroup_type;
536                         mwindow->gui->zoombar->update_autozoom();
537                 }
538         }
539
540         mwindow->gui->unlock_window();
541         lock_window("GWindowToggle::handle_event");
542
543         return 1;
544 }
545
546 void GWindowToggle::update()
547 {
548         int *vp = gui->get_main_value(info);
549         if( vp ) set_value(*vp);
550 }
551
552 void GWindowToggle::update_gui(int color)
553 {
554         BC_Toggle::color = color;
555         draw_face(1,0);
556 }
557
558 int GWindowToggle::draw_face(int flash, int flush)
559 {
560         int ret = BC_Toggle::draw_face(flash, flush);
561         if( hot ) {
562                 set_color(color);
563                 set_opaque();
564                 draw_rectangle(text_x-1, text_y-1, text_w+1, text_h+1);
565                 if( flash ) this->flash(0);
566                 if( flush ) this->flush();
567         }
568         return ret;
569 }
570
571 void GWindowGUI::set_cool(int reset, int all)
572 {
573         for( int i=0; i<(int)(sizeof(toggles)/sizeof(toggles[0])); ++i ) {
574                 GWindowToggle* toggle = toggles[i];
575                 if( !toggle ) continue;
576                 int *vp = get_main_value(toggle->info);
577                 if( !vp ) continue;
578                 if( toggle->hot ) {
579                         toggle->hot = 0;
580                         toggle->draw_face(1, 0);
581                 }
582                 if( reset > 0 )
583                         *vp = toggle->hot_value;
584                 else {
585                         toggle->hot_value = *vp;
586                         if( reset < 0 ) {
587                                 if ( all || toggle->info->isauto > 0 )
588                                         *vp = 0;
589                         }
590                 }
591         }
592         if( reset )
593                 update_toggles(0);
594 }
595
596 void GWindowGUI::set_hot(GWindowToggle *toggle)
597 {
598         int *vp = get_main_value(toggle->info);
599         if( !vp ) return;
600         set_cool(-1, !toggle->info->isauto ? 1 : 0);
601         toggle->hot = 1;
602         toggle->set_value(*vp = 1);
603 }
604