there is no remote model choice anymore - ordering is determined by the GUI
[ardour.git] / libs / ardour / ardour / amp.h
index e8445c4853abfd3b48e6ef3667a3d620f59a7dc3..a85963babebcb04b028879aeab91ac204acdaa25 100644 (file)
@@ -29,6 +29,7 @@
 namespace ARDOUR {
 
 class BufferSet;
+class GainControl;
 class IO;
 
 /** Applies a declick operation to all audio inputs, passing the same number of
@@ -36,13 +37,11 @@ class IO;
  */
 class LIBARDOUR_API Amp : public Processor {
 public:
-       Amp(Session& s, std::string type = "amp");
+       Amp(Session& s, const std::string& display_name, boost::shared_ptr<GainControl> control, bool control_midi_also);
 
        std::string display_name () const { return _display_name; }
        void set_display_name (const std::string& name) { _display_name = name; }
 
-       std::string type() const { return _type;}
-
        bool visible () const;
 
        bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
@@ -70,42 +69,8 @@ public:
        static void apply_simple_gain(AudioBuffer& buf, framecnt_t nframes, gain_t target);
 
        static void declick (BufferSet& bufs, framecnt_t nframes, int dir);
-
-       gain_t         gain () const { return _gain_control->get_value(); }
-
-       void           set_gain (gain_t g, void *src);
-       void           inc_gain (gain_t delta, void *src);
-
        static void update_meters();
 
-       /* automation */
-
-       struct GainControl : public AutomationControl {
-               GainControl (std::string name, Session& session, Amp* a, const Evoral::Parameter &param,
-                               boost::shared_ptr<AutomationList> al = boost::shared_ptr<AutomationList>() )
-                       : AutomationControl (session, param, ParameterDescriptor(param), al, name)
-                       , _amp (a) {
-                       set_flags (Controllable::Flag (flags() | Controllable::GainLike));
-                       alist()->reset_default (1.0);
-
-                       lower_db = accurate_coefficient_to_dB (_desc.lower);
-                       range_db = accurate_coefficient_to_dB (_desc.upper) - lower_db;
-               }
-
-               void set_value (double val);
-               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;
-
-               Amp* _amp;
-               double lower_db;
-               double range_db;
-       };
-
        boost::shared_ptr<GainControl> gain_control() {
                return _gain_control;
        }
@@ -114,7 +79,7 @@ public:
                return _gain_control;
        }
 
-       std::string value_as_string (boost::shared_ptr<AutomationControl>) const;
+       std::string value_as_string (boost::shared_ptr<const AutomationControl>) const;
 
 private:
        bool   _denormal_protection;
@@ -129,7 +94,6 @@ private:
 
        /** Buffer that we should use for gain automation */
        gain_t* _gain_automation_buffer;
-       std::string _type;
        bool _midi_amp;
 };