1339a3484b4e44f8048fa7a52ff599dd4f3800f1
[ardour.git] / libs / surfaces / osc / osc_select_observer.h
1 /*
2     Copyright (C) 2009 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 */
19
20 #ifndef __osc_oscselectobserver_h__
21 #define __osc_oscselectobserver_h__
22
23 #include <string>
24 #include <bitset>
25 #include <boost/shared_ptr.hpp>
26 #include <sigc++/sigc++.h>
27 #include <lo/lo.h>
28
29 #include "pbd/controllable.h"
30 #include "pbd/stateful.h"
31 #include "ardour/types.h"
32 #include "ardour/processor.h"
33
34 #include "osc.h"
35
36 class OSCSelectObserver
37 {
38
39   public:
40         OSCSelectObserver (ArdourSurface::OSC& o, ArdourSurface::OSC::OSCSurface* sur);
41         ~OSCSelectObserver ();
42
43         boost::shared_ptr<ARDOUR::Stripable> strip () const { return _strip; }
44         lo_address address() const { return addr; };
45         void tick (void);
46         void renew_sends (void);
47         void renew_plugin (void);
48         void eq_restart (int);
49         void clear_observer (void);
50         void refresh_strip (boost::shared_ptr<ARDOUR::Stripable> new_strip, uint32_t nsends, uint32_t g_mode, bool force);
51         void set_expand (uint32_t expand);
52         void set_send_page (uint32_t page);
53         void set_send_size (uint32_t size);
54         void set_plugin_id (int id, uint32_t page);
55         void set_plugin_page (uint32_t page);
56         void set_plugin_size (uint32_t size);
57
58   private:
59         boost::shared_ptr<ARDOUR::Stripable> _strip;
60         ArdourSurface::OSC& _osc;
61         
62         PBD::ScopedConnectionList strip_connections;
63         // sends, plugins and eq need their own
64         PBD::ScopedConnectionList send_connections;
65         PBD::ScopedConnectionList plugin_connections;
66         PBD::ScopedConnectionList eq_connections;
67
68         lo_address addr;
69         std::string path;
70         uint32_t gainmode;
71         std::bitset<32> feedback;
72         bool in_line;
73         ArdourSurface::OSC::OSCSurface* sur;
74         std::vector<int> send_timeout;
75         uint32_t gain_timeout;
76         float _last_meter;
77         uint32_t nsends;
78         float _last_gain;
79         float _last_trim;
80         std::vector<float> _last_send;
81         bool _init;
82         float _comp_redux;
83         ARDOUR::AutoState as;
84         uint32_t send_page_size;
85         uint32_t send_size;
86         uint32_t send_page;
87
88         uint32_t nplug_params;
89         uint32_t plug_page_size;
90         uint32_t plug_page;
91         int plug_id;
92         uint32_t plug_size;
93         std::vector<int> plug_params;
94         int eq_bands;
95         bool _tick_busy;
96         uint32_t _expand;
97
98         void name_changed (const PBD::PropertyChange& what_changed);
99         void pi_changed (PBD::PropertyChange const&);
100         void change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
101         void enable_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
102         void comp_mode (void);
103         void change_message_with_id (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
104         void enable_message_with_id (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
105         void monitor_status (boost::shared_ptr<PBD::Controllable> controllable);
106         void gain_message ();
107         void gain_automation ();
108         void trim_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
109         // sends stuff
110         void send_init (void);
111         void send_end (void);
112         void plugin_init (void);
113         void plugin_end (void);
114         void plugin_parameter_changed (int pid, bool swtch, boost::shared_ptr<PBD::Controllable> controllable);
115         void send_gain (uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
116         void send_enable (std::string path, uint32_t id, boost::shared_ptr<ARDOUR::Processor> proc);
117         void plug_enable (std::string path, boost::shared_ptr<ARDOUR::Processor> proc);
118         void eq_init (void);
119         void eq_end (void);
120         void no_strip ();
121 };
122
123 #endif /* __osc_oscselectobserver_h__ */