4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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
22 #include "bcsignals.h"
24 #include "edlsession.h"
27 #include "keyframes.h"
28 #include "localsession.h"
32 #include "pluginpopup.h"
33 #include "pluginset.h"
34 #include "pluginserver.h"
37 #include "virtualnode.h"
40 Plugin::Plugin(EDL *edl, Track *track, const char *title)
46 strcpy(this->title, title);
47 plugin_type = PLUGIN_NONE;
52 keyframes = new KeyFrames(edl, track);
53 keyframes->create_objects();
57 Plugin::Plugin(EDL *edl, PluginSet *plugin_set, const char *title)
58 : Edit(edl, plugin_set)
61 this->track = plugin_set->track;
62 this->plugin_set = plugin_set;
63 strcpy(this->title, title);
64 plugin_type = PLUGIN_NONE;
69 keyframes = new KeyFrames(edl, track);
70 keyframes->create_objects();
75 while(keyframes->last) delete keyframes->last;
79 Edit& Plugin::operator=(Edit& edit)
85 Plugin& Plugin::operator=(Plugin& edit)
91 int Plugin::operator==(Plugin& that)
93 return identical(&that);
96 int Plugin::operator==(Edit& that)
98 return identical((Plugin*)&that);
101 int Plugin::silence()
103 if(plugin_type != PLUGIN_NONE)
109 void Plugin::clear_keyframes(int64_t start, int64_t end)
111 keyframes->clear(start, end, 0);
115 void Plugin::copy_from(Edit *edit)
117 Plugin *plugin = (Plugin*)edit;
119 this->startsource = edit->startsource;
120 this->startproject = edit->startproject;
121 this->length = edit->length;
124 this->plugin_type = plugin->plugin_type;
125 this->in = plugin->in;
126 this->out = plugin->out;
127 this->show = plugin->show;
128 this->on = plugin->on;
129 // Should reconfigure this based on where the first track is now.
130 this->shared_location = plugin->shared_location;
131 strcpy(this->title, plugin->title);
133 copy_keyframes(plugin);
136 void Plugin::copy_keyframes(Plugin *plugin)
139 keyframes->copy_from(plugin->keyframes);
142 void Plugin::copy_keyframes(int64_t start,
148 // Only 1 default is copied from where the start position is
149 int64_t endproject = startproject + length;
152 start < endproject &&
153 start >= startproject))
154 keyframes->copy(start, end, file, default_only, active_only);
157 void Plugin::synchronize_params(Edit *edit)
159 Plugin *plugin = (Plugin*)edit;
160 this->in = plugin->in;
161 this->out = plugin->out;
162 this->show = plugin->show;
163 this->on = plugin->on;
164 strcpy(this->title, plugin->title);
165 copy_keyframes(plugin);
168 void Plugin::shift_keyframes(int64_t position)
170 for(KeyFrame *keyframe = (KeyFrame*)keyframes->first;
172 keyframe = (KeyFrame*)keyframe->next)
174 keyframe->position += position;
179 void Plugin::equivalent_output(Edit *edit, int64_t *result)
181 Plugin *plugin = (Plugin*)edit;
182 // End of plugin changed
183 if(startproject + length != plugin->startproject + plugin->length)
185 if(*result < 0 || startproject + length < *result)
186 *result = startproject + length;
189 // Start of plugin changed
190 if( startproject != plugin->startproject || plugin_type != plugin->plugin_type ||
191 on != plugin->on || !(shared_location == plugin->shared_location) ||
192 strcmp(title, plugin->title) ) {
193 if( *result < 0 || startproject < *result )
194 *result = startproject;
198 keyframes->equivalent_output(plugin->keyframes, startproject, result);
203 int Plugin::is_synthesis(int64_t position,
208 case PLUGIN_STANDALONE:
212 printf("Plugin::is_synthesis track not defined\n");
217 PluginServer *plugin_server = MWindow::scan_plugindb(title,
219 //printf("Plugin::is_synthesis %d %p %d\n", __LINE__, plugin_server, plugin_server->get_synthesis());
220 //plugin_server->dump();
221 return plugin_server->get_synthesis();
225 // Dereference real plugin and descend another level
226 case PLUGIN_SHAREDPLUGIN:
228 int real_module_number = shared_location.module;
229 int real_plugin_number = shared_location.plugin;
230 Track *track = edl->tracks->number(real_module_number);
231 // Get shared plugin from master track
232 Plugin *plugin = track->get_current_plugin(position,
239 return plugin->is_synthesis(position, direction);
243 // Dereference the real track and descend
244 case PLUGIN_SHAREDMODULE:
246 int real_module_number = shared_location.module;
247 Track *track = edl->tracks->number(real_module_number);
248 return track->is_synthesis(position, direction);
257 int Plugin::identical(Plugin *that)
260 if(plugin_type != that->plugin_type) return 0;
262 // Test title or location
265 case PLUGIN_STANDALONE:
266 if(strcmp(title, that->title)) return 0;
268 case PLUGIN_SHAREDPLUGIN:
269 if(shared_location.module != that->shared_location.module ||
270 shared_location.plugin != that->shared_location.plugin) return 0;
272 case PLUGIN_SHAREDMODULE:
273 if(shared_location.module != that->shared_location.module) return 0;
277 // Test remaining fields
278 return (this->on == that->on &&
279 ((KeyFrame*)keyframes->default_auto)->identical(
280 ((KeyFrame*)that->keyframes->default_auto)));
283 int Plugin::identical_location(Plugin *that)
285 if(!plugin_set || !plugin_set->track) return 0;
286 if(!that->plugin_set || !that->plugin_set->track) return 0;
288 if(plugin_set->track->number_of() == that->plugin_set->track->number_of() &&
289 plugin_set->get_number() == that->plugin_set->get_number() &&
290 startproject == that->startproject) return 1;
296 int Plugin::keyframe_exists(KeyFrame *ptr)
298 for(KeyFrame *current = (KeyFrame*)keyframes->first;
300 current = (KeyFrame*)NEXT)
302 if(current == ptr) return 1;
308 void Plugin::change_plugin(char *title,
309 SharedLocation *shared_location,
312 strcpy(this->title, title);
313 this->shared_location = *shared_location;
314 this->plugin_type = plugin_type;
319 KeyFrame* Plugin::get_prev_keyframe(int64_t position,
322 return keyframes->get_prev_keyframe(position, direction);
325 KeyFrame* Plugin::get_next_keyframe(int64_t position,
330 // This doesn't work for playback because edl->selectionstart doesn't
331 // change during playback at the same rate as PluginClient::source_position.
334 //printf("Plugin::get_next_keyframe position < 0\n");
335 position = track->to_units(edl->local_session->get_selectionstart(1), 0);
338 // Get keyframe after current position
339 for(current = (KeyFrame*)keyframes->first;
341 current = (KeyFrame*)NEXT)
343 if(direction == PLAY_FORWARD && current->position > position) break;
345 if(direction == PLAY_REVERSE && current->position >= position) break;
348 // Nothing after current position
349 if(!current && keyframes->last)
351 current = (KeyFrame*)keyframes->last;
357 current = (KeyFrame*)keyframes->default_auto;
363 KeyFrame* Plugin::get_keyframe()
365 return keyframes->get_keyframe();
368 void Plugin::copy(int64_t start, int64_t end, FileXML *file)
370 int64_t endproject = startproject + length;
372 if((startproject >= start && startproject <= end) || // startproject in range
373 (endproject <= end && endproject >= start) || // endproject in range
374 (startproject <= start && endproject >= end)) // range in project
377 int64_t startproject_in_selection = startproject; // start of edit in selection in project
378 int64_t startsource_in_selection = startsource; // start of source in selection in source
379 //int64_t endsource_in_selection = startsource + length; // end of source in selection
380 int64_t length_in_selection = length; // length of edit in selection
382 if(startproject < start)
383 { // start is after start of edit in project
384 int64_t length_difference = start - startproject;
386 startsource_in_selection += length_difference;
387 startproject_in_selection += length_difference;
388 length_in_selection -= length_difference;
391 // end is before end of edit in project
394 length_in_selection = end - startproject_in_selection;
397 // Plugins don't store silence
398 file->tag.set_title("PLUGIN");
399 // file->tag.set_property("STARTPROJECT", startproject_in_selection - start);
400 file->tag.set_property("LENGTH", length_in_selection);
401 file->tag.set_property("TYPE", plugin_type);
402 file->tag.set_property("TITLE", title);
404 file->append_newline();
407 if(plugin_type == PLUGIN_SHAREDPLUGIN ||
408 plugin_type == PLUGIN_SHAREDMODULE)
410 shared_location.save(file);
417 file->tag.set_title("IN");
419 file->tag.set_title("/IN");
424 file->tag.set_title("OUT");
426 file->tag.set_title("/OUT");
431 file->tag.set_title("SHOW");
433 file->tag.set_title("/SHOW");
438 file->tag.set_title("ON");
440 file->tag.set_title("/ON");
443 file->append_newline();
446 keyframes->copy(start, end, file, 0, 0);
448 file->tag.set_title("/PLUGIN");
450 file->append_newline();
454 void Plugin::load(FileXML *file)
457 int first_keyframe = 1;
460 // Currently show is ignored when loading
463 while(keyframes->last) delete keyframes->last;
466 result = file->read_tag();
468 //printf("Plugin::load 1 %s\n", file->tag.get_title());
471 if(file->tag.title_is("/PLUGIN"))
476 if(file->tag.title_is("SHARED_LOCATION"))
478 shared_location.load(file);
481 if(file->tag.title_is("IN"))
486 if(file->tag.title_is("OUT"))
491 if(file->tag.title_is("SHOW"))
496 if(file->tag.title_is("ON"))
501 if(file->tag.title_is("KEYFRAME"))
506 keyframes->default_auto->load(file);
510 // Override default keyframe
512 KeyFrame *keyframe = (KeyFrame*)keyframes->append(new KeyFrame(edl, keyframes));
513 keyframe->position = file->tag.get_property("POSITION", (int64_t)0);
514 keyframe->load(file);
521 void Plugin::get_shared_location(SharedLocation *result)
523 if(plugin_type == PLUGIN_STANDALONE && plugin_set)
525 result->module = edl->tracks->number_of(track);
526 result->plugin = track->plugin_set.number_of(plugin_set);
530 *result = this->shared_location;
534 Track* Plugin::get_shared_track()
536 return edl->tracks->get_item_number(shared_location.module);
540 void Plugin::calculate_title(char *string, int use_nudge)
542 switch( plugin_type ) {
543 case PLUGIN_STANDALONE:
545 strcpy(string, _(title));
547 case PLUGIN_SHAREDPLUGIN:
548 case PLUGIN_SHAREDMODULE:
549 shared_location.calculate_title(string, edl,
550 startproject, 0, plugin_type, use_nudge);
555 void Plugin::fix_plugin_title(char *title)
557 MWindow::fix_plugin_title(title);
561 void Plugin::paste(FileXML *file)
563 length = file->tag.get_property("LENGTH", (int64_t)0);
566 void Plugin::resample(double old_rate, double new_rate)
568 // Resample keyframes in here
569 keyframes->resample(old_rate, new_rate);
572 void Plugin::shift(int64_t difference)
574 Edit::shift(difference);
576 if(edl->session->autos_follow_edits)
577 shift_keyframes(difference);
580 void Plugin::dump(FILE *fp)
582 fprintf(fp," PLUGIN: type=%d title=\"%s\" on=%d track=%d plugin=%d\n",
583 plugin_type, title, on, shared_location.module, shared_location.plugin);
584 fprintf(fp," startproject %jd length %jd\n", startproject, length);