summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/gain_control.h
blob: e565dd33c93708d342cb18f0df62d4f32627b96a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
    Copyright (C) 2006-2016 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 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.
*/

#ifndef __ardour_gain_control_h__
#define __ardour_gain_control_h__

#include <string>
#include <map>

#include <boost/shared_ptr.hpp>
#include <glibmm/threads.h>

#include "pbd/controllable.h"

#include "evoral/Parameter.hpp"

#include "ardour/automation_control.h"
#include "ardour/libardour_visibility.h"

namespace ARDOUR {

class Session;

class LIBARDOUR_API GainControl : public AutomationControl {
  public:
	GainControl (Session& session, const Evoral::Parameter &param,
	             boost::shared_ptr<AutomationList> al = boost::shared_ptr<AutomationList>());

	double get_value () const;
	void set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
	void set_value_unchecked (double);

	double internal_to_interface (double) const;
	double interface_to_internal (double) const;
	double internal_to_user (double) const;
	double user_to_internal (double) const;
	std::string get_user_string () const;

	double lower_db;
	double range_db;

	gain_t get_master_gain () const;
	void add_master (boost::shared_ptr<VCA>);
	void remove_master (boost::shared_ptr<VCA>);
	void clear_masters ();
	bool slaved_to (boost::shared_ptr<VCA>) const;
	bool slaved () const;
	std::vector<uint32_t> masters () const;

	PBD::Signal0<void> VCAStatusChange;

	int set_state (XMLNode const&, int);
	XMLNode& get_state();

  private:
	class MasterRecord {
          public:
		MasterRecord (boost::shared_ptr<AutomationControl> gc, double r)
			: _master (gc)
			, _ratio (r)
		{}

		boost::shared_ptr<AutomationControl> master() const { return _master; }
		double ratio () const { return _ratio; }
		void reset_ratio (double r) { _ratio = r; }

		PBD::ScopedConnection connection;

         private:
		boost::shared_ptr<AutomationControl> _master;
		double _ratio;

	};

	mutable Glib::Threads::RWLock master_lock;
	typedef std::map<uint32_t,MasterRecord> Masters;
	Masters _masters;
	PBD::ScopedConnectionList masters_connections;
	std::string masters_string;
	PBD::ScopedConnection vca_loaded_connection;

	gain_t get_value_locked () const;
	gain_t get_master_gain_locked () const;
	void master_going_away (boost::weak_ptr<VCA>);
	void recompute_masters_ratios (double val);
	void vcas_loaded();

	void _set_value (double val, PBD::Controllable::GroupControlDisposition group_override);
};

} /* namespace */

#endif /* __ardour_gain_control_h__ */