add display name to processors (so that it can differ from the "real name"); pay...
[ardour.git] / libs / ardour / ardour / delivery.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3     
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8     
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13     
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_delivery_h__
20 #define __ardour_delivery_h__
21
22 #include <string>
23 #include "ardour/types.h"
24 #include "ardour/chan_count.h"
25 #include "ardour/io_processor.h"
26
27 namespace ARDOUR {
28
29 class BufferSet;
30 class IO;
31 class MuteMaster;
32 class Panner;
33
34 class Delivery : public IOProcessor {
35 public:
36         enum Role {
37                 Insert = 0x1,
38                 Send   = 0x2,
39                 Listen = 0x4,
40                 Main   = 0x8
41         };
42
43         /* Delivery to an existing output */
44
45         Delivery (Session& s, boost::shared_ptr<IO> io, boost::shared_ptr<MuteMaster> mm, const std::string& name, Role);
46         Delivery (Session& s, boost::shared_ptr<IO> io, boost::shared_ptr<MuteMaster> mm, const XMLNode&);
47
48         /* Delivery to a new output owned by this object */
49
50         Delivery (Session& s, boost::shared_ptr<MuteMaster> mm, const std::string& name, Role);
51         Delivery (Session&, boost::shared_ptr<MuteMaster> mm, const XMLNode&);
52
53         bool set_name (const std::string& name);
54         std::string display_name() const;
55
56         bool visible() const;
57         Role role() const { return _role; }
58         bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
59         bool configure_io (ChanCount in, ChanCount out);
60
61         void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes);
62
63         /* supplemental method use with MIDI */
64
65         void flush (nframes_t nframes);
66
67         void no_outs_cuz_we_no_monitor(bool);
68
69         void set_solo_level (int32_t sl) { _solo_level = sl; }
70         void set_solo_isolated (bool yn) { _solo_isolated = yn; }
71
72         void cycle_start (nframes_t);
73         void increment_output_offset (nframes_t);
74         void transport_stopped (sframes_t frame);
75
76         BufferSet& output_buffers() { return *_output_buffers; }
77
78         sigc::signal<void> MuteChange;
79
80         static sigc::signal<void,nframes_t> CycleStart;
81
82         XMLNode& state (bool full);
83         int set_state (const XMLNode&);
84
85         /* Panning */
86
87         static int  disable_panners (void);
88         static int  reset_panners (void);
89
90         boost::shared_ptr<Panner> panner() const { return _panner; }
91
92         void reset_panner ();
93         void defer_pan_reset ();
94         void allow_pan_reset ();
95
96         uint32_t pans_required() const { return _configured_input.n_audio(); }
97         void start_pan_touch (uint32_t which);
98         void end_pan_touch (uint32_t which);
99
100   protected:
101         Role        _role;
102         BufferSet*  _output_buffers;
103         gain_t      _current_gain;
104         nframes_t   _output_offset;
105         bool        _no_outs_cuz_we_no_monitor;
106         uint32_t    _solo_level;
107         bool        _solo_isolated;
108         boost::shared_ptr<MuteMaster> _mute_master;
109         bool         no_panner_reset;
110         boost::shared_ptr<Panner> _panner;
111
112         static bool panners_legal;
113         static sigc::signal<int>            PannersLegal;
114
115         int panners_became_legal ();
116         sigc::connection panner_legal_c;
117         void output_changed (IOChange, void*);
118
119         gain_t target_gain ();
120 };
121
122
123 } // namespace ARDOUR
124
125 #endif // __ardour__h__
126