2015-11-24 15:17:25 -05:00
|
|
|
/*
|
2019-08-03 08:34:29 -04:00
|
|
|
* Copyright (C) 2015-2016 Ben Loftis <ben@harrisonconsoles.com>
|
|
|
|
* Copyright (C) 2015 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2015-11-24 15:17:25 -05:00
|
|
|
|
|
|
|
#include <pbd/failed_constructor.h>
|
|
|
|
|
|
|
|
#include "control_protocol/control_protocol.h"
|
2015-11-24 18:00:11 -05:00
|
|
|
#include "faderport.h"
|
2015-11-24 15:17:25 -05:00
|
|
|
|
|
|
|
using namespace ARDOUR;
|
2015-11-24 20:12:01 -05:00
|
|
|
using namespace ArdourSurface;
|
2015-11-24 15:17:25 -05:00
|
|
|
|
|
|
|
static ControlProtocol*
|
|
|
|
new_faderport_midi_protocol (ControlProtocolDescriptor* /*descriptor*/, Session* s)
|
|
|
|
{
|
2015-11-24 18:00:11 -05:00
|
|
|
FaderPort* fp;
|
2015-11-24 15:17:25 -05:00
|
|
|
|
|
|
|
try {
|
2015-11-24 18:00:11 -05:00
|
|
|
fp = new FaderPort (*s);
|
2015-11-24 15:17:25 -05:00
|
|
|
} catch (failed_constructor& err) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-24 18:00:11 -05:00
|
|
|
if (fp->set_active (true)) {
|
|
|
|
delete fp;
|
2015-11-24 15:17:25 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-24 18:00:11 -05:00
|
|
|
return fp;
|
2015-11-24 15:17:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
delete_faderport_midi_protocol (ControlProtocolDescriptor* /*descriptor*/, ControlProtocol* cp)
|
|
|
|
{
|
|
|
|
delete cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
probe_faderport_midi_protocol (ControlProtocolDescriptor* /*descriptor*/)
|
|
|
|
{
|
2015-11-24 18:00:11 -05:00
|
|
|
return FaderPort::probe ();
|
2015-11-24 15:17:25 -05:00
|
|
|
}
|
|
|
|
|
2015-12-28 10:14:17 -05:00
|
|
|
static void*
|
|
|
|
faderport_request_buffer_factory (uint32_t num_requests)
|
|
|
|
{
|
|
|
|
return FaderPort::request_factory (num_requests);
|
|
|
|
}
|
|
|
|
|
2015-11-24 15:17:25 -05:00
|
|
|
static ControlProtocolDescriptor faderport_midi_descriptor = {
|
2016-02-06 16:18:07 -05:00
|
|
|
/*name : */ "PreSonus FaderPort",
|
2015-11-24 15:17:25 -05:00
|
|
|
/*id : */ "uri://ardour.org/surfaces/faderport:0",
|
|
|
|
/*ptr : */ 0,
|
|
|
|
/*module : */ 0,
|
|
|
|
/*mandatory : */ 0,
|
|
|
|
/*supports_feedback : */ true,
|
|
|
|
/*probe : */ probe_faderport_midi_protocol,
|
|
|
|
/*initialize : */ new_faderport_midi_protocol,
|
2015-12-28 10:14:17 -05:00
|
|
|
/*destroy : */ delete_faderport_midi_protocol,
|
|
|
|
/*request_buffer_factory */ faderport_request_buffer_factory
|
2015-11-24 15:17:25 -05:00
|
|
|
};
|
|
|
|
|
2015-12-04 18:32:14 -05:00
|
|
|
extern "C" ARDOURSURFACE_API ControlProtocolDescriptor* protocol_descriptor () { return &faderport_midi_descriptor; }
|
2015-11-24 15:17:25 -05:00
|
|
|
|