OSC: added context based previous/next select
[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 #include "osc.h"
34
35 class OSCRouteObserver
36 {
37
38   public:
39         OSCRouteObserver (ArdourSurface::OSC& o, uint32_t sid, ArdourSurface::OSC::OSCSurface* sur);
40         ~OSCRouteObserver ();
41
42         boost::shared_ptr<ARDOUR::Stripable> strip () const { return _strip; }
43         uint32_t strip_id () const { return ssid; }
44         lo_address address () const { return addr; };
45         void tick (void);
46         void send_select_status (const PBD::PropertyChange&);
47         void refresh_strip (boost::shared_ptr<ARDOUR::Stripable> strip, bool force);
48         void refresh_send (boost::shared_ptr<ARDOUR::Send> send, bool force);
49         void set_expand (uint32_t expand);
50         void set_link_ready (uint32_t not_ready);
51         void clear_strip ();
52
53   private:
54         boost::shared_ptr<ARDOUR::Stripable> _strip;
55         boost::shared_ptr<ARDOUR::Send> _send;
56         boost::shared_ptr<ARDOUR::GainControl> _gain_control;
57
58         PBD::ScopedConnectionList strip_connections;
59
60         ArdourSurface::OSC& _osc;
61         lo_address addr;
62         std::string path;
63         uint32_t gainmode;
64         std::bitset<32> feedback;
65         uint32_t ssid;
66         ArdourSurface::OSC::OSCSurface* sur;
67         float _last_meter;
68         uint32_t gain_timeout;
69         float _last_gain;
70         float _last_trim;
71         bool _init;
72         uint32_t _expand;
73         bool in_line;
74         ARDOUR::AutoState as;
75         bool _tick_busy;
76
77
78         void send_clear ();
79         void name_changed (const PBD::PropertyChange& what_changed);
80         void group_name ();
81         void pi_changed (PBD::PropertyChange const&);
82         void send_change_message (std::string path, boost::shared_ptr<PBD::Controllable> controllable);
83         void send_monitor_status (boost::shared_ptr<PBD::Controllable> controllable);
84         void send_gain_message ();
85         void gain_automation ();
86         void send_trim_message ();
87         void no_strip ();
88 };
89
90 #endif /* __osc_oscrouteobserver_h__ */