Remove erroneous assert which I added earlier.
[ardour2.git] / gtk2_ardour / editor_tempodisplay.cc
blob1069e457e635efa1dab9f7576e5b9116c838ff21
1 /*
2 Copyright (C) 2002 Paul Davis
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.
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.
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.
20 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
24 #include <cstdio> // for sprintf, grrr
25 #include <cstdlib>
26 #include <cmath>
27 #include <string>
28 #include <climits>
30 #include <libgnomecanvasmm.h>
32 #include "pbd/error.h"
33 #include "pbd/memento_command.h"
35 #include <gtkmm2ext/utils.h>
36 #include <gtkmm2ext/gtk_ui.h>
38 #include "ardour/session.h"
39 #include "ardour/tempo.h"
40 #include <gtkmm2ext/doi.h>
41 #include <gtkmm2ext/utils.h>
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"
54 #include "i18n.h"
56 using namespace std;
57 using namespace ARDOUR;
58 using namespace PBD;
59 using namespace Gtk;
60 using namespace Gtkmm2ext;
61 using namespace Editing;
63 void
64 Editor::remove_metric_marks ()
66 /* don't delete these while handling events, just punt till the GUI is idle */
68 for (Marks::iterator x = metric_marks.begin(); x != metric_marks.end(); ++x) {
69 delete_when_idle (*x);
71 metric_marks.clear ();
74 void
75 Editor::draw_metric_marks (const Metrics& metrics)
78 const MeterSection *ms;
79 const TempoSection *ts;
80 char buf[64];
82 remove_metric_marks ();
84 for (Metrics::const_iterator i = metrics.begin(); i != metrics.end(); ++i) {
86 if ((ms = dynamic_cast<const MeterSection*>(*i)) != 0) {
87 snprintf (buf, sizeof(buf), "%g/%g", ms->beats_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 snprintf (buf, sizeof (buf), "%.2f", ts->beats_per_minute());
92 metric_marks.push_back (new TempoMarker (*this, *tempo_group, ARDOUR_UI::config()->canvasvar_TempoMarker.get(), buf,
93 *(const_cast<TempoSection*>(ts))));
100 void
101 Editor::tempo_map_changed (const PropertyChange& /*ignored*/)
103 if (!_session) {
104 return;
107 ENSURE_GUI_THREAD (*this, &Editor::tempo_map_changed, ignored);
109 if (tempo_lines) {
110 tempo_lines->tempo_map_changed();
113 compute_current_bbt_points(leftmost_frame, leftmost_frame + current_page_frames());
114 _session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
115 redraw_measures ();
116 update_tempo_based_rulers ();
119 void
120 Editor::redisplay_tempo (bool immediate_redraw)
122 if (!_session) {
123 return;
126 compute_current_bbt_points (leftmost_frame, leftmost_frame + current_page_frames()); // redraw rulers and measures
128 if (immediate_redraw) {
129 redraw_measures ();
130 } else {
131 #ifdef GTKOSX
132 redraw_measures ();
133 #else
134 Glib::signal_idle().connect (sigc::mem_fun (*this, &Editor::redraw_measures));
135 #endif
137 update_tempo_based_rulers (); // redraw rulers and measures
140 void
141 Editor::compute_current_bbt_points (framepos_t leftmost, framepos_t rightmost)
143 if (!_session) {
144 return;
147 Timecode::BBT_Time previous_beat, next_beat; // the beats previous to the leftmost frame and after the rightmost frame
149 _session->bbt_time(leftmost, previous_beat);
150 _session->bbt_time(rightmost, next_beat);
152 if (previous_beat.beats > 1) {
153 previous_beat.beats -= 1;
154 } else if (previous_beat.bars > 1) {
155 previous_beat.bars--;
156 previous_beat.beats += 1;
158 previous_beat.ticks = 0;
160 if (_session->tempo_map().meter_at(rightmost).beats_per_bar () > next_beat.beats + 1) {
161 next_beat.beats += 1;
162 } else {
163 next_beat.bars += 1;
164 next_beat.beats = 1;
166 next_beat.ticks = 0;
168 delete current_bbt_points;
169 current_bbt_points = 0;
171 current_bbt_points = _session->tempo_map().get_points (_session->tempo_map().frame_time (previous_beat), _session->tempo_map().frame_time (next_beat) + 1);
174 void
175 Editor::hide_measures ()
177 if (tempo_lines)
178 tempo_lines->hide();
181 bool
182 Editor::redraw_measures ()
184 draw_measures ();
185 return false;
188 void
189 Editor::draw_measures ()
191 if (_session == 0 || _show_measures == false ||
192 !current_bbt_points || current_bbt_points->empty()) {
193 return;
196 if (tempo_lines == 0) {
197 tempo_lines = new TempoLines(*track_canvas, time_line_group, physical_screen_height(get_window()));
200 tempo_lines->draw(*current_bbt_points, frames_per_unit);
203 void
204 Editor::mouse_add_new_tempo_event (framepos_t frame)
206 if (_session == 0) {
207 return;
210 TempoMap& map(_session->tempo_map());
211 TempoDialog tempo_dialog (map, frame, _("add"));
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)));
217 ensure_float (tempo_dialog);
219 switch (tempo_dialog.run()) {
220 case RESPONSE_ACCEPT:
221 break;
222 default:
223 return;
226 double bpm = 0;
227 Timecode::BBT_Time requested;
229 bpm = tempo_dialog.get_bpm ();
230 double nt = tempo_dialog.get_note_type();
231 bpm = max (0.01, bpm);
233 tempo_dialog.get_bbt_time (requested);
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 ();
242 //map.dump (cerr);
245 void
246 Editor::mouse_add_new_meter_event (framepos_t frame)
248 if (_session == 0) {
249 return;
253 TempoMap& map(_session->tempo_map());
254 MeterDialog meter_dialog (map, frame, _("add"));
256 meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
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)));
261 ensure_float (meter_dialog);
263 switch (meter_dialog.run ()) {
264 case RESPONSE_ACCEPT:
265 break;
266 default:
267 return;
270 double bpb = meter_dialog.get_bpb ();
271 bpb = max (1.0, bpb); // XXX is this a reasonable limit?
273 double note_type = meter_dialog.get_note_type ();
274 Timecode::BBT_Time requested;
276 meter_dialog.get_bbt_time (requested);
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 ();
284 //map.dump (cerr);
287 void
288 Editor::remove_tempo_marker (ArdourCanvas::Item* item)
290 Marker* marker;
291 TempoMarker* tempo_marker;
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*/
298 if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
299 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
300 /*NOTREACHED*/
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()));
308 void
309 Editor::edit_meter_section (MeterSection* section)
311 MeterDialog meter_dialog (*section, _("done"));
313 meter_dialog.set_position (Gtk::WIN_POS_MOUSE);
315 ensure_float (meter_dialog);
317 switch (meter_dialog.run()) {
318 case RESPONSE_ACCEPT:
319 break;
320 default:
321 return;
324 double bpb = meter_dialog.get_bpb ();
325 bpb = max (1.0, bpb); // XXX is this a reasonable limit?
327 double note_type = meter_dialog.get_note_type ();
329 begin_reversible_command (_("replace tempo mark"));
330 XMLNode &before = _session->tempo_map().get_state();
331 _session->tempo_map().replace_meter (*section, Meter (bpb, note_type));
332 XMLNode &after = _session->tempo_map().get_state();
333 _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
334 commit_reversible_command ();
337 void
338 Editor::edit_tempo_section (TempoSection* section)
340 TempoDialog tempo_dialog (*section, _("done"));
342 tempo_dialog.set_position (Gtk::WIN_POS_MOUSE);
344 ensure_float (tempo_dialog);
346 switch (tempo_dialog.run ()) {
347 case RESPONSE_ACCEPT:
348 break;
349 default:
350 return;
353 double bpm = tempo_dialog.get_bpm ();
354 double nt = tempo_dialog.get_note_type ();
355 Timecode::BBT_Time when;
356 tempo_dialog.get_bbt_time(when);
357 bpm = max (0.01, bpm);
359 cerr << "Editing tempo section to be at " << when << endl;
360 _session->tempo_map().dump (cerr);
361 begin_reversible_command (_("replace tempo mark"));
362 XMLNode &before = _session->tempo_map().get_state();
363 _session->tempo_map().replace_tempo (*section, Tempo (bpm,nt));
364 _session->tempo_map().dump (cerr);
365 _session->tempo_map().move_tempo (*section, when);
366 _session->tempo_map().dump (cerr);
367 XMLNode &after = _session->tempo_map().get_state();
368 _session->add_command (new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
369 commit_reversible_command ();
372 void
373 Editor::edit_tempo_marker (ArdourCanvas::Item *item)
375 Marker* marker;
376 TempoMarker* tempo_marker;
378 if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
379 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
380 /*NOTREACHED*/
383 if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
384 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
385 /*NOTREACHED*/
388 edit_tempo_section (&tempo_marker->tempo());
391 void
392 Editor::edit_meter_marker (ArdourCanvas::Item *item)
394 Marker* marker;
395 MeterMarker* meter_marker;
397 if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
398 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
399 /*NOTREACHED*/
402 if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
403 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
404 /*NOTREACHED*/
407 edit_meter_section (&meter_marker->meter());
410 gint
411 Editor::real_remove_tempo_marker (TempoSection *section)
413 begin_reversible_command (_("remove tempo mark"));
414 XMLNode &before = _session->tempo_map().get_state();
415 _session->tempo_map().remove_tempo (*section);
416 XMLNode &after = _session->tempo_map().get_state();
417 _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
418 commit_reversible_command ();
420 return FALSE;
423 void
424 Editor::remove_meter_marker (ArdourCanvas::Item* item)
426 Marker* marker;
427 MeterMarker* meter_marker;
429 if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
430 fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
431 /*NOTREACHED*/
434 if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
435 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
436 /*NOTREACHED*/
439 if (meter_marker->meter().movable()) {
440 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_meter_marker), &meter_marker->meter()));
444 gint
445 Editor::real_remove_meter_marker (MeterSection *section)
447 begin_reversible_command (_("remove tempo mark"));
448 XMLNode &before = _session->tempo_map().get_state();
449 _session->tempo_map().remove_meter (*section);
450 XMLNode &after = _session->tempo_map().get_state();
451 _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
452 commit_reversible_command ();
454 return FALSE;