153e50f4823671f53a0bcf28f62c6eca8f7ed810
[ardour.git] / libs / ardour / ardour / return.h
1 /*
2     Copyright (C) 2009 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_return_h__
22 #define __ardour_return_h__
23
24 #include <string>
25
26
27 #include "pbd/stateful.h"
28 #include "ardour/ardour.h"
29 #include "ardour/io_processor.h"
30
31 namespace ARDOUR {
32
33 class Amp;
34 class PeakMeter;
35
36 class Return : public IOProcessor
37 {
38 public:
39         Return (Session&, bool internal = false);
40         virtual ~Return ();
41
42         uint32_t bit_slot() const { return _bitslot; }
43
44         void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
45
46         boost::shared_ptr<Amp> amp() const { return _amp; }
47         boost::shared_ptr<PeakMeter> meter() const { return _meter; }
48
49         bool metering() const { return _metering; }
50         void set_metering (bool yn) { _metering = yn; }
51
52         XMLNode& state(bool full);
53         XMLNode& get_state(void);
54         int      set_state(const XMLNode&, int version);
55
56         uint32_t pans_required() const { return _configured_input.n_audio(); }
57
58         bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
59         bool configure_io (ChanCount in, ChanCount out);
60
61         static uint32_t how_many_returns();
62         static void make_unique (XMLNode &, Session &);
63
64   protected:
65         bool _metering;
66         boost::shared_ptr<Amp> _amp;
67         boost::shared_ptr<PeakMeter> _meter;
68
69 private:
70         /* disallow copy construction */
71         Return (const Return&);
72
73         uint32_t _bitslot;
74
75         void collect_input (BufferSet& bufs, pframes_t nframes, ChanCount offset = ChanCount::ZERO);
76 };
77
78 } // namespace ARDOUR
79
80 #endif /* __ardour_return_h__ */
81