Fixed MIDI crash bug.
[ardour.git] / gtk2_ardour / midi_region_view.cc
1 /*
2     Copyright (C) 2001-2006 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 #include <cmath>
20 #include <cassert>
21 #include <algorithm>
22
23 #include <gtkmm.h>
24
25 #include <gtkmm2ext/gtk_ui.h>
26
27 #include <ardour/playlist.h>
28 #include <ardour/midi_region.h>
29 #include <ardour/midi_source.h>
30 #include <ardour/midi_diskstream.h>
31 #include <ardour/midi_events.h>
32
33 #include "streamview.h"
34 #include "midi_region_view.h"
35 #include "midi_time_axis.h"
36 #include "simplerect.h"
37 #include "simpleline.h"
38 #include "public_editor.h"
39 #include "ghostregion.h"
40 #include "midi_time_axis.h"
41 #include "utils.h"
42 #include "rgb_macros.h"
43 #include "gui_thread.h"
44
45 #include "i18n.h"
46
47 using namespace sigc;
48 using namespace ARDOUR;
49 using namespace PBD;
50 using namespace Editing;
51 using namespace ArdourCanvas;
52
53 MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<MidiRegion> r, double spu,
54                                   Gdk::Color& basic_color)
55         : RegionView (parent, tv, r, spu, basic_color)
56         , _active_notes(0)
57 {
58 }
59
60 MidiRegionView::MidiRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<MidiRegion> r, double spu, 
61                                   Gdk::Color& basic_color, TimeAxisViewItem::Visibility visibility)
62         : RegionView (parent, tv, r, spu, basic_color, visibility)
63         , _active_notes(0)
64 {
65 }
66
67 void
68 MidiRegionView::init (Gdk::Color& basic_color, bool wfd)
69 {
70         // FIXME: Some redundancy here with RegionView::init.  Need to figure out
71         // where order is important and where it isn't...
72         
73         // FIXME
74         RegionView::init(basic_color, /*wfd*/false);
75
76         compute_colors (basic_color);
77
78         reset_width_dependent_items ((double) _region->length() / samples_per_unit);
79
80         set_y_position_and_height (0, trackview.height);
81
82         region_muted ();
83         region_resized (BoundsChanged);
84         region_locked ();
85
86         _region->StateChanged.connect (mem_fun(*this, &MidiRegionView::region_changed));
87
88         set_colors ();
89
90         if (wfd) {
91                 midi_region()->midi_source(0)->load_model();
92
93                 begin_write();
94                 for (size_t i=0; i < midi_region()->midi_source(0)->model()->n_events(); ++i)
95                         add_event(midi_region()->midi_source(0)->model()->event_at(i));
96                 end_write();
97         }
98 }
99
100 MidiRegionView::~MidiRegionView ()
101 {
102         in_destructor = true;
103         end_write();
104
105         RegionViewGoingAway (this); /* EMIT_SIGNAL */
106 }
107
108 boost::shared_ptr<ARDOUR::MidiRegion>
109 MidiRegionView::midi_region() const
110 {
111         // "Guaranteed" to succeed...
112         return boost::dynamic_pointer_cast<MidiRegion>(_region);
113 }
114
115 void
116 MidiRegionView::show_region_editor ()
117 {
118         cerr << "No MIDI region editor." << endl;
119 }
120
121 GhostRegion*
122 MidiRegionView::add_ghost (AutomationTimeAxisView& atv)
123 {
124         throw; // FIXME
125         return NULL;
126 }
127
128
129 /** Begin tracking note state for successive calls to add_event
130  */
131 void
132 MidiRegionView::begin_write()
133 {
134         _active_notes = new ArdourCanvas::SimpleRect*[128];
135         for (unsigned i=0; i < 128; ++i)
136                 _active_notes[i] = NULL;
137 }
138
139
140 /** Destroy note state for add_event
141  */
142 void
143 MidiRegionView::end_write()
144 {
145         delete[] _active_notes;
146         _active_notes = NULL;
147 }
148
149
150 void
151 MidiRegionView::add_event (const MidiEvent& ev)
152 {
153         /*printf("Event, time = %u, size = %zu, data = ",
154           ev.time, ev.size);
155           for (size_t i=0; i < ev.size; ++i) {
156           printf("%X ", ev.buffer[i]);
157           }
158           printf("\n");*/
159         double y1 = trackview.height / 2.0;
160         if ((ev.buffer[0] & 0xF0) == MIDI_CMD_NOTE_ON) {
161                 const Byte& note = ev.buffer[1];
162                 y1 = trackview.height - ((trackview.height / 127.0) * note);
163
164                 ArdourCanvas::SimpleRect * ev_rect = new Gnome::Canvas::SimpleRect(
165                                 *(ArdourCanvas::Group*)get_canvas_group());
166                 ev_rect->property_x1() = trackview.editor.frame_to_pixel (
167                                 ev.time);
168                 ev_rect->property_y1() = y1;
169                 ev_rect->property_x2() = trackview.editor.frame_to_pixel (
170                                 _region->length());
171                 ev_rect->property_y2() = y1 + ceil(trackview.height / 127.0);
172                 ev_rect->property_outline_color_rgba() = 0xFFFFFFAA;
173                 /* outline all but right edge */
174                 ev_rect->property_outline_what() = (guint32) (0x1 & 0x4 & 0x8);
175                 ev_rect->property_fill_color_rgba() = 0xFFFFFF66;
176
177                 _events.push_back(ev_rect);
178                 if (_active_notes)
179                         _active_notes[note] = ev_rect;
180
181         } else if ((ev.buffer[0] & 0xF0) == MIDI_CMD_NOTE_OFF) {
182                 const Byte& note = ev.buffer[1];
183                 if (_active_notes && _active_notes[note]) {
184                         _active_notes[note]->property_x2() = trackview.editor.frame_to_pixel(ev.time);
185                         _active_notes[note]->property_outline_what() = (guint32) 0xF; // all edges
186                         _active_notes[note] = NULL;
187                 }
188         }
189
190 }
191
192
193 /** Extend active notes to rightmost edge of region (if length is changed)
194  */
195 void
196 MidiRegionView::extend_active_notes()
197 {
198         if (!_active_notes)
199                 return;
200
201         for (unsigned i=0; i < 128; ++i)
202                 if (_active_notes[i])
203                         _active_notes[i]->property_x2() = trackview.editor.frame_to_pixel(_region->length());
204 }
205
206
207