OSC: Changed gainVCA to gainfader as VCA is already used.
[ardour.git] / gtk2_ardour / tempo_dialog.cc
1 /*
2     Copyright (C) 2000-2007 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 snprintf, grrr
21
22 #include <gtkmm/stock.h>
23
24 #include "gtkmm2ext/utils.h"
25
26 #include "tempo_dialog.h"
27 #include "ui_config.h"
28
29 #include "i18n.h"
30
31 using namespace std;
32 using namespace Gtk;
33 using namespace Gtkmm2ext;
34 using namespace ARDOUR;
35 using namespace PBD;
36
37 TempoDialog::TempoDialog (TempoMap& map, framepos_t frame, const string&)
38         : ArdourDialog (_("New Tempo"))
39         , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
40         , bpm_spinner (bpm_adjustment)
41         , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
42         , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
43         , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
44         , tap_tempo_button (_("Tap tempo"))
45 {
46         Timecode::BBT_Time when;
47         Tempo tempo (map.tempo_at (frame));
48         map.bbt_time (frame, when);
49
50         init (when, tempo.beats_per_minute(), tempo.note_type(), true);
51 }
52
53 TempoDialog::TempoDialog (TempoSection& section, const string&)
54         : ArdourDialog (_("Edit Tempo"))
55         , bpm_adjustment (60.0, 1.0, 999.9, 0.1, 1.0)
56         , bpm_spinner (bpm_adjustment)
57         , when_bar_label (_("bar:"), ALIGN_LEFT, ALIGN_CENTER)
58         , when_beat_label (_("beat:"), ALIGN_LEFT, ALIGN_CENTER)
59         , pulse_selector_label (_("Pulse note"), ALIGN_LEFT, ALIGN_CENTER)
60         , tap_tempo_button (_("Tap tempo"))
61 {
62         init (section.start(), section.beats_per_minute(), section.note_type(), section.movable());
63 }
64
65 void
66 TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double note_type, bool movable)
67 {
68         vector<string> strings;
69         NoteTypes::iterator x;
70
71         bpm_spinner.set_numeric (true);
72         bpm_spinner.set_digits (2);
73         bpm_spinner.set_wrap (true);
74         bpm_spinner.set_value (bpm);
75         bpm_spinner.set_alignment (1.0);
76
77         note_types.insert (make_pair (_("whole"), 1.0));
78         strings.push_back (_("whole"));
79         note_types.insert (make_pair (_("second"), 2.0));
80         strings.push_back (_("second"));
81         note_types.insert (make_pair (_("third"), 3.0));
82         strings.push_back (_("third"));
83         note_types.insert (make_pair (_("quarter"), 4.0));
84         strings.push_back (_("quarter"));
85         note_types.insert (make_pair (_("eighth"), 8.0));
86         strings.push_back (_("eighth"));
87         note_types.insert (make_pair (_("sixteenth"), 16.0));
88         strings.push_back (_("sixteenth"));
89         note_types.insert (make_pair (_("thirty-second"), 32.0));
90         strings.push_back (_("thirty-second"));
91         note_types.insert (make_pair (_("sixty-fourth"), 64.0));
92         strings.push_back (_("sixty-fourth"));
93         note_types.insert (make_pair (_("one-hundred-twenty-eighth"), 128.0));
94         strings.push_back (_("one-hundred-twenty-eighth"));
95
96         set_popdown_strings (pulse_selector, strings);
97
98         for (x = note_types.begin(); x != note_types.end(); ++x) {
99                 if (x->second == note_type) {
100                         pulse_selector.set_active_text (x->first);
101                         break;
102                 }
103         }
104
105         if (x == note_types.end()) {
106                 pulse_selector.set_active_text (strings[3]); // "quarter"
107         }
108
109         Table* table;
110
111         if (UIConfiguration::instance().get_allow_non_quarter_pulse()) {
112                 table = manage (new Table (5, 5));
113         } else {
114                 table = manage (new Table (5, 4));
115         }
116
117         table->set_spacings (6);
118         table->set_homogeneous (false);
119
120         int row;
121         Label* bpm_label = manage (new Label(_("Beats per minute:"), ALIGN_LEFT, ALIGN_CENTER));
122         table->attach (*bpm_label, 0, 1, 0, 1);
123         table->attach (bpm_spinner, 1, 5, 0, 1);
124
125         if (UIConfiguration::instance().get_allow_non_quarter_pulse()) {
126                 table->attach (pulse_selector_label, 0, 1, 1, 2);
127                 table->attach (pulse_selector, 1, 5, 1, 2);
128                 row = 2;
129         } else {
130                 row = 1;
131         }
132
133         char buf[64];
134
135         snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
136         when_bar_entry.set_text (buf);
137         snprintf (buf, sizeof (buf), "%" PRIu32, when.beats);
138         when_beat_entry.set_text (buf);
139
140         if (movable) {
141                 when_bar_entry.set_width_chars(4);
142                 when_beat_entry.set_width_chars (4);
143                 when_bar_entry.set_alignment (1.0);
144                 when_beat_entry.set_alignment (1.0);
145
146                 when_bar_label.set_name ("MetricLabel");
147                 when_beat_label.set_name ("MetricLabel");
148
149                 table->attach (when_bar_label, 1, 2, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
150                 table->attach (when_bar_entry, 2, 3, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
151
152                 table->attach (when_beat_label, 3, 4, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
153                 table->attach (when_beat_entry, 4, 5, row, row+1, Gtk::AttachOptions(0), Gtk::AttachOptions(0));
154
155                 Label* when_label = manage (new Label(_("Tempo begins at"), ALIGN_LEFT, ALIGN_CENTER));
156                 table->attach (*when_label, 0, 1, row, row+1);
157         }
158
159         get_vbox()->set_border_width (12);
160         get_vbox()->pack_end (*table);
161         table->show_all ();
162
163         add_button (Stock::CANCEL, RESPONSE_CANCEL);
164         add_button (Stock::APPLY, RESPONSE_ACCEPT);
165         set_response_sensitive (RESPONSE_ACCEPT, true);
166         set_default_response (RESPONSE_ACCEPT);
167
168         bpm_spinner.show ();
169         tap_tempo_button.show ();
170         get_vbox()->pack_end (tap_tempo_button);
171         bpm_spinner.grab_focus ();
172
173         set_name ("MetricDialog");
174
175         bpm_spinner.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
176         bpm_spinner.signal_button_press_event().connect (sigc::mem_fun (*this, &TempoDialog::bpm_button_press), false);
177         bpm_spinner.signal_button_release_event().connect (sigc::mem_fun (*this, &TempoDialog::bpm_button_release), false);
178         bpm_spinner.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::bpm_changed));
179         when_bar_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
180         when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TempoDialog::entry_key_release), false);
181         when_beat_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TempoDialog::response), RESPONSE_ACCEPT));
182         when_beat_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TempoDialog::entry_key_release), false);
183         pulse_selector.signal_changed().connect (sigc::mem_fun (*this, &TempoDialog::pulse_change));
184         tap_tempo_button.signal_button_press_event().connect (sigc::mem_fun (*this, &TempoDialog::tap_tempo_button_press), false);
185         tap_tempo_button.signal_focus_out_event().connect (sigc::mem_fun (*this, &TempoDialog::tap_tempo_focus_out));
186
187         tapped = false;
188 }
189
190 bool
191 TempoDialog::is_user_input_valid() const
192 {
193         return (when_beat_entry.get_text() != "")
194                 && (when_bar_entry.get_text() != "")
195                 && (when_bar_entry.get_text() != "0");
196 }
197
198 void
199 TempoDialog::bpm_changed ()
200 {
201         set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
202 }
203
204 bool
205 TempoDialog::bpm_button_press (GdkEventButton*)
206 {
207         return false;
208 }
209
210 bool
211 TempoDialog::bpm_button_release (GdkEventButton*)
212 {
213         /* the value has been modified, accept should work now */
214
215         set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
216         return false;
217 }
218
219 bool
220 TempoDialog::entry_key_release (GdkEventKey*)
221 {
222         set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
223         return false;
224 }
225
226 double
227 TempoDialog::get_bpm ()
228 {
229         return bpm_spinner.get_value ();
230 }
231
232 bool
233 TempoDialog::get_bbt_time (Timecode::BBT_Time& requested)
234 {
235         if (sscanf (when_bar_entry.get_text().c_str(), "%" PRIu32, &requested.bars) != 1) {
236                 return false;
237         }
238
239         if (sscanf (when_beat_entry.get_text().c_str(), "%" PRIu32, &requested.beats) != 1) {
240                 return false;
241         }
242
243         requested.ticks = 0;
244
245         return true;
246 }
247
248 double
249 TempoDialog::get_note_type ()
250 {
251         NoteTypes::iterator x = note_types.find (pulse_selector.get_active_text());
252
253         if (x == note_types.end()) {
254                 error << string_compose(_("incomprehensible pulse note type (%1)"), pulse_selector.get_active_text()) << endmsg;
255                 return 0;
256         }
257
258         return x->second;
259 }
260
261 void
262 TempoDialog::pulse_change ()
263 {
264         set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
265 }
266
267 bool
268 TempoDialog::tap_tempo_button_press (GdkEventButton *ev)
269 {
270         double t;
271
272         // Linear least-squares regression
273         if (tapped) {
274                 t = 1e-6 * (g_get_monotonic_time () - first_t); // Subtract first_t to avoid precision problems
275
276                 double n = tap_count;
277                 sum_y += t;
278                 sum_x += n;
279                 sum_xy += n * t;
280                 sum_xx += n * n;
281                 double T = (sum_xy/n - sum_x/n * sum_y/n) / (sum_xx/n - sum_x/n * sum_x/n);
282
283                 if (t - last_t < T / 1.2 || t - last_t > T * 1.2) {
284                         tapped = false;
285                 } else {
286                         bpm_spinner.set_value (60.0 / T);
287                 }
288         }
289         if (!tapped) {
290                 first_t = g_get_monotonic_time ();
291                 t = 0.0;
292                 sum_y = 0.0;
293                 sum_x = 1.0;
294                 sum_xy = 0.0;
295                 sum_xx = 1.0;
296                 tap_count = 1.0;
297
298                 tapped = true;
299         }
300         tap_count++;
301         last_t = t;
302
303         return true;
304 }
305
306 bool
307 TempoDialog::tap_tempo_focus_out (GdkEventFocus* )
308 {
309         tapped = false;
310         return false;
311 }
312
313 MeterDialog::MeterDialog (TempoMap& map, framepos_t frame, const string&)
314         : ArdourDialog (_("New Meter"))
315 {
316         Timecode::BBT_Time when;
317         frame = map.round_to_bar(frame, RoundNearest);
318         Meter meter (map.meter_at(frame));
319
320         map.bbt_time (frame, when);
321         init (when, meter.divisions_per_bar(), meter.note_divisor(), true);
322 }
323
324 MeterDialog::MeterDialog (MeterSection& section, const string&)
325         : ArdourDialog (_("Edit Meter"))
326 {
327         init (section.start(), section.divisions_per_bar(), section.note_divisor(), section.movable());
328 }
329
330 void
331 MeterDialog::init (const Timecode::BBT_Time& when, double bpb, double divisor, bool movable)
332 {
333         char buf[64];
334         vector<string> strings;
335         NoteTypes::iterator x;
336
337         snprintf (buf, sizeof (buf), "%.2f", bpb);
338         bpb_entry.set_text (buf);
339         bpb_entry.select_region (0, -1);
340         bpb_entry.set_alignment (1.0);
341
342         note_types.insert (make_pair (_("whole"), 1.0));
343         strings.push_back (_("whole"));
344         note_types.insert (make_pair (_("second"), 2.0));
345         strings.push_back (_("second"));
346         note_types.insert (make_pair (_("third"), 3.0));
347         strings.push_back (_("third"));
348         note_types.insert (make_pair (_("quarter"), 4.0));
349         strings.push_back (_("quarter"));
350         note_types.insert (make_pair (_("eighth"), 8.0));
351         strings.push_back (_("eighth"));
352         note_types.insert (make_pair (_("sixteenth"), 16.0));
353         strings.push_back (_("sixteenth"));
354         note_types.insert (make_pair (_("thirty-second"), 32.0));
355         strings.push_back (_("thirty-second"));
356         note_types.insert (make_pair (_("sixty-fourth"), 64.0));
357         strings.push_back (_("sixty-fourth"));
358         note_types.insert (make_pair (_("one-hundred-twenty-eighth"), 128.0));
359         strings.push_back (_("one-hundred-twenty-eighth"));
360
361         set_popdown_strings (note_type, strings);
362
363         for (x = note_types.begin(); x != note_types.end(); ++x) {
364                 if (x->second == divisor) {
365                         note_type.set_active_text (x->first);
366                         break;
367                 }
368         }
369
370         if (x == note_types.end()) {
371                 note_type.set_active_text (strings[3]); // "quarter"
372         }
373
374         Label* note_label = manage (new Label (_("Note value:"), ALIGN_LEFT, ALIGN_CENTER));
375         Label* bpb_label = manage (new Label (_("Beats per bar:"), ALIGN_LEFT, ALIGN_CENTER));
376         Table* table = manage (new Table (3, 2));
377         table->set_spacings (6);
378
379         table->attach (*bpb_label, 0, 1, 0, 1, FILL|EXPAND, FILL|EXPAND);
380         table->attach (bpb_entry, 1, 2, 0, 1, FILL|EXPAND, FILL|EXPAND);
381         table->attach (*note_label, 0, 1, 1, 2, FILL|EXPAND, FILL|EXPAND);
382         table->attach (note_type, 1, 2, 1, 2, FILL|EXPAND, SHRINK);
383
384         snprintf (buf, sizeof (buf), "%" PRIu32, when.bars);
385         when_bar_entry.set_text (buf);
386         when_bar_entry.set_alignment (1.0);
387
388         if (movable) {
389                 Label* when_label = manage (new Label(_("Meter begins at bar:"), ALIGN_LEFT, ALIGN_CENTER));
390
391                 table->attach (*when_label, 0, 1, 2, 3, FILL | EXPAND, FILL | EXPAND);
392                 table->attach (when_bar_entry, 1, 2, 2, 3, FILL | EXPAND, FILL | EXPAND);
393         }
394
395         get_vbox()->set_border_width (12);
396         get_vbox()->pack_start (*table, false, false);
397
398         add_button (Stock::CANCEL, RESPONSE_CANCEL);
399         add_button (Stock::APPLY, RESPONSE_ACCEPT);
400         set_response_sensitive (RESPONSE_ACCEPT, true);
401         set_default_response (RESPONSE_ACCEPT);
402
403         get_vbox()->show_all ();
404
405         set_name ("MetricDialog");
406         bpb_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
407         bpb_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
408         bpb_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
409         when_bar_entry.signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &MeterDialog::response), RESPONSE_ACCEPT));
410         when_bar_entry.signal_key_press_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_press), false);
411         when_bar_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &MeterDialog::entry_key_release));
412         note_type.signal_changed().connect (sigc::mem_fun (*this, &MeterDialog::note_type_change));
413 }
414
415 bool
416 MeterDialog::is_user_input_valid() const
417 {
418         return (when_bar_entry.get_text() != "")
419                 && (when_bar_entry.get_text() != "0")
420                 && (bpb_entry.get_text() != "");
421 }
422
423 bool
424 MeterDialog::entry_key_press (GdkEventKey* ev)
425 {
426
427         switch (ev->keyval) {
428
429         case GDK_0:
430         case GDK_1:
431         case GDK_2:
432         case GDK_3:
433         case GDK_4:
434         case GDK_5:
435         case GDK_6:
436         case GDK_7:
437         case GDK_8:
438         case GDK_9:
439         case GDK_KP_0:
440         case GDK_KP_1:
441         case GDK_KP_2:
442         case GDK_KP_3:
443         case GDK_KP_4:
444         case GDK_KP_5:
445         case GDK_KP_6:
446         case GDK_KP_7:
447         case GDK_KP_8:
448         case GDK_KP_9:
449         case GDK_period:
450         case GDK_comma:
451         case  GDK_KP_Delete:
452         case  GDK_KP_Enter:
453         case  GDK_Delete:
454         case  GDK_BackSpace:
455         case  GDK_Escape:
456         case  GDK_Return:
457         case  GDK_Home:
458         case  GDK_End:
459         case  GDK_Left:
460         case  GDK_Right:
461         case  GDK_Num_Lock:
462         case  GDK_Tab:
463                 return FALSE;
464         default:
465                 break;
466         }
467
468         return TRUE;
469 }
470
471 bool
472 MeterDialog::entry_key_release (GdkEventKey*)
473 {
474         set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
475         return false;
476 }
477
478 void
479 MeterDialog::note_type_change ()
480 {
481         set_response_sensitive (RESPONSE_ACCEPT, is_user_input_valid());
482 }
483
484 double
485 MeterDialog::get_bpb ()
486 {
487         double bpb = 0;
488
489         if (sscanf (bpb_entry.get_text().c_str(), "%lf", &bpb) != 1) {
490                 return 0;
491         }
492
493         return bpb;
494 }
495
496 double
497 MeterDialog::get_note_type ()
498 {
499         NoteTypes::iterator x = note_types.find (note_type.get_active_text());
500
501         if (x == note_types.end()) {
502                 error << string_compose(_("incomprehensible meter note type (%1)"), note_type.get_active_text()) << endmsg;
503                 return 0;
504         }
505
506         return x->second;
507 }
508
509 bool
510 MeterDialog::get_bbt_time (Timecode::BBT_Time& requested)
511 {
512         if (sscanf (when_bar_entry.get_text().c_str(), "%" PRIu32, &requested.bars) != 1) {
513                 return false;
514         }
515
516         requested.beats = 1;
517         requested.ticks = 0;
518
519         return true;
520 }