1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
#include "SND_bank.h"
#include "SND_exChannel.h"
#include "SND_main.h"
#include "mmap.h"
static const struct SNDWaveData *GetWaveData(
const struct SNDBankData *bankData, s32 waveArc, s32 wave);
BOOL SND_ReadInstData(
const struct SNDBankData *bankData, s32 program, s32 midiKey, struct SNDInstData *instData)
{
s32 i;
struct SNDDrumSet *drumSet;
struct SNDKeySplit *keySplit;
u32 off;
u8 minKey, maxKey;
if (program < 0)
return FALSE;
SNDi_LockMutex();
if (program >= bankData->instCount)
{
SNDi_UnlockMutex();
return FALSE;
}
off = bankData->instOffsets[program];
instData->type = SND_INST_OFFSET_TYPE(off);
switch (instData->type)
{
case SND_INST_PCM:
case SND_INST_PSG:
case SND_INST_NOISE:
case SND_INST_DIRECTPCM:
case SND_INST_DUMMY:
instData->param = *SND_INST_OFFSET_NORMAL(bankData, off);
break;
case SND_INST_DRUM_TABLE:
drumSet = SND_INST_OFFSET_DRUMS(bankData, off);
// seperate variables needed for matching
maxKey = drumSet->maxKey;
minKey = drumSet->minKey;
if (midiKey < minKey || midiKey > maxKey)
{
SNDi_UnlockMutex();
return FALSE;
}
*instData = drumSet->instruments[midiKey - drumSet->minKey];
break;
case SND_INST_KEY_SPLIT:
i = 0;
keySplit = SND_INST_OFFSET_KEYSPL(bankData, off);
while (midiKey > keySplit->key[i])
{
i++;
if (i >= SND_INST_MAX_KEYSPLIT)
{
SNDi_UnlockMutex();
return FALSE;
}
}
*instData = keySplit->instruments[i];
break;
case SND_INST_ILLEGAL:
default:
SNDi_UnlockMutex();
return FALSE;
}
SNDi_UnlockMutex();
return TRUE;
}
const struct SNDWaveData *SND_GetWaveDataAddress(const struct SNDWaveArc *waveArc, s32 wave)
{
SNDi_LockMutex();
const struct SNDWaveData *retval = (const struct SNDWaveData *)waveArc->waveOffsets[wave];
if (retval != NULL)
{
if ((u32)retval < HW_MAIN_MEM)
{
retval = (const struct SNDWaveData *)((u32)waveArc + (u32)retval);
}
}
else
{
retval = NULL;
}
SNDi_UnlockMutex();
return retval;
}
BOOL SND_NoteOn(struct SNDExChannel *chn,
s32 midiKey,
s32 velocity,
s32 length,
const struct SNDBankData *bankData,
const struct SNDInstData *instData)
{
const struct SNDWaveData *waveData;
u8 release;
BOOL success;
release = instData->param.envRelease;
if (release == 0xFF)
{
length = -1;
release = 0;
}
switch (instData->type)
{
case SND_INST_PCM:
case SND_INST_DIRECTPCM:
if (instData->type == SND_INST_PCM)
{
waveData = GetWaveData(bankData, instData->param.wave[1], instData->param.wave[0]);
}
else
{
waveData = (const struct SNDWaveData *)((instData->param.wave[1] << 16) |
instData->param.wave[0]);
}
if (waveData == NULL)
{
success = FALSE;
}
else
{
success =
SND_StartExChannelPcm(chn, &waveData->param, waveData->sampleData, length);
}
break;
case SND_INST_PSG:
success = SND_StartExChannelPsg(chn, instData->param.wave[0], length);
break;
case SND_INST_NOISE:
success = SND_StartExChannelNoise(chn, length);
break;
default:
success = FALSE;
break;
}
if (success == FALSE)
{
return FALSE;
}
else
{
chn->midiKey = (u8)midiKey;
chn->rootMidiKey = instData->param.rootKey;
chn->velocity = (u8)velocity;
SND_SetExChannelAttack(chn, instData->param.envAttack);
SND_SetExChannelDecay(chn, instData->param.envDecay);
SND_SetExChannelSustain(chn, instData->param.envSustain);
SND_SetExChannelRelease(chn, release);
chn->initPan = (s8)(instData->param.pan - 0x40);
return TRUE;
}
}
static const struct SNDWaveData *GetWaveData(
const struct SNDBankData *bankData, s32 waveArc, s32 wave)
{
const struct SNDWaveArc *arcPtr = bankData->waveArcLinks[waveArc].waveArc;
if (arcPtr == NULL)
{
return NULL;
}
else if (wave < arcPtr->waveCount)
{
return SND_GetWaveDataAddress(arcPtr, wave);
}
else
{
return NULL;
}
}
|