c&p debug
[ardour.git] / libs / ardour / processor.cc
index 1abcc57f41831d74b6768f2c336c333052b11717..66d45a4174925be0e0f85e7c83c0bc1b54ac23a7 100644 (file)
@@ -56,34 +56,34 @@ using namespace std;
 using namespace ARDOUR;
 using namespace PBD;
 
-PBD::Signal1<void,Processor*> Processor::ProcessorCreated;
-
 // Always saved as Processor, but may be IOProcessor or Send in legacy sessions
 const string Processor::state_node_name = "Processor";
 
 Processor::Processor(Session& session, const string& name)
        : SessionObject(session, name)
-       , AutomatableControls(session)
+       , Automatable (session)
        , _pending_active(false)
        , _active(false)
        , _next_ab_is_active(false)
        , _configured(false)
-       , _gui(0)
        , _display_to_user (true)
+       , _pre_fader (false)
+        , _ui_pointer (0)
 {
 }
 
-Processor::Processor (Session& session, const XMLNode& node)
-       : SessionObject(session, "renameMe")
-       , AutomatableControls(session)
-       , _pending_active(false)
-       , _active(false)
+Processor::Processor (const Processor& other)
+       : Evoral::ControlSet (other)
+       , SessionObject (other.session(), other.name())
+       , Automatable (other.session())
+       , _pending_active(other._pending_active)
+       , _active(other._active)
        , _next_ab_is_active(false)
        , _configured(false)
-       , _gui(0)
        , _display_to_user (true)
+       , _pre_fader (false)
+        , _ui_pointer (0)
 {
-       set_state (node, Stateful::loading_state_version);
 }
 
 XMLNode&
@@ -122,7 +122,7 @@ Processor::state (bool full_state)
        }
 
        if (full_state) {
-               XMLNode& automation = Automatable::get_automation_state();
+               XMLNode& automation = Automatable::get_automation_xml_state();
                if (!automation.children().empty()
                                || !automation.properties().empty()
                                || !_visible_controls.empty()) {
@@ -130,10 +130,11 @@ Processor::state (bool full_state)
                        stringstream sstr;
                        for (set<Evoral::Parameter>::iterator x = _visible_controls.begin();
                                        x != _visible_controls.end(); ++x) {
+                                
                                if (x != _visible_controls.begin()) {
                                        sstr << ' ';
                                }
-                               sstr << *x;
+                               sstr << (*x).id();
                        }
 
                        automation.add_property ("visible", sstr.str());
@@ -164,10 +165,13 @@ Processor::set_state_2X (const XMLNode & node, int /*version*/)
                        }
 
                        if ((prop = (*i)->property ("active")) != 0) {
-                               if (_active != string_is_affirmative (prop->value())) {
-                                       _active = !_active;
-                                        _pending_active = _active;
-                                       ActiveChanged (); /* EMIT_SIGNAL */
+                               bool const a = string_is_affirmative (prop->value ());
+                               if (_active != a) {
+                                       if (a) {
+                                               activate ();
+                                       } else {
+                                               deactivate ();
+                                       }
                                }
                        }
                }
@@ -188,7 +192,10 @@ Processor::set_state (const XMLNode& node, int version)
 
        // may not exist for legacy 3.0 sessions
        if ((prop = node.property ("name")) != 0) {
-               set_name(prop->value());
+               /* don't let derived classes have a crack at set_name,
+                  as some (like Send) will screw with the one we suggest.
+               */
+               Processor::set_name (prop->value());
        }
 
        // may not exist for legacy 3.0 sessions
@@ -208,7 +215,7 @@ Processor::set_state (const XMLNode& node, int version)
                        if ((prop = (*niter)->property ("path")) != 0) {
                                old_set_automation_state (*(*niter));
                        } else {
-                               set_automation_state (*(*niter), Evoral::Parameter(PluginAutomation));
+                               set_automation_xml_state (*(*niter), Evoral::Parameter(PluginAutomation));
                        }
 
                        if ((prop = (*niter)->property ("visible")) != 0) {
@@ -246,15 +253,19 @@ Processor::set_state (const XMLNode& node, int version)
                }
        }
 
-       if (_active != string_is_affirmative (prop->value())) {
-               _active = !_active;
-                _pending_active = _active;
-               ActiveChanged (); /* EMIT_SIGNAL */
+       bool const a = string_is_affirmative (prop->value ());
+       if (_active != a) {
+               if (a) {
+                       activate ();
+               } else {
+                       deactivate ();
+               }
        }
 
        return 0;
 }
 
+/** Caller must hold process lock */
 bool
 Processor::configure_io (ChanCount in, ChanCount out)
 {
@@ -278,3 +289,14 @@ Processor::set_display_to_user (bool yn)
        _display_to_user = yn;
 }
 
+void
+Processor::set_pre_fader (bool p)
+{
+       _pre_fader = p;
+}
+
+void
+Processor::set_ui (void* p)
+{
+        _ui_pointer = p;
+}