save+restore VCA counter value across instances
[ardour.git] / libs / ardour / ardour / vca.h
1 /*
2     Copyright (C) 2016 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_vca_h__
20 #define __ardour_vca_h__
21
22 #include <string>
23 #include <boost/shared_ptr.hpp>
24 #include <boost/enable_shared_from_this.hpp>
25
26 #include "pbd/controllable.h"
27 #include "pbd/statefuldestructible.h"
28
29 #include "ardour/automatable.h"
30 #include "ardour/stripable.h"
31
32 namespace ARDOUR {
33
34 class GainControl;
35 class Route;
36
37 class LIBARDOUR_API VCA : public Stripable, public Automatable, public boost::enable_shared_from_this<VCA> {
38   public:
39         VCA (Session& session,  uint32_t num, const std::string& name);
40         ~VCA();
41
42         uint32_t number () const { return _number; }
43         uint32_t remote_control_id() const;
44
45         int init ();
46         XMLNode& get_state();
47         int set_state (XMLNode const&, int version);
48
49         void add_solo_mute_target (boost::shared_ptr<Route>);
50         void remove_solo_mute_target (boost::shared_ptr<Route>);
51
52         bool soloed () const;
53         bool muted () const;
54
55         static std::string default_name_template ();
56         static int next_vca_number ();
57         static std::string xml_node_name;
58         static void set_next_vca_number (uint32_t);
59
60         virtual boost::shared_ptr<GainControl> gain_control() const { return _gain_control; }
61         virtual boost::shared_ptr<AutomationControl> solo_control() const { return _solo_control; }
62         virtual boost::shared_ptr<AutomationControl> mute_control() const { return _mute_control; }
63
64         /* null Stripable API, because VCAs don't have any of this */
65
66         virtual boost::shared_ptr<PeakMeter>       peak_meter() { return boost::shared_ptr<PeakMeter>(); }
67         virtual boost::shared_ptr<const PeakMeter> peak_meter() const { return boost::shared_ptr<PeakMeter>(); }
68         virtual boost::shared_ptr<AutomationControl> phase_control() const { return boost::shared_ptr<AutomationControl>(); }
69         virtual boost::shared_ptr<AutomationControl> trim_control() const { return boost::shared_ptr<AutomationControl>(); }
70         virtual boost::shared_ptr<AutomationControl> monitoring_control() const { return boost::shared_ptr<AutomationControl>(); }
71         virtual boost::shared_ptr<AutomationControl> recenable_control() const { return boost::shared_ptr<AutomationControl>(); }
72         virtual boost::shared_ptr<AutomationControl> pan_azimuth_control() const { return boost::shared_ptr<AutomationControl>(); }
73         virtual boost::shared_ptr<AutomationControl> pan_elevation_control() const { return boost::shared_ptr<AutomationControl>(); }
74         virtual boost::shared_ptr<AutomationControl> pan_width_control() const { return boost::shared_ptr<AutomationControl>(); }
75         virtual boost::shared_ptr<AutomationControl> pan_frontback_control() const { return boost::shared_ptr<AutomationControl>(); }
76         virtual boost::shared_ptr<AutomationControl> pan_lfe_control() const { return boost::shared_ptr<AutomationControl>(); }
77         virtual uint32_t eq_band_cnt () const { return 0; }
78         virtual std::string eq_band_name (uint32_t) const { return std::string(); }
79         virtual boost::shared_ptr<AutomationControl> eq_gain_controllable (uint32_t band) const { return boost::shared_ptr<AutomationControl>(); }
80         virtual boost::shared_ptr<AutomationControl> eq_freq_controllable (uint32_t band) const { return boost::shared_ptr<AutomationControl>(); }
81         virtual boost::shared_ptr<AutomationControl> eq_q_controllable (uint32_t band) const { return boost::shared_ptr<AutomationControl>(); }
82         virtual boost::shared_ptr<AutomationControl> eq_shape_controllable (uint32_t band) const { return boost::shared_ptr<AutomationControl>(); }
83         virtual boost::shared_ptr<AutomationControl> eq_enable_controllable () const { return boost::shared_ptr<AutomationControl>(); }
84         virtual boost::shared_ptr<AutomationControl> eq_hpf_controllable () const { return boost::shared_ptr<AutomationControl>(); }
85         virtual boost::shared_ptr<AutomationControl> comp_enable_controllable () const { return boost::shared_ptr<AutomationControl>(); }
86         virtual boost::shared_ptr<AutomationControl> comp_threshold_controllable () const { return boost::shared_ptr<AutomationControl>(); }
87         virtual boost::shared_ptr<AutomationControl> comp_speed_controllable () const { return boost::shared_ptr<AutomationControl>(); }
88         virtual boost::shared_ptr<AutomationControl> comp_mode_controllable () const { return boost::shared_ptr<AutomationControl>(); }
89         virtual boost::shared_ptr<AutomationControl> comp_makeup_controllable () const { return boost::shared_ptr<AutomationControl>(); }
90         virtual boost::shared_ptr<AutomationControl> comp_redux_controllable () const { return boost::shared_ptr<AutomationControl>(); }
91         virtual std::string comp_mode_name (uint32_t mode) const { return std::string(); }
92         virtual std::string comp_speed_name (uint32_t mode) const { return std::string(); }
93         virtual boost::shared_ptr<AutomationControl> send_level_controllable (uint32_t n) const { return boost::shared_ptr<AutomationControl>(); }
94         virtual boost::shared_ptr<AutomationControl> send_enable_controllable (uint32_t n) const { return boost::shared_ptr<AutomationControl>(); }
95         virtual std::string send_name (uint32_t n) const { return std::string(); }
96         virtual boost::shared_ptr<AutomationControl> master_send_enable_controllable () const { return boost::shared_ptr<AutomationControl>(); }
97
98   private:
99         class VCASoloControllable : public AutomationControl {
100           public:
101                 VCASoloControllable (std::string const & name, boost::shared_ptr<VCA> vca);
102                 void set_value (double, PBD::Controllable::GroupControlDisposition group_override);
103                 void set_value_unchecked (double);
104                 double get_value () const;
105           private:
106                 void _set_value (double, PBD::Controllable::GroupControlDisposition group_override);
107                 boost::weak_ptr<VCA> _vca;
108         };
109
110         class VCAMuteControllable : public AutomationControl {
111           public:
112                 VCAMuteControllable (std::string const & name, boost::shared_ptr<VCA> vca);
113                 void set_value (double, PBD::Controllable::GroupControlDisposition group_override);
114                 void set_value_unchecked (double);
115                 double get_value () const;
116           private:
117                 void _set_value (double, PBD::Controllable::GroupControlDisposition group_override);
118                 boost::weak_ptr<VCA> _vca;
119         };
120
121         friend class VCASoloControllable;
122         friend class VCAMuteControllable;
123
124         uint32_t    _number;
125         RouteList solo_mute_targets;
126         PBD::ScopedConnectionList solo_mute_connections;
127         mutable Glib::Threads::RWLock solo_mute_lock;
128         boost::shared_ptr<GainControl> _gain_control;
129         boost::shared_ptr<VCASoloControllable> _solo_control;
130         boost::shared_ptr<VCAMuteControllable> _mute_control;
131         bool _solo_requested;
132         bool _mute_requested;
133
134         static gint next_number;
135
136         void solo_mute_target_going_away (boost::weak_ptr<Route>);
137         bool soloed_locked () const;
138         bool muted_locked () const;
139
140         void set_solo (bool yn);
141         void set_mute (bool yn);
142
143 };
144
145 } /* namespace */
146
147 #endif /* __ardour_vca_h__ */