r269@gandalf: fugalh | 2006-08-03 20:18:05 -0600
[ardour.git] / libs / ardour / ardour / redirect.h
1 /*
2     Copyright (C) 2001 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __ardour_redirect_h__
22 #define __ardour_redirect_h__
23
24 #include <string>
25 #include <vector>
26 #include <set>
27 #include <map>
28 #include <boost/shared_ptr.hpp>
29 #include <sigc++/signal.h>
30
31 #include <glibmm/thread.h>
32
33 #include <pbd/undo.h>
34
35 #include <ardour/ardour.h>
36 #include <ardour/io.h>
37 #include <ardour/automation_event.h>
38
39 using std::map;
40 using std::set;
41 using std::string;
42 using std::vector;
43
44 class XMLNode;
45
46 namespace ARDOUR {
47
48 class Session;
49
50 struct RedirectState : public StateManager::State {
51     RedirectState (string why) 
52             : StateManager::State (why) {}
53     ~RedirectState () {}
54
55     bool active;
56 };
57
58 class Redirect : public IO
59 {
60   public:
61         static const string state_node_name;
62
63         Redirect (Session&, const string& name, Placement,
64                   int input_min = -1, int input_max = -1, int output_min = -1, int output_max = -1);
65         Redirect (const Redirect&);
66         virtual ~Redirect ();
67
68         static boost::shared_ptr<Redirect> clone (boost::shared_ptr<const Redirect>);
69
70         bool active () const { return _active; }
71         void set_active (bool yn, void *src);
72
73         virtual uint32_t output_streams() const { return n_outputs(); }
74         virtual uint32_t input_streams () const { return n_inputs(); }
75         virtual uint32_t natural_output_streams() const { return n_outputs(); }
76         virtual uint32_t natural_input_streams () const { return n_inputs(); }
77
78         uint32_t sort_key() const { return _sort_key; }
79         void set_sort_key (uint32_t key);
80
81         Placement placement() const { return _placement; }
82         void set_placement (Placement, void *src);
83
84         virtual void run (vector<Sample *>& ibufs, uint32_t nbufs, jack_nframes_t nframes, jack_nframes_t offset) = 0;
85         virtual void activate () = 0;
86         virtual void deactivate () = 0;
87         virtual jack_nframes_t latency() { return 0; }
88
89         virtual void set_block_size (jack_nframes_t nframes) {}
90
91         sigc::signal<void,Redirect*,void*> active_changed;
92         sigc::signal<void,Redirect*,void*> placement_changed;
93         sigc::signal<void,Redirect*,bool>  AutomationPlaybackChanged;
94         sigc::signal<void,Redirect*,uint32_t> AutomationChanged;
95         sigc::signal<void,Redirect*> GoingAway;
96
97         static sigc::signal<void,Redirect*> RedirectCreated;
98         
99         XMLNode& state (bool full);
100         XMLNode& get_state (void);
101         int set_state (const XMLNode&);
102
103         StateManager::State* state_factory (string why) const;
104         Change restore_state (StateManager::State&);
105
106         void *get_gui () const { return _gui; }
107         void  set_gui (void *p) { _gui = p; }
108
109         virtual string describe_parameter (uint32_t which);
110         virtual float default_parameter_value (uint32_t which) {
111                 return 1.0f;
112         }
113
114         int load_automation (string path);
115         int save_automation (string path);
116
117         void what_has_automation (set<uint32_t>&) const;
118         void what_has_visible_automation (set<uint32_t>&) const;
119         const set<uint32_t>& what_can_be_automated () const { return can_automate_list; }
120
121         void mark_automation_visible (uint32_t, bool);
122         
123         AutomationList& automation_list (uint32_t);
124         bool find_next_event (jack_nframes_t, jack_nframes_t, ControlEvent&) const;
125
126         virtual void transport_stopped (jack_nframes_t frame) {};
127         
128   protected:
129         void set_placement (const string&, void *src);
130
131         /* children may use this stuff as they see fit */
132
133         map<uint32_t,AutomationList*> parameter_automation;
134         set<uint32_t> visible_parameter_automation;
135
136         mutable Glib::Mutex _automation_lock;
137
138         void can_automate (uint32_t);
139         set<uint32_t> can_automate_list;
140
141         void store_state (RedirectState&) const;
142
143         virtual void automation_list_creation_callback (uint32_t, AutomationList&) {}
144
145   private:
146         bool _active;
147         Placement _placement;
148         uint32_t _sort_key;
149         void* _gui;  /* generic, we don't know or care what this is */
150 };
151
152 } // namespace ARDOUR
153
154 #endif /* __ardour_redirect_h__ */