Reading of MIDI CC from MIDI regions (MidiModel). UI still needs work though..
[ardour.git] / libs / ardour / ardour / osc.h
1 /*
2  * Copyright (C) 2006 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *  
18  */
19
20 #ifndef ardour_osc_h
21 #define ardour_osc_h
22
23 #include <string>
24
25 #include <sys/time.h>
26 #include <pthread.h>
27
28 #include <lo/lo.h>
29
30 #include <sigc++/sigc++.h>
31
32 #include <ardour/types.h>
33
34 #include <control_protocol/basic_ui.h>
35
36 namespace ARDOUR {
37         class Session;
38         class Route;
39
40 class OSC : public BasicUI, public sigc::trackable
41 {
42   public:
43         OSC (uint32_t port);
44         virtual ~OSC();
45         
46         void set_session (ARDOUR::Session&);
47         int start ();
48         int stop ();
49
50   private:
51         uint32_t _port;
52         volatile bool _ok;
53         volatile bool _shutdown;
54         lo_server _osc_server;
55         lo_server _osc_unix_server;
56         std::string _osc_unix_socket_path;
57         pthread_t _osc_thread;
58         int _request_pipe[2];
59
60         static void * _osc_receiver(void * arg);
61         void osc_receiver();
62
63         bool init_osc_thread ();
64         void terminate_osc_thread ();
65         void poke_osc_thread ();
66
67         void register_callbacks ();
68
69         void session_going_away ();
70
71         std::string get_server_url ();
72         std::string get_unix_server_url ();
73
74         int current_value (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data);
75
76 #define PATH_CALLBACK(name) \
77         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
78                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
79         } \
80         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
81                 name (); \
82                 return 0; \
83         }
84
85         PATH_CALLBACK(add_marker);
86         PATH_CALLBACK(loop_toggle);
87         PATH_CALLBACK(goto_start);
88         PATH_CALLBACK(goto_end);
89         PATH_CALLBACK(rewind);
90         PATH_CALLBACK(ffwd);
91         PATH_CALLBACK(transport_stop);
92         PATH_CALLBACK(transport_play);
93         PATH_CALLBACK(save_state);
94         PATH_CALLBACK(prev_marker);
95         PATH_CALLBACK(next_marker);
96         PATH_CALLBACK(undo);
97         PATH_CALLBACK(redo);
98         PATH_CALLBACK(toggle_punch_in);
99         PATH_CALLBACK(toggle_punch_out);
100         PATH_CALLBACK(rec_enable_toggle);
101         PATH_CALLBACK(toggle_all_rec_enables);
102
103 #define PATH_CALLBACK1(name,type) \
104         static int _ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data, void *user_data) { \
105                 return static_cast<OSC*>(user_data)->cb_ ## name (path, types, argv, argc, data); \
106         } \
107         int cb_ ## name (const char *path, const char *types, lo_arg **argv, int argc, void *data) { \
108                 if (argc > 0) { \
109                         name (argv[0]->type); \
110                 }\
111                 return 0; \
112         }
113
114         PATH_CALLBACK1(set_transport_speed,f);
115 };
116
117 }
118
119 #endif // ardour_osc_h