X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=blobdiff_plain;f=libs%2Fardour%2Fmute_master.cc;h=ed77942f6c4ae03070930dc3b93e0630670ed05b;hp=bc3cca787ab7c0e326588ecb48efa1babd3293ef;hb=c8c6bca6587450ff64303dbc994a4cd28d6ce7aa;hpb=bf6de6da77ca8fdeda6e92ae5adffd0a9f14da1c diff --git a/libs/ardour/mute_master.cc b/libs/ardour/mute_master.cc index bc3cca787a..ed77942f6c 100644 --- a/libs/ardour/mute_master.cc +++ b/libs/ardour/mute_master.cc @@ -20,28 +20,47 @@ #include "pbd/enumwriter.h" #include "pbd/xml++.h" +#include "pbd/convert.h" #include "ardour/types.h" #include "ardour/mute_master.h" #include "ardour/session.h" -#include "i18n.h" +#include "pbd/i18n.h" using namespace ARDOUR; using namespace std; -const MuteMaster::MutePoint MuteMaster::AllPoints = MutePoint (MuteMaster::PreFader| - MuteMaster::PostFader| - MuteMaster::Listen| - MuteMaster::Main); - -MuteMaster::MuteMaster (Session& s, const std::string&) - : SessionHandleRef (s) - , _mute_point (AllPoints) - , _muted (false) - , _soloed (false) - , _solo_ignore (false) +const string MuteMaster::xml_node_name (X_("MuteMaster")); + +const MuteMaster::MutePoint MuteMaster::AllPoints = MuteMaster::MutePoint( + PreFader|PostFader|Listen|Main); + +MuteMaster::MuteMaster (Session& s, Muteable& m, const std::string&) + : SessionHandleRef (s) + , _muteable (&m) + , _mute_point (MutePoint (0)) + , _muted_by_self (false) + , _soloed_by_self (false) + , _soloed_by_others (false) + , _muted_by_masters (0) { + + if (Config->get_mute_affects_pre_fader ()) { + _mute_point = MutePoint (_mute_point | PreFader); + } + + 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); + } } void @@ -62,43 +81,37 @@ MuteMaster::unmute_at (MutePoint mp) } } -void -MuteMaster::set_soloed (bool yn) -{ - _soloed = yn; -} - gain_t MuteMaster::mute_gain_at (MutePoint mp) const { gain_t gain; if (Config->get_solo_mute_override()) { - if (_soloed) { - gain = 1.0; - } else if (muted_at (mp)) { // self-muted - gain = Config->get_solo_mute_gain (); + if (_soloed_by_self) { + gain = GAIN_COEFF_UNITY; + } else if (muted_by_self_at (mp) || muted_by_masters_at (mp)) { + gain = GAIN_COEFF_ZERO; } else { - if (!_solo_ignore && _session.soloing()) { - gain = 0.0; + if (!_soloed_by_others && muted_by_others_soloing_at (mp)) { + gain = Config->get_solo_mute_gain (); } else { - gain = 1.0; + gain = GAIN_COEFF_UNITY; } } } else { - if (muted_at (mp)) { // self-muted - gain = Config->get_solo_mute_gain (); - } else if (_soloed) { - gain = 1.0; + if (muted_by_self_at (mp) || muted_by_masters_at (mp)) { + gain = GAIN_COEFF_ZERO; + } else if (_soloed_by_self || _soloed_by_others) { + gain = GAIN_COEFF_UNITY; } else { - if (!_solo_ignore && _session.soloing()) { - gain = 0.0; + if (muted_by_others_soloing_at (mp)) { + gain = Config->get_solo_mute_gain (); } else { - gain = 1.0; + gain = GAIN_COEFF_UNITY; } } } - + return gain; } @@ -108,14 +121,14 @@ MuteMaster::set_mute_points (const std::string& mute_point) MutePoint old = _mute_point; _mute_point = (MutePoint) string_2_enum (mute_point, _mute_point); - + if (old != _mute_point) { MutePointChanged(); /* EMIT SIGNAL */ } } void -MuteMaster::set_mute_points (MutePoint mp) +MuteMaster::set_mute_points (MutePoint mp) { if (_mute_point != mp) { _mute_point = mp; @@ -126,16 +139,16 @@ MuteMaster::set_mute_points (MutePoint mp) int MuteMaster::set_state (const XMLNode& node, int /*version*/) { - const XMLProperty* prop; + XMLProperty const * 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 = string_is_affirmative (prop->value()); + _muted_by_self = PBD::string_is_affirmative (prop->value()); } else { - _muted = (_mute_point != MutePoint (0)); + _muted_by_self = (_mute_point != MutePoint (0)); } return 0; @@ -144,8 +157,20 @@ MuteMaster::set_state (const XMLNode& node, int /*version*/) XMLNode& MuteMaster::get_state() { - XMLNode* node = new XMLNode (X_("MuteMaster")); + XMLNode* node = new XMLNode (xml_node_name); node->add_property ("mute-point", enum_2_string (_mute_point)); - node->add_property ("muted", (_muted ? X_("yes") : X_("no"))); + node->add_property ("muted", (_muted_by_self ? X_("yes") : X_("no"))); return *node; } + +bool +MuteMaster::muted_by_others_soloing_at (MutePoint mp) const +{ + return _muteable->muted_by_others_soloing() && (_mute_point & mp); +} + +void +MuteMaster::set_muted_by_masters (bool yn) +{ + _muted_by_masters = yn; +}