X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fsend.h;h=fa023a3b684427a8c51f246d59832282b2633702;hb=04416e2d1df3cc8d9f014765e5ca5ce818b7b4d7;hp=4e3c0fbe2db75b1620d071052d02af3068bbe547;hpb=2a52135c663e9a60b5f0cc9cc6673799c3ea5549;p=ardour.git diff --git a/libs/ardour/ardour/send.h b/libs/ardour/ardour/send.h index 4e3c0fbe2d..fa023a3b68 100644 --- a/libs/ardour/ardour/send.h +++ b/libs/ardour/ardour/send.h @@ -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 @@ -20,48 +20,67 @@ #ifndef __ardour_send_h__ #define __ardour_send_h__ -#include #include +#include "pbd/stateful.h" -#include -#include -#include -#include -#include +#include "ardour/ardour.h" +#include "ardour/delivery.h" namespace ARDOUR { -class Send : public Redirect +class PeakMeter; +class Amp; + +class Send : public Delivery { - public: - Send (Session&, Placement); - Send (Session&, const XMLNode&); - Send (const Send&); + public: + Send (Session&, boost::shared_ptr pannable, boost::shared_ptr, Delivery::Role r = Delivery::Send); virtual ~Send (); - uint32_t bit_slot() const { return bitslot; } - - void run (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset); - - void activate() {} - void deactivate () {} + uint32_t bit_slot() const { return _bitslot; } + + bool display_to_user() const; + + boost::shared_ptr amp() const { return _amp; } + boost::shared_ptr 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); - void set_metering (bool yn); + uint32_t pans_required() const { return _configured_input.n_audio(); } - XMLNode& state(bool full); - XMLNode& get_state(void); - int set_state(const XMLNode& node); + void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool); - uint32_t pans_required() const { return _expected_inputs.get(DataType::AUDIO); } - void expect_inputs (const ChanCount&); + bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const; + 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) const; + static uint32_t how_many_sends(); + static std::string name_and_id_new_send (Session&, Delivery::Role r, uint32_t&); + + protected: + bool _metering; + boost::shared_ptr _amp; + boost::shared_ptr _meter; private: - bool _metering; - ChanCount _expected_inputs; - uint32_t bitslot; + /* disallow copy construction */ + Send (const Send&); + + int set_state_2X (XMLNode const &, int); + + uint32_t _bitslot; }; } // namespace ARDOUR