cseq.c
11.4 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*====================================================================
* cseq.c
*
* Copyright 1993, Silicon Graphics, Inc.
* All Rights Reserved.
*
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics,
* Inc.; the contents of this file may not be disclosed to third
* parties, copied or duplicated in any form, in whole or in part,
* without the prior written permission of Silicon Graphics, Inc.
*
* RESTRICTED RIGHTS LEGEND:
* Use, duplication or disclosure by the Government is subject to
* restrictions as set forth in subdivision (c)(1)(ii) of the Rights
* in Technical Data and Computer Software clause at DFARS
* 252.227-7013, and/or in similar or successor clauses in the FAR,
* DOD or NASA FAR Supplement. Unpublished - rights reserved under the
* Copyright Laws of the United States.
*====================================================================*/
#include <libaudio.h>
#include <os_internal.h>
#include <ultraerror.h>
#include "cseq.h"
static u32 __readVarLen(ALCSeq *s,u32 track);
static u8 __getTrackByte(ALCSeq *s,u32 track);
static u32 __alCSeqGetTrackEvent(ALCSeq *seq, u32 track, ALEvent *event);
void alCSeqNew(ALCSeq *seq, u8 *ptr)
{
u32 i,tmpOff,flagTmp;
/* load the seqence pointed to by ptr */
seq->base = (ALCMidiHdr*)ptr;
seq->validTracks = 0;
seq->lastDeltaTicks = 0;
seq->lastTicks = 0;
seq->deltaFlag = 1;
for(i = 0; i < 16; i++)
{
seq->lastStatus[i] = 0;
seq->curBUPtr[i] = 0;
seq->curBULen[i] = 0;
tmpOff = seq->base->trackOffset[i];
if(tmpOff) /* if the track is valid */
{
flagTmp = 1 << i;
seq->validTracks |= flagTmp;
seq->curLoc[i] = (u8*)((u32)ptr + tmpOff);
seq->evtDeltaTicks[i] = __readVarLen(seq,i);
/*__alCSeqGetTrackEvent(seq,i); prime the event buffers */
}
else
seq->curLoc[i] = 0;
}
seq->qnpt = 1.0/(f32)seq->base->division;
}
void alCSeqNextEvent(ALCSeq *seq,ALEvent *evt)
{
u32 i;
u32 firstTime = 0xFFFFFFFF;
u32 firstTrack;
u32 lastTicks = seq->lastDeltaTicks;
#ifdef _DEBUG
/* sct 1/17/96 - Warn if we are beyond the end of sequence. */
if (!seq->validTracks)
__osError(ERR_ALSEQOVERRUN, 0);
#endif
for(i = 0; i < 16 ; i++)
{
if((seq->validTracks >> i) & 1)
{
if(seq->deltaFlag)
seq->evtDeltaTicks[i] -= lastTicks;
if(seq->evtDeltaTicks[i] < firstTime)
{
firstTime = seq->evtDeltaTicks[i];
firstTrack = i;
}
}
}
__alCSeqGetTrackEvent(seq,firstTrack,evt);
evt->msg.midi.ticks = firstTime;
seq->lastTicks += firstTime;
seq->lastDeltaTicks = firstTime;
if(evt->type != AL_TRACK_END)
seq->evtDeltaTicks[firstTrack] += __readVarLen(seq,firstTrack);
seq->deltaFlag = 1;
}
/*
Note: If there are no valid tracks (ie. all tracks have
reached the end of their data stream), then return FALSE
to indicate that there is no next event.
*/
char __alCSeqNextDelta(ALCSeq *seq, s32 *pDeltaTicks)
{
u32 i;
u32 firstTime = 0xFFFFFFFF;
u32 lastTicks = seq->lastDeltaTicks;
if (!seq->validTracks)
return FALSE;
for(i = 0; i < 16 ; i++)
{
if((seq->validTracks >> i) & 1)
{
if(seq->deltaFlag)
seq->evtDeltaTicks[i] -= lastTicks;
if(seq->evtDeltaTicks[i] < firstTime)
firstTime = seq->evtDeltaTicks[i];
}
}
seq->deltaFlag = 0;
*pDeltaTicks = firstTime;
return TRUE;
}
/* only call alCSeqGetTrackEvent with a valid track !! */
static u32 __alCSeqGetTrackEvent(ALCSeq *seq, u32 track, ALEvent *event)
{
u32 offset;
u8 status, loopCt, curLpCt, *tmpPtr;
status = __getTrackByte(seq,track); /* read the status byte */
if (status == AL_MIDI_Meta) /* running status not allowed on meta events!! */
{
u8 type = __getTrackByte(seq,track);
if (type == AL_MIDI_META_TEMPO)
{
event->type = AL_TEMPO_EVT;
event->msg.tempo.status = status;
event->msg.tempo.type = type;
event->msg.tempo.byte1 = __getTrackByte(seq,track);
event->msg.tempo.byte2 = __getTrackByte(seq,track);
event->msg.tempo.byte3 = __getTrackByte(seq,track);
seq->lastStatus[track] = 0; /* lastStatus not supported after meta */
}
else if (type == AL_MIDI_META_EOT)
{
u32 flagMask;
flagMask = 0x01 << track;
seq->validTracks = seq->validTracks ^ flagMask;
if(seq->validTracks) /* there is music left don't end */
event->type = AL_TRACK_END;
else /* no more music send AL_SEQ_END_EVT msg */
event->type = AL_SEQ_END_EVT;
}
else if (type == AL_CMIDI_LOOPSTART_CODE)
{
status = __getTrackByte(seq,track); /* get next two bytes, ignore them */
status = __getTrackByte(seq,track);
seq->lastStatus[track] = 0;
event->type = AL_CSP_LOOPSTART;
}
else if (type == AL_CMIDI_LOOPEND_CODE)
{
tmpPtr = seq->curLoc[track];
loopCt = *tmpPtr++;
curLpCt = *tmpPtr;
if(curLpCt == 0) /* done looping */
{
*tmpPtr = loopCt; /* reset current loop count */
seq->curLoc[track] = tmpPtr + 5; /* move pointer to end of event */
}
else
{
if(curLpCt != 0xFF) /* not a loop forever */
*tmpPtr = curLpCt - 1; /* decrement current loop count */
tmpPtr++; /* get offset from end of event */
offset = (*tmpPtr++) << 24;
offset += (*tmpPtr++) << 16;
offset += (*tmpPtr++) << 8;
offset += *tmpPtr++;
seq->curLoc[track] = tmpPtr - offset;
}
seq->lastStatus[track] = 0;
event->type = AL_CSP_LOOPEND;
}
#ifdef _DEBUG
else
__osError(ERR_ALSEQMETA, 1, type);
#endif
}
else
{
event->type = AL_SEQ_MIDI_EVT;
if (status & 0x80) /* if high bit is set, then new status */
{
event->msg.midi.status = status;
event->msg.midi.byte1 = __getTrackByte(seq,track);
seq->lastStatus[track] = status;
}
else /* running status */
{
#ifdef _DEBUG
if(seq->lastStatus[track] == 0)
__osError(ERR_ALCSEQZEROSTATUS, 1, track);
#endif
event->msg.midi.status = seq->lastStatus[track];
event->msg.midi.byte1 = status;
}
if (((event->msg.midi.status & 0xf0) != AL_MIDI_ProgramChange) &&
((event->msg.midi.status & 0xf0) != AL_MIDI_ChannelPressure))
{
event->msg.midi.byte2 = __getTrackByte(seq,track);
if((event->msg.midi.status & 0xf0) == AL_MIDI_NoteOn)
{
event->msg.midi.duration = __readVarLen(seq,track);
#ifdef _DEBUG
if(event->msg.midi.byte2 == 0)
__osError( ERR_ALCSEQZEROVEL, 1, track);
#endif
}
}
else
event->msg.midi.byte2 = 0;
}
return TRUE;
}
f32 alCSeqTicksToSec(ALCSeq *seq, s32 ticks, u32 tempo)
{
return ((f32) (((f32)(ticks) * (f32)(tempo)) /
((f32)(seq->base->division) * 1000000.0)));
}
u32 alCSeqSecToTicks(ALCSeq *seq, f32 sec, u32 tempo)
{
return (u32)(((sec * 1000000.0) * seq->base->division) / tempo);
}
s32 alCSeqGetTicks(ALCSeq *seq)
{
return seq->lastTicks;
}
void alCSeqNewMarker(ALCSeq *seq, ALCSeqMarker *m, u32 ticks)
{
ALEvent evt;
ALCSeq tempSeq;
s32 i;
alCSeqNew(&tempSeq, (u8*)seq->base);
do {
m->validTracks = tempSeq.validTracks;
m->lastTicks = tempSeq.lastTicks;
m->lastDeltaTicks = tempSeq.lastDeltaTicks;
for(i=0;i<16;i++)
{
m->curLoc[i] = tempSeq.curLoc[i];
m->curBUPtr[i] = tempSeq.curBUPtr[i];
m->curBULen[i] = tempSeq.curBULen[i];
m->lastStatus[i] = tempSeq.lastStatus[i];
m->evtDeltaTicks[i] = tempSeq.evtDeltaTicks[i];
}
alCSeqNextEvent(&tempSeq, &evt);
if (evt.type == AL_SEQ_END_EVT)
break;
} while (tempSeq.lastTicks < ticks);
}
void alCSeqSetLoc(ALCSeq *seq, ALCSeqMarker *m)
{
s32 i;
seq->validTracks = m->validTracks;
seq->lastTicks = m->lastTicks;
seq->lastDeltaTicks = m->lastDeltaTicks;
for(i=0;i<16;i++)
{
seq->curLoc[i] = m->curLoc[i];
seq->curBUPtr[i] = m->curBUPtr[i];
seq->curBULen[i] = m->curBULen[i];
seq->lastStatus[i] = m->lastStatus[i];
seq->evtDeltaTicks[i] = m->evtDeltaTicks[i];
}
}
void alCSeqGetLoc(ALCSeq *seq, ALCSeqMarker *m)
{
s32 i;
m->validTracks = seq->validTracks;
m->lastTicks = seq->lastTicks;
m->lastDeltaTicks = seq->lastDeltaTicks;
for(i=0;i<16;i++)
{
m->curLoc[i] = seq->curLoc[i];
m->curBUPtr[i] = seq->curBUPtr[i];
m->curBULen[i] = seq->curBULen[i];
m->lastStatus[i] = seq->lastStatus[i];
m->evtDeltaTicks[i] = seq->evtDeltaTicks[i];
}
}
/* non-aligned byte reading routines */
static u8 __getTrackByte(ALCSeq *seq,u32 track)
{
u8 theByte;
if(seq->curBULen[track])
{
theByte = *seq->curBUPtr[track];
seq->curBUPtr[track]++;
seq->curBULen[track]--;
}
else /* need to handle backup mode */
{
theByte = *seq->curLoc[track];
seq->curLoc[track]++;
if(theByte == AL_CMIDI_BLOCK_CODE)
{
u8 loBackUp,hiBackUp,theLen,nextByte;
u32 backup;
nextByte = *seq->curLoc[track];
seq->curLoc[track]++;
if(nextByte != AL_CMIDI_BLOCK_CODE)
{
/* if here, then got a backup section. get the amount of
backup, and the len of the section. Subtract the amount of
backup from the curLoc ptr, and subtract four more, since
curLoc has been advanced by four while reading the codes. */
hiBackUp = nextByte;
loBackUp = *seq->curLoc[track];
seq->curLoc[track]++;
theLen = *seq->curLoc[track];
seq->curLoc[track]++;
backup = (u32)hiBackUp;
backup = backup << 8;
backup += loBackUp;
seq->curBUPtr[track] = seq->curLoc[track] - (backup + 4);
seq->curBULen[track] = (u32)theLen;
/* now get the byte */
theByte = *seq->curBUPtr[track];
seq->curBUPtr[track]++;
seq->curBULen[track]--;
}
}
}
return theByte;
}
static u32 __readVarLen(ALCSeq *seq,u32 track)
{
u32 value;
u32 c;
value = (u32)__getTrackByte(seq,track);
if ( value & 0x00000080 )
{
value &= 0x7f;
do
{
c = (u32)__getTrackByte(seq,track);
value = (value << 7) + (c & 0x7f);
} while (c & 0x80);
}
return (value);
}