OSC: make send enables work in MB
[ardour.git] / libs / surfaces / osc / osc_route_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_oscrouteobserver_h__
21 #define __osc_oscrouteobserver_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
33 class OSCRouteObserver
34 {
35
36   public:
37         OSCRouteObserver (boost::shared_ptr<ARDOUR::Stripable>, lo_address addr, uint32_t sid, uint32_t gainmode, std::bitset<32> feedback);
38         ~OSCRouteObserver ();
39
40         boost::shared_ptr<ARDOUR::Stripable> strip () const { return _strip; }
41         lo_address address() const { return addr; };
42         void tick (void);
43         void send_select_status (const PBD::PropertyChange&);
44
45   private:
46         boost::shared_ptr<ARDOUR::Stripable> _strip;
47
48         PBD::ScopedConnectionList strip_connections;
49
50         lo_address addr;
51         std::string path;
52         uint32_t ssid;
53         uint32_t gainmode;
54         std::bitset<32> feedback;
55         float _last_meter;
56
57
58         void name_changed (const PBD::PropertyChange& what_changed);
59         void send_change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
60         void send_monitor_status (boost::shared_ptr<PBD::Controllable> controllable);
61         void send_gain_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
62         void send_trim_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
63         std::string set_path (std::string path);
64         void clear_strip (std::string path, float val);
65 };
66
67 #endif /* __osc_oscrouteobserver_h__ */