8ec4c9b8b53c54553c66dcfbe124bdb966734612
[ardour.git] / libs / ardour / ardour / return.h
1 /*
2     Copyright (C) 2009 Paul Davis
3     Author: Dave 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/audioengine.h"
30 #include "ardour/io_processor.h"
31
32 namespace ARDOUR {
33
34 class Amp;
35 class PeakMeter;
36
37 class Return : public IOProcessor
38 {
39 public:
40         Return (Session&, bool internal = false);
41         virtual ~Return ();
42
43         uint32_t bit_slot() const { return _bitslot; }
44
45         void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
46
47         boost::shared_ptr<Amp> amp() const { return _amp; }
48         boost::shared_ptr<PeakMeter> meter() const { return _meter; }
49
50         bool metering() const { return _metering; }
51         void set_metering (bool yn) { _metering = yn; }
52
53         XMLNode& state(bool full);
54         XMLNode& get_state(void);
55         int      set_state(const XMLNode&, int version);
56
57         uint32_t pans_required() const { return _configured_input.n_audio(); }
58
59         bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
60         bool configure_io (ChanCount in, ChanCount out);
61
62         static uint32_t how_many_returns();
63         static void make_unique (XMLNode &, Session &);
64
65   protected:
66         bool _metering;
67         boost::shared_ptr<Amp> _amp;
68         boost::shared_ptr<PeakMeter> _meter;
69
70 private:
71         /* disallow copy construction */
72         Return (const Return&);
73
74         uint32_t _bitslot;
75
76         void collect_input (BufferSet& bufs, pframes_t nframes, ChanCount offset = ChanCount::ZERO);
77         void just_meter_input (framepos_t start_frame, framepos_t end_frame, pframes_t nframes);
78 };
79
80 } // namespace ARDOUR
81
82 #endif /* __ardour_return_h__ */
83