Fixed overflow issue. Code originally meant to truncate the 64 bit integer did not...
[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 #include <cstdio> // for sprintf, grrr 
21 #include <cstdlib>
22 #include <cmath>
23 #include <string>
24 #include <climits>
25
26 #include <libgnomecanvasmm.h>
27
28 #include <pbd/error.h>
29 #include <pbd/memento_command.h>
30
31 #include <gtkmm2ext/utils.h>
32 #include <gtkmm2ext/gtk_ui.h>
33
34 #include <ardour/session.h>
35 #include <ardour/tempo.h>
36 #include <gtkmm2ext/doi.h>
37 #include <gtkmm2ext/utils.h>
38
39 #include "editor.h"
40 #include "marker.h"
41 #include "simpleline.h"
42 #include "tempo_dialog.h"
43 #include "rgb_macros.h"
44 #include "gui_thread.h"
45 #include "ardour_ui.h"
46 #include "time_axis_view.h"
47
48 #include "i18n.h"
49
50 using namespace std;
51 using namespace sigc;
52 using namespace ARDOUR;
53 using namespace PBD;
54 using namespace Gtk;
55 using namespace Gtkmm2ext;
56 using namespace Editing;
57
58 void
59 Editor::remove_metric_marks ()
60 {
61         /* don't delete these while handling events, just punt till the GUI is idle */
62
63         for (Marks::iterator x = metric_marks.begin(); x != metric_marks.end(); ++x) {
64                 delete_when_idle (*x);
65         }
66         metric_marks.clear ();
67 }       
68
69 void
70 Editor::draw_metric_marks (const Metrics& metrics)
71 {
72
73         const MeterSection *ms;
74         const TempoSection *ts;
75         char buf[64];
76         
77         remove_metric_marks ();
78         
79         for (Metrics::const_iterator i = metrics.begin(); i != metrics.end(); ++i) {
80                 
81                 if ((ms = dynamic_cast<const MeterSection*>(*i)) != 0) {
82                         snprintf (buf, sizeof(buf), "%g/%g", ms->beats_per_bar(), ms->note_divisor ());
83                         metric_marks.push_back (new MeterMarker (*this, *meter_group, ARDOUR_UI::config()->canvasvar_MeterMarker.get(), buf, 
84                                                                  *(const_cast<MeterSection*>(ms))));
85                 } else if ((ts = dynamic_cast<const TempoSection*>(*i)) != 0) {
86                         snprintf (buf, sizeof (buf), "%.2f", ts->beats_per_minute());
87                         metric_marks.push_back (new TempoMarker (*this, *tempo_group, ARDOUR_UI::config()->canvasvar_TempoMarker.get(), buf, 
88                                                                  *(const_cast<TempoSection*>(ts))));
89                 }
90                 
91         }
92
93 }
94
95 void
96 Editor::tempo_map_changed (Change ignored)
97 {
98         if (!session) {
99                 return;
100         }
101
102         ENSURE_GUI_THREAD(bind (mem_fun (*this, &Editor::tempo_map_changed), ignored));
103         
104         redisplay_tempo (false); // redraw rulers and measures
105         session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
106 }
107
108 /**
109  * This code was originally in tempo_map_changed, but this is called every time the canvas scrolls horizontally. 
110  * That's why this is moved in here. The new tempo_map_changed is called when the ARDOUR::TempoMap actually changed.
111  */
112 void
113 Editor::redisplay_tempo (bool immediate_redraw)
114 {
115         if (!session) {
116                 return;
117         }
118
119         BBT_Time previous_beat, next_beat; // the beats previous to the leftmost frame and after the rightmost frame
120
121         session->bbt_time(leftmost_frame, previous_beat);
122         session->bbt_time(leftmost_frame + current_page_frames(), next_beat);
123
124         if (previous_beat.beats > 1) {
125                 previous_beat.beats -= 1;
126         } else if (previous_beat.bars > 1) {
127                 previous_beat.bars--;
128                 previous_beat.beats += 1;
129         }
130         previous_beat.ticks = 0;
131
132         if (session->tempo_map().meter_at(leftmost_frame + current_page_frames()).beats_per_bar () > next_beat.beats + 1) {
133                 next_beat.beats += 1;
134         } else {
135                 next_beat.bars += 1;
136                 next_beat.beats = 1;
137         }
138         next_beat.ticks = 0;
139         
140         if (current_bbt_points) {
141                 delete current_bbt_points;
142                 current_bbt_points = 0;
143         }
144
145         if (session) {
146                 current_bbt_points = session->tempo_map().get_points (session->tempo_map().frame_time (previous_beat), session->tempo_map().frame_time (next_beat));
147                 update_tempo_based_rulers ();
148         } else {
149                 current_bbt_points = 0;
150         }
151
152         if (immediate_redraw) {
153
154                 hide_measures ();
155
156                 if (session && current_bbt_points) {
157                         draw_measures ();
158                 }
159
160         } else {
161
162                 if (session && current_bbt_points) {
163 #ifdef GTKOSX
164                         lazy_hide_and_draw_measures ();
165 #else
166                         Glib::signal_idle().connect (mem_fun (*this, &Editor::lazy_hide_and_draw_measures));
167 #endif
168                 } else {
169                         hide_measures ();
170                 }
171         }
172 }
173
174 void
175 Editor::hide_measures ()
176 {
177         for (TimeLineList::iterator i = used_measure_lines.begin(); i != used_measure_lines.end(); ++i) {
178                 (*i)->hide();
179                 free_measure_lines.push_back (*i);
180         }
181         used_measure_lines.clear ();
182 }
183
184 ArdourCanvas::SimpleLine *
185 Editor::get_time_line ()
186 {
187          ArdourCanvas::SimpleLine *line;
188
189         if (free_measure_lines.empty()) {
190                 line = new ArdourCanvas::SimpleLine (*time_line_group);
191                 used_measure_lines.push_back (line);
192         } else {
193                 line = free_measure_lines.front();
194                 free_measure_lines.erase (free_measure_lines.begin());
195                 used_measure_lines.push_back (line);
196         }
197
198         return line;
199 }
200
201 bool
202 Editor::lazy_hide_and_draw_measures ()
203 {
204         hide_measures ();
205         draw_measures ();
206         return false;
207 }
208
209 void
210 Editor::draw_measures ()
211 {
212         if (session == 0 || _show_measures == false) {
213                 return;
214         }
215
216         TempoMap::BBTPointList::iterator i;
217         ArdourCanvas::SimpleLine *line;
218         gdouble xpos;
219         double beat_density;
220
221         uint32_t beats = 0;
222         uint32_t bars = 0;
223         uint32_t color;
224
225         if (current_bbt_points == 0 || current_bbt_points->empty()) {
226                 return;
227         }
228
229         /* get the first bar spacing */
230
231         i = current_bbt_points->end();
232         i--;
233         bars = (*i).bar - (*current_bbt_points->begin()).bar;
234         beats = current_bbt_points->size() - bars;
235
236         beat_density =  (beats * 10.0f) / track_canvas->get_width ();
237
238         if (beat_density > 4.0f) {
239                 /* if the lines are too close together, they become useless
240                  */
241                 return;
242         }
243
244         for (i = current_bbt_points->begin(); i != current_bbt_points->end(); ++i) {
245
246                 switch ((*i).type) {
247                 case TempoMap::Bar:
248                         break;
249
250                 case TempoMap::Beat:
251                         
252                         if ((*i).beat == 1) {
253                                 color = ARDOUR_UI::config()->canvasvar_MeasureLineBar.get();
254                         } else {
255                                 color = ARDOUR_UI::config()->canvasvar_MeasureLineBeat.get();
256
257                                 if (beat_density > 2.0) {
258                                         /* only draw beat lines if the gaps between beats are large.
259                                         */
260                                         break;
261                                 }
262                         }
263
264                         xpos = frame_to_unit ((nframes64_t) (*i).frame);
265                         line = get_time_line ();
266                         line->property_x1() = xpos;
267                         line->property_x2() = xpos;
268                         line->property_y2() = canvas_height;
269                         line->property_color_rgba() = color;
270                         //line->raise_to_top();
271                         line->show();   
272                         break;
273                 }
274         }
275
276         if (logo_item) {
277                 logo_item->lower_to_bottom ();
278         }
279         return;
280 }
281
282 void
283 Editor::mouse_add_new_tempo_event (nframes64_t frame)
284 {
285         if (session == 0) {
286                 return;
287         }
288
289         TempoMap& map(session->tempo_map());
290         TempoDialog tempo_dialog (map, frame, _("add"));
291         
292         tempo_dialog.set_position (Gtk::WIN_POS_MOUSE);
293         //this causes compiz to display no border.
294         //tempo_dialog.signal_realize().connect (bind (sigc::ptr_fun (set_decoration), &tempo_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
295
296         ensure_float (tempo_dialog);
297
298         switch (tempo_dialog.run()) {
299         case RESPONSE_ACCEPT:
300                 break;
301         default:
302                 return;
303         }
304
305         double bpm = 0;
306         BBT_Time requested;
307         
308         bpm = tempo_dialog.get_bpm ();
309         double nt = tempo_dialog.get_note_type();
310         bpm = max (0.01, bpm);
311         
312         tempo_dialog.get_bbt_time (requested);
313         
314         begin_reversible_command (_("add tempo mark"));
315         XMLNode &before = map.get_state();
316         map.add_tempo (Tempo (bpm,nt), requested);
317         XMLNode &after = map.get_state();
318         session->add_command(new MementoCommand<TempoMap>(map, &before, &after));
319         commit_reversible_command ();
320         
321         //map.dump (cerr);
322 }
323
324 void
325 Editor::mouse_add_new_meter_event (nframes64_t frame)
326 {
327         if (session == 0) {
328                 return;
329         }
330
331
332         TempoMap& map(session->tempo_map());
333         MeterDialog meter_dialog (map, frame, _("add"));
334
335         meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
336
337         //this causes compiz to display no border.. 
338         //meter_dialog.signal_realize().connect (bind (sigc::ptr_fun (set_decoration), &meter_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
339
340         ensure_float (meter_dialog);
341         
342         switch (meter_dialog.run ()) {
343         case RESPONSE_ACCEPT:
344                 break;
345         default:
346                 return;
347         }
348
349         double bpb = meter_dialog.get_bpb ();
350         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
351         
352         double note_type = meter_dialog.get_note_type ();
353         BBT_Time requested;
354
355         meter_dialog.get_bbt_time (requested);
356
357         begin_reversible_command (_("add meter mark"));
358         XMLNode &before = map.get_state();
359         map.add_meter (Meter (bpb, note_type), requested);
360         session->add_command(new MementoCommand<TempoMap>(map, &before, &map.get_state()));
361         commit_reversible_command ();
362         
363         //map.dump (cerr);
364 }
365
366 void
367 Editor::remove_tempo_marker (ArdourCanvas::Item* item)
368 {
369         Marker* marker;
370         TempoMarker* tempo_marker;
371
372         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
373                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
374                 /*NOTREACHED*/
375         }
376
377         if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
378                 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
379                 /*NOTREACHED*/
380         }               
381
382         if (tempo_marker->tempo().movable()) {
383           Glib::signal_idle().connect (bind (mem_fun(*this, &Editor::real_remove_tempo_marker), &tempo_marker->tempo()));
384         }
385 }
386
387 void
388 Editor::edit_meter_section (MeterSection* section)
389 {
390         MeterDialog meter_dialog (*section, _("done"));
391
392         meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
393
394         ensure_float (meter_dialog);
395
396         switch (meter_dialog.run()) {
397         case RESPONSE_ACCEPT:
398                 break;
399         default:
400                 return;
401         }
402
403         double bpb = meter_dialog.get_bpb ();
404         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
405         
406         double note_type = meter_dialog.get_note_type ();
407
408         begin_reversible_command (_("replace tempo mark"));
409         XMLNode &before = session->tempo_map().get_state();
410         session->tempo_map().replace_meter (*section, Meter (bpb, note_type));
411         XMLNode &after = session->tempo_map().get_state();
412         session->add_command(new MementoCommand<TempoMap>(session->tempo_map(), &before, &after));
413         commit_reversible_command ();
414 }
415
416 void
417 Editor::edit_tempo_section (TempoSection* section)
418 {
419         TempoDialog tempo_dialog (*section, _("done"));
420
421         tempo_dialog.set_position (Gtk::WIN_POS_MOUSE);
422
423         ensure_float (tempo_dialog);
424         
425         switch (tempo_dialog.run ()) {
426         case RESPONSE_ACCEPT:
427                 break;
428         default:
429                 return;
430         }
431
432         double bpm = tempo_dialog.get_bpm ();
433         double nt = tempo_dialog.get_note_type ();
434         BBT_Time when;
435         tempo_dialog.get_bbt_time(when);
436         bpm = max (0.01, bpm);
437         
438         cerr << "Editing tempo section to be at " << when << endl;
439         session->tempo_map().dump (cerr);
440         begin_reversible_command (_("replace tempo mark"));
441         XMLNode &before = session->tempo_map().get_state();
442         session->tempo_map().replace_tempo (*section, Tempo (bpm,nt));
443         session->tempo_map().dump (cerr);
444         session->tempo_map().move_tempo (*section, when);
445         session->tempo_map().dump (cerr);
446         XMLNode &after = session->tempo_map().get_state();
447         session->add_command (new MementoCommand<TempoMap>(session->tempo_map(), &before, &after));
448         commit_reversible_command ();
449 }
450
451 void
452 Editor::edit_tempo_marker (ArdourCanvas::Item *item)
453 {
454         Marker* marker;
455         TempoMarker* tempo_marker;
456
457         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
458                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
459                 /*NOTREACHED*/
460         }
461
462         if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
463                 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
464                 /*NOTREACHED*/
465         }               
466
467         edit_tempo_section (&tempo_marker->tempo());
468 }
469
470 void
471 Editor::edit_meter_marker (ArdourCanvas::Item *item)
472 {
473         Marker* marker;
474         MeterMarker* meter_marker;
475
476         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
477                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
478                 /*NOTREACHED*/
479         }
480
481         if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
482                 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
483                 /*NOTREACHED*/
484         }               
485         
486         edit_meter_section (&meter_marker->meter());
487 }
488
489 gint
490 Editor::real_remove_tempo_marker (TempoSection *section)
491 {
492         begin_reversible_command (_("remove tempo mark"));
493         XMLNode &before = session->tempo_map().get_state();
494         session->tempo_map().remove_tempo (*section);
495         XMLNode &after = session->tempo_map().get_state();
496         session->add_command(new MementoCommand<TempoMap>(session->tempo_map(), &before, &after));
497         commit_reversible_command ();
498
499         return FALSE;
500 }
501
502 void
503 Editor::remove_meter_marker (ArdourCanvas::Item* item)
504 {
505         Marker* marker;
506         MeterMarker* meter_marker;
507
508         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
509                 fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
510                 /*NOTREACHED*/
511         }
512
513         if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
514                 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
515                 /*NOTREACHED*/
516         }               
517
518         if (meter_marker->meter().movable()) {
519           Glib::signal_idle().connect (bind (mem_fun(*this, &Editor::real_remove_meter_marker), &meter_marker->meter()));
520         }
521 }
522
523 gint
524 Editor::real_remove_meter_marker (MeterSection *section)
525 {
526         begin_reversible_command (_("remove tempo mark"));
527         XMLNode &before = session->tempo_map().get_state();
528         session->tempo_map().remove_meter (*section);
529         XMLNode &after = session->tempo_map().get_state();
530         session->add_command(new MementoCommand<TempoMap>(session->tempo_map(), &before, &after));
531         commit_reversible_command ();
532
533         return FALSE;
534 }