Merge branch 'master' into windows
[ardour.git] / libs / surfaces / osc / interface.cc
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 #include "ardour/rc_configuration.h"
21 #include "control_protocol/control_protocol.h"
22 #include "osc.h"
23
24 using namespace ARDOUR;
25
26 static ControlProtocol*
27 new_osc_protocol (ControlProtocolDescriptor* /*descriptor*/, Session* s)
28 {
29         OSC* osc = new OSC (*s, Config->get_osc_port());
30         
31         osc->set_active (true);
32
33         return osc;
34 }
35
36 static void
37 delete_osc_protocol (ControlProtocolDescriptor* /*descriptor*/, ControlProtocol* cp)
38 {
39         delete cp;
40 }
41
42 static bool
43 probe_osc_protocol (ControlProtocolDescriptor* /*descriptor*/)
44 {
45         return true; // we can always do OSC
46 }
47
48 static ControlProtocolDescriptor osc_descriptor = {
49         name : "Open Sound Control (OSC)",
50         id : "uri://ardour.org/surfaces/osc:0",
51         ptr : 0,
52         module : 0,
53         mandatory : 0,
54         supports_feedback : true,
55         probe : probe_osc_protocol,
56         initialize : new_osc_protocol,
57         destroy : delete_osc_protocol
58 };
59
60 extern "C" ARDOURSURFACE_API ControlProtocolDescriptor* protocol_descriptor () { return &osc_descriptor; }
61