retire no-longer used color names for MIDI notes
[ardour.git] / gtk2_ardour / note_base.cc
1 /*
2     Copyright (C) 2007 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <iostream>
21
22 #include "gtkmm2ext/keyboard.h"
23
24 #include "evoral/Note.hpp"
25
26 #include "canvas/text.h"
27
28 #include "note_base.h"
29 #include "public_editor.h"
30 #include "editing_syms.h"
31 #include "keyboard.h"
32 #include "midi_region_view.h"
33
34 using namespace std;
35 using namespace Gtkmm2ext;
36 using ARDOUR::MidiModel;
37 using namespace ArdourCanvas;
38
39 /// dividing the hue circle in 16 parts, hand adjusted for equal look, courtesy Thorsten Wilms
40 const uint32_t NoteBase::midi_channel_colors[16] = {
41           0xd32d2dff,  0xd36b2dff,  0xd3972dff,  0xd3d12dff,
42           0xa0d32dff,  0x7dd32dff,  0x2dd45eff,  0x2dd3c4ff,
43           0x2da5d3ff,  0x2d6fd3ff,  0x432dd3ff,  0x662dd3ff,
44           0x832dd3ff,  0xa92dd3ff,  0xd32dbfff,  0xd32d67ff
45         };
46
47 bool     NoteBase::_color_init = false;
48 uint32_t NoteBase::_selected_mod_col = 0;
49 uint32_t NoteBase::_selected_outline_col = 0;
50 uint32_t NoteBase::_selected_col = 0;
51
52 void
53 NoteBase::set_colors ()
54 {
55         _selected_mod_col = UIConfiguration::instance().color_mod ("midi note selected", "midi note");
56         _selected_outline_col = UIConfiguration::instance().color ("midi note selected outline");
57         _selected_col = UIConfiguration::instance().color ("midi note selected");
58 }
59
60 NoteBase::NoteBase(MidiRegionView& region, bool with_events, const boost::shared_ptr<NoteType> note)
61         : _region(region)
62         , _item (0)
63         , _text(0)
64         , _state(None)
65         , _note(note)
66         , _with_events (with_events)
67         , _selected(false)
68         , _valid (true)
69         , _mouse_x_fraction (-1.0)
70         , _mouse_y_fraction (-1.0)
71 {
72         if (!_color_init) {
73                 NoteBase::set_colors();
74                 _color_init = true;
75         }
76 }
77
78 NoteBase::~NoteBase()
79 {
80         _region.note_deleted (this);
81
82         delete _text;
83 }
84
85 void
86 NoteBase::set_item (Item* item)
87 {
88         _item = item;
89         _item->set_data ("notebase", this);
90
91         if (_with_events) {
92                 _item->Event.connect (sigc::mem_fun (*this, &NoteBase::event_handler));
93         }
94 }
95
96 void
97 NoteBase::invalidate ()
98 {
99         _valid = false;
100 }
101
102 void
103 NoteBase::validate ()
104 {
105         _valid = true;
106 }
107
108 void
109 NoteBase::show_velocity()
110 {
111         if (!_text) {
112                 _text = new Text (_item->parent ());
113                 _text->set_ignore_events (true);
114                 _text->set_color (UIConfiguration::instance().color_mod ("midi note velocity text", "midi note velocity text"));
115                 _text->set_alignment (Pango::ALIGN_CENTER);
116         }
117
118         _text->set_x_position ((x0() + x1()) / 2);
119         _text->set_y_position ((y0() + y1()) / 2);
120         ostringstream velo(ios::ate);
121         velo << int(_note->velocity());
122         _text->set (velo.str ());
123         _text->show();
124         _text->raise_to_top();
125 }
126
127 void
128 NoteBase::hide_velocity()
129 {
130         delete _text;
131         _text = 0;
132 }
133
134 void
135 NoteBase::on_channel_selection_change(uint16_t selection)
136 {
137         // make note change its color if its channel is not marked active
138         if ( (selection & (1 << _note->channel())) == 0 ) {
139                 const Gtkmm2ext::Color inactive_ch = UIConfiguration::instance().color ("midi note inactive channel");
140                 set_fill_color(inactive_ch);
141                 set_outline_color(calculate_outline(inactive_ch, _selected));
142         } else {
143                 // set the color according to the notes selection state
144                 set_selected(_selected);
145         }
146         // this forces the item to update..... maybe slow...
147         _item->hide();
148         _item->show();
149 }
150
151 void
152 NoteBase::on_channel_change(uint8_t channel)
153 {
154         _region.note_selected(this, true);
155         _region.change_channel(channel);
156 }
157
158 void
159 NoteBase::set_selected(bool selected)
160 {
161         if (!_note) {
162                 return;
163         }
164
165         _selected = selected;
166
167         const uint32_t base_col = base_color();
168         set_fill_color (base_col);
169
170         set_outline_color(calculate_outline(base_col, _selected));
171 }
172
173 #define SCALE_USHORT_TO_UINT8_T(x) ((x) / 257)
174
175 uint32_t
176 NoteBase::base_color()
177 {
178         using namespace ARDOUR;
179
180         ColorMode mode = _region.color_mode();
181
182         const uint8_t min_opacity = 15;
183         uint8_t       opacity = std::max(min_opacity, uint8_t(_note->velocity() + _note->velocity()));
184
185         switch (mode) {
186         case TrackColor:
187         {
188                 const uint32_t region_color = _region.midi_stream_view()->get_region_color();
189                 return UINT_INTERPOLATE (UINT_RGBA_CHANGE_A (region_color, opacity), _selected_col,
190                                          0.5);
191         }
192
193         case ChannelColors:
194                 return UINT_INTERPOLATE (UINT_RGBA_CHANGE_A (NoteBase::midi_channel_colors[_note->channel()], opacity),
195                                           _selected_col, 0.5);
196
197         default:
198                 if (UIConfiguration::instance().get_use_note_color_for_velocity()) {
199                         return meter_style_fill_color(_note->velocity(), selected());
200                 } else {
201                         const uint32_t region_color = _region.midi_stream_view()->get_region_color();
202                         return UINT_INTERPOLATE (UINT_RGBA_CHANGE_A (region_color, opacity), _selected_col,
203                                                  0.5);
204                 }
205         };
206
207         return 0;
208 }
209
210 void
211 NoteBase::set_mouse_fractions (GdkEvent* ev)
212 {
213         double ix, iy;
214         bool set_cursor = false;
215
216         switch (ev->type) {
217         case GDK_MOTION_NOTIFY:
218                 ix = ev->motion.x;
219                 iy = ev->motion.y;
220                 set_cursor = true;
221                 break;
222         case GDK_ENTER_NOTIFY:
223                 ix = ev->crossing.x;
224                 iy = ev->crossing.y;
225                 set_cursor = true;
226                 break;
227         case GDK_BUTTON_PRESS:
228         case GDK_BUTTON_RELEASE:
229                 ix = ev->button.x;
230                 iy = ev->button.y;
231                 break;
232         default:
233                 _mouse_x_fraction = -1.0;
234                 _mouse_y_fraction = -1.0;
235                 return;
236         }
237
238         boost::optional<ArdourCanvas::Rect> bbox = _item->bounding_box ();
239         assert (bbox);
240
241         _item->canvas_to_item (ix, iy);
242         /* XXX: CANVAS */
243         /* hmm, something wrong here. w2i should give item-local coordinates
244            but it doesn't. for now, finesse this.
245         */
246         ix = ix - bbox.get().x0;
247         iy = iy - bbox.get().y0;
248
249         /* fraction of width/height */
250         double xf;
251         double yf;
252         bool notify = false;
253
254         xf = ix / bbox.get().width ();
255         yf = iy / bbox.get().height ();
256
257         if (xf != _mouse_x_fraction || yf != _mouse_y_fraction) {
258                 notify = true;
259         }
260
261         _mouse_x_fraction = xf;
262         _mouse_y_fraction = yf;
263
264         if (notify) {
265                 if (big_enough_to_trim()) {
266                         _region.note_mouse_position (_mouse_x_fraction, _mouse_y_fraction, set_cursor);
267                 } else {
268                         /* pretend the mouse is in the middle, because this is not big enough
269                            to trim right now.
270                         */
271                         _region.note_mouse_position (0.5, 0.5, set_cursor);
272                 }
273         }
274 }
275
276 bool
277 NoteBase::event_handler (GdkEvent* ev)
278 {
279         PublicEditor& editor = _region.get_time_axis_view().editor();
280         if (!editor.internal_editing()) {
281                 return false;
282         }
283
284         switch (ev->type) {
285         case GDK_ENTER_NOTIFY:
286                 _region.note_entered (this);
287                 set_mouse_fractions (ev);
288                 break;
289
290         case GDK_LEAVE_NOTIFY:
291                 set_mouse_fractions (ev);
292                 _region.note_left (this);
293                 break;
294
295         case GDK_MOTION_NOTIFY:
296                 set_mouse_fractions (ev);
297                 break;
298
299         case GDK_BUTTON_PRESS:
300                 set_mouse_fractions (ev);
301                 break;
302
303         case GDK_BUTTON_RELEASE:
304                 set_mouse_fractions (ev);
305                 break;
306
307         default:
308                 break;
309         }
310
311         return editor.canvas_note_event (ev, _item);
312 }
313
314 bool
315 NoteBase::mouse_near_ends () const
316 {
317         return (_mouse_x_fraction >= 0.0 && _mouse_x_fraction < 0.25) ||
318                 (_mouse_x_fraction >= 0.75 && _mouse_x_fraction < 1.0);
319 }
320
321 bool
322 NoteBase::big_enough_to_trim () const
323 {
324         return (x1() - x0()) > 10;
325 }
326
327
328 uint32_t
329 NoteBase::meter_style_fill_color(uint8_t vel, bool /* selected */)
330 {
331         if (vel < 32) {
332                 return UINT_INTERPOLATE(UIConfiguration::instance().color ("midi meter color0"), UIConfiguration::instance().color ("midi meter color1"), (vel / 32.0));
333         } else if (vel < 64) {
334                 return UINT_INTERPOLATE(UIConfiguration::instance().color ("midi meter color2"), UIConfiguration::instance().color ("midi meter color3"), ((vel-32) / 32.0));
335         } else if (vel < 100) {
336                 return UINT_INTERPOLATE(UIConfiguration::instance().color ("midi meter color4"), UIConfiguration::instance().color ("midi meter color5"), ((vel-64) / 36.0));
337         } else if (vel < 112) {
338                 return UINT_INTERPOLATE(UIConfiguration::instance().color ("midi meter color6"), UIConfiguration::instance().color ("midi meter color7"), ((vel-100) / 12.0));
339         } else {
340                 return  UINT_INTERPOLATE(UIConfiguration::instance().color ("midi meter color8"), UIConfiguration::instance().color ("midi meter color9"), ((vel-112) / 17.0));
341         }
342 }
343
344