OSC: simplify code.
[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 class OSCSelectObserver
35 {
36
37   public:
38         OSCSelectObserver (boost::shared_ptr<ARDOUR::Stripable>, lo_address addr, uint32_t gainmode, std::bitset<32> feedback);
39         ~OSCSelectObserver ();
40
41         boost::shared_ptr<ARDOUR::Stripable> strip () const { return _strip; }
42         lo_address address() const { return addr; };
43         void tick (void);
44
45   private:
46         boost::shared_ptr<ARDOUR::Stripable> _strip;
47
48         PBD::ScopedConnectionList strip_connections;
49         // sends and eq need their own
50         PBD::ScopedConnectionList send_connections;
51         PBD::ScopedConnectionList eq_connections;
52
53         lo_address addr;
54         std::string path;
55         uint32_t gainmode;
56         std::bitset<32> feedback;
57         std::vector<int> send_timeout;
58         uint32_t gain_timeout;
59         float _last_meter;
60         uint32_t nsends;
61         float _last_gain;
62         ARDOUR::AutoState as;
63
64         void name_changed (const PBD::PropertyChange& what_changed);
65         void change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
66         void enable_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
67         void comp_mode (void);
68         void change_message_with_id (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
69         void enable_message_with_id (std::string path, uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
70         void text_message (std::string path, std::string text);
71         void text_with_id (std::string path, uint32_t id, std::string name);
72         void monitor_status (boost::shared_ptr<PBD::Controllable> controllable);
73         void gain_message ();
74         void gain_automation ();
75         void trim_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
76         // sends stuff
77         void send_init (void);
78         void send_end (void);
79         void send_restart (int);
80         void send_gain (uint32_t id, boost::shared_ptr<PBD::Controllable> controllable);
81         void send_enable (std::string path, uint32_t id, boost::shared_ptr<ARDOUR::Processor> proc);
82         void eq_init (void);
83         void eq_end (void);
84         void eq_restart (int);
85         std::string set_path (std::string path, uint32_t id);
86         void clear_strip (std::string path, float val);
87         void clear_strip_with_id (std::string path, uint32_t id, float val);
88 };
89
90 #endif /* __osc_oscselectobserver_h__ */