2008-03-29 05:01:38 +00:00
|
|
|
/*
|
|
|
|
** music_opl_mididevice.cpp
|
|
|
|
** Provides an emulated OPL implementation of a MIDI output device.
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2008 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.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
** Uses Vladimir Arnost's MUS player library.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// HEADER FILES ------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "i_musicinterns.h"
|
|
|
|
#include "templates.h"
|
|
|
|
#include "doomdef.h"
|
|
|
|
#include "m_swap.h"
|
|
|
|
#include "w_wad.h"
|
2008-04-19 05:57:09 +00:00
|
|
|
#include "v_text.h"
|
2008-04-03 02:31:39 +00:00
|
|
|
#include "fmopl.h"
|
2008-03-29 05:01:38 +00:00
|
|
|
|
|
|
|
// MACROS ------------------------------------------------------------------
|
|
|
|
|
About a week's worth of changes here. As a heads-up, I wouldn't be
surprised if this doesn't build in Linux right now. The CMakeLists.txt
were checked with MinGW and NMake, but how they fair under Linux is an
unknown to me at this time.
- Converted most sprintf (and all wsprintf) calls to either mysnprintf or
FStrings, depending on the situation.
- Changed the strings in the wbstartstruct to be FStrings.
- Changed myvsnprintf() to output nothing if count is greater than INT_MAX.
This is so that I can use a series of mysnprintf() calls and advance the
pointer for each one. Once the pointer goes beyond the end of the buffer,
the count will go negative, but since it's an unsigned type it will be
seen as excessively huge instead. This should not be a problem, as there's
no reason for ZDoom to be using text buffers larger than 2 GB anywhere.
- Ripped out the disabled bit from FGameConfigFile::MigrateOldConfig().
- Changed CalcMapName() to return an FString instead of a pointer to a static
buffer.
- Changed startmap in d_main.cpp into an FString.
- Changed CheckWarpTransMap() to take an FString& as the first argument.
- Changed d_mapname in g_level.cpp into an FString.
- Changed DoSubstitution() in ct_chat.cpp to place the substitutions in an
FString.
- Fixed: The MAPINFO parser wrote into the string buffer to construct a map
name when given a Hexen map number. This was fine with the old scanner
code, but only a happy coincidence prevents it from crashing with the new
code
- Added the 'B' conversion specifier to StringFormat::VWorker() for printing
binary numbers.
- Added CMake support for building with MinGW, MSYS, and NMake. Linux support
is probably broken until I get around to booting into Linux again. Niceties
provided over the existing Makefiles they're replacing:
* All command-line builds can use the same build system, rather than having
a separate one for MinGW and another for Linux.
* Microsoft's NMake tool is supported as a target.
* Progress meters.
* Parallel makes work from a fresh checkout without needing to be primed
first with a single-threaded make.
* Porting to other architectures should be simplified, whenever that day
comes.
- Replaced the makewad tool with zipdir. This handles the dependency tracking
itself instead of generating an external makefile to do it, since I couldn't
figure out how to generate a makefile with an external tool and include it
with a CMake-generated makefile. Where makewad used a master list of files
to generate the package file, zipdir just zips the entire contents of one or
more directories.
- Added the gdtoa package from netlib's fp library so that ZDoom's printf-style
formatting can be entirely independant of the CRT.
SVN r1082 (trunk)
2008-07-23 04:57:26 +00:00
|
|
|
#if defined(_DEBUG) && defined(_WIN32) && defined(_MSC_VER)
|
2008-03-30 02:51:34 +00:00
|
|
|
#define DEBUGOUT(m,c,s,t) \
|
About a week's worth of changes here. As a heads-up, I wouldn't be
surprised if this doesn't build in Linux right now. The CMakeLists.txt
were checked with MinGW and NMake, but how they fair under Linux is an
unknown to me at this time.
- Converted most sprintf (and all wsprintf) calls to either mysnprintf or
FStrings, depending on the situation.
- Changed the strings in the wbstartstruct to be FStrings.
- Changed myvsnprintf() to output nothing if count is greater than INT_MAX.
This is so that I can use a series of mysnprintf() calls and advance the
pointer for each one. Once the pointer goes beyond the end of the buffer,
the count will go negative, but since it's an unsigned type it will be
seen as excessively huge instead. This should not be a problem, as there's
no reason for ZDoom to be using text buffers larger than 2 GB anywhere.
- Ripped out the disabled bit from FGameConfigFile::MigrateOldConfig().
- Changed CalcMapName() to return an FString instead of a pointer to a static
buffer.
- Changed startmap in d_main.cpp into an FString.
- Changed CheckWarpTransMap() to take an FString& as the first argument.
- Changed d_mapname in g_level.cpp into an FString.
- Changed DoSubstitution() in ct_chat.cpp to place the substitutions in an
FString.
- Fixed: The MAPINFO parser wrote into the string buffer to construct a map
name when given a Hexen map number. This was fine with the old scanner
code, but only a happy coincidence prevents it from crashing with the new
code
- Added the 'B' conversion specifier to StringFormat::VWorker() for printing
binary numbers.
- Added CMake support for building with MinGW, MSYS, and NMake. Linux support
is probably broken until I get around to booting into Linux again. Niceties
provided over the existing Makefiles they're replacing:
* All command-line builds can use the same build system, rather than having
a separate one for MinGW and another for Linux.
* Microsoft's NMake tool is supported as a target.
* Progress meters.
* Parallel makes work from a fresh checkout without needing to be primed
first with a single-threaded make.
* Porting to other architectures should be simplified, whenever that day
comes.
- Replaced the makewad tool with zipdir. This handles the dependency tracking
itself instead of generating an external makefile to do it, since I couldn't
figure out how to generate a makefile with an external tool and include it
with a CMake-generated makefile. Where makewad used a master list of files
to generate the package file, zipdir just zips the entire contents of one or
more directories.
- Added the gdtoa package from netlib's fp library so that ZDoom's printf-style
formatting can be entirely independant of the CRT.
SVN r1082 (trunk)
2008-07-23 04:57:26 +00:00
|
|
|
{ char foo[128]; mysnprintf(foo, countof(foo), m, c, s, t); OutputDebugString(foo); }
|
2008-03-29 05:01:38 +00:00
|
|
|
#else
|
2008-03-30 02:51:34 +00:00
|
|
|
#define DEBUGOUT(m,c,s,t)
|
2008-03-29 05:01:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// EXTERNAL FUNCTION PROTOTYPES --------------------------------------------
|
|
|
|
|
|
|
|
// PUBLIC FUNCTION PROTOTYPES ----------------------------------------------
|
|
|
|
|
|
|
|
// PRIVATE FUNCTION PROTOTYPES ---------------------------------------------
|
|
|
|
|
|
|
|
// EXTERNAL DATA DECLARATIONS ----------------------------------------------
|
|
|
|
|
|
|
|
// PRIVATE DATA DEFINITIONS ------------------------------------------------
|
|
|
|
|
|
|
|
// PUBLIC DATA DEFINITIONS -------------------------------------------------
|
|
|
|
|
|
|
|
// CODE --------------------------------------------------------------------
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice Contructor
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
OPLMIDIDevice::OPLMIDIDevice()
|
|
|
|
{
|
|
|
|
Stream = NULL;
|
|
|
|
Tempo = 0;
|
|
|
|
Division = 0;
|
|
|
|
Events = NULL;
|
|
|
|
Started = false;
|
|
|
|
|
|
|
|
FWadLump data = Wads.OpenLumpName("GENMIDI");
|
|
|
|
OPLloadBank(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice Destructor
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
OPLMIDIDevice::~OPLMIDIDevice()
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: Open
|
|
|
|
//
|
|
|
|
// Returns 0 on success.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2008-03-30 00:04:09 +00:00
|
|
|
int OPLMIDIDevice::Open(void (*callback)(unsigned int, void *, DWORD, DWORD), void *userdata)
|
2008-03-29 05:01:38 +00:00
|
|
|
{
|
2008-04-03 02:31:39 +00:00
|
|
|
if (io == NULL || io->OPLinit(TwoChips + 1))
|
2008-03-29 05:01:38 +00:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Stream = GSnd->CreateStream(FillStream, int(OPL_SAMPLE_RATE / 14) * 4,
|
|
|
|
SoundStream::Mono | SoundStream::Float, int(OPL_SAMPLE_RATE), this);
|
|
|
|
if (Stream == NULL)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
Callback = callback;
|
|
|
|
CallbackData = userdata;
|
|
|
|
Tempo = 500000;
|
|
|
|
Division = 100;
|
|
|
|
CalcTickRate();
|
|
|
|
|
|
|
|
OPLstopMusic();
|
|
|
|
OPLplayMusic(100);
|
2008-03-30 02:51:34 +00:00
|
|
|
DEBUGOUT("========= New song started ==========\n", 0, 0, 0);
|
2008-03-29 05:01:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: Close
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void OPLMIDIDevice::Close()
|
|
|
|
{
|
|
|
|
if (Stream != NULL)
|
|
|
|
{
|
|
|
|
delete Stream;
|
|
|
|
Stream = NULL;
|
|
|
|
}
|
|
|
|
io->OPLdeinit();
|
|
|
|
Started = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: IsOpen
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool OPLMIDIDevice::IsOpen() const
|
|
|
|
{
|
|
|
|
return Stream != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: GetTechnology
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::GetTechnology() const
|
|
|
|
{
|
|
|
|
return MOD_FMSYNTH;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: SetTempo
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::SetTempo(int tempo)
|
|
|
|
{
|
|
|
|
Tempo = tempo;
|
|
|
|
CalcTickRate();
|
2008-03-30 02:51:34 +00:00
|
|
|
DEBUGOUT("Tempo changed to %.0f, %.2f samples/tick\n", Tempo, SamplesPerTick, 0);
|
2008-03-29 05:01:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: SetTimeDiv
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::SetTimeDiv(int timediv)
|
|
|
|
{
|
|
|
|
Division = timediv;
|
|
|
|
CalcTickRate();
|
2008-03-30 02:51:34 +00:00
|
|
|
DEBUGOUT("Division changed to %.0f, %.2f samples/tick\n", Division, SamplesPerTick, 0);
|
2008-03-29 05:01:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: CalcTickRate
|
|
|
|
//
|
|
|
|
// Tempo is the number of microseconds per quarter note.
|
|
|
|
// Division is the number of ticks per quarter note.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void OPLMIDIDevice::CalcTickRate()
|
|
|
|
{
|
|
|
|
SamplesPerTick = OPL_SAMPLE_RATE / (1000000.0 / Tempo) / Division;
|
2008-04-03 02:31:39 +00:00
|
|
|
io->SetClockRate(SamplesPerTick);
|
2008-03-29 05:01:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: Resume
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::Resume()
|
|
|
|
{
|
|
|
|
if (!Started)
|
|
|
|
{
|
2008-04-13 03:23:33 +00:00
|
|
|
if (Stream->Play(true, 1))
|
2008-03-29 05:01:38 +00:00
|
|
|
{
|
|
|
|
Started = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: Stop
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void OPLMIDIDevice::Stop()
|
|
|
|
{
|
|
|
|
if (Started)
|
|
|
|
{
|
|
|
|
Stream->Stop();
|
|
|
|
Started = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-30 00:04:09 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: StreamOutSync
|
|
|
|
//
|
|
|
|
// This version is called from the main game thread and needs to
|
|
|
|
// synchronize with the player thread.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::StreamOutSync(MIDIHDR *header)
|
|
|
|
{
|
2008-04-09 04:17:13 +00:00
|
|
|
ChipAccess.Enter();
|
2008-03-30 00:04:09 +00:00
|
|
|
StreamOut(header);
|
2008-04-09 04:17:13 +00:00
|
|
|
ChipAccess.Leave();
|
2008-03-30 00:04:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-29 05:01:38 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: StreamOut
|
|
|
|
//
|
2008-03-30 00:04:09 +00:00
|
|
|
// This version is called from the player thread so does not need to
|
|
|
|
// arbitrate for access to the Events pointer.
|
|
|
|
//
|
2008-03-29 05:01:38 +00:00
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::StreamOut(MIDIHDR *header)
|
|
|
|
{
|
|
|
|
header->lpNext = NULL;
|
|
|
|
if (Events == NULL)
|
|
|
|
{
|
|
|
|
Events = header;
|
|
|
|
NextTickIn = SamplesPerTick * *(DWORD *)header->lpData;
|
|
|
|
Position = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MIDIHDR **p;
|
|
|
|
|
|
|
|
for (p = &Events; *p != NULL; p = &(*p)->lpNext)
|
|
|
|
{ }
|
|
|
|
*p = header;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: PrepareHeader
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::PrepareHeader(MIDIHDR *header)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: UnprepareHeader
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::UnprepareHeader(MIDIHDR *header)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: FakeVolume
|
|
|
|
//
|
|
|
|
// Since the OPL output is rendered as a normal stream, its volume is
|
|
|
|
// controlled through the GSnd interface, not here.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool OPLMIDIDevice::FakeVolume()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-30 00:04:09 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: NeedThreadedCallabck
|
|
|
|
//
|
|
|
|
// OPL can service the callback directly rather than using a separate
|
|
|
|
// thread.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool OPLMIDIDevice::NeedThreadedCallback()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-29 05:01:38 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: Pause
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool OPLMIDIDevice::Pause(bool paused)
|
|
|
|
{
|
|
|
|
if (Stream != NULL)
|
|
|
|
{
|
|
|
|
return Stream->SetPaused(paused);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: PlayTick
|
|
|
|
//
|
|
|
|
// event[0] = delta time
|
|
|
|
// event[1] = unused
|
|
|
|
// event[2] = event
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int OPLMIDIDevice::PlayTick()
|
|
|
|
{
|
|
|
|
DWORD delay = 0;
|
|
|
|
|
|
|
|
while (delay == 0 && Events != NULL)
|
|
|
|
{
|
|
|
|
DWORD *event = (DWORD *)(Events->lpData + Position);
|
|
|
|
if (MEVT_EVENTTYPE(event[2]) == MEVT_TEMPO)
|
|
|
|
{
|
2008-03-30 02:51:34 +00:00
|
|
|
SetTempo(MEVT_EVENTPARM(event[2]));
|
2008-03-29 05:01:38 +00:00
|
|
|
}
|
|
|
|
else if (MEVT_EVENTTYPE(event[2]) == MEVT_LONGMSG)
|
|
|
|
{ // Should I handle master volume changes?
|
|
|
|
}
|
|
|
|
else if (MEVT_EVENTTYPE(event[2]) == 0)
|
|
|
|
{ // Short MIDI event
|
|
|
|
int status = event[2] & 0xff;
|
|
|
|
int parm1 = (event[2] >> 8) & 0x7f;
|
|
|
|
int parm2 = (event[2] >> 16) & 0x7f;
|
|
|
|
HandleEvent(status, parm1, parm2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advance to next event.
|
|
|
|
if (event[2] < 0x80000000)
|
|
|
|
{ // Short message
|
|
|
|
Position += 12;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // Long message
|
|
|
|
Position += 12 + ((MEVT_EVENTPARM(event[2]) + 3) & ~3);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Did we use up this buffer?
|
|
|
|
if (Position >= Events->dwBytesRecorded)
|
|
|
|
{
|
|
|
|
Events = Events->lpNext;
|
|
|
|
Position = 0;
|
|
|
|
|
|
|
|
if (Callback != NULL)
|
|
|
|
{
|
|
|
|
Callback(MOM_DONE, CallbackData, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Events == NULL)
|
|
|
|
{ // No more events. Just return something to keep the song playing
|
|
|
|
// while we wait for more to be submitted.
|
|
|
|
return int(Division);
|
|
|
|
}
|
|
|
|
|
|
|
|
delay = *(DWORD *)(Events->lpData + Position);
|
|
|
|
}
|
|
|
|
return delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: HandleEvent
|
|
|
|
//
|
|
|
|
// Processes a normal MIDI event.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void OPLMIDIDevice::HandleEvent(int status, int parm1, int parm2)
|
|
|
|
{
|
|
|
|
int command = status & 0xF0;
|
|
|
|
int channel = status & 0x0F;
|
|
|
|
|
|
|
|
// Swap channels 9 and 15, because their roles are reversed
|
|
|
|
// in MUS and MIDI formats.
|
|
|
|
if (channel == 9)
|
|
|
|
{
|
|
|
|
channel = 15;
|
|
|
|
}
|
|
|
|
else if (channel == 15)
|
|
|
|
{
|
|
|
|
channel = 9;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (command)
|
|
|
|
{
|
|
|
|
case MIDI_NOTEOFF:
|
|
|
|
playingcount--;
|
|
|
|
OPLreleaseNote(channel, parm1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_NOTEON:
|
|
|
|
playingcount++;
|
|
|
|
OPLplayNote(channel, parm1, parm2);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_POLYPRESS:
|
2008-03-30 02:51:34 +00:00
|
|
|
DEBUGOUT("Unhandled note aftertouch: Channel %d, note %d, value %d\n", channel, parm1, parm2);
|
2008-03-29 05:01:38 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_CTRLCHANGE:
|
|
|
|
switch (parm1)
|
|
|
|
{
|
|
|
|
case 0: OPLchangeControl(channel, ctrlBank, parm2); break;
|
|
|
|
case 1: OPLchangeControl(channel, ctrlModulation, parm2); break;
|
2008-09-05 02:04:50 +00:00
|
|
|
case 6: OPLchangeControl(channel, ctrlDataEntryHi, parm2); break;
|
2008-03-29 05:01:38 +00:00
|
|
|
case 7: OPLchangeControl(channel, ctrlVolume, parm2); break;
|
|
|
|
case 10: OPLchangeControl(channel, ctrlPan, parm2); break;
|
|
|
|
case 11: OPLchangeControl(channel, ctrlExpression, parm2); break;
|
2008-09-05 02:04:50 +00:00
|
|
|
case 38: OPLchangeControl(channel, ctrlDataEntryLo, parm2); break;
|
2008-03-29 05:01:38 +00:00
|
|
|
case 64: OPLchangeControl(channel, ctrlSustainPedal, parm2); break;
|
|
|
|
case 67: OPLchangeControl(channel, ctrlSoftPedal, parm2); break;
|
|
|
|
case 91: OPLchangeControl(channel, ctrlReverb, parm2); break;
|
|
|
|
case 93: OPLchangeControl(channel, ctrlChorus, parm2); break;
|
2008-09-05 02:04:50 +00:00
|
|
|
case 98: OPLchangeControl(channel, ctrlNRPNLo, parm2); break;
|
|
|
|
case 99: OPLchangeControl(channel, ctrlNRPNHi, parm2); break;
|
|
|
|
case 100: OPLchangeControl(channel, ctrlRPNLo, parm2); break;
|
|
|
|
case 101: OPLchangeControl(channel, ctrlRPNHi, parm2); break;
|
2008-03-29 05:01:38 +00:00
|
|
|
case 120: OPLchangeControl(channel, ctrlSoundsOff, parm2); break;
|
2008-09-05 02:04:50 +00:00
|
|
|
case 121: OPLresetControllers(channel, 100); break;
|
2008-03-29 05:01:38 +00:00
|
|
|
case 123: OPLchangeControl(channel, ctrlNotesOff, parm2); break;
|
|
|
|
case 126: OPLchangeControl(channel, ctrlMono, parm2); break;
|
|
|
|
case 127: OPLchangeControl(channel, ctrlPoly, parm2); break;
|
|
|
|
default:
|
2008-03-30 02:51:34 +00:00
|
|
|
DEBUGOUT("Unhandled controller: Channel %d, controller %d, value %d\n", channel, parm1, parm2);
|
2008-03-29 05:01:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_PRGMCHANGE:
|
|
|
|
OPLprogramChange(channel, parm1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_CHANPRESS:
|
2008-03-30 02:51:34 +00:00
|
|
|
DEBUGOUT("Unhandled channel aftertouch: Channel %d, value %d\n", channel, parm1, 0);
|
2008-03-29 05:01:38 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MIDI_PITCHBEND:
|
2008-03-30 02:51:34 +00:00
|
|
|
OPLpitchWheel(channel, parm1 | (parm2 << 7));
|
2008-03-29 05:01:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: FillStream static
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool OPLMIDIDevice::FillStream(SoundStream *stream, void *buff, int len, void *userdata)
|
|
|
|
{
|
|
|
|
OPLMIDIDevice *device = (OPLMIDIDevice *)userdata;
|
2008-04-11 04:59:23 +00:00
|
|
|
return device->ServiceStream(buff, len);
|
2008-03-29 05:01:38 +00:00
|
|
|
}
|
2008-04-19 05:57:09 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// OPLMIDIDevice :: GetStats
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
FString OPLMIDIDevice::GetStats()
|
|
|
|
{
|
|
|
|
FString out;
|
|
|
|
char star[3] = { TEXTCOLOR_ESCAPE, 'A', '*' };
|
|
|
|
for (uint i = 0; i < io->OPLchannels; ++i)
|
|
|
|
{
|
|
|
|
if (channels[i].flags & CH_FREE)
|
|
|
|
{
|
|
|
|
star[1] = CR_BRICK + 'A';
|
|
|
|
}
|
|
|
|
else if (channels[i].flags & CH_SUSTAIN)
|
|
|
|
{
|
|
|
|
star[1] = CR_ORANGE + 'A';
|
|
|
|
}
|
|
|
|
else if (channels[i].flags & CH_SECONDARY)
|
|
|
|
{
|
|
|
|
star[1] = CR_BLUE + 'A';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
star[1] = CR_GREEN + 'A';
|
|
|
|
}
|
|
|
|
out.AppendCStrPart (star, 3);
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|