1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
/*
Drumstick RT (realtime MIDI In/Out)
Copyright (C) 2009-2024 Pedro Lopez-Cabanillas <plcl@users.sf.net>
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <QCoreApplication>
#include "fluidsynthoutput.h"
#ifdef USE_PIPEWIRE
#include <pipewire/pipewire.h>
#endif
namespace drumstick { namespace rt {
FluidSynthOutput::FluidSynthOutput(QObject *parent) : MIDIOutput(parent)
{
//qDebug() << Q_FUNC_INFO;
#ifdef USE_PIPEWIRE
pw_init(0, nullptr);
#endif
m_synth = new FluidSynthEngine;
}
FluidSynthOutput::~FluidSynthOutput()
{
//qDebug() << Q_FUNC_INFO;
stop();
delete m_synth;
#ifdef USE_PIPEWIRE
pw_deinit();
#endif
}
void FluidSynthOutput::start()
{
//qDebug() << Q_FUNC_INFO;
m_synth->initialize();
}
void FluidSynthOutput::stop()
{
//qDebug() << Q_FUNC_INFO;
m_synth->stop();
}
QStringList FluidSynthOutput::getAudioDrivers()
{
return m_synth->getAudioDrivers();
}
QStringList FluidSynthOutput::getDiagnostics()
{
return m_synth->getDiagnostics();
}
QString FluidSynthOutput::getLibVersion()
{
return m_synth->getLibVersion();
}
bool FluidSynthOutput::getStatus()
{
return m_synth->getStatus();
}
QString FluidSynthOutput::getSoundFont()
{
return m_synth->soundFont();
}
void FluidSynthOutput::initialize(QSettings *settings)
{
//qDebug() << Q_FUNC_INFO;
m_synth->readSettings(settings);
stop();
start();
}
QString FluidSynthOutput::backendName()
{
return FluidSynthEngine::QSTR_FLUIDSYNTH;
}
QString FluidSynthOutput::publicName()
{
return FluidSynthEngine::QSTR_FLUIDSYNTH;
}
void FluidSynthOutput::setPublicName(QString name)
{
Q_UNUSED(name)
}
QList<MIDIConnection> FluidSynthOutput::connections(bool advanced)
{
Q_UNUSED(advanced)
return QList<MIDIConnection>{MIDIConnection(FluidSynthEngine::QSTR_FLUIDSYNTH, FluidSynthEngine::QSTR_FLUIDSYNTH)};
}
void FluidSynthOutput::setExcludedConnections(QStringList conns)
{
Q_UNUSED(conns)
}
void FluidSynthOutput::open(const MIDIConnection& name)
{
Q_UNUSED(name)
//qDebug() << Q_FUNC_INFO;
m_synth->open();
}
void FluidSynthOutput::close()
{
//qDebug() << Q_FUNC_INFO;
m_synth->close();
stop();
}
MIDIConnection FluidSynthOutput::currentConnection()
{
return m_synth->currentConnection();
}
void FluidSynthOutput::sendNoteOff(int chan, int note, int vel)
{
m_synth->noteOff(chan, note, vel);
}
void FluidSynthOutput::sendNoteOn(int chan, int note, int vel)
{
m_synth->noteOn(chan, note, vel);
}
void FluidSynthOutput::sendKeyPressure(int chan, int note, int value)
{
m_synth->keyPressure(chan, note, value);
}
void FluidSynthOutput::sendController(int chan, int control, int value)
{
m_synth->controlChange(chan, control, value);
}
void FluidSynthOutput::sendProgram(int chan, int program)
{
m_synth->setInstrument(chan, program);
}
void FluidSynthOutput::sendChannelPressure(int chan, int value)
{
m_synth->channelPressure(chan, value);
}
void FluidSynthOutput::sendPitchBend(int chan, int value)
{
m_synth->bender(chan, value);
}
void FluidSynthOutput::sendSysex(const QByteArray &data)
{
m_synth->sysex(data);
}
void FluidSynthOutput::sendSystemMsg(const int status)
{
Q_UNUSED(status)
}
void FluidSynthOutput::writeSettings(QSettings *settings)
{
m_synth->writeSettings(settings);
}
} // namespace rt
} // namespace drumstick
|