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
23 #include "bcdisplayinfo.h"
28 #include "overlayframe.h"
40 REGISTER_PLUGIN(BandWipeMain)
46 BandWipeCount::BandWipeCount(BandWipeMain *plugin,
47 BandWipeWindow *window,
50 : BC_TumbleTextBox(window,
51 (int64_t)plugin->bands,
58 this->plugin = plugin;
59 this->window = window;
62 int BandWipeCount::handle_event()
64 plugin->bands = atol(get_text());
65 plugin->send_configure_change();
70 BandWipeIn::BandWipeIn(BandWipeMain *plugin,
71 BandWipeWindow *window,
76 plugin->direction == 0,
79 this->plugin = plugin;
80 this->window = window;
83 int BandWipeIn::handle_event()
86 plugin->direction = 0;
87 window->out->update(0);
88 plugin->send_configure_change();
92 BandWipeOut::BandWipeOut(BandWipeMain *plugin,
93 BandWipeWindow *window,
98 plugin->direction == 1,
101 this->plugin = plugin;
102 this->window = window;
105 int BandWipeOut::handle_event()
108 plugin->direction = 1;
109 window->in->update(0);
110 plugin->send_configure_change();
120 BandWipeWindow::BandWipeWindow(BandWipeMain *plugin)
121 : PluginClientWindow(plugin,
128 this->plugin = plugin;
132 void BandWipeWindow::create_objects()
135 int x = xS(10), y = yS(10);
136 add_subwindow(new BC_Title(x, y, _("Bands:")));
138 count = new BandWipeCount(plugin,
142 count->create_objects();
144 // add_subwindow(new BC_Title(x, y, _("Direction:")));
146 // add_subwindow(in = new BandWipeIn(plugin,
152 // add_subwindow(out = new BandWipeOut(plugin,
169 BandWipeMain::BandWipeMain(PluginServer *server)
170 : PluginVClient(server)
177 BandWipeMain::~BandWipeMain()
182 const char* BandWipeMain::plugin_title() { return N_("BandWipe"); }
183 int BandWipeMain::is_transition() { return 1; }
184 int BandWipeMain::uses_gui() { return 1; }
186 NEW_WINDOW_MACRO(BandWipeMain, BandWipeWindow);
189 void BandWipeMain::save_data(KeyFrame *keyframe)
192 output.set_shared_output(keyframe->xbuf);
193 output.tag.set_title("BANDWIPE");
194 output.tag.set_property("BANDS", bands);
195 output.tag.set_property("DIRECTION", direction);
197 output.tag.set_title("/BANDWIPE");
199 output.append_newline();
200 output.terminate_string();
203 void BandWipeMain::read_data(KeyFrame *keyframe)
207 input.set_shared_input(keyframe->xbuf);
209 while(!input.read_tag())
211 if(input.tag.title_is("BANDWIPE"))
213 bands = input.tag.get_property("BANDS", bands);
214 direction = input.tag.get_property("DIRECTION", direction);
219 int BandWipeMain::load_configuration()
221 read_data(get_prev_keyframe(get_source_position()));
227 #define BANDWIPE(type, components) \
232 PluginClient::get_source_position() / \
233 PluginClient::get_total_len(); \
235 for(int i = 0; i < bands; i++) \
237 for(int j = 0; j < band_h; j++) \
239 int row = i * band_h + j; \
241 if(row >= 0 && row < h) \
243 type *in_row = (type*)incoming->get_rows()[row]; \
244 type *out_row = (type*)outgoing->get_rows()[row]; \
248 for(int k = 0; k < x; k++) \
250 out_row[k * components + 0] = in_row[k * components + 0]; \
251 out_row[k * components + 1] = in_row[k * components + 1]; \
252 out_row[k * components + 2] = in_row[k * components + 2]; \
253 if(components == 4) out_row[k * components + 3] = in_row[k * components + 3]; \
258 for(int k = w - x; k < w; k++) \
260 out_row[k * components + 0] = in_row[k * components + 0]; \
261 out_row[k * components + 1] = in_row[k * components + 1]; \
262 out_row[k * components + 2] = in_row[k * components + 2]; \
263 if(components == 4) out_row[k * components + 3] = in_row[k * components + 3]; \
273 PluginClient::get_source_position() / \
274 PluginClient::get_total_len(); \
276 for(int i = 0; i < bands; i++) \
278 for(int j = 0; j < band_h; j++) \
280 int row = i * band_h + j; \
282 if(row >= 0 && row < h) \
284 type *in_row = (type*)incoming->get_rows()[row]; \
285 type *out_row = (type*)outgoing->get_rows()[row]; \
289 for(int k = x; k < w; k++) \
291 out_row[k * components + 0] = in_row[k * components + 0]; \
292 out_row[k * components + 1] = in_row[k * components + 1]; \
293 out_row[k * components + 2] = in_row[k * components + 2]; \
294 if(components == 4) out_row[k * components + 3] = in_row[k * components + 3]; \
299 for(int k = 0; k < w - x; k++) \
301 out_row[k * components + 0] = in_row[k * components + 0]; \
302 out_row[k * components + 1] = in_row[k * components + 1]; \
303 out_row[k * components + 2] = in_row[k * components + 2]; \
304 if(components == 4) out_row[k * components + 3] = in_row[k * components + 3]; \
315 int BandWipeMain::process_realtime(VFrame *incoming, VFrame *outgoing)
317 load_configuration();
319 int w = incoming->get_w();
320 int h = incoming->get_h();
321 int band_h = ((bands == 0) ? h : (h / bands + 1));
323 switch(incoming->get_color_model())
327 BANDWIPE(unsigned char, 3)
334 BANDWIPE(unsigned char, 4)
341 BANDWIPE(uint16_t, 3)
343 case BC_RGBA16161616:
344 case BC_YUVA16161616:
345 BANDWIPE(uint16_t, 4)