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 "automation.h"
23 #include "bcsignals.h"
24 #include "cplayback.h"
27 #include "edlsession.h"
31 #include "localsession.h"
32 #include "mainsession.h"
35 #include "mwindowgui.h"
38 #include "playbackengine.h"
41 #include "trackcanvas.h"
43 #include "transportque.h"
48 PatchGUI::PatchGUI(MWindow *mwindow,
54 this->mwindow = mwindow;
55 this->patchbay = patchbay;
70 track_id = track ? track->get_id() : -1;
88 void PatchGUI::create_objects()
93 int PatchGUI::reposition(int x, int y)
99 if( x != this->x || y != this->y ) {
100 this->x = x; this->y = y;
103 title->reposition_window(title->get_x(), y1 + y, 0);
105 expand->reposition_window(expand->get_x(), y1 + y);
106 y1 += mwindow->theme->title_h;
109 play->reposition_window(play->get_x(), y1 + y);
111 record->reposition_window(record->get_x(), y1 + y);
112 x1 += record->get_w();
113 // automate->reposition_window(x1, y1 + y);
114 // x1 += automate->get_w();
115 gang->reposition_window(gang->get_x(), y1 + y);
117 draw->reposition_window(draw->get_x(), y1 + y);
119 mute->reposition_window(mute->get_x(), y1 + y);
122 y1 += mwindow->theme->play_h;
126 y1 += mwindow->theme->title_h;
128 y1 += mwindow->theme->play_h;
134 int PatchGUI::update(int x, int y)
136 //TRACE("PatchGUI::update 1");
138 //TRACE("PatchGUI::update 10");
140 int h = track->vertical_span(mwindow->theme);
143 //printf("PatchGUI::update 10\n");
145 int y2 = y1 + mwindow->theme->title_h;
148 delete title; title = 0;
149 delete expand; expand = 0;
152 title->update(track->title);
153 expand->update(track->expand_view);
157 VFrame **expandpatch_data = mwindow->theme->get_image_set("expandpatch_data");
158 int x2 = patchbay->get_w() - expandpatch_data[0]->get_w() - 5;
159 patchbay->add_subwindow(title = new TitlePatch(mwindow, this, x1 + x, y1 + y, x2-x1-5));
160 patchbay->add_subwindow(expand = new ExpandPatch(mwindow, this, x2, y1 + y));
166 y2 = y1 + mwindow->theme->play_h;
169 delete play; play = 0;
170 delete record; record = 0;
171 delete gang; gang = 0;
172 delete draw; draw = 0;
173 delete mute; mute = 0;
176 play->update(track->play);
177 record->update(track->record);
178 gang->update(track->gang);
179 draw->update(track->draw);
180 mute->update(mwindow->get_int_auto(this, AUTOMATION_MUTE)->value);
184 patchbay->add_subwindow(play = new PlayPatch(mwindow, this, x1 + x, y1 + y));
185 //printf("PatchGUI::update %d %d\n", __LINE__, play->get_h());
187 patchbay->add_subwindow(record = new RecordPatch(mwindow, this, x1 + x, y1 + y));
188 x1 += record->get_w();
189 patchbay->add_subwindow(gang = new GangPatch(mwindow, this, x1 + x, y1 + y));
191 patchbay->add_subwindow(draw = new DrawPatch(mwindow, this, x1 + x, y1 + y));
193 patchbay->add_subwindow(mute = new MutePatch(mwindow, this, x1 + x, y1 + y));
204 void PatchGUI::toggle_behavior(int type,
209 if(toggle->shift_down()) {
210 int sense = type != Tracks::MUTE ? 1 : 0;
211 // all selected if nothing previously selected or
212 // if this patch was previously the only one selected
213 int total_type = mwindow->edl->tracks->total_of(type);
214 int total_selected = sense ? total_type :
215 mwindow->edl->tracks->total() - total_type;
216 int selected = !total_selected || (total_selected == 1 &&
217 *output == sense ) ? sense : 1-sense;
218 mwindow->edl->tracks->select_all(type, selected);
219 if( selected != sense ) *output = sense;
221 patchbay->drag_operation = type;
222 patchbay->new_status = 1;
227 // Select + drag behavior
228 patchbay->drag_operation = type;
229 patchbay->new_status = value;
235 mwindow->gui->unlock_window();
236 mwindow->restart_brender();
237 mwindow->sync_parameters(CHANGE_EDL);
238 mwindow->gui->lock_window("PatchGUI::toggle_behavior 1");
242 mwindow->gui->unlock_window();
243 mwindow->restart_brender();
244 mwindow->sync_parameters(CHANGE_PARAMS);
245 mwindow->gui->lock_window("PatchGUI::toggle_behavior 2");
248 // Update affected tracks in cwindow
250 mwindow->cwindow->update(0, 1, 1);
257 mwindow->gui->update(0, NORMAL_DRAW, 0, 0, 0, 0, 0);
265 mwindow->gui->update_patchbay();
269 char* PatchGUI::calculate_nudge_text(int *changed)
271 if(changed) *changed = 0;
272 if(track->edl->session->nudge_format)
274 sprintf(string_return, "%.4f", track->from_units(track->nudge));
275 if(changed && nudge && atof(nudge->get_text()) - atof(string_return) != 0)
280 sprintf(string_return, "%jd", track->nudge);
281 if(changed && nudge && atoi(nudge->get_text()) - atoi(string_return) != 0)
284 return string_return;
288 int64_t PatchGUI::calculate_nudge(const char *string)
290 if(mwindow->edl->session->nudge_format)
293 sscanf(string, "%f", &result);
294 return track->to_units(result, 0);
299 sscanf(string, "%jd", &temp);
305 PlayPatch::PlayPatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
308 mwindow->theme->get_image_set("playpatch_data"),
315 this->mwindow = mwindow;
317 set_tooltip(_("Play track"));
321 int PlayPatch::button_press_event()
323 if(is_event_win() && get_buttonpress() == 1)
325 mwindow->undo->update_undo_before();
326 set_status(BC_Toggle::TOGGLE_DOWN);
327 update(!get_value());
328 patch->toggle_behavior(Tracks::PLAY,
331 &patch->track->play);
337 int PlayPatch::button_release_event()
339 int result = BC_Toggle::button_release_event();
340 if(patch->patchbay->drag_operation == Tracks::PLAY)
342 mwindow->undo->update_undo_after(_("play patch"), LOAD_PATCHES);
343 patch->patchbay->drag_operation = Tracks::NONE;
358 RecordPatch::RecordPatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
361 mwindow->theme->get_image_set("recordpatch_data"),
362 patch->track->record,
368 this->mwindow = mwindow;
370 set_tooltip(_("Arm track"));
374 int RecordPatch::button_press_event()
376 if(is_event_win() && get_buttonpress() == 1)
378 mwindow->undo->update_undo_before();
379 set_status(BC_Toggle::TOGGLE_DOWN);
380 update(!get_value());
381 patch->toggle_behavior(Tracks::RECORD,
384 &patch->track->record);
385 patch->title->set_back_color(patch->track->record ?
386 get_resources()->text_background :
387 get_resources()->text_background_disarmed);
388 patch->title->set_text_row(0);
394 int RecordPatch::button_release_event()
396 int result = BC_Toggle::button_release_event();
397 if(patch->patchbay->drag_operation == Tracks::RECORD)
399 mwindow->undo->update_undo_after(_("record patch"), LOAD_PATCHES);
400 patch->patchbay->drag_operation = Tracks::NONE;
415 GangPatch::GangPatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
417 mwindow->theme->get_image_set("gangpatch_data"),
424 this->mwindow = mwindow;
426 set_tooltip(_("Gang faders"));
430 int GangPatch::button_press_event()
432 if(is_event_win() && get_buttonpress() == 1)
434 mwindow->undo->update_undo_before();
435 set_status(BC_Toggle::TOGGLE_DOWN);
436 update(!get_value());
437 patch->toggle_behavior(Tracks::GANG,
440 &patch->track->gang);
446 int GangPatch::button_release_event()
448 int result = BC_Toggle::button_release_event();
449 if(patch->patchbay->drag_operation == Tracks::GANG)
451 mwindow->undo->update_undo_after(_("gang patch"), LOAD_PATCHES);
452 patch->patchbay->drag_operation = Tracks::NONE;
467 DrawPatch::DrawPatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
469 mwindow->theme->get_image_set("drawpatch_data"),
476 this->mwindow = mwindow;
478 set_tooltip(_("Draw media"));
482 int DrawPatch::button_press_event()
484 if(is_event_win() && get_buttonpress() == 1)
486 mwindow->undo->update_undo_before();
487 set_status(BC_Toggle::TOGGLE_DOWN);
488 update(!get_value());
489 patch->toggle_behavior(Tracks::DRAW,
492 &patch->track->draw);
498 int DrawPatch::button_release_event()
500 int result = BC_Toggle::button_release_event();
501 if(patch->patchbay->drag_operation == Tracks::DRAW)
503 mwindow->undo->update_undo_after(_("draw patch"), LOAD_PATCHES);
504 patch->patchbay->drag_operation = Tracks::NONE;
518 MutePatch::MutePatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
520 mwindow->theme->get_image_set("mutepatch_data"),
521 mwindow->get_int_auto(patch, AUTOMATION_MUTE)->value,
527 this->mwindow = mwindow;
529 set_tooltip(_("Don't send to output"));
533 int MutePatch::button_press_event()
535 if(is_event_win() && get_buttonpress() == 1)
537 mwindow->undo->update_undo_before();
538 set_status(BC_Toggle::TOGGLE_DOWN);
539 update(!get_value());
541 double position = mwindow->edl->local_session->get_selectionstart(1);
542 Autos *mute_autos = patch->track->automation->autos[AUTOMATION_MUTE];
545 current = (IntAuto*)mute_autos->get_auto_for_editing(position);
546 current->value = get_value();
548 patch->toggle_behavior(Tracks::MUTE,
555 if(mwindow->edl->session->auto_conf->autos[AUTOMATION_MUTE])
557 mwindow->gui->draw_overlays(1);
564 int MutePatch::button_release_event()
566 int result = BC_Toggle::button_release_event();
567 if(patch->patchbay->drag_operation == Tracks::MUTE)
569 mwindow->undo->update_undo_after(_("mute patch"), LOAD_PATCHES);
570 patch->patchbay->drag_operation = Tracks::NONE;
577 ExpandPatch::ExpandPatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
580 mwindow->theme->get_image_set("expandpatch_data"),
581 patch->track->expand_view,
587 this->mwindow = mwindow;
592 int ExpandPatch::button_press_event()
594 if(is_event_win() && get_buttonpress() == 1)
596 mwindow->undo->update_undo_before();
597 set_status(BC_Toggle::TOGGLE_DOWN);
598 update(!get_value());
599 patch->toggle_behavior(Tracks::EXPAND,
602 &patch->track->expand_view);
603 mwindow->edl->tracks->update_y_pixels(mwindow->theme);
604 mwindow->gui->draw_trackmovement();
610 int ExpandPatch::button_release_event()
612 int result = BC_Toggle::button_release_event();
613 if(patch->patchbay->drag_operation == Tracks::EXPAND)
615 mwindow->undo->update_undo_after(_("expand patch"), LOAD_PATCHES);
616 patch->patchbay->drag_operation = Tracks::NONE;
622 TitlePatch::TitlePatch(MWindow *mwindow, PatchGUI *patch, int x, int y, int w)
623 : BC_TextBox(x, y, w, 1, patch->track->title, 1, MEDIUMFONT, 1)
625 this->mwindow = mwindow;
627 set_back_color(patch->track->record ?
628 get_resources()->text_background :
629 get_resources()->text_background_disarmed);
632 void TitlePatch::update(const char *text)
634 set_back_color(patch->track->record ?
635 get_resources()->text_background :
636 get_resources()->text_background_disarmed);
637 BC_TextBox::update(text);
640 int TitlePatch::handle_event()
642 mwindow->undo->update_undo_before(_("track title"), this);
643 strcpy(patch->track->title, get_text());
644 mwindow->update_plugin_titles();
645 mwindow->gui->draw_overlays(1);
646 mwindow->undo->update_undo_after(_("track title"), LOAD_PATCHES);
651 NudgePatch::NudgePatch(MWindow *mwindow,
660 patch->calculate_nudge_text(0))
662 this->mwindow = mwindow;
664 set_tooltip(_("Nudge"));
667 int NudgePatch::handle_event()
669 set_value(patch->calculate_nudge(get_text()));
673 void NudgePatch::set_value(int64_t value)
675 mwindow->undo->update_undo_before(_("nudge."), this);
676 patch->track->nudge = value;
678 if(patch->track->gang && patch->track->record)
679 patch->patchbay->synchronize_nudge(patch->track->nudge, patch->track);
681 mwindow->undo->update_undo_after(_("nudge."), LOAD_PATCHES);
683 mwindow->gui->unlock_window();
684 if(patch->track->data_type == TRACK_VIDEO)
685 mwindow->restart_brender();
686 mwindow->sync_parameters(CHANGE_PARAMS);
687 mwindow->gui->lock_window("NudgePatch::handle_event 2");
689 mwindow->session->changes_made = 1;
693 int NudgePatch::button_press_event()
697 if(is_event_win() && cursor_inside())
699 if(get_buttonpress() == 4)
701 int value = patch->calculate_nudge(get_text());
702 value += calculate_increment();
708 if(get_buttonpress() == 5)
710 int value = patch->calculate_nudge(get_text());
711 value -= calculate_increment();
717 if(get_buttonpress() == 3)
719 patch->patchbay->nudge_popup->activate_menu(patch);
725 return BC_TextBox::button_press_event();
730 int64_t NudgePatch::calculate_increment()
732 if(patch->track->data_type == TRACK_AUDIO)
734 return (int64_t)ceil(patch->track->edl->session->sample_rate / 10.0);
738 return (int64_t)ceil(1.0 / patch->track->edl->session->frame_rate);
742 void NudgePatch::update()
745 char *string = patch->calculate_nudge_text(&changed);
747 BC_TextBox::update(string);
751 MixPatch::MixPatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
752 : BC_Toggle(x, y, mwindow->theme->get_image_set("mixpatch_data"),
753 patch->mixer, "", 0, 0, 0)
755 this->mwindow = mwindow;
759 MixPatch::~MixPatch()
763 int MixPatch::handle_event()
765 int v = patch->track ? get_value() : 0;
766 if( patch->mixer != v ) {
768 mwindow->gui->update_mixers(patch->track, v);
771 mwindow->update_mixer_tracks();
776 void MixPatch::update(int v)
779 BC_Toggle::update(v);