tap-tempo: try to make it work properly from the very first click
[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 "pbd/error.h"
31 #include "pbd/memento_command.h"
32
33 #include <gtkmm2ext/utils.h>
34 #include <gtkmm2ext/gtk_ui.h>
35
36 #include "ardour/session.h"
37 #include "ardour/tempo.h"
38 #include <gtkmm2ext/doi.h>
39 #include <gtkmm2ext/utils.h>
40
41 #include "canvas/canvas.h"
42 #include "canvas/item.h"
43 #include "canvas/line_set.h"
44
45 #include "editor.h"
46 #include "marker.h"
47 #include "tempo_dialog.h"
48 #include "rgb_macros.h"
49 #include "gui_thread.h"
50 #include "time_axis_view.h"
51 #include "ardour_ui.h"
52 #include "tempo_lines.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()->color ("meter marker"), buf,
89                                                                  *(const_cast<MeterSection*>(ms))));
90                 } else if ((ts = dynamic_cast<const TempoSection*>(*i)) != 0) {
91                         if (ARDOUR_UI::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()->color ("tempo marker"), 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         ARDOUR::TempoMap::BBTPointList::const_iterator begin;
118         ARDOUR::TempoMap::BBTPointList::const_iterator end;
119
120         compute_current_bbt_points (leftmost_frame, leftmost_frame + current_page_samples(), begin, end);
121         _session->tempo_map().apply_with_metrics (*this, &Editor::draw_metric_marks); // redraw metric markers
122         draw_measures (begin, end);
123         update_tempo_based_rulers (begin, end);
124 }
125
126 void
127 Editor::redisplay_tempo (bool immediate_redraw)
128 {
129         if (!_session) {
130                 return;
131         }
132
133         if (immediate_redraw) {
134                 ARDOUR::TempoMap::BBTPointList::const_iterator current_bbt_points_begin;
135                 ARDOUR::TempoMap::BBTPointList::const_iterator current_bbt_points_end;
136                 
137                 compute_current_bbt_points (leftmost_frame, leftmost_frame + current_page_samples(),
138                                             current_bbt_points_begin, current_bbt_points_end);
139                 draw_measures (current_bbt_points_begin, current_bbt_points_end);
140                 update_tempo_based_rulers (current_bbt_points_begin, current_bbt_points_end); // redraw rulers and measures
141         
142         } else {
143                 Glib::signal_idle().connect (sigc::bind_return (sigc::bind (sigc::mem_fun (*this, &Editor::redisplay_tempo), true), false));
144         }
145 }
146
147 void
148 Editor::compute_current_bbt_points (framepos_t leftmost, framepos_t rightmost,
149                                     ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
150                                     ARDOUR::TempoMap::BBTPointList::const_iterator& end)
151 {
152         if (!_session) {
153                 return;
154         }
155
156         /* prevent negative values of leftmost from creeping into tempomap
157          */
158
159         _session->tempo_map().get_grid (begin, end, max (leftmost, (framepos_t) 0), rightmost);
160 }
161
162 void
163 Editor::hide_measures ()
164 {
165         if (tempo_lines) {
166                 tempo_lines->hide();
167         }
168 }
169
170 void
171 Editor::draw_measures (ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
172                        ARDOUR::TempoMap::BBTPointList::const_iterator& end)
173 {
174         if (_session == 0 || _show_measures == false || distance (begin, end) == 0) {
175                 return;
176         }
177
178         if (tempo_lines == 0) {
179                 tempo_lines = new TempoLines (time_line_group, ArdourCanvas::LineSet::Vertical);
180         }
181
182         const unsigned divisions = get_grid_beat_divisions(leftmost_frame);
183         tempo_lines->draw (begin, end, divisions, leftmost_frame, _session->frame_rate());
184 }
185
186 void
187 Editor::mouse_add_new_tempo_event (framepos_t frame)
188 {
189         if (_session == 0) {
190                 return;
191         }
192
193         TempoMap& map(_session->tempo_map());
194         TempoDialog tempo_dialog (map, frame, _("add"));
195
196         //this causes compiz to display no border.
197         //tempo_dialog.signal_realize().connect (sigc::bind (sigc::ptr_fun (set_decoration), &tempo_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
198
199         ensure_float (tempo_dialog);
200
201         switch (tempo_dialog.run()) {
202         case RESPONSE_ACCEPT:
203                 break;
204         default:
205                 return;
206         }
207
208         double bpm = 0;
209         Timecode::BBT_Time requested;
210
211         bpm = tempo_dialog.get_bpm ();
212         double nt = tempo_dialog.get_note_type();
213         bpm = max (0.01, bpm);
214
215         tempo_dialog.get_bbt_time (requested);
216
217         begin_reversible_command (_("add tempo mark"));
218         XMLNode &before = map.get_state();
219         map.add_tempo (Tempo (bpm,nt), requested);
220         XMLNode &after = map.get_state();
221         _session->add_command(new MementoCommand<TempoMap>(map, &before, &after));
222         commit_reversible_command ();
223
224         //map.dump (cerr);
225 }
226
227 void
228 Editor::mouse_add_new_meter_event (framepos_t frame)
229 {
230         if (_session == 0) {
231                 return;
232         }
233
234
235         TempoMap& map(_session->tempo_map());
236         MeterDialog meter_dialog (map, frame, _("add"));
237
238         //this causes compiz to display no border..
239         //meter_dialog.signal_realize().connect (sigc::bind (sigc::ptr_fun (set_decoration), &meter_dialog, Gdk::WMDecoration (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH)));
240
241         ensure_float (meter_dialog);
242
243         switch (meter_dialog.run ()) {
244         case RESPONSE_ACCEPT:
245                 break;
246         default:
247                 return;
248         }
249
250         double bpb = meter_dialog.get_bpb ();
251         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
252
253         double note_type = meter_dialog.get_note_type ();
254         Timecode::BBT_Time requested;
255
256         meter_dialog.get_bbt_time (requested);
257
258         begin_reversible_command (_("add meter mark"));
259         XMLNode &before = map.get_state();
260         map.add_meter (Meter (bpb, note_type), requested);
261         _session->add_command(new MementoCommand<TempoMap>(map, &before, &map.get_state()));
262         commit_reversible_command ();
263
264         //map.dump (cerr);
265 }
266
267 void
268 Editor::remove_tempo_marker (ArdourCanvas::Item* item)
269 {
270         Marker* marker;
271         TempoMarker* tempo_marker;
272
273         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
274                 fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
275                 abort(); /*NOTREACHED*/
276         }
277
278         if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
279                 fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
280                 abort(); /*NOTREACHED*/
281         }
282
283         if (tempo_marker->tempo().movable()) {
284                 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_tempo_marker), &tempo_marker->tempo()));
285         }
286 }
287
288 void
289 Editor::edit_meter_section (MeterSection* section)
290 {
291         MeterDialog meter_dialog (*section, _("done"));
292
293         ensure_float (meter_dialog);
294
295         switch (meter_dialog.run()) {
296         case RESPONSE_ACCEPT:
297                 break;
298         default:
299                 return;
300         }
301
302         double bpb = meter_dialog.get_bpb ();
303         bpb = max (1.0, bpb); // XXX is this a reasonable limit?
304
305         double note_type = meter_dialog.get_note_type ();
306
307         Timecode::BBT_Time when;
308         meter_dialog.get_bbt_time(when);
309
310         begin_reversible_command (_("replace tempo mark"));
311         XMLNode &before = _session->tempo_map().get_state();
312         _session->tempo_map().replace_meter (*section, Meter (bpb, note_type), when);
313         XMLNode &after = _session->tempo_map().get_state();
314         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
315         commit_reversible_command ();
316 }
317
318 void
319 Editor::edit_tempo_section (TempoSection* section)
320 {
321         TempoDialog tempo_dialog (*section, _("done"));
322
323         ensure_float (tempo_dialog);
324
325         switch (tempo_dialog.run ()) {
326         case RESPONSE_ACCEPT:
327                 break;
328         default:
329                 return;
330         }
331
332         double bpm = tempo_dialog.get_bpm ();
333         double nt = tempo_dialog.get_note_type ();
334         Timecode::BBT_Time when;
335         tempo_dialog.get_bbt_time(when);
336         bpm = max (0.01, bpm);
337
338         begin_reversible_command (_("replace tempo mark"));
339         XMLNode &before = _session->tempo_map().get_state();
340         _session->tempo_map().replace_tempo (*section, Tempo (bpm, nt), when);
341         XMLNode &after = _session->tempo_map().get_state();
342         _session->add_command (new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
343         commit_reversible_command ();
344 }
345
346 void
347 Editor::edit_tempo_marker (TempoMarker& tm)
348 {
349         edit_tempo_section (&tm.tempo());
350 }
351
352 void
353 Editor::edit_meter_marker (MeterMarker& mm)
354 {
355         edit_meter_section (&mm.meter());
356 }
357
358 gint
359 Editor::real_remove_tempo_marker (TempoSection *section)
360 {
361         begin_reversible_command (_("remove tempo mark"));
362         XMLNode &before = _session->tempo_map().get_state();
363         _session->tempo_map().remove_tempo (*section, true);
364         XMLNode &after = _session->tempo_map().get_state();
365         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
366         commit_reversible_command ();
367
368         return FALSE;
369 }
370
371 void
372 Editor::remove_meter_marker (ArdourCanvas::Item* item)
373 {
374         Marker* marker;
375         MeterMarker* meter_marker;
376
377         if ((marker = reinterpret_cast<Marker *> (item->get_data ("marker"))) == 0) {
378                 fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
379                 abort(); /*NOTREACHED*/
380         }
381
382         if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
383                 fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
384                 abort(); /*NOTREACHED*/
385         }
386
387         if (meter_marker->meter().movable()) {
388           Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_meter_marker), &meter_marker->meter()));
389         }
390 }
391
392 gint
393 Editor::real_remove_meter_marker (MeterSection *section)
394 {
395         begin_reversible_command (_("remove tempo mark"));
396         XMLNode &before = _session->tempo_map().get_state();
397         _session->tempo_map().remove_meter (*section, true);
398         XMLNode &after = _session->tempo_map().get_state();
399         _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
400         commit_reversible_command ();
401
402         return FALSE;
403 }