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
31 #include "filexml.inc"
32 #include "keyframe.inc"
33 #include "keyframes.inc"
36 #include "pluginset.inc"
37 #include "pluginpopup.inc"
38 #include "pluginserver.inc"
39 #include "sharedlocation.h"
40 #include "virtualnode.inc"
46 // Plugin is inherited by Transition, Plugins
47 class Plugin : public Edit
50 // Plugin which belongs to a transition.
54 // Called by PluginSet::create_edit, PluginSet::insert_edit_after.
55 // Plugin can't take a track because it would get the edits pointer from
56 // the track instead of the plugin set.
58 PluginSet *plugin_set,
62 virtual Plugin& operator=(Plugin& edit);
63 virtual Edit& operator=(Edit& edit);
65 // Called by Edits::equivalent_output to override the keyframe behavior and check
67 void equivalent_output(Edit *edit, int64_t *result);
69 // Called by playable tracks to test for playable server.
70 // Descends the plugin tree without creating a virtual console.
71 int is_synthesis(int64_t position,
74 virtual int operator==(Plugin& that);
75 virtual int operator==(Edit& that);
77 virtual void copy_from(Edit *edit);
80 // Called by == operators, Edit::equivalent output
81 // to test title and keyframe of transition.
82 virtual int identical(Plugin *that);
83 // Called by render_gui. Only need the track, position, and pluginset
84 // to determine a corresponding GUI.
85 int identical_location(Plugin *that);
86 virtual void synchronize_params(Edit *edit);
87 // Used by Edits::insert_edits and Plugin::shift to shift plugin keyframes
88 void shift_keyframes(int64_t position);
90 void change_plugin(char *title,
91 SharedLocation *shared_location,
93 // For synchronizing parameters
94 void copy_keyframes(Plugin *plugin);
95 // For copying to clipboard
96 void copy_keyframes(int64_t start,
101 // For editing automation.
102 // Returns the point to restart background rendering at.
103 // -1 means nothing changed.
104 void clear_keyframes(int64_t start, int64_t end);
105 void copy(int64_t start, int64_t end, FileXML *file);
106 void paste(FileXML *file);
107 void load(FileXML *file);
109 void shift(int64_t difference);
110 void dump(FILE *fp=stdout);
111 static void fix_plugin_title(char *title);
112 // Called by PluginClient sequence to get rendering parameters
113 KeyFrame* get_prev_keyframe(int64_t position, int direction);
114 KeyFrame* get_next_keyframe(int64_t position, int direction);
115 // If this is a standalone plugin fill its location in the result.
116 // If it's shared copy the shared location into the result
117 void get_shared_location(SharedLocation *result);
118 // Get keyframes for editing with automatic creation if enabled.
119 // The direction is always assumed to be forward.
120 virtual KeyFrame* get_keyframe();
121 // Called by KeyFrameThread
122 int keyframe_exists(KeyFrame *ptr);
124 // Calculate title given plugin type. Used by TrackCanvas::draw_plugins
125 void calculate_title(char *string, int use_nudge);
126 // Resolve objects pointed to by shared_location
127 Track* get_shared_track();
128 // Plugin* get_shared_plugin();
130 // Need to resample keyframes
131 void resample(double old_rate, double new_rate);
133 // The title of the plugin is stored and not the plugindb entry in case it doesn't exist in the db
134 // Title of the plugin currently attached
135 char title[BCTEXTLEN];
137 // In and out aren't used anymore.
140 PluginSet *plugin_set;
142 // Data for the plugin is stored here. Default keyframe always exists.
143 // As for storing in PluginSet instead of Plugin:
145 // Each plugin needs a default keyframe of its own.
146 // The keyframes are meaningless except for the plugin they're stored in.
147 // Default keyframe has position = 0.
148 // Other keyframes have absolute position.
149 KeyFrames *keyframes;
151 // location of plugin if shared
152 SharedLocation shared_location;