delete mwindow before restarting for new theme
[goodguy/history.git] / cinelerra-5.0 / cinelerra / mwindow.h
1 /*
2  * CINELERRA
3  * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  * 
19  */
20
21 #ifndef MWINDOW_H
22 #define MWINDOW_H
23
24 #include <stdio.h>
25 #include <stdint.h>
26
27 #include "arraylist.h"
28 #include "asset.inc"
29 #include "assets.inc"
30 #include "audiodevice.inc"
31 #include "awindow.inc"
32 #include "batchrender.inc"
33 #include "bcwindowbase.inc"
34 #include "bdcreate.inc"
35 #include "brender.inc"
36 #include "cache.inc"
37 #include "channel.inc"
38 #include "channeldb.inc"
39 #include "commercials.inc"
40 #include "cwindow.inc"
41 #include "bchash.inc"
42 #include "devicedvbinput.inc"
43 #include "devicempeginput.inc"
44 #include "dvdcreate.inc"
45 #include "edit.inc"
46 #include "edl.inc"
47 #include "filesystem.inc"
48 #include "filexml.inc"
49 #include "framecache.inc"
50 #include "gwindow.inc"
51 #include "indexable.inc"
52 #include "keyframegui.inc"
53 #include "levelwindow.inc"
54 #include "loadmode.inc"
55 #include "mainerror.inc"
56 #include "mainindexes.inc"
57 #include "mainprogress.inc"
58 #include "mainsession.inc"
59 #include "mainundo.inc"
60 #include "maxchannels.h"
61 #include "mutex.inc"
62 #include "mwindow.inc"
63 #include "mwindowgui.inc"
64 #include "new.inc"
65 #include "patchbay.inc"
66 #include "playback3d.inc"
67 #include "playbackengine.inc"
68 #include "plugin.inc"
69 #include "pluginfclient.inc"
70 #include "pluginserver.inc"
71 #include "pluginset.inc"
72 #include "preferences.inc"
73 #include "preferencesthread.inc"
74 #include "record.inc"
75 #include "recordlabel.inc"
76 #include "render.inc"
77 #include "sharedlocation.inc"
78 #include "sighandler.inc"
79 #include "splashgui.inc"
80 #include "theme.inc"
81 #include "thread.h"
82 #include "threadloader.inc"
83 #include "timebar.inc"
84 #include "timebomb.h"
85 #include "tipwindow.inc"
86 #include "track.inc"
87 #include "tracking.inc"
88 #include "tracks.inc"
89 #include "transition.inc"
90 #include "transportque.inc"
91 #include "videowindow.inc"
92 #include "vwindow.inc"
93 #include "wwindow.inc"
94 #include "wavecache.inc"
95
96 // All entry points for commands except for window locking should be here.
97 // This allows scriptability.
98
99 class MWindow : public Thread
100 {
101 public:
102         MWindow();
103         ~MWindow();
104
105 // ======================================== initialization commands
106         void create_objects(int want_gui, 
107                 int want_new,
108                 char *config_path);
109         void show_splash();
110         void hide_splash();
111         void start();
112         void run();
113
114         int run_script(FileXML *script);
115         int new_project();
116         int delete_project(int flash = 1);
117         void quit(int unlock);
118         int restart() { return restart_status; }
119
120         int load_defaults();
121         int save_defaults();
122         int set_filename(const char *filename);
123 // Total vertical pixels in timeline
124         int get_tracks_height();
125 // Total horizontal pixels in timeline
126         int get_tracks_width();
127 // Show windows
128         void show_vwindow();
129         void show_awindow();
130         void show_lwindow();
131         void show_cwindow();
132         void show_gwindow();
133         int tile_windows(int window_config);
134         char *get_cwindow_display();
135 //      void set_titles(int value);
136         void set_screens(int value);
137         int asset_to_edl(EDL *new_edl, 
138                 Asset *new_asset, 
139                 RecordLabels *labels = 0);
140 // Convert nested_edl to a nested EDL in new_edl 
141 // suitable for pasting in paste_edls
142         int edl_to_nested(EDL *new_edl, 
143                 EDL *nested_edl);
144
145 // Entry point to insert assets and insert edls.  Called by TrackCanvas 
146 // and AssetPopup when assets are dragged in from AWindow.
147 // Takes the drag vectors from MainSession and
148 // pastes either assets or clips depending on which is full.
149 // Returns 1 if the vectors were full
150         int paste_assets(double position, Track *dest_track);
151         
152 // Insert the assets at a point in the EDL.  Called by menueffects,
153 // render, and CWindow drop but recording calls paste_edls directly for
154 // labels.
155         void load_assets(ArrayList<Indexable*> *new_assets, 
156                 double position, 
157                 int load_mode,
158                 Track *first_track /* = 0 */,
159                 RecordLabels *labels /* = 0 */,
160                 int edit_labels,
161                 int edit_plugins,
162                 int edit_autos);
163         int paste_edls(ArrayList<EDL*> *new_edls, 
164                 int load_mode, 
165                 Track *first_track /* = 0 */,
166                 double current_position /* = -1 */,
167                 int edit_labels,
168                 int edit_plugins,
169                 int edit_autos);
170 // Reset everything for a load
171         void update_project(int load_mode);
172 // Fit selected time to horizontal display range
173         void fit_selection();
174 // Fit selected autos to the vertical display range
175         void fit_autos();
176         void expand_autos();
177         void shrink_autos();
178         void zoom_autos(float min, float max);
179 // move the window to include the cursor
180         void find_cursor();
181 // Search plugindb and put results in argument
182         static void search_plugindb(int do_audio, 
183                 int do_video, 
184                 int is_realtime, 
185                 int is_transition,
186                 int is_theme,
187                 ArrayList<PluginServer*> &results);
188 // Find the plugin whose title matches title and return it
189         static PluginServer* scan_plugindb(char *title,
190                 int data_type);
191         static int plugin_exists(const char *plugin_path, ArrayList<PluginServer*> &plugins);
192         static int plugin_exists(char *plugin_path);
193         void dump_plugindb(FILE *fp);
194         void stop_playback(int wait=0);
195
196
197
198         
199         int load_filenames(ArrayList<char*> *filenames, 
200                 int load_mode = LOADMODE_REPLACE,
201 // Cause the project filename on the top of the window to be updated.
202 // Not wanted for loading backups.
203                 int update_filename = 1);
204
205 // Print out plugins which are referenced in the EDL but not loaded.
206         void test_plugins(EDL *new_edl, char *path);
207
208         int interrupt_indexes();  // Stop index building
209
210         int redraw_time_dependancies();     // after reconfiguring the time format, sample rate, frame rate
211
212 // =========================================== movement
213
214         void next_time_format();
215         void prev_time_format();
216         void time_format_common();
217         int reposition_timebar(int new_pixel, int new_height);
218         int expand_sample();
219         int zoom_in_sample();
220         int zoom_sample(int64_t zoom_sample);
221         void zoom_amp(int64_t zoom_amp);
222         void zoom_track(int64_t zoom_track);
223         int fit_sample();
224         int move_left(int64_t distance = 0);
225         int move_right(int64_t distance = 0);
226         void move_up(int64_t distance = 0);
227         void move_down(int64_t distance = 0);
228
229 // seek to labels
230 // shift_down must be passed by the caller because different windows call
231 // into this
232         int next_label(int shift_down);   
233         int prev_label(int shift_down);
234 // seek to edit handles
235         int next_edit_handle(int shift_down);
236         int prev_edit_handle(int shift_down);  
237 // offset is pixels to add to track_start
238         void trackmovement(int offset, int pane_number);
239 // view_start is pixels
240         int samplemovement(int64_t view_start, int pane_number);     
241         void select_all();
242         int goto_start();
243         int goto_end();
244         int goto_position(double position);
245         int expand_y();
246         int zoom_in_y();
247         int expand_t();
248         int zoom_in_t();
249         void split_x();
250         void split_y();
251         void crop_video();
252         void update_plugins();
253 // Call after every edit operation
254         void save_backup();
255         void load_backup();
256         void show_plugin(Plugin *plugin);
257         void hide_plugin(Plugin *plugin, int lock);
258         void hide_plugins();
259         void delete_plugin(PluginServer *plugin);
260 // Update plugins with configuration changes.
261 // Called by TrackCanvas::cursor_motion_event.
262         void update_plugin_guis(int do_keyframe_guis = 1);
263         void update_plugin_states();
264         void update_plugin_titles();
265 // Called by Attachmentpoint during playback.
266 // Searches for matching plugin and renders data in it.
267         void render_plugin_gui(void *data, Plugin *plugin);
268         void render_plugin_gui(void *data, int size, Plugin *plugin);
269
270 // Called from PluginVClient::process_buffer
271 // Returns 1 if a GUI for the plugin is open so OpenGL routines can determine if
272 // they can run.
273         int plugin_gui_open(Plugin *plugin);
274
275         void show_keyframe_gui(Plugin *plugin);
276         void hide_keyframe_guis();
277         void hide_keyframe_gui(Plugin *plugin);
278         void update_keyframe_guis();
279
280
281 // ============================= editing commands ========================
282
283 // Map each recordable audio track to the desired pattern
284         void map_audio(int pattern);
285         void remap_audio(int pattern);
286         enum
287         {
288                 AUDIO_5_1_TO_2,
289                 AUDIO_1_TO_1
290         };
291         void add_audio_track_entry(int above, Track *dst);
292         int add_audio_track(int above, Track *dst);
293         void add_clip_to_edl(EDL *edl);
294         void add_video_track_entry(Track *dst = 0);
295         int add_video_track(int above, Track *dst);
296         void add_subttl_track_entry(Track *dst = 0);
297         int add_subttl_track(int above, Track *dst);
298
299         void asset_to_all();
300         void asset_to_size();
301         void asset_to_rate();
302 // Entry point for clear operations.
303         void clear_entry();
304 // Clears active region in EDL.
305 // If clear_handle, edit boundaries are cleared if the range is 0.
306 // Called by paste, record, menueffects, render, and CWindow drop.
307         void clear(int clear_handle);
308         void clear_labels();
309         int clear_labels(double start, double end);
310         void concatenate_tracks();
311         void copy();
312         int copy(double start, double end);
313         void cut();
314
315 // Calculate aspect ratio from pixel counts
316         static int create_aspect_ratio(float &w, float &h, int width, int height);
317 // Calculate defaults path
318         static void create_defaults_path(char *string, const char *config_file);
319
320         void delete_folder(char *folder);
321         void delete_inpoint();
322         void delete_outpoint();    
323
324         void delete_track();
325         void delete_track(Track *track);
326         void delete_tracks();
327         int feather_edits(int64_t feather_samples, int audio, int video);
328         int64_t get_feather(int audio, int video);
329         float get_aspect_ratio();
330         void insert(double position, 
331                 FileXML *file,
332                 int edit_labels,
333                 int edit_plugins,
334                 int edit_autos,
335                 EDL *parent_edl /* = 0 */);
336
337 // TrackCanvas calls this to insert multiple effects from the drag_pluginservers
338 // into pluginset_highlighted.
339         void insert_effects_canvas(double start,
340                 double length);
341
342 // CWindow calls this to insert multiple effects from 
343 // the drag_pluginservers array.
344         void insert_effects_cwindow(Track *dest_track);
345
346 // Attach new effect to all recordable tracks
347 // single_standalone - attach 1 standalone on the first track and share it with
348 // other tracks
349         void insert_effect(char *title, 
350                 SharedLocation *shared_location, 
351                 int data_type,
352                 int plugin_type,
353                 int single_standalone);
354
355 // This is called multiple times by the above functions.
356 // It can't sync parameters.
357         void insert_effect(char *title, 
358                 SharedLocation *shared_location, 
359                 Track *track,
360                 PluginSet *plugin_set,
361                 double start,
362                 double length,
363                 int plugin_type);
364
365         void match_output_size(Track *track);
366 // Move edit to new position
367         void move_edits(ArrayList<Edit*> *edits,
368                 Track *track,
369                 double position);
370 // Move effect to position
371         void move_effect(Plugin *plugin,
372                 PluginSet *plugin_set,
373                 Track *track,
374                 int64_t position);
375         void move_plugins_up(PluginSet *plugin_set);
376         void move_plugins_down(PluginSet *plugin_set);
377         void move_track_down(Track *track);
378         void move_tracks_down();
379         void move_track_up(Track *track);
380         void move_tracks_up();
381         void mute_selection();
382         void new_folder(const char *new_folder);
383         void overwrite(EDL *source);
384 // For clipboard commands
385         void paste();
386 // For splice and overwrite
387         int paste(double start, 
388                 double end, 
389                 FileXML *file,
390                 int edit_labels,
391                 int edit_plugins,
392                 int edit_autos);
393         int paste_output(int64_t startproject, 
394                                 int64_t endproject, 
395                                 int64_t startsource_sample, 
396                                 int64_t endsource_sample, 
397                                 int64_t startsource_frame,
398                                 int64_t endsource_frame,
399                                 Asset *asset, 
400                                 RecordLabels *new_labels);
401         void paste_silence();
402
403 // Detach single transition
404         void detach_transition(Transition *transition);
405 // Detach all transitions in selection
406         void detach_transitions();
407 // Attach dragged transition
408         void paste_transition();
409 // Attach transition to all edits in selection
410         void paste_transitions(int track_type, char *title);
411 // Attach transition dragged onto CWindow
412         void paste_transition_cwindow(Track *dest_track);
413 // Attach default transition to single edit
414         void paste_audio_transition();
415         void paste_video_transition();
416         void shuffle_edits();
417         void reverse_edits();
418         void align_edits();
419         void set_edit_length(double length);
420 // Set length of single transition
421         void set_transition_length(Transition *transition, double length);
422 // Set length in seconds of all transitions in active range
423         void set_transition_length(double length);
424         
425         void remove_indexfile(Indexable *indexable);
426         void rebuild_indices();
427 // Asset removal from caches
428         void reset_caches();
429         void remove_asset_from_caches(Asset *asset);
430         void remove_assets_from_project(int push_undo /* = 0 */, 
431                 int redraw /* 1 */,
432                 ArrayList<Indexable*> *drag_assets /* mwindow->session->drag_assets */,
433                 ArrayList<EDL*> *drag_clips /* mwindow->session->drag_clips */);
434         void remove_assets_from_disk();
435         void resize_track(Track *track, int w, int h);
436         
437         void set_automation_mode(int mode);
438         void set_keyframe_type(int mode);
439         void set_auto_keyframes(int value, int lock_mwindow, int lock_cwindow);
440 // Update the editing mode
441         int set_editing_mode(int new_editing_mode, int lock_mwindow, int lock_cwindow);
442         void set_inpoint(int is_mwindow);
443         void set_outpoint(int is_mwindow);
444         void splice(EDL *source);
445         void toggle_loop_playback();
446         void trim_selection();
447 // Synchronize EDL settings with all playback engines depending on current 
448 // operation.  Doesn't redraw anything.
449         void sync_parameters(int change_type = CHANGE_PARAMS);
450         void to_clip();
451         int toggle_label(int is_mwindow);
452         void undo_entry(BC_WindowBase *calling_window_gui);
453         void redo_entry(BC_WindowBase *calling_window_gui);
454
455
456         int cut_automation();
457         int copy_automation();
458         int paste_automation();
459         void clear_automation();
460         int cut_default_keyframe();
461         int copy_default_keyframe();
462 // Use paste_automation to paste the default keyframe in other position.
463 // Use paste_default_keyframe to replace the default keyframe with whatever is
464 // in the clipboard.
465         int paste_default_keyframe();
466         int clear_default_keyframe();
467
468         int modify_edithandles();
469         int modify_pluginhandles();
470         void finish_modify_handles();
471
472         void dump_plugins(FILE *fp=stdout);
473         void dump_edl(FILE *fp=stdout);
474         void dump_undo(FILE *fp=stdout);
475         void dump_exe(FILE *fp=stdout);
476         static void trap_hook(FILE *fp, void *vp);
477         
478         void reset_android_remote();
479
480 // Send new EDL to caches
481         void age_caches();
482         int optimize_assets();            // delete unused assets from the cache and assets
483
484         void select_point(double position);
485         int set_loop_boundaries();         // toggle loop playback and set boundaries for loop playback
486
487
488         Playback3D *playback_3d;
489         SplashGUI *splash_window;
490         
491 // Main undo stack
492         MainUndo *undo;
493         BC_Hash *defaults;
494         Assets *assets;
495 // CICaches for drawing timeline only
496         CICache *audio_cache, *video_cache;
497 // Frame cache for drawing timeline only.
498 // Cache drawing doesn't wait for file decoding.
499         FrameCache *frame_cache;
500         WaveCache *wave_cache;
501         Preferences *preferences;
502         PreferencesThread *preferences_thread;
503         MainSession *session;
504         Theme *theme;
505         MainIndexes *mainindexes;
506         MainProgress *mainprogress;
507         BRender *brender;
508         static Commercials *commercials;
509         int commercial_active;
510         int has_commercials();
511
512 // Menu items
513         ArrayList<ColormodelItem*> colormodels;
514
515         int reset_meters();
516         void resync_guis();
517
518         int select_asset(Asset *asset, int vstream, int astream, int delete_tracks);
519         int select_asset(int vtrack, int delete_tracks);
520
521 // Channel DB for playback only.  Record channel DB's are in record.C
522         ChannelDB *channeldb_buz;
523         ChannelDB *channeldb_v4l2jpeg;
524
525 // ====================================== plugins ==============================
526
527 // Contains file descriptors for all the dlopens
528         static ArrayList<PluginServer*> *plugindb;
529 // Currently visible plugins
530         int64_t plugin_visibility;
531         ArrayList<PluginServer*> *plugin_guis;
532 // GUI Plugins to delete
533         ArrayList<PluginServer*> *dead_plugins;
534 // Keyframe editors
535         ArrayList<KeyFrameThread*> *keyframe_threads;
536
537 // Adjust sample position to line up with frames.
538         int fix_timing(int64_t &samples_out, 
539                 int64_t &frames_out, 
540                 int64_t samples_in);
541
542
543         CreateBD_Thread *create_bd;
544         CreateDVD_Thread *create_dvd;
545         BatchRenderThread *batch_render;
546         Render *render;
547 // Master edl
548         EDL *edl;
549 // Main Window GUI
550         MWindowGUI *gui;
551 // Compositor
552         CWindow *cwindow;
553 // Viewer
554         Mutex *vwindows_lock;
555         ArrayList<VWindow*> vwindows;
556 // Asset manager
557         AWindow *awindow;
558 // Automation window
559         GWindow *gwindow;
560 // Tip of the day
561         TipWindow *twindow;
562 // Warning window
563         WWindow *wwindow;
564         void show_warning(int *do_warning, const char *text);
565 // Levels
566         LevelWindow *lwindow;
567 // Lock during creation and destruction of GUI
568         Mutex *plugin_gui_lock;
569         Mutex *dead_plugin_lock;
570         Mutex *keyframe_gui_lock;
571 // Lock during creation and destruction of brender so playback doesn't use it.
572         Mutex *brender_lock;
573
574 // Initialize shared memory
575         void init_shm();
576
577 // Initialize channel DB's for playback
578         void init_channeldb();
579         void init_render();
580 // These three happen synchronously with each other
581 // Make sure this is called after synchronizing EDL's.
582         void init_brender();
583 // Restart brender after testing its existence
584         void restart_brender();
585 // Stops brender after testing its existence
586         void stop_brender();
587 // This one happens asynchronously of the others.  Used by playback to
588 // see what frame is background rendered.
589         int brender_available(int position);
590         void set_brender_start();
591         int put_commercial();
592         void activate_commercial() { commercial_active = 1; }
593         void commit_commercial();
594         void undo_commercial();
595         void cut_commercials();
596         int paste_subtitle_text(char *text, double start, double end);
597
598         void init_error();
599         void finit_error();
600         static void init_defaults(BC_Hash* &defaults, char *config_path);
601         void init_edl();
602         void init_awindow();
603         void init_gwindow();
604         void init_tipwindow();
605 // Used by MWindow and RenderFarmClient
606         static void get_plugin_path(char *path, const char *plug_dir, const char *fs_path);
607         static int init_plugins(MWindow *mwindow, Preferences *preferences);
608         static int init_ladspa_plugins(MWindow *mwindow, Preferences *preferences);
609         static int check_plugin_index(ArrayList<PluginServer*> &plugins,
610                 const char *plug_dir, const char *plug_path);
611         static void init_plugin_index(MWindow *mwindow, Preferences *preferences,
612                 FILE *fp, const char *plugin_dir);
613         static int init_ladspa_index(MWindow *mwindow, Preferences *preferences,
614                 const char *index_path, const char *plugin_dir);
615         static void scan_plugin_index(MWindow *mwindow, Preferences *preferences,
616                 FILE *fp, const char *plug_dir, const char *plug_path, int &idx);
617         static void init_ffmpeg();
618         static void init_ffmpeg_index(MWindow *mwindow, Preferences *preferences, FILE *fp);
619         static int load_plugin_index(MWindow *mwindow, const char *index_path,
620                 const char *plugin_dir);
621         static PluginServer* new_ffmpeg_server(MWindow *mwindow, const char *name);
622         void init_preferences();
623         void init_signals();
624         void init_theme();
625         void init_compositor();
626         void init_levelwindow();
627 // Called when creating a new viewer to view footage
628         VWindow* get_viewer(int start_it, int idx=-1);
629         void init_cache();
630         void init_menus();
631         void init_indexes();
632         void init_gui();
633         void init_3d();
634         void init_playbackcursor();
635         void init_commercials();
636         static void add_plugins(ArrayList<PluginServer*> &plugins);
637         static void delete_plugins();
638 // 
639         void clean_indexes();
640 //      TimeBomb timebomb;
641         SigHandler *sighandler;
642         int restart_status;
643         int screens;
644         int in_destructor;
645 };
646
647 #endif