2015-12-29 04:07:51 +00:00
|
|
|
/*
|
|
|
|
** music_wildmidi_mididevice.cpp
|
|
|
|
** Provides access to WildMidi as a generic MIDI device.
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2015 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.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
// HEADER FILES ------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "i_musicinterns.h"
|
2019-01-31 18:38:04 +00:00
|
|
|
#include "doomerrors.h"
|
2015-12-29 04:07:51 +00:00
|
|
|
|
|
|
|
// MACROS ------------------------------------------------------------------
|
|
|
|
|
|
|
|
// TYPES -------------------------------------------------------------------
|
|
|
|
|
2019-06-27 07:56:08 +00:00
|
|
|
// WildMidi implementation of a MIDI device ---------------------------------
|
|
|
|
|
|
|
|
class WildMIDIDevice : public SoftSynthMIDIDevice
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WildMIDIDevice(const char *args, int samplerate);
|
|
|
|
~WildMIDIDevice();
|
|
|
|
|
|
|
|
int Open(MidiCallback, void *userdata);
|
|
|
|
void PrecacheInstruments(const uint16_t *instruments, int count);
|
|
|
|
FString GetStats();
|
|
|
|
int GetDeviceType() const override { return MDEV_WILDMIDI; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
WildMidi_Renderer *Renderer;
|
|
|
|
|
|
|
|
void HandleEvent(int status, int parm1, int parm2);
|
|
|
|
void HandleLongEvent(const uint8_t *data, int len);
|
|
|
|
void ComputeOutput(float *buffer, int len);
|
|
|
|
void WildMidiSetOption(int opt, int set);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-29 04:07:51 +00:00
|
|
|
// EXTERNAL FUNCTION PROTOTYPES --------------------------------------------
|
|
|
|
|
|
|
|
// PUBLIC FUNCTION PROTOTYPES ----------------------------------------------
|
|
|
|
|
|
|
|
// PRIVATE FUNCTION PROTOTYPES ---------------------------------------------
|
|
|
|
|
|
|
|
// EXTERNAL DATA DECLARATIONS ----------------------------------------------
|
|
|
|
|
|
|
|
// PRIVATE DATA DEFINITIONS ------------------------------------------------
|
|
|
|
|
|
|
|
static FString CurrentConfig;
|
|
|
|
|
|
|
|
// PUBLIC DATA DEFINITIONS -------------------------------------------------
|
|
|
|
|
2017-04-18 12:42:08 +00:00
|
|
|
CUSTOM_CVAR(String, wildmidi_config, "", CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
|
|
|
|
{
|
|
|
|
if (currSong != nullptr && currSong->GetDeviceType() == MDEV_WILDMIDI)
|
|
|
|
{
|
|
|
|
MIDIDeviceChanged(-1, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-29 04:07:51 +00:00
|
|
|
CVAR(Int, wildmidi_frequency, 0, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
2015-12-30 09:14:18 +00:00
|
|
|
CUSTOM_CVAR(Bool, wildmidi_reverb, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
|
|
|
|
{
|
|
|
|
if (currSong != NULL)
|
|
|
|
currSong->WildMidiSetOption(WM_MO_REVERB, *self? WM_MO_REVERB:0);
|
|
|
|
}
|
|
|
|
|
|
|
|
CUSTOM_CVAR(Bool, wildmidi_enhanced_resampling, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
|
|
|
|
{
|
|
|
|
if (currSong != NULL)
|
|
|
|
currSong->WildMidiSetOption(WM_MO_ENHANCED_RESAMPLING, *self? WM_MO_ENHANCED_RESAMPLING:0);
|
|
|
|
}
|
2015-12-29 04:07:51 +00:00
|
|
|
|
|
|
|
// CODE --------------------------------------------------------------------
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice Constructor
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2018-03-06 21:41:27 +00:00
|
|
|
WildMIDIDevice::WildMIDIDevice(const char *args, int samplerate)
|
|
|
|
:SoftSynthMIDIDevice(samplerate <= 0? wildmidi_frequency : samplerate, 11025, 65535)
|
2015-12-29 04:07:51 +00:00
|
|
|
{
|
|
|
|
Renderer = NULL;
|
|
|
|
|
2016-01-20 21:49:57 +00:00
|
|
|
if (args == NULL || *args == 0) args = wildmidi_config;
|
2015-12-31 22:03:53 +00:00
|
|
|
|
|
|
|
if (CurrentConfig.CompareNoCase(args) != 0 || SampleRate != WildMidi_GetSampleRate())
|
2015-12-29 04:07:51 +00:00
|
|
|
{
|
|
|
|
if (CurrentConfig.IsNotEmpty())
|
|
|
|
{
|
|
|
|
WildMidi_Shutdown();
|
|
|
|
CurrentConfig = "";
|
|
|
|
}
|
2015-12-31 22:03:53 +00:00
|
|
|
if (!WildMidi_Init(args, SampleRate, 0))
|
2015-12-29 04:07:51 +00:00
|
|
|
{
|
2015-12-31 22:03:53 +00:00
|
|
|
CurrentConfig = args;
|
2015-12-29 04:07:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (CurrentConfig.IsNotEmpty())
|
|
|
|
{
|
|
|
|
Renderer = new WildMidi_Renderer();
|
2015-12-30 09:14:18 +00:00
|
|
|
int flags = 0;
|
|
|
|
if (wildmidi_enhanced_resampling) flags |= WM_MO_ENHANCED_RESAMPLING;
|
|
|
|
if (wildmidi_reverb) flags |= WM_MO_REVERB;
|
|
|
|
Renderer->SetOption(WM_MO_ENHANCED_RESAMPLING | WM_MO_REVERB, flags);
|
2015-12-29 04:07:51 +00:00
|
|
|
}
|
2018-02-26 15:34:58 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
I_Error("Failed to load any MIDI patches");
|
|
|
|
}
|
2015-12-29 04:07:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice Destructor
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
WildMIDIDevice::~WildMIDIDevice()
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
if (Renderer != NULL)
|
|
|
|
{
|
|
|
|
delete Renderer;
|
|
|
|
}
|
|
|
|
// Do not shut down the device so that it can be reused for the next song being played.
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice :: Open
|
|
|
|
//
|
|
|
|
// Returns 0 on success.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2017-03-09 19:28:57 +00:00
|
|
|
int WildMIDIDevice::Open(MidiCallback callback, void *userdata)
|
2015-12-29 04:07:51 +00:00
|
|
|
{
|
|
|
|
if (Renderer == NULL)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
int ret = OpenStream(2, 0, callback, userdata);
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
// Renderer->Reset();
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice :: PrecacheInstruments
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2017-03-08 17:50:37 +00:00
|
|
|
void WildMIDIDevice::PrecacheInstruments(const uint16_t *instruments, int count)
|
2015-12-29 04:07:51 +00:00
|
|
|
{
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
Renderer->LoadInstrument((instruments[i] >> 7) & 127, instruments[i] >> 14, instruments[i] & 127);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice :: HandleEvent
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void WildMIDIDevice::HandleEvent(int status, int parm1, int parm2)
|
|
|
|
{
|
|
|
|
Renderer->ShortEvent(status, parm1, parm2);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice :: HandleLongEvent
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2017-03-09 18:54:41 +00:00
|
|
|
void WildMIDIDevice::HandleLongEvent(const uint8_t *data, int len)
|
2015-12-29 04:07:51 +00:00
|
|
|
{
|
2015-12-30 09:58:52 +00:00
|
|
|
Renderer->LongEvent(data, len);
|
2015-12-29 04:07:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice :: ComputeOutput
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void WildMIDIDevice::ComputeOutput(float *buffer, int len)
|
|
|
|
{
|
|
|
|
Renderer->ComputeOutput(buffer, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice :: GetStats
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
FString WildMIDIDevice::GetStats()
|
|
|
|
{
|
|
|
|
FString out;
|
|
|
|
out.Format("%3d voices", Renderer->GetVoiceCount());
|
|
|
|
return out;
|
|
|
|
}
|
2015-12-30 09:14:18 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// WildMIDIDevice :: GetStats
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2015-12-30 09:21:17 +00:00
|
|
|
void WildMIDIDevice::WildMidiSetOption(int opt, int set)
|
|
|
|
{
|
|
|
|
Renderer->SetOption(opt, set);
|
|
|
|
}
|
2019-06-27 07:56:08 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
MIDIDevice *CreateWildMIDIDevice(const char *args, int samplerate)
|
|
|
|
{
|
|
|
|
return new WildMIDIDevice(args, samplerate);
|
|
|
|
}
|
|
|
|
|