Added full-panning stereo, improvement of channel management, and many other things. Also, I have implemented an ability to use custom WOPL (for libADLMIDI) and WOPN (for libOPNMIDI) banks from the same path as "soundfonts", but also, in the same environment, the "fm_banks" folder was added for WOPL/WOPN storing purposes. To toggle usage of embedded or custom bank, I have added togglable booleans. When bank fails to be loaded, the default embedded bank is getting to be used as fallback. ADLMIDI 1.4.0 2018-10-01 * Implemented a full support for Portamento! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for SysEx event handling! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for GS way of custom drum channels (through SysEx events) * Ignore some NRPN events and lsb bank number when using GS standard (after catching of GS Reset SysEx call) * Added support for CC66-Sostenuto controller (Pedal hold of currently-pressed notes only while CC64 holds also all next notes) * Added support for CC67-SoftPedal controller (SoftPedal lowers the volume of notes played) * Fixed correctness of CMF files playing * Fixed unnecessary overuse of chip channels by blank notes * Added API to disable specific MIDI tracks or play one of MIDI tracks solo * Added support for more complex loop (loopStart=XX, loopEnd=0). Where XX - count of loops, or 0 - infinite. Nested loops are supported without of any limits. * Added working implementation of TMB's velocity offset * Added support for full-panning stereo option (Thanks to [Christopher Snowhill](https://github.com/kode54) for a work!) * Fixed inability to play high notes due physical tone frequency out of range on the OPL3 chip OPNMIDI 1.4.0 2018-10-01 * Implemented a full support for Portamento! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for SysEx event handling! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for GS way of custom drum channels (through SysEx events) * Ignore some NRPN events and lsb bank number when using GS standard (after catching of GS Reset SysEx call) * Added support for CC66-Sostenuto controller (Pedal hold of currently-pressed notes only while CC64 holds also all next notes) * Added support for CC67-SoftPedal controller (SoftPedal lowers the volume of notes played) * Resolved a trouble which sometimes makes a junk noise sound and unnecessary overuse of chip channels * Volume models support taken from libADLMIDI has been adapted to OPN2's chip speficis * Fixed inability to play high notes due physical tone frequency out of range on the OPN2 chip * Added support for full-panning stereo option ADL&OPN Hotfix: re-calculated default banks The fix on side of measurer of OPL3-BE and OPN2-BE where some instruments getting zero releasing time.
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
/*
|
|
* Interfaces over Yamaha OPL3 (YMF262) chip emulators
|
|
*
|
|
* Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand)
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "nuked_opl3.h"
|
|
#include "nuked/nukedopl3.h"
|
|
#include <cstring>
|
|
|
|
NukedOPL3::NukedOPL3() :
|
|
OPLChipBaseT()
|
|
{
|
|
m_chip = new opl3_chip;
|
|
setRate(m_rate);
|
|
}
|
|
|
|
NukedOPL3::~NukedOPL3()
|
|
{
|
|
opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip);
|
|
delete chip_r;
|
|
}
|
|
|
|
void NukedOPL3::setRate(uint32_t rate)
|
|
{
|
|
OPLChipBaseT::setRate(rate);
|
|
opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip);
|
|
std::memset(chip_r, 0, sizeof(opl3_chip));
|
|
OPL3_Reset(chip_r, rate);
|
|
}
|
|
|
|
void NukedOPL3::reset()
|
|
{
|
|
OPLChipBaseT::reset();
|
|
opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip);
|
|
std::memset(chip_r, 0, sizeof(opl3_chip));
|
|
OPL3_Reset(chip_r, m_rate);
|
|
}
|
|
|
|
void NukedOPL3::writeReg(uint16_t addr, uint8_t data)
|
|
{
|
|
opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip);
|
|
OPL3_WriteRegBuffered(chip_r, addr, data);
|
|
}
|
|
|
|
void NukedOPL3::writePan(uint16_t addr, uint8_t data)
|
|
{
|
|
opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip);
|
|
OPL3_WritePan(chip_r, addr, data);
|
|
}
|
|
|
|
void NukedOPL3::nativeGenerate(int16_t *frame)
|
|
{
|
|
opl3_chip *chip_r = reinterpret_cast<opl3_chip*>(m_chip);
|
|
OPL3_Generate(chip_r, frame);
|
|
}
|
|
|
|
const char *NukedOPL3::emulatorName()
|
|
{
|
|
return "Nuked OPL3 (v 1.8)";
|
|
}
|