change the way ControlProtocols (control surfaces) are notified and handle Stripable...
[ardour.git] / libs / surfaces / wiimote / wiimote.h
1 /*
2     Copyright (C) 2009-2013 Paul Davis
3     Authors: Sampo Savolainen, Jannis Pohlmann
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef ardour_wiimote_control_protocol_h
22 #define ardour_wiimote_control_protocol_h
23
24 #include <cwiid.h>
25
26 #define ABSTRACT_UI_EXPORTS
27 #include "pbd/abstract_ui.h"
28 #include "ardour/types.h"
29 #include "control_protocol/control_protocol.h"
30
31 struct WiimoteControlUIRequest : public BaseUI::BaseRequestObject {
32 public:
33         WiimoteControlUIRequest () {}
34         ~WiimoteControlUIRequest () {}
35 };
36
37 class WiimoteControlProtocol
38         : public ARDOUR::ControlProtocol
39         , public AbstractUI<WiimoteControlUIRequest>
40 {
41 public:
42         WiimoteControlProtocol (ARDOUR::Session &);
43         virtual ~WiimoteControlProtocol ();
44
45         static bool probe ();
46         static void* request_factory (uint32_t);
47
48         int set_active (bool yn);
49
50         XMLNode& get_state ();
51         int set_state (const XMLNode&, int version);
52
53         void start_wiimote_discovery ();
54         void stop_wiimote_discovery ();
55
56         void wiimote_callback (int mesg_count, union cwiid_mesg mesg[]);
57
58         void stripable_selection_changed () {}
59
60 protected:
61         void do_request (WiimoteControlUIRequest*);
62         int start ();
63         int stop ();
64
65         void thread_init ();
66
67         bool connect_idle ();
68         bool connect_wiimote ();
69
70         void update_led_state ();
71
72 protected:
73         PBD::ScopedConnectionList session_connections;
74         cwiid_wiimote_t* wiimote;
75         GSource *idle_source;
76         uint16_t button_state;
77         bool callback_thread_registered;
78 };
79
80 #endif  /* ardour_wiimote_control_protocol_h */
81