Fix note heights to be consistent.
[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
91 MidiRegionView::~MidiRegionView ()
92 {
93         in_destructor = true;
94         end_write();
95
96         RegionViewGoingAway (this); /* EMIT_SIGNAL */
97 }
98
99 boost::shared_ptr<ARDOUR::MidiRegion>
100 MidiRegionView::midi_region() const
101 {
102         // "Guaranteed" to succeed...
103         return boost::dynamic_pointer_cast<MidiRegion>(_region);
104 }
105
106 void
107 MidiRegionView::show_region_editor ()
108 {
109         cerr << "No MIDI region editor." << endl;
110 }
111
112 GhostRegion*
113 MidiRegionView::add_ghost (AutomationTimeAxisView& atv)
114 {
115         throw; // FIXME
116         return NULL;
117 }
118
119
120 /** Begin tracking note state for successive calls to add_event
121  */
122 void
123 MidiRegionView::begin_write()
124 {
125         _active_notes = new ArdourCanvas::SimpleRect*[128];
126         for (unsigned i=0; i < 128; ++i)
127                 _active_notes[i] = NULL;
128 }
129
130
131 /** Destroy note state for add_event
132  */
133 void
134 MidiRegionView::end_write()
135 {
136         delete[] _active_notes;
137         _active_notes = NULL;
138 }
139
140
141 void
142 MidiRegionView::add_event (const MidiEvent& ev)
143 {
144         /*printf("Event, time = %u, size = %zu, data = ",
145           ev.time, ev.size);
146           for (size_t i=0; i < ev.size; ++i) {
147           printf("%X ", ev.buffer[i]);
148           }
149           printf("\n");*/
150         double y1 = trackview.height / 2.0;
151         if ((ev.buffer[0] & 0xF0) == MIDI_CMD_NOTE_ON) {
152                 const Byte& note = ev.buffer[1];
153                 y1 = trackview.height - ((trackview.height / 127.0) * note);
154
155                 ArdourCanvas::SimpleRect * ev_rect = new Gnome::Canvas::SimpleRect(
156                                 *(ArdourCanvas::Group*)get_canvas_group());
157                 ev_rect->property_x1() = trackview.editor.frame_to_pixel (
158                                 ev.time);
159                 ev_rect->property_y1() = y1;
160                 ev_rect->property_x2() = trackview.editor.frame_to_pixel (
161                                 _region->length());
162                 ev_rect->property_y2() = y1 + ceil(trackview.height / 127.0);
163                 ev_rect->property_outline_color_rgba() = 0xFFFFFFAA;
164                 /* outline all but right edge */
165                 ev_rect->property_outline_what() = (guint32) (0x1 & 0x4 & 0x8);
166                 ev_rect->property_fill_color_rgba() = 0xFFFFFF66;
167
168                 _events.push_back(ev_rect);
169                 if (_active_notes)
170                         _active_notes[note] = ev_rect;
171
172         } else if ((ev.buffer[0] & 0xF0) == MIDI_CMD_NOTE_OFF) {
173                 const Byte& note = ev.buffer[1];
174                 if (_active_notes && _active_notes[note]) {
175                         _active_notes[note]->property_x2() = trackview.editor.frame_to_pixel(ev.time);
176                         _active_notes[note]->property_outline_what() = (guint32) 0xF; // all edges
177                         _active_notes[note] = NULL;
178                 }
179         }
180
181 }
182
183
184 /** Extend active notes to rightmost edge of region (if length is changed)
185  */
186 void
187 MidiRegionView::extend_active_notes()
188 {
189         if (!_active_notes)
190                 return;
191
192         for (unsigned i=0; i < 128; ++i)
193                 if (_active_notes[i])
194                         _active_notes[i]->property_x2() = trackview.editor.frame_to_pixel(_region->length());
195 }
196
197
198