mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-12-11 13:00:53 +00:00
72c23d98a3
## 1.5.0 2020-09-28 * Drum note length expanding is now supported in real-time mode (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added support for OPNA chip with Neko Project II Kai YM2602 emulator usage (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added VGM file dumper which allows to output OPN2 commands into VGM file. (A new MIDI to VGM tool is now created with basing on libOPNMIDI) * Fixed an incorrect work of CC-121 (See https://github.com/Wohlstand/libADLMIDI/issues/227 for details) * Internality has been refactored and improved
78 lines
2 KiB
C++
78 lines
2 KiB
C++
/*
|
|
* Interfaces over Yamaha OPN2 (YM2612) chip emulators
|
|
*
|
|
* Copyright (c) 2017-2020 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 "gens_opn2.h"
|
|
#include <cstring>
|
|
|
|
#include "gens/Ym2612_Emu.h"
|
|
|
|
GensOPN2::GensOPN2(OPNFamily f)
|
|
: OPNChipBaseBufferedT(f),
|
|
chip(new Ym2612_Emu())
|
|
{
|
|
setRate(m_rate, m_clock);
|
|
}
|
|
|
|
GensOPN2::~GensOPN2()
|
|
{
|
|
delete chip;
|
|
}
|
|
|
|
void GensOPN2::setRate(uint32_t rate, uint32_t clock)
|
|
{
|
|
OPNChipBaseBufferedT::setRate(rate, clock);
|
|
uint32_t chipRate = isRunningAtPcmRate() ? rate : nativeRate();
|
|
chip->set_rate(chipRate, clock); // implies reset()
|
|
}
|
|
|
|
void GensOPN2::reset()
|
|
{
|
|
OPNChipBaseBufferedT::reset();
|
|
chip->reset();
|
|
}
|
|
|
|
void GensOPN2::writeReg(uint32_t port, uint16_t addr, uint8_t data)
|
|
{
|
|
switch (port)
|
|
{
|
|
case 0:
|
|
chip->write0(addr, data);
|
|
break;
|
|
case 1:
|
|
chip->write1(addr, data);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void GensOPN2::writePan(uint16_t chan, uint8_t data)
|
|
{
|
|
chip->write_pan(static_cast<int>(chan), static_cast<int>(data));
|
|
}
|
|
|
|
void GensOPN2::nativeGenerateN(int16_t *output, size_t frames)
|
|
{
|
|
std::memset(output, 0, frames * sizeof(int16_t) * 2);
|
|
chip->run((int)frames, output);
|
|
}
|
|
|
|
const char *GensOPN2::emulatorName()
|
|
{
|
|
return "GENS 2.10 OPN2";
|
|
}
|