25fb5acbe76a298005be230989334e9ff9441468
[ardour.git] / gtk2_ardour / editor_tempodisplay.cc
1 /*
2     Copyright (C) 2002 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 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <cstdio> // for sprintf, grrr
25 #include <cstdlib>
26 #include <cmath>
27 #include <string>
28 #include <climits>
29
30 #include <libgnomecanvasmm.h>
31
32 #include "pbd/error.h"
33 #include "pbd/memento_command.h"
34
35 #include <gtkmm2ext/utils.h>
36 #include <gtkmm2ext/gtk_ui.h>
37
38 #include "ardour/session.h"
39 #include "ardour/tempo.h"
40 #include <gtkmm2ext/doi.h>
41 #include <gtkmm2ext/utils.h>
42
43 #include "editor.h"
44 #include "marker.h"
45 #include "simpleline.h"
46 #include "tempo_dialog.h"
47 #include "rgb_macros.h"
48 #include "gui_thread.h"
49 #include "time_axis_view.h"
50 #include "ardour_ui.h"
51 #include "tempo_lines.h"
52 #include "utils.h"
53
54 #include "i18n.h"
55
56 using namespace std;
57 using namespace ARDOUR;
58 using namespace PBD;
59 using namespace Gtk;
60 using namespace Gtkmm2ext;
61 using namespace Editing;
62
63 void
64 Editor::remove_metric_marks ()
65 {
66         /* don't delete these while handling events, just punt till the GUI is idle */
67
68         for (Marks::iterator x = metric_marks.begin(); x != metric_marks.end(); ++x) {
69                 delete_when_idle (*x);
70         }
71         metric_marks.clear ();
72 }
73
74 void
75 Editor::draw_metric_marks (const Metrics& metrics)
76 {
77
78         const MeterSection *ms;
79         const TempoSection *ts;
80         char buf[64];
81
82         remove_metric_marks ();
83
84         for (Metrics::const_iterator i = metrics.begin(); i != metrics.end(); ++i) {
85
86                 if ((ms = dynamic_cast<const MeterSection*>(*i)) != 0) {
87                         snprintf (buf, sizeof(buf), "%g/%g", ms->divisions_per_bar(), ms->note_divisor ());
88                         metric_marks.push_back (new MeterMarker (*this, *meter_group, ARDOUR_UI::config()->canvasvar_MeterMarker.get(), buf,
89                                                                  *(const_cast<MeterSection*>(ms))));
90                 } else if ((ts = dynamic_cast<const TempoSection*>(*i)) != 0) {
91                         if (Config->get_allow_non_quarter_pulse()) {
92                                 snprintf (buf, sizeof (buf), "%.2f/%.0f", ts->beats_per_minute(), ts->note_type());
93                         } else {
94                                 snprintf (buf, sizeof (buf), "%.2f", ts->beats_per_minute());
95                         }
96                         metric_marks.push_back (new TempoMarker (*this, *tempo_group, ARDOUR_UI::config()->canvasvar_TempoMarker.get(), buf,
97                                                                  *(const_cast<TempoSection*>(ts))));
98                 }
99
100         }
101
102 }
103
104 void
105 Editor::tempo_map_changed (const PropertyChange& /*ignored*/)
106 {
107         if (!_session) {
108                 return;
109         }
110
111         ENSURE_GUI_THREAD (*this, &Editor::tempo_map_changed, ignored);
112
113         if (tempo_lines) {
114                 tempo_lines->tempo_map_changed();
115         }
116
117         compute_current_bbt_points (leftmost_frame, leftmost_frame + current_page_frames());
118         _session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
119         redraw_measures ();
120         update_tempo_based_rulers ();
121 }
122
123 void
124 Editor::redisplay_tempo (bool immediate_redraw)
125 {
126         if (!_session) {
127                 return;
128         }
129
130         compute_current_bbt_points (leftmost_frame, leftmost_frame + current_page_frames()); // redraw rulers and measures
131
132         if (immediate_redraw) {
133                 redraw_measures ();
134         } else {
135 #ifdef GTKOSX
136                 redraw_measures ();
137 #else
138                 Glib::signal_idle().connect (sigc::mem_fun (*this, &Editor::redraw_measures));
139 #endif
140         }
141         update_tempo_based_rulers (); // redraw rulers and measures
142 }
143
144 void
145 Editor::compute_current_bbt_points (framepos_t leftmost, framepos_t rightmost)
146 {
147         if (!_session) {
148                 return;
149         }
150
151         Timecode::BBT_Time previous_beat, next_beat; // the beats previous to the leftmost frame and after the rightmost frame
152
153         _session->bbt_time(leftmost, previous_beat);
154         _session->bbt_time(rightmost, next_beat);
155
156         if (previous_beat.beats > 1) {
157                 previous_beat.beats -= 1;
158         } else if (previous_beat.bars > 1) {
159                 previous_beat.bars--;
160                 previous_beat.beats += 1;
161         }
162         previous_beat.ticks = 0;
163
164         if (_session->tempo_map().meter_at(rightmost).divisions_per_bar () > next_beat.beats + 1) {
165                 next_beat.beats += 1;
166         } else {
167                 next_beat.bars += 1;
168                 next_beat.beats = 1;
169         }
170         next_beat.ticks = 0;
171
172         _session->tempo_map().map (current_bbt_points_begin, current_bbt_points_end, _session->tempo_map().frame_time (previous_beat), _session->tempo_map().frame_time (next_beat) + 1);
173 }
174
175 void
176 Editor::hide_measures ()
177 {
178         if (tempo_lines)
179                 tempo_lines->hide();
180 }
181
182 bool
183 Editor::redraw_measures ()
184 {
185         draw_measures ();
186         return false;
187 }
188
189 void
190 Editor::draw_measures ()
191 {
192         if (_session == 0 || _show_measures == false || distance (current_bbt_points_begin, current_bbt_points_end) == 0) {
193                 return;
194         }
195
196         if (tempo_lines == 0) {
197                 tempo_lines = new TempoLines(*track_canvas, time_line_group, physical_screen_height(get_window()));
198         }
199
200         tempo_lines->draw (current_bbt_points_begin, current_bbt_points_end, frames_per_unit);
201 }
202
203 void
204 Editor::mouse_add_new_tempo_event (framepos_t frame)
205 {
206         if (_session == 0) {
207                 return;
208         }
209
210         TempoMap& map(_session->tempo_map());
211         TempoDialog tempo_dialog (map, frame, _("add"));
212
213         tempo_dialog.set_position (Gtk::WIN_POS_MOUSE);
214         //this causes compiz to display no border.
215         //tempo_dialog.signal_realize().connect (sigc::bind (sigc::ptr_fun (set_decoration), &tempo_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
216
217         ensure_float (tempo_dialog);
218
219         switch (tempo_dialog.run()) {
220         case RESPONSE_ACCEPT:
221                 break;
222         default:
223                 return;
224         }
225
226         double bpm = 0;
227         Timecode::BBT_Time requested;
228
229         bpm = tempo_dialog.get_bpm ();
230         double nt = tempo_dialog.get_note_type();
231         bpm = max (0.01, bpm);
232
233         tempo_dialog.get_bbt_time (requested);
234
235         begin_reversible_command (_("add tempo mark"));
236         XMLNode &before = map.get_state();
237         map.add_tempo (Tempo (bpm,nt), requested);
238         XMLNode &after = map.get_state();
239         _session->add_command(new MementoCommand<TempoMap>(map, &before, &after));
240         commit_reversible_command ();
241
242         //map.dump (cerr);
243 }
244
245 void
246 Editor::mouse_add_new_meter_event (framepos_t frame)
247 {
248         if (_session == 0) {
249                 return;
250         }
251
252
253         TempoMap& map(_session->tempo_map());
254         MeterDialog meter_dialog (map, frame, _("add"));
255
256         meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
257
258         //this causes compiz to display no border..
259         //meter_dialog.signal_realize().connect (sigc::bind (sigc::ptr_fun (set_decoration), &meter_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
260
261         ensure_float (meter_dialog);
262
263         switch (meter_dialog.run ()) {
264         case RESPONSE_ACCEPT:
265                 break;
266         default:
267                 return;
268         }
269
270         double bpb = meter_dialog.get_bpb ();
271         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
272
273         double note_type = meter_dialog.get_note_type ();
274         Timecode::BBT_Time requested;
275
276         meter_dialog.get_bbt_time (requested);
277
278         begin_reversible_command (_("add meter mark"));
279         XMLNode &before = map.get_state();
280         map.add_meter (Meter (bpb, note_type), requested);
281         _session->add_command(new MementoCommand<TempoMap>(map, &before, &map.get_state()));
282         commit_reversible_command ();
283
284         //map.dump (cerr);
285 }
286
287 void
288 Editor::remove_tempo_marker (ArdourCanvas::Item* item)
289 {
290         Marker* marker;
291         TempoMarker* tempo_marker;
292
293         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
294                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
295                 /*NOTREACHED*/
296         }
297
298         if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
299                 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
300                 /*NOTREACHED*/
301         }
302
303         if (tempo_marker->tempo().movable()) {
304                 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_tempo_marker), &tempo_marker->tempo()));
305         }
306 }
307
308 void
309 Editor::edit_meter_section (MeterSection* section)
310 {
311         MeterDialog meter_dialog (*section, _("done"));
312
313         meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
314
315         ensure_float (meter_dialog);
316
317         switch (meter_dialog.run()) {
318         case RESPONSE_ACCEPT:
319                 break;
320         default:
321                 return;
322         }
323
324         double bpb = meter_dialog.get_bpb ();
325         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
326
327         double note_type = meter_dialog.get_note_type ();
328
329         Timecode::BBT_Time when;
330         meter_dialog.get_bbt_time(when);
331
332         begin_reversible_command (_("replace tempo mark"));
333         XMLNode &before = _session->tempo_map().get_state();
334         _session->tempo_map().replace_meter (*section, Meter (bpb, note_type), when);
335         XMLNode &after = _session->tempo_map().get_state();
336         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
337         commit_reversible_command ();
338 }
339
340 void
341 Editor::edit_tempo_section (TempoSection* section)
342 {
343         TempoDialog tempo_dialog (*section, _("done"));
344
345         tempo_dialog.set_position (Gtk::WIN_POS_MOUSE);
346
347         ensure_float (tempo_dialog);
348
349         switch (tempo_dialog.run ()) {
350         case RESPONSE_ACCEPT:
351                 break;
352         default:
353                 return;
354         }
355
356         double bpm = tempo_dialog.get_bpm ();
357         double nt = tempo_dialog.get_note_type ();
358         Timecode::BBT_Time when;
359         tempo_dialog.get_bbt_time(when);
360         bpm = max (0.01, bpm);
361
362         begin_reversible_command (_("replace tempo mark"));
363         XMLNode &before = _session->tempo_map().get_state();
364         _session->tempo_map().replace_tempo (*section, Tempo (bpm, nt), when);
365         XMLNode &after = _session->tempo_map().get_state();
366         _session->add_command (new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
367         commit_reversible_command ();
368 }
369
370 void
371 Editor::edit_tempo_marker (ArdourCanvas::Item *item)
372 {
373         Marker* marker;
374         TempoMarker* tempo_marker;
375
376         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
377                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
378                 /*NOTREACHED*/
379         }
380
381         if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
382                 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
383                 /*NOTREACHED*/
384         }
385
386         edit_tempo_section (&tempo_marker->tempo());
387 }
388
389 void
390 Editor::edit_meter_marker (ArdourCanvas::Item *item)
391 {
392         Marker* marker;
393         MeterMarker* meter_marker;
394
395         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
396                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
397                 /*NOTREACHED*/
398         }
399
400         if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
401                 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
402                 /*NOTREACHED*/
403         }
404
405         edit_meter_section (&meter_marker->meter());
406 }
407
408 gint
409 Editor::real_remove_tempo_marker (TempoSection *section)
410 {
411         begin_reversible_command (_("remove tempo mark"));
412         XMLNode &before = _session->tempo_map().get_state();
413         _session->tempo_map().remove_tempo (*section, true);
414         XMLNode &after = _session->tempo_map().get_state();
415         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
416         commit_reversible_command ();
417
418         return FALSE;
419 }
420
421 void
422 Editor::remove_meter_marker (ArdourCanvas::Item* item)
423 {
424         Marker* marker;
425         MeterMarker* meter_marker;
426
427         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
428                 fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
429                 /*NOTREACHED*/
430         }
431
432         if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
433                 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
434                 /*NOTREACHED*/
435         }
436
437         if (meter_marker->meter().movable()) {
438           Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_meter_marker), &meter_marker->meter()));
439         }
440 }
441
442 gint
443 Editor::real_remove_meter_marker (MeterSection *section)
444 {
445         begin_reversible_command (_("remove tempo mark"));
446         XMLNode &before = _session->tempo_map().get_state();
447         _session->tempo_map().remove_meter (*section, true);
448         XMLNode &after = _session->tempo_map().get_state();
449         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
450         commit_reversible_command ();
451
452         return FALSE;
453 }