1127ab2da770312bb2eb89778c7b7905942ee292
[ardour.git] / gtk2_ardour / add_route_dialog.cc
1 /*
2   Copyright (C) 2003 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>
21 #include <cmath>
22
23 #include <sigc++/bind.h>
24 #include <gtkmm/stock.h>
25 #include <gtkmm/messagedialog.h>
26 #include <gtkmm/separator.h>
27 #include <gtkmm/table.h>
28
29 #include "pbd/error.h"
30 #include "pbd/convert.h"
31 #include "gtkmm2ext/utils.h"
32
33 #include "ardour/plugin_manager.h"
34 #include "ardour/profile.h"
35 #include "ardour/template_utils.h"
36 #include "ardour/route_group.h"
37 #include "ardour/session.h"
38
39 #include "utils.h"
40 #include "add_route_dialog.h"
41 #include "route_group_dialog.h"
42 #include "i18n.h"
43
44 using namespace Gtk;
45 using namespace Gtkmm2ext;
46 using namespace std;
47 using namespace PBD;
48 using namespace ARDOUR;
49 using namespace ARDOUR_UI_UTILS;
50
51 std::vector<std::string> AddRouteDialog::channel_combo_strings;
52
53 AddRouteDialog::AddRouteDialog ()
54         : ArdourDialog (_("Add Track or Bus"))
55         , routes_adjustment (1, 1, 128, 1, 4)
56         , routes_spinner (routes_adjustment)
57         , configuration_label (_("Configuration:"))
58         , mode_label (_("Record Mode:"))
59         , instrument_label (_("Instrument:"))
60 {
61         set_name ("AddRouteDialog");
62         set_modal (true);
63         set_skip_taskbar_hint (true);
64         set_resizable (false);
65
66         name_template_entry.set_name (X_("AddRouteDialogNameTemplateEntry"));
67         // routes_spinner.set_name (X_("AddRouteDialogSpinner"));
68         channel_combo.set_name (X_("ChannelCountSelector"));
69         mode_combo.set_name (X_("ChannelCountSelector"));
70
71         refill_channel_setups ();
72         refill_route_groups ();
73         refill_track_modes ();
74
75         channel_combo.set_active_text (channel_combo_strings.front());
76
77         track_bus_combo.append_text (_("Audio Tracks"));
78         track_bus_combo.append_text (_("MIDI Tracks"));
79         track_bus_combo.append_text (_("Audio+MIDI Tracks"));
80         track_bus_combo.append_text (_("Busses"));
81         track_bus_combo.set_active (0);
82
83         insert_at_combo.append_text (_("First"));
84         insert_at_combo.append_text (_("Before Selection"));
85         insert_at_combo.append_text (_("After Selection"));
86         insert_at_combo.append_text (_("Last"));
87
88         insert_at_combo.set_active (1);
89
90         VBox* vbox = manage (new VBox);
91         Gtk::Label* l;
92
93         get_vbox()->set_spacing (4);
94
95         vbox->set_spacing (18);
96         vbox->set_border_width (5);
97
98         HBox *type_hbox = manage (new HBox);
99         type_hbox->set_spacing (6);
100
101         /* track/bus choice */
102
103         type_hbox->pack_start (*manage (new Label (_("Add:"))));
104         type_hbox->pack_start (routes_spinner);
105         type_hbox->pack_start (track_bus_combo);
106
107         vbox->pack_start (*type_hbox, false, true);
108
109         VBox* options_box = manage (new VBox);
110         Table *table2 = manage (new Table (3, 3, false));
111
112         options_box->set_spacing (6);
113         table2->set_row_spacings (6);
114         table2->set_col_spacing (1, 6);
115
116         l = manage (new Label (_("<b>Options</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
117         l->set_use_markup ();
118         options_box->pack_start (*l, false, true);
119
120         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
121         l->set_padding (8, 0);
122         table2->attach (*l, 0, 1, 0, 3, Gtk::FILL, Gtk::FILL, 0, 0);
123
124         int n = 0;
125
126         l = manage (new Label (_("Name:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
127         table2->attach (*l, 1, 2, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
128         table2->attach (name_template_entry, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
129         ++n;
130
131         /* Route configuration */
132
133         configuration_label.set_alignment (Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER);
134         table2->attach (configuration_label, 1, 2, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
135         table2->attach (channel_combo, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
136         ++n;
137
138         mode_label.set_alignment (Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER);
139         table2->attach (mode_label, 1, 2, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
140         table2->attach (mode_combo, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
141         ++n;
142
143         instrument_label.set_alignment (Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER);
144         table2->attach (instrument_label, 1, 2, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
145         table2->attach (instrument_combo, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
146         ++n;
147
148         /* Group choice */
149
150         l = manage (new Label (_("Group:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
151         table2->attach (*l, 1, 2, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
152         table2->attach (route_group_combo, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
153         ++n;
154
155         /* New route will be inserted at.. */
156         l = manage (new Label (_("Insert:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
157         table2->attach (*l, 1, 2, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
158         table2->attach (insert_at_combo, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
159         ++n;
160
161         options_box->pack_start (*table2, false, true);
162         vbox->pack_start (*options_box, false, true);
163
164         get_vbox()->pack_start (*vbox, false, false);
165
166         track_bus_combo.signal_changed().connect (sigc::mem_fun (*this, &AddRouteDialog::track_type_chosen));
167         channel_combo.signal_changed().connect (sigc::mem_fun (*this, &AddRouteDialog::channel_combo_changed));
168         channel_combo.set_row_separator_func (sigc::mem_fun (*this, &AddRouteDialog::channel_separator));
169         route_group_combo.set_row_separator_func (sigc::mem_fun (*this, &AddRouteDialog::route_separator));
170         route_group_combo.signal_changed ().connect (sigc::mem_fun (*this, &AddRouteDialog::group_changed));
171
172         show_all_children ();
173
174         /* track template info will be managed whenever
175            this dialog is shown, via ::on_show()
176         */
177
178         add_button (Stock::CANCEL, RESPONSE_CANCEL);
179         add_button (Stock::ADD, RESPONSE_ACCEPT);
180         set_response_sensitive (RESPONSE_ACCEPT, true);
181         set_default_response (RESPONSE_ACCEPT);
182
183         track_type_chosen ();
184 }
185
186 AddRouteDialog::~AddRouteDialog ()
187 {
188 }
189
190 void
191 AddRouteDialog::channel_combo_changed ()
192 {
193         maybe_update_name_template_entry ();
194         refill_track_modes ();
195 }
196
197 AddRouteDialog::TypeWanted
198 AddRouteDialog::type_wanted() const
199 {
200         std::string str = track_bus_combo.get_active_text();
201         if (str == _("Busses")) {
202                 return AudioBus;
203         } else if (str == _("MIDI Tracks")){
204                 return MidiTrack;
205         } else if (str == _("Audio+MIDI Tracks")) {
206                 return MixedTrack;
207         } else {
208                 return AudioTrack;
209         }
210 }
211
212 void
213 AddRouteDialog::maybe_update_name_template_entry ()
214 {
215         if (
216                 name_template_entry.get_text() != "" &&
217                 name_template_entry.get_text() != _("Audio") &&
218                 name_template_entry.get_text() != _("MIDI")  &&
219                 name_template_entry.get_text() != _("Audio+MIDI")  &&
220                 name_template_entry.get_text() != _("Bus")) {
221                 return;
222         }
223
224         switch (type_wanted()) {
225         case AudioTrack:
226                 name_template_entry.set_text (_("Audio"));
227                 break;
228         case MidiTrack:
229                 name_template_entry.set_text (_("MIDI"));
230                 break;
231         case MixedTrack:
232                 name_template_entry.set_text (_("Audio+MIDI"));
233                 break;
234         case AudioBus:
235                 name_template_entry.set_text (_("Bus"));
236                 break;
237         }
238 }
239
240 void
241 AddRouteDialog::track_type_chosen ()
242 {
243         switch (type_wanted()) {
244         case AudioTrack:
245                 mode_combo.set_sensitive (true);
246                 channel_combo.set_sensitive (true);
247                 instrument_combo.set_sensitive (false);
248                 configuration_label.set_sensitive (true);
249                 mode_label.set_sensitive (true);
250                 instrument_label.set_sensitive (false);
251                 break;
252         case MidiTrack:
253                 channel_combo.set_sensitive (false);
254                 mode_combo.set_sensitive (false);
255                 instrument_combo.set_sensitive (true);
256                 configuration_label.set_sensitive (false);
257                 mode_label.set_sensitive (false);
258                 instrument_label.set_sensitive (true);
259                 break;
260         case MixedTrack:
261                 {
262                         MessageDialog msg (_("Audio+MIDI tracks are intended for use <b>ONLY</b> with plugins that use both audio and MIDI input data\n\n"
263                                              "If you do not plan to use such a plugin, then use a normal audio or MIDI track instead."),
264                                            true, MESSAGE_INFO, BUTTONS_OK, true);
265                         msg.set_position (WIN_POS_MOUSE);
266                         msg.run ();
267                 }
268                 channel_combo.set_sensitive (true);
269                 mode_combo.set_sensitive (true);
270                 instrument_combo.set_sensitive (true);
271                 configuration_label.set_sensitive (true);
272                 mode_label.set_sensitive (true);
273                 instrument_label.set_sensitive (true);
274                 break;
275         case AudioBus:
276                 mode_combo.set_sensitive (false);
277                 channel_combo.set_sensitive (true);
278                 instrument_combo.set_sensitive (false);
279                 configuration_label.set_sensitive (true);
280                 mode_label.set_sensitive (true);
281                 instrument_label.set_sensitive (false);
282                 break;
283         }
284
285         maybe_update_name_template_entry ();
286 }
287
288
289 string
290 AddRouteDialog::name_template () const
291 {
292         return name_template_entry.get_text ();
293 }
294
295 bool
296 AddRouteDialog::name_template_is_default() const
297 {
298         string n = name_template();
299
300         if (n == _("Audio") ||
301             n == _("MIDI") ||
302             n == _("Audio+MIDI") ||
303             n == _("Bus")) {
304                 return true;
305         }
306
307         return false;
308 }
309
310 int
311 AddRouteDialog::count ()
312 {
313         return (int) floor (routes_adjustment.get_value ());
314 }
315
316 void
317 AddRouteDialog::refill_track_modes ()
318 {
319         vector<string> s;
320
321         s.push_back (_("Normal"));
322         s.push_back (_("Non Layered"));
323         s.push_back (_("Tape"));
324
325         set_popdown_strings (mode_combo, s);
326         mode_combo.set_active_text (s.front());
327 }
328
329 ARDOUR::TrackMode
330 AddRouteDialog::mode ()
331 {
332         std::string str = mode_combo.get_active_text();
333         if (str == _("Normal")) {
334                 return ARDOUR::Normal;
335         } else if (str == _("Non Layered")){
336                 return ARDOUR::NonLayered;
337         } else if (str == _("Tape")) {
338                 return ARDOUR::Destructive;
339         } else {
340                 fatal << string_compose (X_("programming error: unknown track mode in add route dialog combo = %1"), str)
341                       << endmsg;
342                 abort(); /*NOTREACHED*/
343         }
344         /* keep gcc happy */
345         return ARDOUR::Normal;
346 }
347
348 ChanCount
349 AddRouteDialog::channels ()
350 {
351         ChanCount ret;
352         string str;
353         switch (type_wanted()) {
354         case AudioTrack:
355         case AudioBus:
356                 str = channel_combo.get_active_text();
357                 for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
358                         if (str == (*i).name) {
359                                 ret.set (DataType::AUDIO, (*i).channels);
360                                 break;
361                         }
362                 }
363                 ret.set (DataType::MIDI, 0);
364                 break;
365
366         case MidiTrack:
367                 ret.set (DataType::AUDIO, 0);
368                 ret.set (DataType::MIDI, 1);
369                 break;
370
371         case MixedTrack:
372                 str = channel_combo.get_active_text();
373                 for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
374                         if (str == (*i).name) {
375                                 ret.set (DataType::AUDIO, (*i).channels);
376                                 break;
377                         }
378                 }
379                 ret.set (DataType::MIDI, 1);
380                 break;
381         }
382
383         return ret;
384 }
385
386 string
387 AddRouteDialog::track_template ()
388 {
389         string str = channel_combo.get_active_text();
390
391         for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
392                 if (str == (*i).name) {
393                         return (*i).template_path;
394                 }
395         }
396
397         return string();
398 }
399
400 void
401 AddRouteDialog::on_show ()
402 {
403         refill_channel_setups ();
404         refill_route_groups ();
405
406         Dialog::on_show ();
407 }
408
409 void
410 AddRouteDialog::refill_channel_setups ()
411 {
412         ChannelSetup chn;
413
414         route_templates.clear ();
415         channel_combo_strings.clear ();
416         channel_setups.clear ();
417
418         chn.name = _("Mono");
419         chn.channels = 1;
420         channel_setups.push_back (chn);
421
422         chn.name = _("Stereo");
423         chn.channels = 2;
424         channel_setups.push_back (chn);
425
426         chn.name = "separator";
427         channel_setups.push_back (chn);
428
429         ARDOUR::find_route_templates (route_templates);
430
431         if (!route_templates.empty()) {
432                 vector<string> v;
433                 for (vector<TemplateInfo>::iterator x = route_templates.begin(); x != route_templates.end(); ++x) {
434                         chn.name = x->name;
435                         chn.channels = 0;
436                         chn.template_path = x->path;
437                         channel_setups.push_back (chn);
438                 }
439         }
440
441         /* clear template path for the rest */
442
443         chn.template_path = "";
444
445         chn.name = _("3 Channel");
446         chn.channels = 3;
447         channel_setups.push_back (chn);
448
449         chn.name = _("4 Channel");
450         chn.channels = 4;
451         channel_setups.push_back (chn);
452
453         chn.name = _("5 Channel");
454         chn.channels = 5;
455         channel_setups.push_back (chn);
456
457         chn.name = _("6 Channel");
458         chn.channels = 6;
459         channel_setups.push_back (chn);
460
461         chn.name = _("8 Channel");
462         chn.channels = 8;
463         channel_setups.push_back (chn);
464
465         chn.name = _("12 Channel");
466         chn.channels = 12;
467         channel_setups.push_back (chn);
468
469         chn.name = _("Custom");
470         chn.channels = 0;
471         channel_setups.push_back (chn);
472
473         for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
474                 channel_combo_strings.push_back ((*i).name);
475         }
476
477         set_popdown_strings (channel_combo, channel_combo_strings);
478         channel_combo.set_active_text (channel_combo_strings.front());
479 }
480
481 void
482 AddRouteDialog::add_route_group (RouteGroup* g)
483 {
484         route_group_combo.insert_text (3, g->name ());
485 }
486
487 RouteGroup*
488 AddRouteDialog::route_group ()
489 {
490         if (!_session || route_group_combo.get_active_row_number () == 2) {
491                 return 0;
492         }
493
494         return _session->route_group_by_name (route_group_combo.get_active_text());
495 }
496
497 void
498 AddRouteDialog::refill_route_groups ()
499 {
500         route_group_combo.clear ();
501         route_group_combo.append_text (_("New Group..."));
502
503         route_group_combo.append_text ("separator");
504
505         route_group_combo.append_text (_("No Group"));
506
507         if (_session) {
508                 _session->foreach_route_group (sigc::mem_fun (*this, &AddRouteDialog::add_route_group));
509         }
510
511         route_group_combo.set_active (2);
512 }
513
514 void
515 AddRouteDialog::group_changed ()
516 {
517         if (_session && route_group_combo.get_active_text () == _("New Group...")) {
518                 RouteGroup* g = new RouteGroup (*_session, "");
519                 RouteGroupDialog d (g, true);
520
521                 if (d.do_run ()) {
522                         delete g;
523                         route_group_combo.set_active (2);
524                 } else {
525                         if (_session) {
526                                 _session->add_route_group (g);
527                         }
528                         add_route_group (g);
529                         route_group_combo.set_active (3);
530                 }
531         }
532 }
533
534 AddRouteDialog::InsertAt
535 AddRouteDialog::insert_at ()
536 {
537         std::string str = insert_at_combo.get_active_text();
538
539         if (str == _("First")) {
540                 return First;
541         } else if (str == _("After Selection")) {
542                 return AfterSelection;
543         } else if (str == _("Before Selection")){
544                 return BeforeSelection;
545         }
546         return Last;
547 }
548
549 bool
550 AddRouteDialog::channel_separator (const Glib::RefPtr<Gtk::TreeModel> &, const Gtk::TreeModel::iterator &i)
551 {
552         channel_combo.set_active (i);
553
554         return channel_combo.get_active_text () == "separator";
555 }
556
557 bool
558 AddRouteDialog::route_separator (const Glib::RefPtr<Gtk::TreeModel> &, const Gtk::TreeModel::iterator &i)
559 {
560         route_group_combo.set_active (i);
561
562         return route_group_combo.get_active_text () == "separator";
563 }
564
565 PluginInfoPtr
566 AddRouteDialog::requested_instrument ()
567 {
568         return instrument_combo.selected_instrument();
569 }