fix merge conflicts from master
[ardour.git] / gtk2_ardour / ghostregion.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "evoral/Note.hpp"
21 #include "canvas/group.h"
22 #include "canvas/rectangle.h"
23 #include "canvas/wave_view.h"
24 #include "canvas/debug.h"
25
26 #include "ardour_ui.h"
27 #include "automation_time_axis.h"
28 #include "ghostregion.h"
29 #include "midi_streamview.h"
30 #include "midi_time_axis.h"
31 #include "rgb_macros.h"
32 #include "note.h"
33
34 using namespace std;
35 using namespace Editing;
36 using namespace ArdourCanvas;
37 using namespace ARDOUR;
38
39 PBD::Signal1<void,GhostRegion*> GhostRegion::CatchDeletion;
40
41 GhostRegion::GhostRegion (ArdourCanvas::Group* parent, TimeAxisView& tv, TimeAxisView& source_tv, double initial_pos)
42         : trackview (tv)
43         , source_trackview (source_tv)
44 {
45         group = new ArdourCanvas::Group (parent);
46         CANVAS_DEBUG_NAME (group, "ghost region");
47         group->set_position (ArdourCanvas::Duple (initial_pos, 0));
48
49         base_rect = new ArdourCanvas::Rectangle (group);
50         CANVAS_DEBUG_NAME (base_rect, "ghost region rect");
51         base_rect->set_x0 (0);
52         base_rect->set_y0 (0);
53         base_rect->set_y1 (trackview.current_height());
54         base_rect->set_outline_what (0);
55
56         if (!is_automation_ghost()) {
57                 base_rect->hide();
58         }
59
60         GhostRegion::set_colors();
61
62         /* the parent group of a ghostregion is a dedicated group for ghosts,
63            so the new ghost would want to get to the top of that group*/
64         group->raise_to_top ();
65 }
66
67 GhostRegion::~GhostRegion ()
68 {
69         CatchDeletion (this);
70         delete base_rect;
71         delete group;
72 }
73
74 void
75 GhostRegion::set_duration (double units)
76 {
77         base_rect->set_x1 (units);
78 }
79
80 void
81 GhostRegion::set_height ()
82 {
83         base_rect->set_y1 (trackview.current_height());
84 }
85
86 void
87 GhostRegion::set_colors ()
88 {
89         if (is_automation_ghost()) {
90                 base_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_GhostTrackBase());
91                 base_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_GhostTrackBase());
92         }
93 }
94
95 guint
96 GhostRegion::source_track_color(unsigned char alpha)
97 {
98         Gdk::Color color = source_trackview.color();
99         return RGBA_TO_UINT (color.get_red() / 256, color.get_green() / 256, color.get_blue() / 256, alpha);
100 }
101
102 bool
103 GhostRegion::is_automation_ghost()
104 {
105         return (dynamic_cast<AutomationTimeAxisView*>(&trackview)) != 0;
106 }
107
108 AudioGhostRegion::AudioGhostRegion(TimeAxisView& tv, TimeAxisView& source_tv, double initial_unit_pos)
109         : GhostRegion(tv.ghost_group(), tv, source_tv, initial_unit_pos)
110 {
111
112 }
113
114 void
115 AudioGhostRegion::set_samples_per_pixel (double fpp)
116 {
117         for (vector<WaveView*>::iterator i = waves.begin(); i != waves.end(); ++i) {
118                 (*i)->set_samples_per_pixel (fpp);
119         }
120 }
121
122 void
123 AudioGhostRegion::set_height ()
124 {
125         vector<WaveView*>::iterator i;
126         uint32_t n;
127
128         GhostRegion::set_height();
129
130         double const ht = ((trackview.current_height()) / (double) waves.size());
131
132         for (n = 0, i = waves.begin(); i != waves.end(); ++i, ++n) {
133                 (*i)->set_height (ht);
134                 (*i)->set_y_position (n * ht);
135         }
136 }
137
138 void
139 AudioGhostRegion::set_colors ()
140 {
141         GhostRegion::set_colors();
142         guint fill_color;
143
144         if (is_automation_ghost()) {
145                 fill_color = ARDOUR_UI::config()->get_canvasvar_GhostTrackWaveFill();
146         }
147         else {
148                 fill_color = source_track_color(200);
149         }
150
151         for (uint32_t n=0; n < waves.size(); ++n) {
152                 waves[n]->set_outline_color (ARDOUR_UI::config()->get_canvasvar_GhostTrackWave());
153                 waves[n]->set_fill_color (fill_color);
154                 waves[n]->set_clip_color (ARDOUR_UI::config()->get_canvasvar_GhostTrackWaveClip());
155                 waves[n]->set_zero_color (ARDOUR_UI::config()->get_canvasvar_GhostTrackZeroLine());
156         }
157 }
158
159 /** The general constructor; called when the destination timeaxisview doesn't have
160  *  a midistreamview.
161  *
162  *  @param tv TimeAxisView that this ghost region is on.
163  *  @param source_tv TimeAxisView that we are the ghost for.
164  */
165 MidiGhostRegion::MidiGhostRegion(TimeAxisView& tv, TimeAxisView& source_tv, double initial_unit_pos)
166         : GhostRegion(tv.ghost_group(), tv, source_tv, initial_unit_pos)
167         , _optimization_iterator (events.end ())
168 {
169         base_rect->lower_to_bottom();
170         update_range ();
171
172         midi_view()->NoteRangeChanged.connect (sigc::mem_fun (*this, &MidiGhostRegion::update_range));
173 }
174
175 /**
176  *  @param msv MidiStreamView that this ghost region is on.
177  *  @param source_tv TimeAxisView that we are the ghost for.
178  */
179 MidiGhostRegion::MidiGhostRegion(MidiStreamView& msv, TimeAxisView& source_tv, double initial_unit_pos)
180         : GhostRegion(msv.midi_underlay_group, msv.trackview(), source_tv, initial_unit_pos)
181         , _optimization_iterator (events.end ())
182 {
183         base_rect->lower_to_bottom();
184         update_range ();
185
186         midi_view()->NoteRangeChanged.connect (sigc::mem_fun (*this, &MidiGhostRegion::update_range));
187 }
188
189 MidiGhostRegion::~MidiGhostRegion()
190 {
191         clear_events ();
192 }
193
194 MidiGhostRegion::GhostEvent::GhostEvent (NoteBase* e, ArdourCanvas::Group* g)
195         : event (e)
196 {
197         rect = new ArdourCanvas::Rectangle (g, ArdourCanvas::Rect (e->x0(), e->y0(), e->x1(), e->y1()));
198         CANVAS_DEBUG_NAME (rect, "ghost note rect");
199 }
200
201 MidiGhostRegion::GhostEvent::~GhostEvent ()
202 {
203         /* event is not ours to delete */
204         delete rect;
205 }
206
207 void
208 MidiGhostRegion::set_samples_per_pixel (double /*spu*/)
209 {
210 }
211
212 /** @return MidiStreamView that we are providing a ghost for */
213 MidiStreamView*
214 MidiGhostRegion::midi_view ()
215 {
216         StreamView* sv = source_trackview.view ();
217         assert (sv);
218         MidiStreamView* msv = dynamic_cast<MidiStreamView*> (sv);
219         assert (msv);
220
221         return msv;
222 }
223
224 void
225 MidiGhostRegion::set_height ()
226 {
227         GhostRegion::set_height();
228         update_range();
229 }
230
231 void
232 MidiGhostRegion::set_colors()
233 {
234         guint fill = source_track_color(200);
235
236         GhostRegion::set_colors();
237
238         for (EventList::iterator it = events.begin(); it != events.end(); ++it) {
239                 (*it)->rect->set_fill_color (fill);
240                 (*it)->rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_GhostTrackMidiOutline());
241         }
242 }
243
244 void
245 MidiGhostRegion::update_range ()
246 {
247         MidiStreamView* mv = midi_view();
248
249         if (!mv) {
250                 return;
251         }
252
253         double const h = trackview.current_height() / double (mv->contents_note_range ());
254
255         for (EventList::iterator it = events.begin(); it != events.end(); ++it) {
256                 uint8_t const note_num = (*it)->event->note()->note();
257
258                 if (note_num < mv->lowest_note() || note_num > mv->highest_note()) {
259                         (*it)->rect->hide();
260                 } else {
261                         (*it)->rect->show();
262                         double const y = trackview.current_height() - (note_num + 1 - mv->lowest_note()) * h + 1;
263                         (*it)->rect->set_y0 (y);
264                         (*it)->rect->set_y1 (y + h);
265                 }
266         }
267 }
268
269 void
270 MidiGhostRegion::add_note (NoteBase* n)
271 {
272         GhostEvent* event = new GhostEvent (n, group);
273         events.push_back (event);
274
275         event->rect->set_fill_color (source_track_color(200));
276         event->rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_GhostTrackMidiOutline());
277
278         MidiStreamView* mv = midi_view();
279
280         if (mv) {
281                 const uint8_t note_num = n->note()->note();
282
283                 if (note_num < mv->lowest_note() || note_num > mv->highest_note()) {
284                         event->rect->hide();
285                 } else {
286                         const double y = mv->note_to_y(note_num);
287                         event->rect->set_y0 (y);
288                         event->rect->set_y1 (y + mv->note_height());
289                 }
290         }
291 }
292
293 void
294 MidiGhostRegion::clear_events()
295 {
296         for (EventList::iterator it = events.begin(); it != events.end(); ++it) {
297                 delete *it;
298         }
299
300         events.clear();
301         _optimization_iterator = events.end ();
302 }
303
304 /** Update the x positions of our representation of a parent's note.
305  *  @param parent The CanvasNote from the parent MidiRegionView.
306  */
307 void
308 MidiGhostRegion::update_note (NoteBase* parent)
309 {
310         GhostEvent* ev = find_event (parent);
311         if (!ev) {
312                 return;
313         }
314
315         double const x1 = parent->x0 ();
316         double const x2 = parent->x1 ();
317         ev->rect->set_x0 (x1);
318         ev->rect->set_x1 (x2);
319 }
320
321 void
322 MidiGhostRegion::remove_note (NoteBase* note)
323 {
324         GhostEvent* ev = find_event (note);
325         if (!ev) {
326                 return;
327         }
328
329         events.remove (ev);
330         delete ev;
331         _optimization_iterator = events.end ();
332 }
333
334 /** Given a note in our parent region (ie the actual MidiRegionView), find our
335  *  representation of it.
336  *  @return Our Event, or 0 if not found.
337  */
338
339 MidiGhostRegion::GhostEvent *
340 MidiGhostRegion::find_event (NoteBase* parent)
341 {
342         /* we are using _optimization_iterator to speed up the common case where a caller
343            is going through our notes in order.
344         */
345
346         if (_optimization_iterator != events.end()) {
347                 ++_optimization_iterator;
348         }
349
350         if (_optimization_iterator != events.end() && (*_optimization_iterator)->event == parent) {
351                 return *_optimization_iterator;
352         }
353
354         for (_optimization_iterator = events.begin(); _optimization_iterator != events.end(); ++_optimization_iterator) {
355                 if ((*_optimization_iterator)->event == parent) {
356                         return *_optimization_iterator;
357                 }
358         }
359
360         return 0;
361 }