2
0
Fork 0
OPL/Source/hiopl.h

52 lines
1.5 KiB
C
Raw Normal View History

#include <map>
2013-09-04 13:37:36 +00:00
#include "adlib.h"
#include "dbopl.h"
enum Waveform
{
SIN = 0, HALF_SIN = 1, ABS_SIN = 2, QUART_SIN = 3
};
enum FreqMultiple
2013-09-04 13:37:36 +00:00
{
xHALF=0, x1=1, x2=2, x3=3, x4=4, x5=5, x6=6, x7=7, x8=8, x9=9, x10=10, x12=12, x15=15
2013-09-04 13:37:36 +00:00
};
2013-09-04 13:37:36 +00:00
const int CHANNELS = 9;
const int OSCILLATORS = 2;
class Hiopl {
public:
Hiopl(int buflen);
void Generate(int length, short* buffer);
void Generate(int length, float* buffer);
2013-09-04 13:37:36 +00:00
void SetSampleRate(int hz);
void EnableWaveformControl();
2013-09-04 13:37:36 +00:00
void SetWaveform(int ch, int osc, Waveform wave);
void SetAttenuation(int ch, int osc, int level);
void SetFrequencyMultiple(int ch, int osc, FreqMultiple mult);
void SetEnvelopeAttack(int ch, int osc, int t);
void SetEnvelopeDecay(int ch, int osc, int t);
void SetEnvelopeSustain(int ch, int osc, int level);
void SetEnvelopeRelease(int ch, int osc, int t);
void EnableSustain(int ch, int osc);
void SetModulatorFeedback(int ch, int level);
void KeyOn(int ch, float frqHz);
void KeyOff(int ch);
void _WriteReg(Bit32u reg, Bit8u value, Bit8u mask=0x0);
void _ClearRegBits(Bit32u reg, Bit8u mask);
2013-09-04 13:37:36 +00:00
~Hiopl();
private:
Adlib::Handler *adlib;
Bit8u regCache[256];
Bit32s *Buf32;
bool _CheckParams(int ch, int osc);
int _GetOffset(int ch, int osc);
int _GetOffset(int ch);
void _milliHertzToFnum(unsigned int milliHertz, unsigned int *fnum, unsigned int *block, unsigned int conversionFactor=49716);
std::map<int, int> _op1offset;
std::map<int, int> _op2offset;
2013-09-04 13:37:36 +00:00
};