X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fardour_ui.cc;h=8384eee20877f3ee480ec6af310fc3d138f395c3;hb=d0bc4b55faa25e754d1f15eab4656434aba1a568;hp=edc66a13b0d73ab9c7e085a8ec9bbeb2f79768a9;hpb=8f930477be9e2c88859a8ea30b213fba3f7fc443;p=ardour.git diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index edc66a13b0..8384eee208 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -50,6 +50,7 @@ #include "pbd/enumwriter.h" #include "pbd/memento_command.h" #include "pbd/openuri.h" +#include "pbd/stl_delete.h" #include "pbd/file_utils.h" #include "pbd/localtime_r.h" @@ -71,6 +72,7 @@ #include "ardour/filename_extensions.h" #include "ardour/filesystem_paths.h" #include "ardour/port.h" +#include "ardour/plugin_manager.h" #include "ardour/process_thread.h" #include "ardour/profile.h" #include "ardour/recent_sessions.h" @@ -79,6 +81,11 @@ #include "ardour/session_state_utils.h" #include "ardour/session_utils.h" #include "ardour/slave.h" +#include "ardour/system_exec.h" + +#ifdef WINDOWS_VST_SUPPORT +#include +#endif #include "timecode/time.h" @@ -127,11 +134,11 @@ typedef uint64_t microseconds_t; #include "video_server_dialog.h" #include "add_video_dialog.h" #include "transcode_video_dialog.h" -#include "system_exec.h" #include "i18n.h" using namespace ARDOUR; +using namespace ARDOUR_UI_UTILS; using namespace PBD; using namespace Gtkmm2ext; using namespace Gtk; @@ -214,6 +221,8 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir) splash = 0; + _numpad_locate_happening = false; + if (theArdourUI == 0) { theArdourUI = this; } @@ -300,6 +309,12 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir) ARDOUR::FileSource::AmbiguousFileName.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::ambiguous_file, this, _1, _2)); + /* also plugin scan messages */ + ARDOUR::PluginScanMessage.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::plugin_scan_dialog, this, _1, _2, _3), gui_context()); + ARDOUR::PluginScanTimeout.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::plugin_scan_timeout, this, _1), gui_context()); + + ARDOUR::GUIIdle.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::gui_idle_handler, this), gui_context()); + /* lets get this party started */ setup_gtk_ardour_enums (); @@ -477,8 +492,6 @@ ARDOUR_UI::post_engine () _tooltips.enable(); - ActionManager::load_menus (); - if (setup_windows ()) { throw failed_constructor (); } @@ -550,11 +563,6 @@ ARDOUR_UI::~ARDOUR_UI () ui_config->save_state(); } - delete keyboard; - delete editor; - delete mixer; - delete meterbridge; - stop_video_server(); } @@ -749,6 +757,7 @@ ARDOUR_UI::starting () try { audio_midi_setup.get (true); } catch (...) { + std::cerr << "audio-midi engine setup failed."<< std::endl; return -1; } @@ -835,6 +844,7 @@ ARDOUR_UI::starting () const bool new_session_required = (ARDOUR_COMMAND_LINE::new_session || brand_new_user); if (get_session_parameters (false, new_session_required, ARDOUR_COMMAND_LINE::load_template)) { + std::cerr << "Cannot get session parameters."<< std::endl; return -1; } } @@ -996,8 +1006,6 @@ If you still wish to quit, please use the\n\n\ close_all_dialogs (); - loading_message (string_compose (_("Please wait while %1 cleans up..."), PROGRAM_NAME)); - if (_session) { // _session->set_deletion_in_progress (); _session->set_clean (); @@ -1008,6 +1016,9 @@ If you still wish to quit, please use the\n\n\ halt_connection.disconnect (); AudioEngine::instance()->stop (); +#ifdef WINDOWS_VST_SUPPORT + fst_stop_threading(); +#endif quit (); } @@ -1406,7 +1417,7 @@ ARDOUR_UI::redisplay_recent_sessions () get_state_files_in_directory (*i, state_file_paths); - vector* states; + vector states; vector item; string fullpath = *i; @@ -1423,8 +1434,9 @@ ARDOUR_UI::redisplay_recent_sessions () } /* now get available states for this session */ + states = Session::possible_states (fullpath); - if ((states = Session::possible_states (fullpath)) == 0) { + if (states.empty()) { /* no state file? */ continue; } @@ -1433,14 +1445,14 @@ ARDOUR_UI::redisplay_recent_sessions () Gtk::TreeModel::Row row = *(recent_session_model->append()); - row[recent_session_columns.visible_name] = Glib::path_get_basename (fullpath); row[recent_session_columns.fullpath] = fullpath; row[recent_session_columns.tip] = Glib::Markup::escape_text (fullpath); if (state_file_names.size() > 1) { + // multiple session files in the session directory - show the directory name. + row[recent_session_columns.visible_name] = Glib::path_get_basename (fullpath); // add the children - for (std::vector::iterator i2 = state_file_names.begin(); i2 != state_file_names.end(); ++i2) { @@ -1451,6 +1463,9 @@ ARDOUR_UI::redisplay_recent_sessions () child_row[recent_session_columns.fullpath] = fullpath; child_row[recent_session_columns.tip] = Glib::Markup::escape_text (fullpath); } + } else { + // only a single session file in the directory - show its actual name. + row[recent_session_columns.visible_name] = state_file_names.front (); } } @@ -1649,10 +1664,10 @@ ARDOUR_UI::session_add_mixed_track (const ChanCount& input, const ChanCount& out catch (...) { MessageDialog msg (*editor, - string_compose (_("There are insufficient JACK ports available\n\ + string_compose (_("There are insufficient ports available\n\ to create a new track or bus.\n\ You should save %1, exit and\n\ -restart JACK with more ports."), PROGRAM_NAME)); +restart with more ports."), PROGRAM_NAME)); msg.run (); } } @@ -1710,10 +1725,10 @@ ARDOUR_UI::session_add_audio_route ( catch (...) { MessageDialog msg (*editor, - string_compose (_("There are insufficient JACK ports available\n\ + string_compose (_("There are insufficient ports available\n\ to create a new track or bus.\n\ You should save %1, exit and\n\ -restart JACK with more ports."), PROGRAM_NAME)); +restart with more ports."), PROGRAM_NAME)); pop_back_splash (msg); msg.run (); } @@ -1818,10 +1833,39 @@ ARDOUR_UI::transport_stop () _session->request_stop (false, true); } +/** Check if any tracks are record enabled. If none are, record enable all of them. + * @return true if track record-enabled status was changed, false otherwise. + */ +bool +ARDOUR_UI::trx_record_enable_all_tracks () +{ + if (!_session) { + return false; + } + + boost::shared_ptr rl = _session->get_tracks (); + bool none_record_enabled = true; + + for (RouteList::iterator r = rl->begin(); r != rl->end(); ++r) { + boost::shared_ptr t = boost::dynamic_pointer_cast (*r); + assert (t); + + if (t->record_enabled()) { + none_record_enabled = false; + break; + } + } + + if (none_record_enabled) { + _session->set_record_enabled (rl, true, Session::rt_cleanup); + } + + return none_record_enabled; +} + void ARDOUR_UI::transport_record (bool roll) { - if (_session) { switch (_session->record_status()) { case Session::Disabled: @@ -1830,6 +1874,9 @@ ARDOUR_UI::transport_record (bool roll) msg.run (); return; } + if (Profile->get_trx()) { + roll = trx_record_enable_all_tracks (); + } _session->maybe_enable_record (); if (roll) { transport_roll (); @@ -1875,13 +1922,26 @@ ARDOUR_UI::transport_roll () bool rolling = _session->transport_rolling(); if (_session->get_play_loop()) { - /* XXX it is not possible to just leave seamless loop and keep - playing at present (nov 4th 2009) + + /* If loop playback is not a mode, then we should cancel + it when this action is requested. If it is a mode + we just leave it in place. */ - if (!Config->get_seamless_loop()) { - _session->request_play_loop (false, true); - } - } else if (_session->get_play_range () && !Config->get_always_play_range()) { + + if (!Config->get_loop_is_mode()) { + /* XXX it is not possible to just leave seamless loop and keep + playing at present (nov 4th 2009) + */ + if (!Config->get_seamless_loop()) { + /* stop loop playback and stop rolling */ + _session->request_play_loop (false, true); + } else if (rolling) { + /* stop loop playback but keep rolling */ + _session->request_play_loop (false, false); + } + } + + } else if (_session->get_play_range () ) { /* stop playing a range if we currently are */ _session->request_play_range (0, true); } @@ -1937,7 +1997,7 @@ ARDOUR_UI::toggle_roll (bool with_abort, bool roll_out_of_bounded_mode) /* disk buffers are normal, so we can keep playing */ affect_transport = false; } - _session->request_play_loop (false, true); + _session->request_play_loop (false, affect_transport); } else if (_session->get_play_range ()) { affect_transport = false; _session->request_play_range (0, true); @@ -1948,10 +2008,10 @@ ARDOUR_UI::toggle_roll (bool with_abort, bool roll_out_of_bounded_mode) if (rolling) { _session->request_stop (with_abort, true); } else { - if ( Config->get_always_play_range() ) { + if ( Config->get_follow_edits() && ( editor->get_selection().time.front().start == _session->transport_frame() ) ) { //if playhead is exactly at the start of a range, we can assume it was placed there by follow_edits _session->request_play_range (&editor->get_selection().time, true); + _session->set_requested_return_frame( editor->get_selection().time.front().start ); //force an auto-return here } - _session->request_transport_speed (1.0f); } } @@ -1968,16 +2028,23 @@ ARDOUR_UI::toggle_session_auto_loop () if (_session->get_play_loop()) { - if (_session->transport_rolling()) { + /* looping enabled, our job is to disable it */ - _session->request_locate (looploc->start(), true); - _session->request_play_loop (false); + _session->request_play_loop (false); + } else { + + /* looping not enabled, our job is to enable it. + + loop-is-NOT-mode: this action always starts the transport rolling. + loop-IS-mode: this action simply sets the loop play mechanism, but + does not start transport. + */ + if (Config->get_loop_is_mode()) { + _session->request_play_loop (true, false); } else { - _session->request_play_loop (false); + _session->request_play_loop (true, true); } - } else { - _session->request_play_loop (true); } //show the loop markers @@ -2105,7 +2172,11 @@ ARDOUR_UI::map_transport_state () auto_loop_button.set_active (true); play_selection_button.set_active (false); - roll_button.set_active (false); + if (Config->get_loop_is_mode()) { + roll_button.set_active (true); + } else { + roll_button.set_active (false); + } } else { @@ -2114,7 +2185,7 @@ ARDOUR_UI::map_transport_state () auto_loop_button.set_active (false); } - if (Config->get_always_play_range()) { + if (Config->get_follow_edits()) { /* light up both roll and play-selection if they are joined */ roll_button.set_active (true); play_selection_button.set_active (true); @@ -2127,7 +2198,11 @@ ARDOUR_UI::map_transport_state () stop_button.set_active (true); roll_button.set_active (false); play_selection_button.set_active (false); - auto_loop_button.set_active (false); + if (Config->get_loop_is_mode ()) { + auto_loop_button.set_active (_session->get_play_loop()); + } else { + auto_loop_button.set_active (false); + } update_disk_space (); } } @@ -2916,7 +2991,15 @@ ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name, _session->set_clean (); } +#ifdef WINDOWS_VST_SUPPORT + fst_stop_threading(); +#endif + flush_pending (); + +#ifdef WINDOWS_VST_SUPPORT + fst_start_threading(); +#endif retval = 0; out: @@ -3341,13 +3424,8 @@ ARDOUR_UI::add_route (Gtk::Window* float_window) setup_order_hint(); - PBD::ScopedConnection idle_connection; - - if (count > 8) { - ARDOUR::GUIIdle.connect (idle_connection, MISSING_INVALIDATOR, boost::bind (&Gtkmm2ext::UI::flush_pending, this), gui_context()); - } - string template_path = add_route_dialog->track_template(); + DisplaySuspender ds; if (!template_path.empty()) { if (add_route_dialog->name_template_is_default()) { @@ -3388,8 +3466,6 @@ ARDOUR_UI::add_route (Gtk::Window* float_window) session_add_audio_bus (input_chan.n_audio(), output_chan.n_audio(), route_group, count, name_template); break; } - - /* idle connection will end at scope end */ } void @@ -3508,7 +3584,7 @@ ARDOUR_UI::start_video_server (Gtk::Window* float_window, bool popup_msg) delete video_server_process; } - video_server_process = new SystemExec(icsd_exec, argp); + video_server_process = new ARDOUR::SystemExec(icsd_exec, argp); if (video_server_process->start()) { warning << _("Cannot launch the video-server") << endmsg; continue; @@ -3516,6 +3592,7 @@ ARDOUR_UI::start_video_server (Gtk::Window* float_window, bool popup_msg) int timeout = 120; // 6 sec while (!ARDOUR_UI::instance()->video_timeline->check_server()) { Glib::usleep (50000); + gui_idle_handler(); if (--timeout <= 0 || !video_server_process->is_running()) break; } if (timeout <= 0) { @@ -3781,6 +3858,116 @@ quickly enough to keep up with recording.\n"), PROGRAM_NAME)); } } + +/* TODO: this is getting elaborate enough to warrant being split into a dedicated class */ +static MessageDialog *scan_dlg = NULL; +static ProgressBar *scan_pbar = NULL; +static HBox *scan_tbox = NULL; + +void +ARDOUR_UI::cancel_plugin_scan () +{ + PluginManager::instance().cancel_plugin_scan(); +} + +void +ARDOUR_UI::cancel_plugin_timeout () +{ + PluginManager::instance().cancel_plugin_timeout(); + scan_tbox->hide(); +} + +void +ARDOUR_UI::plugin_scan_timeout (int timeout) +{ + if (!scan_dlg || !scan_dlg->is_mapped() || !scan_pbar) { + return; + } + if (timeout > 0) { + scan_pbar->set_fraction ((float) timeout / (float) Config->get_vst_scan_timeout()); + scan_tbox->show(); + } else { + scan_tbox->hide(); + } + gui_idle_handler(); +} + +void +ARDOUR_UI::plugin_scan_dialog (std::string type, std::string plugin, bool can_cancel) +{ + if (type == X_("closeme") && !(scan_dlg && scan_dlg->is_mapped())) { + return; + } + + const bool cancelled = PluginManager::instance().cancelled(); + if (type != X_("closeme") && !Config->get_show_plugin_scan_window()) { + if (cancelled && scan_dlg->is_mapped()) { + scan_dlg->hide(); + gui_idle_handler(); + return; + } + if (cancelled || !can_cancel) { + return; + } + } + + static Gtk::Button *cancel_button; + static Gtk::Button *timeout_button; + if (!scan_dlg) { + scan_dlg = new MessageDialog("", false, MESSAGE_INFO, BUTTONS_NONE); // TODO manage + VBox* vbox = scan_dlg->get_vbox(); + vbox->set_size_request(400,-1); + scan_dlg->set_title (_("Scanning for plugins")); + + cancel_button = manage(new Gtk::Button(_("Cancel plugin scan"))); + cancel_button->set_name ("EditorGTKButton"); + cancel_button->signal_clicked().connect ( mem_fun (*this, &ARDOUR_UI::cancel_plugin_scan) ); + cancel_button->show(); + + scan_dlg->get_vbox()->pack_start ( *cancel_button, PACK_SHRINK); + + scan_tbox = manage( new HBox() ); + + timeout_button = manage(new Gtk::Button(_("Stop Timeout"))); + timeout_button->set_name ("EditorGTKButton"); + timeout_button->signal_clicked().connect ( mem_fun (*this, &ARDOUR_UI::cancel_plugin_timeout) ); + timeout_button->show(); + + scan_pbar = manage(new ProgressBar()); + scan_pbar->set_orientation(Gtk::PROGRESS_RIGHT_TO_LEFT); + scan_pbar->set_text(_("Scan Timeout")); + scan_pbar->show(); + + scan_tbox->pack_start (*scan_pbar, PACK_EXPAND_WIDGET, 4); + scan_tbox->pack_start (*timeout_button, PACK_SHRINK, 4); + + scan_dlg->get_vbox()->pack_start (*scan_tbox, PACK_SHRINK, 4); + } + + if (type == X_("closeme")) { + scan_dlg->hide(); + } else { + scan_dlg->set_message(type + ": " + Glib::path_get_basename(plugin)); + scan_dlg->show(); + } + if (!can_cancel || !cancelled) { + scan_tbox->hide(); + } + cancel_button->set_sensitive(can_cancel && !cancelled); + + gui_idle_handler(); +} + +void +ARDOUR_UI::gui_idle_handler () +{ + int timeout = 30; + /* due to idle calls, gtk_events_pending() may always return true */ + while (gtk_events_pending() && --timeout) { + gtk_main_iteration (); + } +} + void ARDOUR_UI::disk_underrun_handler () { @@ -4113,10 +4300,18 @@ ARDOUR_UI::setup_profile () Profile->set_small_screen (); } - if (getenv ("ARDOUR_SAE")) { + if (g_getenv ("ARDOUR_SAE")) { Profile->set_sae (); Profile->set_single_package (); } + + if (g_getenv ("TRX")) { + Profile->set_trx (); + } + + if (g_getenv ("MIXBUS")) { + Profile->set_mixbus (); + } } int @@ -4252,3 +4447,47 @@ ARDOUR_UI::do_audio_midi_setup (uint32_t desired_sample_rate) } +gint +ARDOUR_UI::transport_numpad_timeout () +{ + _numpad_locate_happening = false; + if (_numpad_timeout_connection.connected() ) + _numpad_timeout_connection.disconnect(); + return 1; +} + +void +ARDOUR_UI::transport_numpad_decimal () +{ + _numpad_timeout_connection.disconnect(); + + if (_numpad_locate_happening) { + if (editor) editor->goto_nth_marker(_pending_locate_num - 1); + _numpad_locate_happening = false; + } else { + _pending_locate_num = 0; + _numpad_locate_happening = true; + _numpad_timeout_connection = Glib::signal_timeout().connect (mem_fun(*this, &ARDOUR_UI::transport_numpad_timeout), 2*1000); + } +} + +void +ARDOUR_UI::transport_numpad_event (int num) +{ + if ( _numpad_locate_happening ) { + _pending_locate_num = _pending_locate_num*10 + num; + } else { + switch (num) { + case 0: toggle_roll(false, false); break; + case 1: transport_rewind(1); break; + case 2: transport_forward(1); break; + case 3: transport_record(true); break; + case 4: if (_session) _session->request_play_loop(true); break; + case 5: if (_session) _session->request_play_loop(true); transport_record(false); break; + case 6: toggle_punch(); break; + case 7: toggle_click(); break; + case 8: toggle_auto_return(); break; + case 9: toggle_follow_edits(); break; + } + } +}