tweak Smart Mode to be more like Mixbus. Smart mode is just a modifier on Object...
[ardour.git] / gtk2_ardour / ardour_ui2.cc
1 /*
2     Copyright (C) 1999 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 <fcntl.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include <cerrno>
28 #include <iostream>
29 #include <cmath>
30
31 #include <sigc++/bind.h>
32 #include "pbd/error.h"
33 #include "pbd/basename.h"
34 #include "pbd/fastlog.h"
35 #include <gtkmm2ext/cairocell.h>
36 #include <gtkmm2ext/utils.h>
37 #include <gtkmm2ext/click_box.h>
38 #include <gtkmm2ext/tearoff.h>
39
40 #include "ardour/profile.h"
41 #include "ardour/session.h"
42 #include "ardour/types.h"
43
44 #include "ardour_ui.h"
45 #include "keyboard.h"
46 #include "public_editor.h"
47 #include "audio_clock.h"
48 #include "actions.h"
49 #include "main_clock.h"
50 #include "utils.h"
51 #include "theme_manager.h"
52 #include "midi_tracer.h"
53 #include "shuttle_control.h"
54 #include "global_port_matrix.h"
55 #include "location_ui.h"
56 #include "rc_option_editor.h"
57 #include "time_info_box.h"
58
59 #include "i18n.h"
60
61 using namespace std;
62 using namespace ARDOUR;
63 using namespace PBD;
64 using namespace Gtkmm2ext;
65 using namespace Gtk;
66 using namespace Glib;
67
68 int
69 ARDOUR_UI::setup_windows ()
70 {
71         if (create_editor ()) {
72                 error << _("UI: cannot setup editor") << endmsg;
73                 return -1;
74         }
75
76         if (create_mixer ()) {
77                 error << _("UI: cannot setup mixer") << endmsg;
78                 return -1;
79         }
80
81         /* all other dialogs are created conditionally */
82
83         we_have_dependents ();
84
85         theme_manager->signal_unmap().connect (sigc::bind (sigc::ptr_fun(&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/ToggleThemeManager")));
86
87 #ifdef TOP_MENUBAR
88         HBox* status_bar_packer = manage (new HBox);
89         EventBox* status_bar_event_box = manage (new EventBox);
90
91         status_bar_event_box->add (status_bar_label);
92         status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
93         status_bar_label.set_size_request (300, -1);
94         status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
95         status_bar_packer->pack_start (error_log_button, false, false);
96
97         status_bar_label.show ();
98         status_bar_event_box->show ();
99         status_bar_packer->show ();
100         error_log_button.show ();
101
102         error_log_button.signal_clicked().connect (mem_fun (*this, &UI::toggle_errors));
103         status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
104
105         editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
106         editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 6);
107 #else
108         top_packer.pack_start (menu_bar_base, false, false);
109 #endif
110
111         top_packer.pack_start (transport_frame, false, false);
112
113         editor->add_toplevel_controls (top_packer);
114
115         setup_transport();
116
117         build_menu_bar ();
118
119         setup_tooltips ();
120
121         return 0;
122 }
123
124 void
125 ARDOUR_UI::setup_tooltips ()
126 {
127         set_tip (roll_button, _("Play from playhead"));
128         set_tip (stop_button, _("Stop playback"));
129         set_tip (rec_button, _("Toggle record"));
130         set_tip (play_selection_button, _("Play range/selection"));
131         set_tip (goto_start_button, _("Go to start of session"));
132         set_tip (goto_end_button, _("Go to end of session"));
133         set_tip (auto_loop_button, _("Play loop range"));
134         set_tip (midi_panic_button, _("MIDI Panic\nSend note off and reset controller messages on all MIDI channels"));
135         set_tip (auto_return_button, _("Return to last playback start when stopped"));
136         set_tip (follow_edits_button, _("Playhead follows Range Selections and Edits"));
137         set_tip (auto_input_button, _("Be sensible about input monitoring"));
138         set_tip (click_button, _("Enable/Disable audio click"));
139         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
140         set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
141         set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
142         set_tip (primary_clock, _("<b>Primary Clock</b> right-click to set display mode. Click to edit, click+drag a digit or mouse-over+scroll wheel to modify.\nText edits: right-to-left overwrite <tt>Esc</tt>: cancel; <tt>Enter</tt>: confirm; postfix the edit with '+' or '-' to enter delta times.\nSee <span color=\"blue\">http://ardour.org/a3_features_clocks</span> for details."));
143         set_tip (secondary_clock, _("<b>Secondary Clock</b> right-click to set display mode. Click to edit, click+drag a digit or mouse-over+scroll wheel to modify.\nText edits: right-to-left overwrite <tt>Esc</tt>: cancel; <tt>Enter</tt>: confirm; postfix the edit with '+' or '-' to enter delta times.\nSee <span color=\"blue\">http://ardour.org/a3_features_clocks</span> for details."));
144
145         synchronize_sync_source_and_video_pullup ();
146
147         editor->setup_tooltips ();
148 }
149
150 bool
151 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
152 {
153         bool handled = false;
154
155         switch (ev->button) {
156         case 1:
157                 status_bar_label.set_text ("");
158                 handled = true;
159                 break;
160         default:
161                 break;
162         }
163
164         return handled;
165 }
166
167 void
168 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
169 {
170         string text;
171
172         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
173 #ifdef TOP_MENUBAR
174
175         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
176                 text = "<span color=\"red\" weight=\"bold\">";
177         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
178                 text = "<span color=\"yellow\" weight=\"bold\">";
179         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
180                 text = "<span color=\"green\" weight=\"bold\">";
181         } else {
182                 text = "<span color=\"white\" weight=\"bold\">???";
183         }
184
185         text += prefix;
186         text += "</span>";
187         text += msg;
188
189         status_bar_label.set_markup (text);
190 #endif
191 }
192
193 XMLNode*
194 ARDOUR_UI::tearoff_settings (const char* name) const
195 {
196         XMLNode* ui_node = Config->extra_xml(X_("UI"));
197
198         if (ui_node) {
199                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
200                 if (tearoff_node) {
201                         XMLNode* mnode = tearoff_node->child (name);
202                         return mnode;
203                 }
204         }
205
206         return 0;
207 }
208
209 void
210 ARDOUR_UI::setup_transport ()
211 {
212         RefPtr<Action> act;
213
214         transport_tearoff_hbox.set_border_width (3);
215         transport_tearoff_hbox.set_spacing (3);
216
217         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
218         transport_tearoff->set_name ("TransportBase");
219         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
220
221         if (Profile->get_sae()) {
222                 transport_tearoff->set_can_be_torn_off (false);
223         }
224
225         transport_hbox.pack_start (*transport_tearoff, true, false);
226
227         transport_base.set_name ("TransportBase");
228         transport_base.add (transport_hbox);
229
230         transport_frame.set_shadow_type (SHADOW_OUT);
231         transport_frame.set_name ("BaseFrame");
232         transport_frame.add (transport_base);
233
234         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
235                                                  static_cast<Widget*>(&transport_frame)));
236         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
237                                                  static_cast<Widget*> (&transport_frame), 1));
238         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
239                                                  static_cast<Widget*>(&transport_frame)));
240         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
241                                                   static_cast<Widget*> (&transport_frame), 1));
242
243         auto_return_button.set_text(_("Auto Return"));
244         follow_edits_button.set_text(_("Follow Edits"));
245         auto_input_button.set_text (_("Auto Input"));
246
247         click_button.set_image (get_icon (X_("metronome")));
248         act = ActionManager::get_action ("Transport", "ToggleClick");
249         click_button.set_related_action (act);
250         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
251
252         auto_return_button.set_name ("transport option button");
253         follow_edits_button.set_name ("transport option button");
254         auto_input_button.set_name ("transport option button");
255
256         /* these have to provide a clear indication of active state */
257
258         click_button.set_name ("transport button");
259         sync_button.set_name ("transport active option button");
260
261         stop_button.set_active (true);
262
263         goto_start_button.set_image (get_icon (X_("transport_start")));
264         goto_end_button.set_image (get_icon (X_("transport_end")));
265         roll_button.set_image (get_icon (X_("transport_play")));
266         stop_button.set_image (get_icon (X_("transport_stop")));
267         play_selection_button.set_image (get_icon (X_("transport_range")));
268         rec_button.set_image (get_icon (X_("transport_record")));
269         auto_loop_button.set_image (get_icon (X_("transport_loop")));
270
271         midi_panic_button.set_image (get_icon (X_("midi_panic")));
272         /* the icon for this has an odd aspect ratio, so fatten up the button */
273         midi_panic_button.set_size_request (25, -1);
274         
275         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
276         stop_button.set_related_action (act);
277         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
278         roll_button.set_related_action (act);
279         act = ActionManager::get_action (X_("Transport"), X_("Record"));
280         rec_button.set_related_action (act);
281         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
282         goto_start_button.set_related_action (act);
283         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
284         goto_end_button.set_related_action (act);
285         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
286         auto_loop_button.set_related_action (act);
287         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
288         play_selection_button.set_related_action (act);
289         act = ActionManager::get_action (X_("MIDI"), X_("panic"));
290         midi_panic_button.set_related_action (act);
291         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
292         sync_button.set_related_action (act);
293
294         /* clocks, etc. */
295
296         ARDOUR_UI::Clock.connect (sigc::mem_fun (primary_clock, &AudioClock::set));
297         ARDOUR_UI::Clock.connect (sigc::mem_fun (secondary_clock, &AudioClock::set));
298
299         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
300         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
301         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
302
303         act = ActionManager::get_action ("Transport", "ToggleAutoReturn");
304         auto_return_button.set_related_action (act);
305         act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
306         follow_edits_button.set_related_action (act);
307         act = ActionManager::get_action ("Transport", "ToggleAutoInput");
308         auto_input_button.set_related_action (act);
309
310         /* alerts */
311
312         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
313
314         solo_alert_button.set_name ("rude solo");
315         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
316         auditioning_alert_button.set_name ("rude audition");
317         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
318         feedback_alert_button.set_name ("feedback alert");
319         feedback_alert_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::feedback_alert_press), false);
320
321         alert_box.pack_start (solo_alert_button, true, false);
322         alert_box.pack_start (auditioning_alert_button, true, false);
323         alert_box.pack_start (feedback_alert_button, true, false);
324
325         /* all transport buttons should be the same size vertically and
326          * horizontally 
327          */
328
329         Glib::RefPtr<SizeGroup> transport_button_size_group = SizeGroup::create (SIZE_GROUP_BOTH);
330         transport_button_size_group->add_widget (goto_start_button);
331         transport_button_size_group->add_widget (goto_end_button);
332         transport_button_size_group->add_widget (auto_loop_button);
333         transport_button_size_group->add_widget (rec_button);
334         transport_button_size_group->add_widget (play_selection_button);
335         transport_button_size_group->add_widget (roll_button);
336         transport_button_size_group->add_widget (stop_button);
337
338         HBox* tbox1 = manage (new HBox);
339         HBox* tbox2 = manage (new HBox);
340         HBox* tbox = manage (new HBox);
341
342         VBox* vbox1 = manage (new VBox);
343         VBox* vbox2 = manage (new VBox);
344
345         Alignment* a1 = manage (new Alignment);
346         Alignment* a2 = manage (new Alignment);
347
348         tbox1->set_spacing (2);
349         tbox2->set_spacing (2);
350         tbox->set_spacing (2);
351
352         tbox1->pack_start (click_button, false, false, 5);
353         tbox1->pack_start (midi_panic_button, false, false);
354         tbox1->pack_start (goto_start_button, false, false);
355         tbox1->pack_start (goto_end_button, false, false);
356         tbox1->pack_start (auto_loop_button, false, false);
357
358         play_selection_button.set_rounded_corner_mask (0x1); /* upper left only */
359         roll_button.set_rounded_corner_mask (0x2); /* upper right only */
360
361         tbox2->pack_start (play_selection_button, false, false);
362         tbox2->pack_start (roll_button, false, false);
363         tbox2->pack_start (stop_button, false, false);
364         tbox2->pack_start (rec_button, false, false, 5);
365
366         vbox1->pack_start (*tbox1, false, false);
367         vbox2->pack_start (*tbox2, false, false);
368
369         a1->add (*vbox1);
370         a1->set (0.5, 1.0, 0.0, 0.0);
371         a2->add (*vbox2);
372         a2->set (0.5, 1.0, 0.0, 0.0);
373
374         tbox->pack_start (*a1, false, false);
375         tbox->pack_start (*a2, false, false);
376
377         HBox* clock_box = manage (new HBox);
378
379         clock_box->pack_start (*primary_clock, false, false);
380         if (!ARDOUR::Profile->get_small_screen()) {
381                 clock_box->pack_start (*secondary_clock, false, false);
382         }
383         clock_box->set_spacing (3);
384
385         shuttle_box = new ShuttleControl;
386         shuttle_box->show ();
387
388         VBox* transport_vbox = manage (new VBox);
389         transport_vbox->set_name ("TransportBase");
390         transport_vbox->set_border_width (3);
391         transport_vbox->set_spacing (3);
392         transport_vbox->pack_start (*tbox, true, true, 0);
393         transport_vbox->pack_start (*shuttle_box, false, false, 0);
394
395         transport_tearoff_hbox.pack_start (*transport_vbox, false, false);
396
397         /* transport related toggle controls */
398
399         VBox* auto_box = manage (new VBox);
400         auto_box->set_homogeneous (true);
401         auto_box->set_spacing (2);
402         auto_box->pack_start (sync_button, false, false);
403         auto_box->pack_start (follow_edits_button, false, false);
404         auto_box->pack_start (auto_return_button, false, false);
405
406         transport_tearoff_hbox.pack_start (*auto_box, false, false);
407         transport_tearoff_hbox.pack_start (*clock_box, true, true);
408
409         time_info_box = manage (new TimeInfoBox);
410         transport_tearoff_hbox.pack_start (*time_info_box, false, false);
411
412         if (Profile->get_small_screen()) {
413                 transport_tearoff_hbox.pack_start (_editor_transport_box, false, false);
414         }
415         transport_tearoff_hbox.pack_start (alert_box, false, false);
416
417         if (Profile->get_sae()) {
418                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
419                 transport_tearoff_hbox.pack_end (*img, false, false);
420         }
421
422         /* desensitize */
423
424         set_transport_sensitivity (false);
425
426         XMLNode* tnode = tearoff_settings ("transport");
427         if (tnode) {
428                 transport_tearoff->set_state (*tnode);
429         }
430 }
431
432 void
433 ARDOUR_UI::manage_window (Window& win)
434 {
435         win.signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), &win));
436         win.signal_enter_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::enter_window), &win));
437         win.signal_leave_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::leave_window), &win));
438 }
439
440 void
441 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
442 {
443 //      editor->ensure_float (transport_tearoff->tearoff_window());
444         b->remove (*w);
445 }
446
447 void
448 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
449 {
450         b->pack_start (*w);
451         b->reorder_child (*w, n);
452 }
453
454 void
455 ARDOUR_UI::soloing_changed (bool onoff)
456 {
457         if (solo_alert_button.get_active() != onoff) {
458                 solo_alert_button.set_active (onoff);
459         }
460 }
461
462 void
463 ARDOUR_UI::_auditioning_changed (bool onoff)
464 {
465         auditioning_alert_button.set_active (onoff);
466         set_transport_sensitivity (!onoff);
467 }
468
469 void
470 ARDOUR_UI::auditioning_changed (bool onoff)
471 {
472         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
473 }
474
475 bool
476 ARDOUR_UI::audition_alert_press (GdkEventButton*)
477 {
478         if (_session) {
479                 _session->cancel_audition();
480         }
481         return true;
482 }
483
484 bool
485 ARDOUR_UI::solo_alert_press (GdkEventButton*)
486 {
487         if (_session) {
488                 if (_session->soloing()) {
489                         _session->set_solo (_session->get_routes(), false);
490                 } else if (_session->listening()) {
491                         _session->set_listen (_session->get_routes(), false);
492                 }
493         }
494         return true;
495 }
496
497 bool
498 ARDOUR_UI::feedback_alert_press (GdkEventButton *)
499 {
500         return true;
501 }
502
503 void
504 ARDOUR_UI::solo_blink (bool onoff)
505 {
506         if (_session == 0) {
507                 return;
508         }
509
510         if (_session->soloing() || _session->listening()) {
511                 if (onoff) {
512                         solo_alert_button.set_active (true);
513                 } else {
514                         solo_alert_button.set_active (false);
515                 }
516         } else {
517                 solo_alert_button.set_active (false);
518         }
519 }
520
521 void
522 ARDOUR_UI::sync_blink (bool onoff)
523 {
524         if (_session == 0 || !_session->config.get_external_sync()) {
525                 /* internal sync */
526                 sync_button.set_active (false);
527                 return;
528         }
529
530         if (!_session->transport_locked()) {
531                 /* not locked, so blink on and off according to the onoff argument */
532
533                 if (onoff) {
534                         sync_button.set_active (true);
535                 } else {
536                         sync_button.set_active (false);
537                 }
538         } else {
539                 /* locked */
540                 sync_button.set_active (true);
541         }
542 }
543
544 void
545 ARDOUR_UI::audition_blink (bool onoff)
546 {
547         if (_session == 0) {
548                 return;
549         }
550
551         if (_session->is_auditioning()) {
552                 if (onoff) {
553                         auditioning_alert_button.set_active (true);
554                 } else {
555                         auditioning_alert_button.set_active (false);
556                 }
557         } else {
558                 auditioning_alert_button.set_active (false);
559         }
560 }
561
562 void
563 ARDOUR_UI::feedback_blink (bool onoff)
564 {
565         if (_feedback_exists) {
566                 if (onoff) {
567                         feedback_alert_button.set_active (true);
568                 } else {
569                         feedback_alert_button.set_active (false);
570                 }
571         } else {
572                 feedback_alert_button.set_active (false);
573         }
574 }
575
576 void
577 ARDOUR_UI::set_transport_sensitivity (bool yn)
578 {
579         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
580         shuttle_box->set_sensitive (yn);
581 }
582
583 void
584 ARDOUR_UI::editor_realized ()
585 {
586         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
587         Config->map_parameters (pc);
588
589         reset_dpi ();
590 }
591
592 void
593 ARDOUR_UI::update_tearoff_visibility ()
594 {
595         if (editor) {
596                 editor->update_tearoff_visibility ();
597         }
598 }
599
600 void
601 ARDOUR_UI::maximise_editing_space ()
602 {
603         if (editor) {
604                 editor->maximise_editing_space ();
605         }
606 }
607
608 void
609 ARDOUR_UI::restore_editing_space ()
610 {
611         if (editor) {
612                 editor->restore_editing_space ();
613         }
614 }
615
616 bool
617 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
618 {
619         if (ev->button != 3) {
620                 /* this handler is just for button-3 clicks */
621                 return false;
622         }
623
624         RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("ToggleRCOptionsEditor"));
625         assert (act);
626
627         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
628         tact->set_active ();
629
630         rc_option_editor->set_current_page (_("Misc"));
631         return true;
632 }
633
634 void
635 ARDOUR_UI::toggle_always_play_range ()
636 {
637         RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
638         assert (act);
639
640         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
641         assert (tact);
642
643         Config->set_always_play_range (tact->get_active ());
644 }
645
646