2008-06-02 17:41:35 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2006 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU Lesser
|
|
|
|
General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-10-29 20:21:40 -04:00
|
|
|
#include "pbd/pthread_utils.h"
|
2012-04-11 16:18:01 -04:00
|
|
|
#include "pbd/memento_command.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-10-29 20:21:40 -04:00
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/location.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-10-29 20:21:40 -04:00
|
|
|
#include "control_protocol/basic_ui.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::Signal2<void,std::string,std::string> BasicUI::AccessAction;
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
BasicUI::BasicUI (Session& s)
|
|
|
|
: session (&s)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicUI::BasicUI ()
|
|
|
|
: session (0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicUI::~BasicUI ()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::register_thread (std::string name)
|
|
|
|
{
|
2009-12-04 14:24:09 -05:00
|
|
|
std::string pool_name = name;
|
|
|
|
pool_name += " events";
|
|
|
|
|
|
|
|
SessionEvent::create_per_thread_pool (pool_name, 64);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
void
|
|
|
|
BasicUI::access_action ( std::string action_path )
|
|
|
|
{
|
|
|
|
int split_at = action_path.find( "/" );
|
|
|
|
std::string group = action_path.substr( 0, split_at );
|
|
|
|
std::string item = action_path.substr( split_at + 1 );
|
|
|
|
|
|
|
|
AccessAction( group, item );
|
|
|
|
}
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
void
|
|
|
|
BasicUI::loop_toggle ()
|
|
|
|
{
|
|
|
|
if (session->get_play_loop()) {
|
|
|
|
session->request_play_loop (false);
|
|
|
|
} else {
|
|
|
|
session->request_play_loop (true);
|
|
|
|
if (!session->transport_rolling()) {
|
|
|
|
session->request_transport_speed (1.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::goto_start ()
|
|
|
|
{
|
|
|
|
session->goto_start ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::goto_end ()
|
|
|
|
{
|
|
|
|
session->goto_end ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-04-11 16:18:01 -04:00
|
|
|
BasicUI::add_marker (const std::string& markername)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2012-04-11 16:18:01 -04:00
|
|
|
framepos_t where = session->audible_frame();
|
|
|
|
Location *location = new Location (*session, where, where, markername, Location::IsMark);
|
|
|
|
session->begin_reversible_command (_("add marker"));
|
|
|
|
XMLNode &before = session->locations()->get_state();
|
|
|
|
session->locations()->add (location, true);
|
|
|
|
XMLNode &after = session->locations()->get_state();
|
|
|
|
session->add_command (new MementoCommand<Locations>(*(session->locations()), &before, &after));
|
|
|
|
session->commit_reversible_command ();
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::rewind ()
|
|
|
|
{
|
2012-04-11 16:10:10 -04:00
|
|
|
session->request_transport_speed (session->transport_speed() - 1.5);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::ffwd ()
|
|
|
|
{
|
2012-04-10 22:30:35 -04:00
|
|
|
session->request_transport_speed (session->transport_speed() + 1.5);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::transport_stop ()
|
|
|
|
{
|
|
|
|
session->request_transport_speed (0.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::transport_play (bool from_last_start)
|
|
|
|
{
|
|
|
|
bool rolling = session->transport_rolling ();
|
|
|
|
|
|
|
|
if (session->get_play_loop()) {
|
|
|
|
session->request_play_loop (false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (session->get_play_range ()) {
|
2010-01-01 17:11:15 -05:00
|
|
|
session->request_play_range (0);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (from_last_start && rolling) {
|
|
|
|
session->request_locate (session->last_transport_start(), true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
session->request_transport_speed (1.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::rec_enable_toggle ()
|
|
|
|
{
|
|
|
|
switch (session->record_status()) {
|
|
|
|
case Session::Disabled:
|
|
|
|
if (session->ntracks() == 0) {
|
|
|
|
// string txt = _("Please create 1 or more track\nbefore trying to record.\nCheck the Session menu.");
|
|
|
|
// MessageDialog msg (*editor, txt);
|
|
|
|
// msg.run ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
session->maybe_enable_record ();
|
|
|
|
break;
|
|
|
|
case Session::Recording:
|
|
|
|
case Session::Enabled:
|
|
|
|
session->disable_record (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::save_state ()
|
|
|
|
{
|
|
|
|
session->save_state ("");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::prev_marker ()
|
|
|
|
{
|
|
|
|
Location *location = session->locations()->first_location_before (session->transport_frame());
|
|
|
|
|
|
|
|
if (location) {
|
|
|
|
session->request_locate (location->start(), session->transport_rolling());
|
|
|
|
} else {
|
|
|
|
session->goto_start ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::next_marker ()
|
|
|
|
{
|
|
|
|
Location *location = session->locations()->first_location_after (session->transport_frame());
|
|
|
|
|
|
|
|
if (location) {
|
|
|
|
session->request_locate (location->start(), session->transport_rolling());
|
|
|
|
} else {
|
|
|
|
session->request_locate (session->current_end_frame());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-01-09 04:18:24 -05:00
|
|
|
BasicUI::set_transport_speed (double speed)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
session->request_transport_speed (speed);
|
|
|
|
}
|
|
|
|
|
2009-01-09 04:18:24 -05:00
|
|
|
double
|
2008-06-02 17:41:35 -04:00
|
|
|
BasicUI::get_transport_speed ()
|
|
|
|
{
|
|
|
|
return session->transport_speed ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::undo ()
|
|
|
|
{
|
|
|
|
session->undo (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::redo ()
|
|
|
|
{
|
|
|
|
session->redo (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::toggle_all_rec_enables ()
|
|
|
|
{
|
|
|
|
if (session->get_record_enabled()) {
|
2009-12-07 16:37:35 -05:00
|
|
|
// session->record_disenable_all ();
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
2009-12-07 16:37:35 -05:00
|
|
|
// session->record_enable_all ();
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::toggle_punch_in ()
|
|
|
|
{
|
2009-05-13 20:13:27 -04:00
|
|
|
session->config.set_punch_in (!session->config.get_punch_in());
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::toggle_punch_out ()
|
|
|
|
{
|
2009-05-13 20:13:27 -04:00
|
|
|
session->config.set_punch_out (!session->config.get_punch_out());
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
BasicUI::get_record_enabled ()
|
|
|
|
{
|
|
|
|
return session->get_record_enabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::set_record_enable (bool yn)
|
|
|
|
{
|
|
|
|
if (yn) {
|
|
|
|
session->maybe_enable_record ();
|
|
|
|
} else {
|
|
|
|
session->disable_record (false, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-02 14:25:53 -05:00
|
|
|
framepos_t
|
2008-06-02 17:41:35 -04:00
|
|
|
BasicUI::transport_frame ()
|
|
|
|
{
|
|
|
|
return session->transport_frame();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-02 14:25:53 -05:00
|
|
|
BasicUI::locate (framepos_t where, bool roll_after_locate)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
session->request_locate (where, roll_after_locate);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
BasicUI::locating ()
|
|
|
|
{
|
|
|
|
return session->locate_pending();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
BasicUI::locked ()
|
|
|
|
{
|
|
|
|
return session->transport_locked ();
|
|
|
|
}
|
|
|
|
|
2010-12-02 14:25:53 -05:00
|
|
|
ARDOUR::framecnt_t
|
2009-10-26 10:38:58 -04:00
|
|
|
BasicUI::timecode_frames_per_hour ()
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2009-10-26 10:38:58 -04:00
|
|
|
return session->timecode_frames_per_hour ();
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-02 14:25:53 -05:00
|
|
|
BasicUI::timecode_time (framepos_t where, Timecode::Time& timecode)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2009-10-26 10:38:58 -04:00
|
|
|
session->timecode_time (where, *((Timecode::Time *) &timecode));
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-02 14:25:53 -05:00
|
|
|
BasicUI::timecode_to_sample (Timecode::Time& timecode, framepos_t & sample, bool use_offset, bool use_subframes) const
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2010-12-01 12:51:17 -05:00
|
|
|
session->timecode_to_sample (*((Timecode::Time*)&timecode), sample, use_offset, use_subframes);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-12-02 14:25:53 -05:00
|
|
|
BasicUI::sample_to_timecode (framepos_t sample, Timecode::Time& timecode, bool use_offset, bool use_subframes) const
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2010-12-01 12:51:17 -05:00
|
|
|
session->sample_to_timecode (sample, *((Timecode::Time*)&timecode), use_offset, use_subframes);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2009-12-09 22:25:32 -05:00
|
|
|
|
2010-01-01 13:14:32 -05:00
|
|
|
#if 0
|
2010-01-04 09:53:44 -05:00
|
|
|
this stuff is waiting to go in so that all UIs can offer complex solo/mute functionality
|
2010-01-01 13:14:32 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::solo_release (boost::shared_ptr<Route> r)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicUI::solo_press (boost::shared_ptr<Route> r, bool momentary, bool global, bool exclusive, bool isolate, bool solo_group)
|
|
|
|
{
|
|
|
|
if (momentary) {
|
|
|
|
_solo_release = new SoloMuteRelease (_route->soloed());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (global) {
|
|
|
|
|
|
|
|
if (_solo_release) {
|
|
|
|
_solo_release->routes = _session->get_routes ();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config->get_solo_control_is_listen_control()) {
|
|
|
|
_session->set_listen (_session->get_routes(), !_route->listening(), Session::rt_cleanup, true);
|
|
|
|
} else {
|
|
|
|
_session->set_solo (_session->get_routes(), !_route->soloed(), Session::rt_cleanup, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (exclusive) {
|
|
|
|
|
|
|
|
if (_solo_release) {
|
|
|
|
_solo_release->exclusive = true;
|
|
|
|
|
|
|
|
boost::shared_ptr<RouteList> routes = _session->get_routes();
|
|
|
|
|
|
|
|
for (RouteList::iterator i = routes->begin(); i != routes->end(); ++i) {
|
|
|
|
if ((*i)->soloed ()) {
|
|
|
|
_solo_release->routes_on->push_back (*i);
|
|
|
|
} else {
|
|
|
|
_solo_release->routes_off->push_back (*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config->get_solo_control_is_listen_control()) {
|
|
|
|
/* ??? we need a just_one_listen() method */
|
|
|
|
} else {
|
|
|
|
_session->set_just_one_solo (_route, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (isolate) {
|
|
|
|
|
|
|
|
// shift-click: toggle solo isolated status
|
|
|
|
|
|
|
|
_route->set_solo_isolated (!_route->solo_isolated(), this);
|
|
|
|
delete _solo_release;
|
|
|
|
_solo_release = 0;
|
|
|
|
|
|
|
|
} else if (solo_group) {
|
|
|
|
|
|
|
|
/* Primary-button1: solo mix group.
|
|
|
|
NOTE: Primary-button2 is MIDI learn.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (_route->route_group()) {
|
|
|
|
|
|
|
|
if (_solo_release) {
|
|
|
|
_solo_release->routes = _route->route_group()->route_list();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config->get_solo_control_is_listen_control()) {
|
|
|
|
_session->set_listen (_route->route_group()->route_list(), !_route->listening(), Session::rt_cleanup, true);
|
|
|
|
} else {
|
|
|
|
_session->set_solo (_route->route_group()->route_list(), !_route->soloed(), Session::rt_cleanup, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* click: solo this route */
|
|
|
|
|
|
|
|
boost::shared_ptr<RouteList> rl (new RouteList);
|
|
|
|
rl->push_back (route());
|
|
|
|
|
|
|
|
if (_solo_release) {
|
|
|
|
_solo_release->routes = rl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config->get_solo_control_is_listen_control()) {
|
|
|
|
_session->set_listen (rl, !_route->listening());
|
|
|
|
} else {
|
|
|
|
_session->set_solo (rl, !_route->soloed());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|