2 #include "automation.h"
4 #include "commonrender.h"
7 #include "edlsession.h"
8 #include "virtualconsole.h"
11 #include "playabletracks.h"
12 #include "renderengine.h"
15 #include "transportque.h"
16 #include "virtualnode.h"
19 VirtualConsole::VirtualConsole(RenderEngine *renderengine,
20 CommonRender *commonrender,
23 this->renderengine = renderengine;
24 this->commonrender = commonrender;
25 this->data_type = data_type;
33 VirtualConsole::~VirtualConsole()
35 delete_virtual_console();
37 delete playable_tracks;
41 void VirtualConsole::create_objects()
46 get_playable_tracks();
47 total_exit_nodes = playable_tracks->total;
48 build_virtual_console(1);
52 void VirtualConsole::start_playback()
58 void VirtualConsole::get_playable_tracks()
62 Module* VirtualConsole::module_of(Track *track)
64 for(int i = 0; i < commonrender->total_modules; i++)
66 if(commonrender->modules[i]->track == track)
67 return commonrender->modules[i];
72 Module* VirtualConsole::module_number(int track_number)
74 // The track number is an absolute number of the track independant of
75 // the tracks with matching data type but virtual modules only exist for
76 // the matching data type.
77 // Convert from absolute track number to data type track number.
78 Track *current = renderengine->edl->tracks->first;
79 int data_type_number = 0, number = 0;
81 for( ; current; current = NEXT, number++)
83 if(current->data_type == data_type)
85 if(number == track_number)
86 return commonrender->modules[data_type_number];
96 void VirtualConsole::build_virtual_console(int persistent_plugins)
98 // allocate the entry nodes
101 entry_nodes = new VirtualNode*[total_exit_nodes];
103 for(int i = 0; i < total_exit_nodes; i++)
105 entry_nodes[i] = new_entry_node(playable_tracks->values[i],
106 module_of(playable_tracks->values[i]),
110 entry_nodes[i]->expand(persistent_plugins,
111 commonrender->current_position);
113 commonrender->restart_plugins = 1;
118 VirtualNode* VirtualConsole::new_entry_node(Track *track,
122 printf("VirtualConsole::new_entry_node should not be called\n");
126 void VirtualConsole::append_exit_node(VirtualNode *node)
129 exit_nodes.append(node);
132 void VirtualConsole::reset_attachments()
134 for(int i = 0; i < commonrender->total_modules; i++)
136 commonrender->modules[i]->reset_attachments();
140 void VirtualConsole::dump()
142 printf("VirtualConsole\n");
143 printf(" Modules\n");
144 for(int i = 0; i < commonrender->total_modules; i++)
145 commonrender->modules[i]->dump();
147 for(int i = 0; i < total_exit_nodes; i++)
148 entry_nodes[i]->dump(0);
152 int VirtualConsole::test_reconfigure(int64_t position,
157 Track *current_track;
160 // Test playback status against virtual console for current position.
161 for(current_track = renderengine->edl->tracks->first;
162 current_track && !result;
163 current_track = current_track->next)
165 if(current_track->data_type == data_type)
167 // Playable status changed
168 if(playable_tracks->is_playable(current_track,
169 commonrender->current_position,
172 if(!playable_tracks->is_listed(current_track))
176 if(playable_tracks->is_listed(current_track))
183 // Test plugins against virtual console at current position
184 for(int i = 0; i < commonrender->total_modules && !result; i++)
185 result = commonrender->modules[i]->test_plugins();
191 // Now get the length of time until next reconfiguration.
192 // This part is not concerned with result.
193 // Don't clip input length if only rendering 1 frame.
194 if(length == 1) return result;
200 int direction = renderengine->command->get_direction();
201 // GCC 3.2 requires this or optimization error results.
202 int64_t longest_duration1;
203 int64_t longest_duration2;
204 int64_t longest_duration3;
206 // Length of time until next transition, edit, or effect change.
207 // Why do we need the edit change? Probably for changing to and from silence.
208 for(current_track = renderengine->edl->tracks->first;
210 current_track = current_track->next)
212 if(current_track->data_type == data_type)
214 // Test the transitions
215 longest_duration1 = current_track->edit_change_duration(
216 commonrender->current_position,
218 direction == PLAY_REVERSE,
224 longest_duration2 = current_track->edit_change_duration(
225 commonrender->current_position,
233 longest_duration3 = current_track->plugin_change_duration(
234 commonrender->current_position,
236 direction == PLAY_REVERSE,
239 if(longest_duration1 < length)
241 length = longest_duration1;
244 if(longest_duration2 < length)
246 length = longest_duration2;
249 if(longest_duration3 < length)
251 length = longest_duration3;
265 int VirtualConsole::delete_virtual_console()
267 // delete the virtual node tree
268 for(int i = 0; i < total_exit_nodes; i++)
270 delete entry_nodes[i];
272 // Seems to get allocated even if new[0].
273 if(entry_nodes) delete [] entry_nodes;
275 exit_nodes.remove_all();
282 // c-file-style: "linux"