mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-12-04 01:22:32 +00:00
1d4a016c41
## 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!) * Channels manager has been improved (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Nuked OPL3 1.8 emulator got some optimizations ported from 1.7 where they are was applied previously (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Reworked rhythm-mode percussions system, WOPL banks with rhythm-mode percussions * Added Public Domain Opal OPL3 emulator made by Reality (a team who originally made the Reality Adlib Tracker) (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added LGPL licensed JavaOPL3 emulator made by Robson Cozendey in Java and later rewritten into C++ for GZDoom (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Fully rewritten an embedded bank database format, embedded banks now supports a wider set (more than 127:127 instruments in one bank) * Improved accuracy of the DMX volume model, include the buggy AM interpretation * Improved accuracy of Apogee volume model, include the bug of AM instruments * Improved accuracy of the Win9X volume model * Removed C++ extras. C++-bounded instruments tester is useless since a real-time MIDI API can completely replace it * Added AIL volume model * Added Generic FM variant of Win9X volume model * Fixed an incorrect work of CC-121 (See https://github.com/Wohlstand/libADLMIDI/issues/227 for details) * Added HMI volume model (Thanks to [Alexey Khokholov](https://github.com/nukeykt) for help with research!) * Added frequency models, assigned to every volume model: AIL, HMI, DMX, Apogee, 9X, and the Generic formula
174 lines
4.3 KiB
C
174 lines
4.3 KiB
C
/*
|
|
* Copyright (C) 2013-2018 Alexey Khokholov (Nuke.YKT)
|
|
*
|
|
* 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
|
|
*
|
|
* Nuked OPL3 emulator.
|
|
* Thanks:
|
|
* MAME Development Team(Jarek Burczynski, Tatsuyuki Satoh):
|
|
* Feedback and Rhythm part calculation information.
|
|
* forums.submarine.org.uk(carbon14, opl3):
|
|
* Tremolo and phase generator calculation information.
|
|
* OPLx decapsulated(Matthew Gambrell, Olli Niemitalo):
|
|
* OPL2 ROMs.
|
|
* siliconpr0n.org(John McMaster, digshadow):
|
|
* YMF262 and VRC VII decaps and die shots.
|
|
*
|
|
* version: 1.8
|
|
*/
|
|
|
|
#ifndef OPL_OPL3_H
|
|
#define OPL_OPL3_H
|
|
|
|
#include <inttypes.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#define OPL_WRITEBUF_SIZE 1024
|
|
#define OPL_WRITEBUF_DELAY 2
|
|
#define OPL_FAST_WAVEGEN 1 /* optimized waveform generation */
|
|
|
|
typedef uintptr_t Bitu;
|
|
typedef intptr_t Bits;
|
|
typedef uint64_t Bit64u;
|
|
typedef int64_t Bit64s;
|
|
typedef uint32_t Bit32u;
|
|
typedef int32_t Bit32s;
|
|
typedef uint16_t Bit16u;
|
|
typedef int16_t Bit16s;
|
|
typedef uint8_t Bit8u;
|
|
typedef int8_t Bit8s;
|
|
|
|
typedef struct _opl3_slot opl3_slot;
|
|
typedef struct _opl3_channel opl3_channel;
|
|
typedef struct _opl3_chip opl3_chip;
|
|
|
|
struct _opl3_slot {
|
|
opl3_channel *channel;
|
|
opl3_chip *chip;
|
|
Bit16s out;
|
|
Bit16s fbmod;
|
|
Bit16s *mod;
|
|
Bit16s prout;
|
|
Bit16s eg_rout;
|
|
Bit16s eg_out;
|
|
Bit8u eg_inc;
|
|
Bit8u eg_gen;
|
|
Bit8u eg_rate;
|
|
Bit8u eg_ksl;
|
|
Bit8u *trem;
|
|
Bit8u reg_vib;
|
|
Bit8u reg_type;
|
|
Bit8u reg_ksr;
|
|
Bit8u reg_mult;
|
|
Bit8u reg_ksl;
|
|
Bit8u reg_tl;
|
|
Bit8u reg_ar;
|
|
Bit8u reg_dr;
|
|
Bit8u reg_sl;
|
|
Bit8u reg_rr;
|
|
Bit8u reg_wf;
|
|
Bit8u key;
|
|
Bit32u pg_reset;
|
|
Bit32u pg_phase;
|
|
Bit16u pg_phase_out;
|
|
Bit8u slot_num;
|
|
|
|
#if OPL_FAST_WAVEGEN
|
|
Bit16u maskzero;
|
|
Bit8u signpos;
|
|
Bit8u phaseshift;
|
|
#endif
|
|
};
|
|
|
|
struct _opl3_channel {
|
|
opl3_slot *slotz[2];/*Don't use "slots" keyword to avoid conflict with Qt applications*/
|
|
opl3_channel *pair;
|
|
opl3_chip *chip;
|
|
Bit16s *out[4];
|
|
Bit8u chtype;
|
|
Bit16u f_num;
|
|
Bit8u block;
|
|
Bit8u fb;
|
|
Bit8u con;
|
|
Bit8u alg;
|
|
Bit8u ksv;
|
|
Bit16u cha, chb;
|
|
Bit16u chl, chr;
|
|
Bit8u ch_num;
|
|
};
|
|
|
|
typedef struct _opl3_writebuf {
|
|
Bit64u time;
|
|
Bit16u reg;
|
|
Bit8u data;
|
|
} opl3_writebuf;
|
|
|
|
struct _opl3_chip {
|
|
opl3_channel channel[18];
|
|
opl3_slot slot[36];
|
|
Bit16u timer;
|
|
Bit64u eg_timer;
|
|
Bit8u eg_timerrem;
|
|
Bit8u eg_state;
|
|
Bit8u eg_add;
|
|
Bit8u newm;
|
|
Bit8u nts;
|
|
Bit8u rhy;
|
|
Bit8u vibpos;
|
|
Bit8u vibshift;
|
|
Bit8u tremolo;
|
|
Bit8u tremolopos;
|
|
Bit8u tremoloshift;
|
|
Bit32u noise;
|
|
Bit16s zeromod;
|
|
Bit32s mixbuff[2];
|
|
Bit8u rm_hh_bit2;
|
|
Bit8u rm_hh_bit3;
|
|
Bit8u rm_hh_bit7;
|
|
Bit8u rm_hh_bit8;
|
|
Bit8u rm_tc_bit3;
|
|
Bit8u rm_tc_bit5;
|
|
/* OPL3L */
|
|
Bit32s rateratio;
|
|
Bit32s samplecnt;
|
|
Bit16s oldsamples[2];
|
|
Bit16s samples[2];
|
|
|
|
Bit64u writebuf_samplecnt;
|
|
Bit32u writebuf_cur;
|
|
Bit32u writebuf_last;
|
|
Bit64u writebuf_lasttime;
|
|
opl3_writebuf writebuf[OPL_WRITEBUF_SIZE];
|
|
};
|
|
|
|
void OPL3_Generate(opl3_chip *chip, Bit16s *buf);
|
|
void OPL3_GenerateResampled(opl3_chip *chip, Bit16s *buf);
|
|
void OPL3_Reset(opl3_chip *chip, Bit32u samplerate);
|
|
void OPL3_WriteReg(opl3_chip *chip, Bit16u reg, Bit8u v);
|
|
void OPL3_WriteRegBuffered(opl3_chip *chip, Bit16u reg, Bit8u v);
|
|
void OPL3_WritePan(opl3_chip *chip, Bit16u reg, Bit8u v);
|
|
void OPL3_GenerateStream(opl3_chip *chip, Bit16s *sndptr, Bit32u numsamples);
|
|
void OPL3_GenerateStreamMix(opl3_chip *chip, Bit16s *sndptr, Bit32u numsamples);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|