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