X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=libs%2Fardour%2Fmute_master.cc;h=a58bb8a421d11edced397bd4e62c97b49d1564c1;hb=9ac351e60ceac28056d5513e3c346346689d11e0;hp=bbf1036dd4f4398ada42dbf25eb84273ca90f234;hpb=ff26317d4f7904c071d7ecfb96fd84e71728f6d0;p=ardour.git diff --git a/libs/ardour/mute_master.cc b/libs/ardour/mute_master.cc index bbf1036dd4..a58bb8a421 100644 --- a/libs/ardour/mute_master.cc +++ b/libs/ardour/mute_master.cc @@ -1,6 +1,6 @@ /* - Copyright (C) 2009 Paul Davis + Copyright (C) 2009 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,31 +17,41 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "pbd/enumwriter.h" +#include "pbd/xml++.h" + +#include "ardour/types.h" #include "ardour/mute_master.h" -#include "ardour/rc_configuration.h" +#include "ardour/session.h" #include "i18n.h" using namespace ARDOUR; +using namespace std; -MuteMaster::MuteMaster (Session& s, const std::string& name) - : AutomationControl (s, Evoral::Parameter (MuteAutomation), boost::shared_ptr(), name) +MuteMaster::MuteMaster (Session& s, const std::string&) + : SessionHandleRef (s) , _mute_point (MutePoint (0)) + , _muted_by_self (false) + , _soloed (false) + , _solo_ignore (false) { - // default range for parameter is fine - _automation = new AutomationList (MuteAutomation); - set_list (boost::shared_ptr(_automation)); -} + if (Config->get_mute_affects_pre_fader ()) { + _mute_point = MutePoint (_mute_point | PreFader); + } -void -MuteMaster::clear_mute () -{ - if (_mute_point != MutePoint (0)) { - _mute_point = MutePoint (0); - MutePointChanged (); // EMIT SIGNAL + if (Config->get_mute_affects_post_fader ()) { + _mute_point = MutePoint (_mute_point | PostFader); + } + + if (Config->get_mute_affects_control_outs ()) { + _mute_point = MutePoint (_mute_point | Listen); + } + + if (Config->get_mute_affects_main_outs ()) { + _mute_point = MutePoint (_mute_point | Main); } } @@ -64,51 +74,96 @@ MuteMaster::unmute_at (MutePoint mp) } void -MuteMaster::mute (bool yn) +MuteMaster::set_soloed (bool yn) { - /* convenience wrapper around AutomationControl method */ - - if (yn) { - set_value ((float) 0xffff); - } else { - set_value (0.0f); - } + _soloed = yn; } gain_t MuteMaster::mute_gain_at (MutePoint mp) const { - if (_mute_point & mp) { - return Config->get_solo_mute_gain (); - } else { - return 1.0; - } + gain_t gain; + + if (Config->get_solo_mute_override()) { + if (_soloed) { + gain = 1.0; + } else if (muted_by_self_at (mp)) { + gain = 0.0; + } else { + if (muted_by_others_at (mp)) { + gain = Config->get_solo_mute_gain (); + } else { + gain = 1.0; + } + } + } else { + if (muted_by_self_at (mp)) { + gain = 0.0; + } else if (_soloed) { + gain = 1.0; + } else { + if (muted_by_others_at (mp)) { + gain = Config->get_solo_mute_gain (); + } else { + gain = 1.0; + } + } + } + + return gain; } void -MuteMaster::set_value (float f) +MuteMaster::set_mute_points (const std::string& mute_point) { - MutePoint old = _mute_point; - _mute_point = (MutePoint) (rint (f)); - if (old != _mute_point) { - MutePointChanged (); // EMIT SIGNAL - } + MutePoint old = _mute_point; + + _mute_point = (MutePoint) string_2_enum (mute_point, _mute_point); + + if (old != _mute_point) { + MutePointChanged(); /* EMIT SIGNAL */ + } } -float -MuteMaster::get_value () const +void +MuteMaster::set_mute_points (MutePoint mp) { - return (float) _mute_point; + if (_mute_point != mp) { + _mute_point = mp; + MutePointChanged (); /* EMIT SIGNAL */ + } } int -MuteMaster::set_state (const XMLNode& node) +MuteMaster::set_state (const XMLNode& node, int /*version*/) { + const XMLProperty* prop; + + if ((prop = node.property ("mute-point")) != 0) { + _mute_point = (MutePoint) string_2_enum (prop->value(), _mute_point); + } + + if ((prop = node.property ("muted")) != 0) { + _muted_by_self = string_is_affirmative (prop->value()); + } else { + _muted_by_self = (_mute_point != MutePoint (0)); + } + return 0; } XMLNode& MuteMaster::get_state() { - return *(new XMLNode (X_("MuteMaster"))); + XMLNode* node = new XMLNode (X_("MuteMaster")); + node->add_property ("mute-point", enum_2_string (_mute_point)); + node->add_property ("muted", (_muted_by_self ? X_("yes") : X_("no"))); + return *node; } + +bool +MuteMaster::muted_by_others_at (MutePoint mp) const +{ + return (!_solo_ignore && _session.soloing() && (_mute_point & mp)); +} +