qzdoom/src/sound/mididevices/music_timiditypp_mididevice.cpp

272 lines
7.4 KiB
C++
Raw Normal View History

/*
** music_timiditypp_mididevice.cpp
** Provides access to timidity.exe
**
**---------------------------------------------------------------------------
** Copyright 2001-2017 Randy Heit
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** 1. Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
** 3. The name of the author may not be used to endorse or promote products
** derived from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**---------------------------------------------------------------------------
**
*/
#include "i_midi_win32.h"
#include <string>
#include <vector>
2016-03-01 15:47:10 +00:00
#include "i_musicinterns.h"
#include "c_cvars.h"
#include "cmdlib.h"
#include "templates.h"
#include "version.h"
#include "tmpfileplus.h"
#include "m_misc.h"
#include "v_text.h"
2018-02-20 22:36:59 +00:00
#include "i_system.h"
#include "timiditypp/timidity.h"
#include "timiditypp/instrum.h"
#include "timiditypp/playmidi.h"
2016-03-01 15:47:10 +00:00
class TimidityPPMIDIDevice : public SoftSynthMIDIDevice
{
static TimidityPlus::Instruments *instruments;
int sampletime;
public:
TimidityPPMIDIDevice(const char *args);
~TimidityPPMIDIDevice();
int Open(MidiCallback, void *userdata);
void PrecacheInstruments(const uint16_t *instruments, int count);
//FString GetStats();
int GetDeviceType() const override { return MDEV_TIMIDITY; }
void TimidityVolumeChanged();
2018-02-20 22:36:59 +00:00
static void ClearInstruments()
{
if (instruments != nullptr) delete instruments;
instruments = nullptr;
}
protected:
TimidityPlus::Player *Renderer;
void HandleEvent(int status, int parm1, int parm2);
void HandleLongEvent(const uint8_t *data, int len);
void ComputeOutput(float *buffer, int len);
};
TimidityPlus::Instruments *TimidityPPMIDIDevice::instruments;
// Config file to use
CVAR(String, timidity_config, "timidity.cfg", CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
2016-03-01 15:47:10 +00:00
// added because Timidity's output is rather loud.
CUSTOM_CVAR (Float, timidity_mastervolume, 1.0f, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
{
if (self < 0.f)
self = 0.f;
else if (self > 4.f)
self = 4.f;
if (currSong != NULL)
currSong->TimidityVolumeChanged();
}
CUSTOM_CVAR (Int, timidity_frequency, 44100, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
{ // Clamp frequency to Timidity's limits
if (self < 4000)
self = 4000;
else if (self > 65000)
self = 65000;
}
//==========================================================================
//
// TimidityPPMIDIDevice Constructor
//
//==========================================================================
TimidityPPMIDIDevice::TimidityPPMIDIDevice(const char *args)
2016-03-01 15:47:10 +00:00
{
if (args == NULL || *args == 0) args = timidity_config;
Renderer = nullptr;
if (instruments != nullptr && !instruments->checkConfig(args))
{
delete instruments;
}
instruments = new TimidityPlus::Instruments;
if (!instruments->load(args))
{
delete instruments;
instruments = nullptr;
}
if (instruments != nullptr)
{
Renderer = new TimidityPlus::Player(timidity_frequency, instruments);
}
sampletime = 0;
2016-03-01 15:47:10 +00:00
}
//==========================================================================
//
// TimidityPPMIDIDevice Destructor
//
//==========================================================================
TimidityPPMIDIDevice::~TimidityPPMIDIDevice ()
{
Close();
if (Renderer != nullptr)
{
delete Renderer;
}
2016-03-01 15:47:10 +00:00
}
//==========================================================================
//
// TimidityPPMIDIDevice :: Open
//
//==========================================================================
int TimidityPPMIDIDevice::Open(MidiCallback callback, void *userdata)
2016-03-01 15:47:10 +00:00
{
int ret = OpenStream(2, 0, callback, userdata);
if (ret == 0 && Renderer != nullptr)
2016-03-01 15:47:10 +00:00
{
Renderer->playmidi_stream_init();
2016-03-01 15:47:10 +00:00
}
// No instruments loaded means we cannot play...
if (instruments == nullptr) return 0;
return ret;
2016-03-01 15:47:10 +00:00
}
//==========================================================================
//
// TimidityPPMIDIDevice :: PrecacheInstruments
2016-03-01 15:47:10 +00:00
//
// Each entry is packed as follows:
// Bits 0- 6: Instrument number
// Bits 7-13: Bank number
// Bit 14: Select drum set if 1, tone bank if 0
2016-03-01 15:47:10 +00:00
//
//==========================================================================
2018-02-20 22:36:59 +00:00
void TimidityPPMIDIDevice::PrecacheInstruments(const uint16_t *instrumentlist, int count)
2016-03-01 15:47:10 +00:00
{
if (instruments != nullptr)
instruments->PrecacheInstruments(instrumentlist, count);
2016-03-01 15:47:10 +00:00
}
//==========================================================================
//
// TimidityPPMIDIDevice :: HandleEvent
2016-03-01 15:47:10 +00:00
//
//==========================================================================
void TimidityPPMIDIDevice::HandleEvent(int status, int parm1, int parm2)
2016-03-01 15:47:10 +00:00
{
if (Renderer != nullptr)
Renderer->send_event(sampletime, status, parm1, parm2);
2016-03-01 15:47:10 +00:00
}
//==========================================================================
//
// TimidityPPMIDIDevice :: HandleLongEvent
2016-03-01 15:47:10 +00:00
//
//==========================================================================
void TimidityPPMIDIDevice::HandleLongEvent(const uint8_t *data, int len)
2016-03-01 15:47:10 +00:00
{
if (Renderer != nullptr)
Renderer->send_long_event(sampletime, data, len);
2016-03-01 15:47:10 +00:00
}
//==========================================================================
//
// TimidityPPMIDIDevice :: ComputeOutput
2016-03-01 15:47:10 +00:00
//
//==========================================================================
void TimidityPPMIDIDevice::ComputeOutput(float *buffer, int len)
2016-03-01 15:47:10 +00:00
{
if (Renderer != nullptr)
Renderer->compute_data(buffer, len);
sampletime += len;
2016-03-01 15:47:10 +00:00
}
//==========================================================================
//
// TimidityPPMIDIDevice :: TimidityVolumeChanged
2016-03-01 15:47:10 +00:00
//
//==========================================================================
void TimidityPPMIDIDevice::TimidityVolumeChanged()
2016-03-01 15:47:10 +00:00
{
if (Stream != NULL)
2016-03-01 15:47:10 +00:00
{
Stream->SetVolume(timidity_mastervolume);
2016-03-01 15:47:10 +00:00
}
}
MIDIDevice *CreateTimidityPPMIDIDevice(const char *args)
{
return new TimidityPPMIDIDevice(args);
}
2018-02-20 22:36:59 +00:00
void TimidityPP_Shutdown()
{
TimidityPPMIDIDevice::ClearInstruments();
TimidityPlus::free_global_mblock();
2018-02-20 22:36:59 +00:00
}
void TimidityPlus::ctl_cmsg(int type, int verbosity_level, const char *fmt, ...)
{
if (verbosity_level >= VERB_DEBUG) return; // Don't waste time on diagnostics.
va_list args;
va_start(args, fmt);
FString msg;
msg.VFormat(fmt, args);
va_end(args);
switch (type)
{
case CMSG_ERROR:
Printf(TEXTCOLOR_RED "%s\n", msg.GetChars());
break;
case CMSG_WARNING:
Printf(TEXTCOLOR_YELLOW "%s\n", msg.GetChars());
break;
case CMSG_INFO:
DPrintf(DMSG_SPAMMY, "%s\n", msg.GetChars());
break;
}
}