add new SMFSource constructor to be used for existing-external files. Fixes #5919...
[ardour.git] / libs / ardour / ardour / send.h
index 0a068e8af02d4706446c2456224ef0531d1c9d86..6e2775286daea24d5de0de712ea1b1e4c8838b2c 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000 Paul Davis 
+    Copyright (C) 2000 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
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_send_h__
 #define __ardour_send_h__
 
-#include <sigc++/signal.h>
 #include <string>
 
+#include "pbd/stateful.h"
 
-#include <pbd/stateful.h> 
-#include <ardour/ardour.h>
-#include <ardour/audioengine.h>
-#include <ardour/io.h>
-#include <ardour/redirect.h>
+#include "ardour/ardour.h"
+#include "ardour/delivery.h"
 
 namespace ARDOUR {
 
-class Send : public Redirect {
-  public:      
-       Send (Session&, Placement);
-       Send (Session&, const XMLNode&);
-       Send (const Send&);
-       ~Send ();
-       
-       void run (vector<Sample *> &bufs, uint32_t nbufs, jack_nframes_t nframes, jack_nframes_t offset);
-       void activate() {}
-       void deactivate () {}
+class PeakMeter;
+class Amp;
 
-       void set_metering (bool yn);
+class Send : public Delivery
+{
+  public:
+       Send (Session&, boost::shared_ptr<Pannable> pannable, boost::shared_ptr<MuteMaster>, Delivery::Role r = Delivery::Send, bool ignore_bitslot = false);
+       virtual ~Send ();
 
-       XMLNode& state(bool full);
-       XMLNode& get_state(void);
-       int set_state(const XMLNode& node);
+       uint32_t bit_slot() const { return _bitslot; }
 
-       uint32_t pans_required() const { return expected_inputs; }
-       void expect_inputs (uint32_t);
+       bool display_to_user() const;
 
-  private:
+       boost::shared_ptr<Amp> amp() const { return _amp; }
+       boost::shared_ptr<PeakMeter> meter() const { return _meter; }
+
+       bool metering() const { return _metering; }
+       void set_metering (bool yn) { _metering = yn; }
+
+       XMLNode& state (bool full);
+       XMLNode& get_state ();
+       int set_state(const XMLNode&, int version);
+
+       uint32_t pans_required() const { return _configured_input.n_audio(); }
+
+       void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
+
+       bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
+       bool configure_io (ChanCount in, ChanCount out);
+
+       void activate ();
+       void deactivate ();
+
+       bool set_name (const std::string& str);
+
+       std::string value_as_string (boost::shared_ptr<AutomationControl>) const;
+       
+       static uint32_t how_many_sends();
+       static std::string name_and_id_new_send (Session&, Delivery::Role r, uint32_t&, bool);
+
+  protected:
        bool _metering;
-       uint32_t expected_inputs;
+       boost::shared_ptr<Amp> _amp;
+       boost::shared_ptr<PeakMeter> _meter;
+
+  private:
+       /* disallow copy construction */
+       Send (const Send&);
+       void panshell_changed ();
+
+       int set_state_2X (XMLNode const &, int);
+
+       uint32_t  _bitslot;
 };
 
 } // namespace ARDOUR