X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fmute_master.cc;h=9f2ed08dab5ce5f7fd4af3000d34dec150d7708b;hb=f6d29abfc75c460b9e35717f2907e4e61bf38058;hp=b3b3d2372427d0e4e28245b090e462033cd3405a;hpb=47de938e998ffceb0d9cfa829b47dad721445dc9;p=ardour.git diff --git a/libs/ardour/mute_master.cc b/libs/ardour/mute_master.cc index b3b3d23724..9f2ed08dab 100644 --- a/libs/ardour/mute_master.cc +++ b/libs/ardour/mute_master.cc @@ -20,33 +20,39 @@ #include "pbd/enumwriter.h" #include "pbd/xml++.h" +#include "pbd/convert.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&) + : SessionHandleRef (s) + , _mute_point (MutePoint (0)) + , _muted_by_self (false) + , _soloed (false) + , _solo_ignore (false) +{ -const MuteMaster::MutePoint MuteMaster::AllPoints = MutePoint (MuteMaster::PreFader| - MuteMaster::PostFader| - MuteMaster::Listen| - MuteMaster::Main); + if (Config->get_mute_affects_pre_fader ()) { + _mute_point = MutePoint (_mute_point | PreFader); + } -MuteMaster::MuteMaster (Session&, const std::string&) - : _mute_point (MutePoint (0)) - , _self_muted (false) - , _muted_by_others (0) -{ -} + if (Config->get_mute_affects_post_fader ()) { + _mute_point = MutePoint (_mute_point | PostFader); + } -void -MuteMaster::clear_mute () -{ - if (_mute_point != MutePoint (0)) { - _mute_point = MutePoint (0); - MutePointChanged (); // EMIT SIGNAL + 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); } } @@ -69,27 +75,43 @@ MuteMaster::unmute_at (MutePoint mp) } void -MuteMaster::mod_muted_by_others (int32_t delta) +MuteMaster::set_soloed (bool yn) { - if (delta < 0) { - if (_muted_by_others >= (uint32_t) abs (delta)) { - _muted_by_others += delta; - } else { - _muted_by_others = 0; - } - } else { - _muted_by_others += delta; - } + _soloed = yn; } gain_t MuteMaster::mute_gain_at (MutePoint mp) const { - if (muted_at (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 @@ -105,7 +127,7 @@ MuteMaster::set_mute_points (const std::string& mute_point) } void -MuteMaster::set_mute_points (MutePoint mp) +MuteMaster::set_mute_points (MutePoint mp) { if (_mute_point != mp) { _mute_point = mp; @@ -123,17 +145,9 @@ MuteMaster::set_state (const XMLNode& node, int /*version*/) } if ((prop = node.property ("muted")) != 0) { - _self_muted = string_is_affirmative (prop->value()); + _muted_by_self = PBD::string_is_affirmative (prop->value()); } else { - _self_muted = (_mute_point != MutePoint (0)); - } - - if ((prop = node.property ("muted-by-others")) != 0) { - if (sscanf (prop->value().c_str(), "%u", &_muted_by_others) != 1) { - _muted_by_others = 0; - } - } else { - _muted_by_others = 0; + _muted_by_self = (_mute_point != MutePoint (0)); } return 0; @@ -144,11 +158,13 @@ MuteMaster::get_state() { XMLNode* node = new XMLNode (X_("MuteMaster")); node->add_property ("mute-point", enum_2_string (_mute_point)); - node->add_property ("muted", (_self_muted ? X_("yes") : X_("no"))); - - char buf[32]; - snprintf (buf, sizeof (buf), "%u", _muted_by_others); - node->add_property ("muted-by-others", buf); - + 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)); +} +