Preliminary visible MIDI notes in MidiRegionView.
[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*[127];
126 }
127
128
129 /** Destroy note state for add_event
130  */
131 void
132 MidiRegionView::end_write()
133 {
134         delete[] _active_notes;
135         _active_notes = NULL;
136 }
137
138
139 void
140 MidiRegionView::add_event (const MidiEvent& ev)
141 {
142         /*printf("Event, time = %u, size = %zu, data = ",
143           ev.time, ev.size);
144           for (size_t i=0; i < ev.size; ++i) {
145           printf("%X ", ev.buffer[i]);
146           }
147           printf("\n");*/
148         double y1 = trackview.height / 2.0;
149         if ((ev.buffer[0] & 0xF0) == MIDI_CMD_NOTE_ON) {
150                 const Byte& note = ev.buffer[1];
151                 y1 = (trackview.height / 127.0) * note;
152
153                 ArdourCanvas::SimpleRect * ev_rect = new Gnome::Canvas::SimpleRect(
154                                 *(ArdourCanvas::Group*)get_canvas_group());
155                 ev_rect->property_x1() = trackview.editor.frame_to_pixel (
156                                 ev.time);
157                 ev_rect->property_y1() = y1;
158                 ev_rect->property_x2() = trackview.editor.frame_to_pixel (
159                                 _region->length());
160                 ev_rect->property_y2() = y1 + (trackview.height / 127.0);
161                 ev_rect->property_outline_color_rgba() = 0xFFFFFFAA;
162                 /* outline all but right edge */
163                 ev_rect->property_outline_what() = (guint32) (0x1 & 0x4 & 0x8);
164                 ev_rect->property_fill_color_rgba() = 0xFFFFFF66;
165
166                 _events.push_back(ev_rect);
167                 if (_active_notes)
168                         _active_notes[note] = ev_rect;
169
170         } else if ((ev.buffer[0] & 0xF0) == MIDI_CMD_NOTE_OFF) {
171                 const Byte& note = ev.buffer[1];
172                 if (_active_notes && _active_notes[note]) {
173                         _active_notes[note]->property_x2() = trackview.editor.frame_to_pixel(ev.time);
174                         _active_notes[note]->property_outline_what() = (guint32) 0xF; // all edges
175                         _active_notes[note] = NULL;
176                 }
177         }
178
179 }
180
181
182