79f5caf82bb1853e3549f48cb3b5c3bdb153ba20
[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         current_bbt_points.clear();
173         _session->tempo_map().map (current_bbt_points, _session->tempo_map().frame_time (previous_beat), _session->tempo_map().frame_time (next_beat) + 1);
174 }
175
176 void
177 Editor::hide_measures ()
178 {
179         if (tempo_lines)
180                 tempo_lines->hide();
181 }
182
183 bool
184 Editor::redraw_measures ()
185 {
186         draw_measures ();
187         return false;
188 }
189
190 void
191 Editor::draw_measures ()
192 {
193         if (_session == 0 || _show_measures == false || current_bbt_points.empty()) {
194                 return;
195         }
196
197         if (tempo_lines == 0) {
198                 tempo_lines = new TempoLines(*track_canvas, time_line_group, physical_screen_height(get_window()));
199         }
200
201         tempo_lines->draw (current_bbt_points, frames_per_unit);
202 }
203
204 void
205 Editor::mouse_add_new_tempo_event (framepos_t frame)
206 {
207         if (_session == 0) {
208                 return;
209         }
210
211         TempoMap& map(_session->tempo_map());
212         TempoDialog tempo_dialog (map, frame, _("add"));
213
214         tempo_dialog.set_position (Gtk::WIN_POS_MOUSE);
215         //this causes compiz to display no border.
216         //tempo_dialog.signal_realize().connect (sigc::bind (sigc::ptr_fun (set_decoration), &tempo_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
217
218         ensure_float (tempo_dialog);
219
220         switch (tempo_dialog.run()) {
221         case RESPONSE_ACCEPT:
222                 break;
223         default:
224                 return;
225         }
226
227         double bpm = 0;
228         Timecode::BBT_Time requested;
229
230         bpm = tempo_dialog.get_bpm ();
231         double nt = tempo_dialog.get_note_type();
232         bpm = max (0.01, bpm);
233
234         tempo_dialog.get_bbt_time (requested);
235
236         begin_reversible_command (_("add tempo mark"));
237         XMLNode &before = map.get_state();
238         map.add_tempo (Tempo (bpm,nt), requested);
239         XMLNode &after = map.get_state();
240         _session->add_command(new MementoCommand<TempoMap>(map, &before, &after));
241         commit_reversible_command ();
242
243         //map.dump (cerr);
244 }
245
246 void
247 Editor::mouse_add_new_meter_event (framepos_t frame)
248 {
249         if (_session == 0) {
250                 return;
251         }
252
253
254         TempoMap& map(_session->tempo_map());
255         MeterDialog meter_dialog (map, frame, _("add"));
256
257         meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
258
259         //this causes compiz to display no border..
260         //meter_dialog.signal_realize().connect (sigc::bind (sigc::ptr_fun (set_decoration), &meter_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
261
262         ensure_float (meter_dialog);
263
264         switch (meter_dialog.run ()) {
265         case RESPONSE_ACCEPT:
266                 break;
267         default:
268                 return;
269         }
270
271         double bpb = meter_dialog.get_bpb ();
272         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
273
274         double note_type = meter_dialog.get_note_type ();
275         Timecode::BBT_Time requested;
276
277         meter_dialog.get_bbt_time (requested);
278
279         begin_reversible_command (_("add meter mark"));
280         XMLNode &before = map.get_state();
281         map.add_meter (Meter (bpb, note_type), requested);
282         _session->add_command(new MementoCommand<TempoMap>(map, &before, &map.get_state()));
283         commit_reversible_command ();
284
285         //map.dump (cerr);
286 }
287
288 void
289 Editor::remove_tempo_marker (ArdourCanvas::Item* item)
290 {
291         Marker* marker;
292         TempoMarker* tempo_marker;
293
294         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
295                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
296                 /*NOTREACHED*/
297         }
298
299         if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
300                 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
301                 /*NOTREACHED*/
302         }
303
304         if (tempo_marker->tempo().movable()) {
305                 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_tempo_marker), &tempo_marker->tempo()));
306         }
307 }
308
309 void
310 Editor::edit_meter_section (MeterSection* section)
311 {
312         MeterDialog meter_dialog (*section, _("done"));
313
314         meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
315
316         ensure_float (meter_dialog);
317
318         switch (meter_dialog.run()) {
319         case RESPONSE_ACCEPT:
320                 break;
321         default:
322                 return;
323         }
324
325         double bpb = meter_dialog.get_bpb ();
326         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
327
328         double note_type = meter_dialog.get_note_type ();
329
330         Timecode::BBT_Time when;
331         meter_dialog.get_bbt_time(when);
332
333         begin_reversible_command (_("replace tempo mark"));
334         XMLNode &before = _session->tempo_map().get_state();
335         _session->tempo_map().replace_meter (*section, Meter (bpb, note_type), when);
336         XMLNode &after = _session->tempo_map().get_state();
337         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
338         commit_reversible_command ();
339 }
340
341 void
342 Editor::edit_tempo_section (TempoSection* section)
343 {
344         TempoDialog tempo_dialog (*section, _("done"));
345
346         tempo_dialog.set_position (Gtk::WIN_POS_MOUSE);
347
348         ensure_float (tempo_dialog);
349
350         switch (tempo_dialog.run ()) {
351         case RESPONSE_ACCEPT:
352                 break;
353         default:
354                 return;
355         }
356
357         double bpm = tempo_dialog.get_bpm ();
358         double nt = tempo_dialog.get_note_type ();
359         Timecode::BBT_Time when;
360         tempo_dialog.get_bbt_time(when);
361         bpm = max (0.01, bpm);
362
363         begin_reversible_command (_("replace tempo mark"));
364         XMLNode &before = _session->tempo_map().get_state();
365         _session->tempo_map().replace_tempo (*section, Tempo (bpm, nt), when);
366         XMLNode &after = _session->tempo_map().get_state();
367         _session->add_command (new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
368         commit_reversible_command ();
369 }
370
371 void
372 Editor::edit_tempo_marker (ArdourCanvas::Item *item)
373 {
374         Marker* marker;
375         TempoMarker* tempo_marker;
376
377         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
378                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
379                 /*NOTREACHED*/
380         }
381
382         if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
383                 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
384                 /*NOTREACHED*/
385         }
386
387         edit_tempo_section (&tempo_marker->tempo());
388 }
389
390 void
391 Editor::edit_meter_marker (ArdourCanvas::Item *item)
392 {
393         Marker* marker;
394         MeterMarker* meter_marker;
395
396         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
397                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
398                 /*NOTREACHED*/
399         }
400
401         if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
402                 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
403                 /*NOTREACHED*/
404         }
405
406         edit_meter_section (&meter_marker->meter());
407 }
408
409 gint
410 Editor::real_remove_tempo_marker (TempoSection *section)
411 {
412         begin_reversible_command (_("remove tempo mark"));
413         XMLNode &before = _session->tempo_map().get_state();
414         _session->tempo_map().remove_tempo (*section, true);
415         XMLNode &after = _session->tempo_map().get_state();
416         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
417         commit_reversible_command ();
418
419         return FALSE;
420 }
421
422 void
423 Editor::remove_meter_marker (ArdourCanvas::Item* item)
424 {
425         Marker* marker;
426         MeterMarker* meter_marker;
427
428         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
429                 fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
430                 /*NOTREACHED*/
431         }
432
433         if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
434                 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
435                 /*NOTREACHED*/
436         }
437
438         if (meter_marker->meter().movable()) {
439           Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_meter_marker), &meter_marker->meter()));
440         }
441 }
442
443 gint
444 Editor::real_remove_meter_marker (MeterSection *section)
445 {
446         begin_reversible_command (_("remove tempo mark"));
447         XMLNode &before = _session->tempo_map().get_state();
448         _session->tempo_map().remove_meter (*section, true);
449         XMLNode &after = _session->tempo_map().get_state();
450         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
451         commit_reversible_command ();
452
453         return FALSE;
454 }