7 #include "audiodevice.inc"
9 #include "batchrender.inc"
10 #include "bcwindowbase.inc"
11 #include "brender.inc"
13 #include "channel.inc"
14 #include "channeldb.inc"
15 #include "cwindow.inc"
17 #include "devicedvbinput.inc"
20 #include "exportedl.inc"
21 #include "filesystem.inc"
22 #include "filexml.inc"
23 #include "framecache.inc"
24 #include "gwindow.inc"
25 #include "levelwindow.inc"
26 #include "loadmode.inc"
27 #include "mainerror.inc"
28 #include "mainindexes.inc"
29 #include "mainprogress.inc"
30 #include "mainsession.inc"
31 #include "mainundo.inc"
32 #include "maxchannels.h"
34 #include "mwindow.inc"
35 #include "mwindowgui.inc"
37 #include "patchbay.inc"
38 #include "playback3d.inc"
39 #include "playbackengine.inc"
41 #include "pluginserver.inc"
42 #include "pluginset.inc"
43 #include "preferences.inc"
44 #include "preferencesthread.inc"
45 #include "recordlabel.inc"
46 #include "removethread.inc"
48 #include "sharedlocation.inc"
49 #include "sighandler.inc"
50 #include "splashgui.inc"
53 #include "threadloader.inc"
54 #include "timebar.inc"
56 #include "tipwindow.inc"
58 #include "tracking.inc"
60 #include "transition.inc"
61 #include "transportque.inc"
62 #include "videowindow.inc"
63 #include "vwindow.inc"
64 #include "wavecache.inc"
68 // All entry points for commands except for window locking should be here.
69 // This allows scriptability.
71 class MWindow
: public Thread
77 // ======================================== initialization commands
78 void create_objects(int want_gui
,
86 int run_script(FileXML
*script
);
88 int delete_project(int flash
= 1);
92 int set_filename(char *filename
);
93 // Total vertical pixels in timeline
94 int get_tracks_height();
95 // Total horizontal pixels in timeline
96 int get_tracks_width();
104 void set_titles(int value
);
105 int asset_to_edl(EDL
*new_edl
, Asset_GC new_asset
, RecordLabels
*labels
= 0);
107 // Entry point to insert assets and insert edls. Called by TrackCanvas
108 // and AssetPopup when assets are dragged in from AWindow.
109 // Takes the drag vectors from MainSession and
110 // pastes either assets or clips depending on which is full.
111 // Returns 1 if the vectors were full
112 int paste_assets(double position
, Track
*dest_track
, int overwrite
);
114 // Insert the assets at a point in the EDL. Called by menueffects,
115 // render, and CWindow drop but recording calls paste_edls directly for
117 void load_assets(Assets_vector
&new_assets
,
120 Track
*first_track
/* = 0 */,
121 RecordLabels
*labels
/* = 0 */,
125 int paste_edls(ArrayList
<EDL
*> *new_edls
,
127 Track
*first_track
/* = 0 */,
128 double current_position
/* = -1 */,
132 // Reset everything for a load
133 void update_project(int load_mode
);
134 // Fit selected time to horizontal display range
135 void fit_selection();
136 // Fit selected autos to the vertical display range
137 void fit_autos(int doall
);
138 void change_currentautorange(int autogrouptype
, int increment
, int changemax
);
139 void expand_autos(int changeall
, int domin
, int domax
);
140 void shrink_autos(int changeall
, int domin
, int domax
);
141 // move the window to include the cursor
143 // Append a plugindb with pointers to the master plugindb
144 void create_plugindb(int do_audio
,
149 ArrayList
<PluginServer
*> &plugindb
);
150 // Find the plugin whose title matches title and return it
151 PluginServer
* scan_plugindb(char *title
,
158 int load_filenames(ArrayList
<char*> *filenames
,
159 int load_mode
= LOAD_REPLACE
,
160 // Cause the project filename on the top of the window to be updated.
161 // Not wanted for loading backups.
162 int update_filename
= 1,
163 char *reel_name
= "cin0000",
165 int overwrite_reel
= 0);
168 // Print out plugins which are referenced in the EDL but not loaded.
169 void test_plugins(EDL
*new_edl
, char *path
);
171 int interrupt_indexes(); // Stop index building
174 int redraw_time_dependancies(); // after reconfiguring the time format, sample rate, frame rate
176 // =========================================== movement
178 void next_time_format();
179 void prev_time_format();
180 void time_format_common();
181 int reposition_timebar(int new_pixel
, int new_height
);
182 int expand_sample(double fixed_sample
= -1); // fixed_sample is the sample that should hold fixed position on the screen after zooming, -1 = selection
183 int zoom_in_sample(double fixed_sample
= -1);
184 int zoom_sample(int64_t zoom_sample
, int64_t view_start
= -1); // what's the supposed view start
185 void zoom_amp(int64_t zoom_amp
);
186 void zoom_track(int64_t zoom_track
);
188 int move_left(int64_t distance
= 0);
189 int move_right(int64_t distance
= 0);
190 void move_up(int64_t distance
= 0);
191 void move_down(int64_t distance
= 0);
194 // shift_down must be passed by the caller because different windows call
196 int next_label(int shift_down
);
197 int prev_label(int shift_down
);
198 // seek to edit handles
199 int next_edit_handle(int shift_down
);
200 int prev_edit_handle(int shift_down
);
201 void trackmovement(int track_start
);
202 int samplemovement(int64_t view_start
); // view_start is pixels
211 void update_plugins();
212 // Call after every edit operation
214 void show_plugin(Plugin
*plugin
);
215 void hide_plugin(Plugin
*plugin
, int lock
);
217 // Update plugins with configuration changes.
218 // Called by TrackCanvas::cursor_motion_event.
219 void update_plugin_guis();
220 void update_plugin_states();
221 void update_plugin_titles();
222 // Called by Attachmentpoint during playback.
223 // Searches for matching plugin and renders data in it.
224 void render_plugin_gui(void *data
, Plugin
*plugin
);
225 void render_plugin_gui(void *data
, int size
, Plugin
*plugin
);
227 // Called from PluginVClient::process_buffer
228 // Returns 1 if a GUI for the plugin is open so OpenGL routines can determine if
230 int plugin_gui_open(Plugin
*plugin
);
233 // ============================= editing commands ========================
235 // Map each recordable audio track to the desired pattern
236 void map_audio(int pattern
);
242 void add_audio_track_entry(int above
, Track
*dst
);
243 int add_audio_track(int above
, Track
*dst
);
244 void add_clip_to_edl(EDL
*edl
);
245 void add_video_track_entry(Track
*dst
= 0);
246 int add_video_track(int above
, Track
*dst
);
248 void asset_to_size();
249 void asset_to_rate();
250 // Entry point for clear operations.
252 // Clears active region in EDL.
253 // If clear_handle, edit boundaries are cleared if the range is 0.
254 // Called by paste, record, menueffects, render, and CWindow drop.
255 void clear(int clear_handle
);
257 int clear_labels(double start
, double end
);
258 void concatenate_tracks();
260 int copy(double start
, double end
);
263 // Calculate aspect ratio from pixel counts
264 static int create_aspect_ratio(float &w
, float &h
, int width
, int height
);
265 // Calculate defaults path
266 static void create_defaults_path(char *string
);
268 void delete_folder(char *folder
);
269 void delete_inpoint();
270 void delete_outpoint();
273 void delete_track(Track
*track
);
274 void delete_tracks();
275 void detach_transition(Transition
*transition
);
276 int feather_edits(int64_t feather_samples
, int audio
, int video
);
277 int64_t get_feather(int audio
, int video
);
278 float get_aspect_ratio();
279 void insert(double position
,
283 EDL
*parent_edl
= 0);
285 // TrackCanvas calls this to insert multiple effects from the drag_pluginservers
286 // into pluginset_highlighted.
287 void insert_effects_canvas(double start
,
290 // CWindow calls this to insert multiple effects from
291 // the drag_pluginservers array.
292 void insert_effects_cwindow(Track
*dest_track
);
294 // This is called multiple times by the above functions.
295 // It can't sync parameters.
296 void insert_effect(char *title
,
297 SharedLocation
*shared_location
,
299 PluginSet
*plugin_set
,
304 void match_output_size(Track
*track
);
305 // Move edit to new position
306 void move_edits(ArrayList
<Edit
*> *edits
,
309 int behaviour
); // behaviour: 0 - old style (cut and insert elswhere), 1- new style - (clear and overwrite elsewere)
310 // Move effect to position
311 void move_effect(Plugin
*plugin
,
312 PluginSet
*plugin_set
,
315 void move_plugins_up(PluginSet
*plugin_set
);
316 void move_plugins_down(PluginSet
*plugin_set
);
317 void move_track_down(Track
*track
);
318 void move_tracks_down();
319 void move_track_up(Track
*track
);
320 void move_tracks_up();
321 void mute_selection();
322 void new_folder(char *new_folder
);
323 void overwrite(EDL
*source
);
324 // For clipboard commands
326 // For splice and overwrite
327 int paste(double start
,
332 int paste_output(int64_t startproject
,
334 int64_t startsource_sample
,
335 int64_t endsource_sample
,
336 int64_t startsource_frame
,
337 int64_t endsource_frame
,
339 RecordLabels
*new_labels
);
340 void paste_silence();
342 void paste_transition();
343 void paste_transition_cwindow(Track
*dest_track
);
344 void paste_audio_transition();
345 void paste_video_transition();
346 void rebuild_indices();
347 // Asset removal from caches
349 void remove_asset_from_caches(Asset_GC asset
);
350 void remove_assets_from_project(int push_undo
= 0);
351 void remove_assets_from_disk();
352 void resize_track(Track
*track
, int w
, int h
);
353 void set_auto_keyframes(int value
);
354 void set_labels_follow_edits(int value
);
356 // Update the editing mode
357 int set_editing_mode(int new_editing_mode
);
358 void toggle_editing_mode();
359 void set_inpoint(int is_mwindow
);
360 void set_outpoint(int is_mwindow
);
361 void splice(EDL
*source
);
362 void toggle_loop_playback();
363 void trim_selection();
364 // Synchronize EDL settings with all playback engines depending on current
365 // operation. Doesn't redraw anything.
366 void sync_parameters(int change_type
= CHANGE_PARAMS
);
368 int toggle_label(int is_mwindow
);
369 void undo_entry(BC_WindowBase
*calling_window_gui
);
370 void redo_entry(BC_WindowBase
*calling_window_gui
);
373 int cut_automation();
374 int copy_automation();
375 int paste_automation();
376 void clear_automation();
377 void straighten_automation();
378 int cut_default_keyframe();
379 int copy_default_keyframe();
380 // Use paste_automation to paste the default keyframe in other position.
381 // Use paste_default_keyframe to replace the default keyframe with whatever is
383 int paste_default_keyframe();
384 int clear_default_keyframe();
386 int modify_edithandles();
387 int modify_pluginhandles();
388 void finish_modify_handles();
396 // Send new EDL to caches
398 int optimize_assets(); // delete unused assets from the cache and assets
401 void select_point(double position
);
402 int set_loop_boundaries(); // toggle loop playback and set boundaries for loop playback
405 Playback3D
*playback_3d
;
406 RemoveThread
*remove_thread
;
408 SplashGUI
*splash_window
;
413 // CICaches for drawing timeline only
414 CICache
*audio_cache
, *video_cache
;
415 // Frame cache for drawing timeline only.
416 // Cache drawing doesn't wait for file decoding.
417 FrameCache
*frame_cache
;
418 WaveCache
*wave_cache
;
419 Preferences
*preferences
;
420 PreferencesThread
*preferences_thread
;
421 MainSession
*session
;
423 MainIndexes
*mainindexes
;
424 MainProgress
*mainprogress
;
428 ArrayList
<ColormodelItem
*> colormodels
;
429 ArrayList
<InterlaceautofixoptionItem
*> interlace_asset_autofixoptions
;
430 ArrayList
<InterlacemodeItem
*> interlace_project_modes
;
431 ArrayList
<InterlacemodeItem
*> interlace_asset_modes
;
432 ArrayList
<InterlacefixmethodItem
*> interlace_asset_fixmethods
;
436 // Channel DB for playback only. Record channel DB's are in record.C
437 ChannelDB
*channeldb_buz
;
438 ChannelDB
*channeldb_v4l2jpeg
;
440 // ====================================== plugins ==============================
442 // Contain file descriptors for all the dlopens
443 ArrayList
<PluginServer
*> *plugindb
;
444 // Currently visible plugins
445 ArrayList
<PluginServer
*> *plugin_guis
;
448 // Adjust sample position to line up with frames.
449 int fix_timing(int64_t &samples_out
,
454 BatchRenderThread
*batch_render
;
457 ExportEDL
*exportedl
;
475 LevelWindow
*lwindow
;
476 // Lock during creation and destruction of GUI
477 Mutex
*plugin_gui_lock
;
478 // Lock during creation and destruction of brender so playback doesn't use it.
481 // Single device drivers which must be shared between audio and video go here.
482 // They are managed by the garbage collector.
483 DeviceDVBInput
*dvb_input
;
484 // Must be locked before accessing dvb_input or Garbage functions in it.
485 Mutex
*dvb_input_lock
;
488 // Initialize shared memory
491 // Initialize channel DB's for playback
492 void init_channeldb();
494 void init_exportedl();
495 // These three happen synchronously with each other
496 // Make sure this is called after synchronizing EDL's.
498 // Restart brender after testing its existence
499 void restart_brender();
500 // Stops brender after testing its existence
502 // This one happens asynchronously of the others. Used by playback to
503 // see what frame is background rendered.
504 int brender_available(int position
);
505 void set_brender_start();
508 static void init_defaults(BC_Hash
* &defaults
,
513 void init_tipwindow();
514 // Used by MWindow and RenderFarmClient
515 static void init_plugins(Preferences
*preferences
,
516 ArrayList
<PluginServer
*>* &plugindb
,
517 SplashGUI
*splash_window
);
518 static void init_plugin_path(Preferences
*preferences
,
519 ArrayList
<PluginServer
*>* &plugindb
,
521 SplashGUI
*splash_window
,
523 void init_preferences();
526 void init_compositor();
527 void init_levelwindow();
534 void init_playbackcursor();
535 void delete_plugins();
537 void clean_indexes();
538 // TimeBomb timebomb;
539 SigHandler
*sighandler
;
546 // c-file-style: "linux"