4114ecb2d51412b5c168d5a91778d05ec6726c65
[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 (boost::shared_ptr<ARDOUR::Stripable>, lo_address addr, 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
50   private:
51         boost::shared_ptr<ARDOUR::Stripable> _strip;
52
53         PBD::ScopedConnectionList strip_connections;
54         // sends, plugins and eq need their own
55         PBD::ScopedConnectionList send_connections;
56         PBD::ScopedConnectionList plugin_connections;
57         PBD::ScopedConnectionList eq_connections;
58
59         lo_address addr;
60         std::string path;
61         uint32_t gainmode;
62         std::bitset<32> feedback;
63         ArdourSurface::OSC::OSCSurface* sur;
64         std::vector<int> send_timeout;
65         uint32_t gain_timeout;
66         float _last_meter;
67         uint32_t nsends;
68         float _last_gain;
69         ARDOUR::AutoState as;
70         uint32_t send_size;
71         uint32_t nplug_params;
72         uint32_t plug_size;
73
74         void name_changed (const PBD::PropertyChange& what_changed);
75         void change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
76         void enable_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
77         void comp_mode (void);
78         void change_message_with_id (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
79         void enable_message_with_id (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
80         void text_message (std::string path, std::string text);
81         void text_with_id (std::string path, uint32_t id, std::string name);
82         void monitor_status (boost::shared_ptr<PBD::Controllable> controllable);
83         void gain_message ();
84         void gain_automation ();
85         void trim_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
86         // sends stuff
87         void send_init (void);
88         void send_end (void);
89         void plugin_init (void);
90         void plugin_end (void);
91         void plugin_parameter_changed (int pid, bool swtch, boost::shared_ptr<PBD::Controllable> controllable);
92         void send_gain (uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
93         void send_enable (std::string path, uint32_t id, boost::shared_ptr<ARDOUR::Processor> proc);
94         void eq_init (void);
95         void eq_end (void);
96         std::string set_path (std::string path, uint32_t id);
97         void send_float (std::string path, float val);
98         void send_float_with_id (std::string path, uint32_t id, float val);
99 };
100
101 #endif /* __osc_oscselectobserver_h__ */