23 #if !defined(AUDIO_MODS_MAXTRAX_H) && (defined(ENABLE_KYRA) || defined(DYNAMIC_MODULES)) 24 #define AUDIO_MODS_MAXTRAX_H 29 #include "audio/mods/paula.h" 33 class MaxTrax :
public Paula {
35 MaxTrax(
int rate,
bool stereo, uint16 vBlankFreq = 50, uint16 maxScores = 128);
39 bool playSong(
int songIndex,
bool loop =
false);
40 void advanceSong(
int advance = 1);
41 int playNote(byte note, byte patch, uint16 duration, uint16 volume,
bool rightSide);
42 void setVolume(
const byte volume) {
Common::StackLock lock(_mutex); _playerCtx.volume = volume; }
43 void setTempo(
const uint16 tempo);
50 void setSignalCallback(
void (*callback) (
int));
56 enum { kNumPatches = 64, kNumVoices = 4, kNumChannels = 16, kNumExtraChannels = 1 };
57 enum { kPriorityScore, kPriorityNote, kPrioritySound };
59 #ifdef MAXTRAX_HAS_MICROTONAL 60 int16 _microtonal[128];
99 const Event *nextEvent;
102 void (*syncCallBack) (int);
103 const Event *repeatPoint[4];
113 const Envelope *attackPtr;
122 const int8 *samplePtr;
123 uint32 sampleTotalLen;
124 uint32 sampleAttackLen;
125 uint16 sampleOctaves;
126 } _patch[kNumPatches];
128 struct ChannelContext {
130 uint16 regParamNumber;
133 uint16 modulationTime;
137 uint16 portamentoTime;
147 kFlagRightChannel = 1 << 0,
148 kFlagPortamento = 1 << 1,
149 kFlagDamper = 1 << 2,
151 kFlagMicrotonal = 1 << 4,
152 kFlagModVolume = 1 << 5
160 } _channelCtx[kNumChannels + kNumExtraChannels];
162 struct VoiceContext {
163 ChannelContext *channel;
165 const Envelope *envelope;
200 } _voiceCtx[kNumVoices];
202 void controlCh(ChannelContext &channel, byte command, byte data);
205 void resetChannel(ChannelContext &chan,
bool rightChannel);
208 int8 pickvoice(uint pick, int16 pri);
209 uint16 calcNote(
const VoiceContext &voice);
210 int8 noteOn(ChannelContext &channel, byte note, uint16 volume, uint16 pri);
211 void killVoice(byte num);
212 void freeResources(
bool loadScores,
bool loadSamples);
214 static void outPutEvent(
const Event &ev,
int num = -1);
215 static void outPutScore(
const Score &sc,
int num = -1);
219 #endif // !defined(AUDIO_MODS_MAXTRAX_H)