-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdaudio.c
397 lines (318 loc) · 10.1 KB
/
cdaudio.c
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
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Includes
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
#include "cdaudio.h"
#include "main.h" // for definition of MAX_LEVELS
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Global Variables
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
CDSound sound;
CDInfo cd_info;
int16 actual_volume;
BOOL CD_Present = FALSE;
int CDTrack[MAXLEVELS];
DWORD CDFinishTime;
// thread stuff...
#ifdef CD_LOOP_THREAD
DWORD CDThreadID;
HANDLE CDThread;
CRITICAL_SECTION CDKey;
BOOL RestartCDTrack = FALSE;
#endif
extern BOOL CD_OK;
void DebugPrintf( const char * format, ... );
#ifdef CD_LOOP_THREAD
void CDThreadProc (void * pParm)
{
while( 1 )
{
EnterCriticalSection (&CDKey);
if ( RestartCDTrack )
{
RestartCDTrack = FALSE;
PlayAudioTrack();
}
LeaveCriticalSection (&CDKey);
Sleep( 0 );
}
}
#endif
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Initialise Sound Devices
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void SoundInit( void )
{
long numDevs, c, found;
/*
* set up the volume information
*/
#ifdef WIN98SHAREWARE
return;
#endif
found = FALSE;
numDevs = auxGetNumDevs();
for (c = 0; !found && c < numDevs; c++)
{
AUXCAPS auxCaps;
auxGetDevCaps(c, &auxCaps, sizeof(AUXCAPS));
if( auxCaps.wTechnology & AUXCAPS_CDAUDIO)
{
cd_info.volume_id = c;
found = TRUE;
}
}
auxGetVolume( cd_info.volume_id, &sound.OriginalMusicVolume );
actual_volume = (int16) sound.OriginalMusicVolume;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Close CD Device
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void CloseCD( void )
{
if( cd_info.DeviceID )
{
mciSendCommand(cd_info.DeviceID, MCI_CLOSE, 0, (DWORD)NULL);
cd_info.DeviceID = 0;
CD_Present = FALSE;
#ifdef CD_LOOP_THREAD
TerminateThread (&CDThread, 0);
#endif
}
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Open CD Device
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void OpenCD( void )
{
DWORD dwReturn;
MCI_OPEN_PARMS mciOpenParams;
MCI_SET_PARMS mciSetParams;
char ErrorText[128];
MCI_STATUS_PARMS mci_status;
uint8 i;
#ifdef CD_LOOP_THREAD
InitializeCriticalSection (&CDKey);
#endif
#ifdef WIN98SHAREWARE
return;
#endif
if( cd_info.DeviceID )
return;
memset(&mciOpenParams, sizeof(MCI_OPEN_PARMS), 0);
mciOpenParams.lpstrDeviceType = "cdaudio";
if( dwReturn = mciSendCommand( 0, MCI_OPEN, MCI_OPEN_TYPE, (DWORD)(LPVOID) &mciOpenParams ) )
{
/*
* Failed to open device;
* don't close it, just return error.
*/
mciGetErrorString( dwReturn, ErrorText, 128 );
DebugPrintf("PlayAudioTrack() - unable to open CD - error: %s\n", ErrorText );
return;
}
/* Device opened successfully, get the device ID. */
cd_info.DeviceID = mciOpenParams.wDeviceID;
/* Set the time format to minute/second/frame. */
mciSetParams.dwTimeFormat = MCI_FORMAT_TMSF;
if( dwReturn = mciSendCommand(cd_info.DeviceID, MCI_SET, MCI_SET_TIME_FORMAT, (DWORD)(LPVOID) &mciSetParams))
{
CloseCD();
return;
}
// find out number of tracks on CD...
mci_status.dwItem = MCI_STATUS_NUMBER_OF_TRACKS;
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_STATUS, MCI_STATUS_ITEM|MCI_WAIT, (DWORD)(LPVOID)&mci_status))
{
mciGetErrorString( dwReturn, ErrorText, 128 );
DebugPrintf("PlayAudioTrack() - unable to get num tracks - error: %s\n", ErrorText );
CloseCD();
return;
}
cd_info.num_tracks = mci_status.dwReturn;
if ( cd_info.num_tracks > MAX_AUDIO_TRACKS )
cd_info.num_tracks = MAX_AUDIO_TRACKS;
mci_status.dwItem = MCI_STATUS_LENGTH;
for (i=0; i<cd_info.num_tracks; i++)
{
mci_status.dwTrack = i+1;
mciSendCommand(cd_info.DeviceID, MCI_STATUS, MCI_TRACK|MCI_STATUS_ITEM|MCI_WAIT, (DWORD)(LPVOID)&mci_status);
//DebugPrintf("mins: %d, secs: %d\n", MCI_MSF_MINUTE(mci_status.dwReturn), MCI_MSF_SECOND(mci_status.dwReturn));
cd_info.track_length[ i ] = (MCI_MSF_MINUTE(mci_status.dwReturn)*60 + MCI_MSF_SECOND(mci_status.dwReturn)) * 1000;
}
#ifdef CD_LOOP_THREAD
CDThread =
CreateThread (NULL, 0,
(LPTHREAD_START_ROUTINE) CDThreadProc,
NULL, 0, &CDThreadID);
if (!(SetThreadPriority( CDThread, THREAD_PRIORITY_LOWEST )) )
DebugPrintf("Unable to set thread priority\n");
#endif
CD_Present = TRUE;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Set Volume of CD
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void CdSetVolume( void )
{
auxSetVolume( cd_info.volume_id, ( actual_volume | ( actual_volume << 16 ) ) );
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Play Audio Track
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void PlayAudioTrack( void )
{
DWORD dwReturn;
MCI_PLAY_PARMS mciPlay;
char ErrorText[128];
/*
* Begin playback from the given track and play
* until the beginning of the next track. The window
* procedure function for the parent window will be
* notified with an MM_MCINOTIFY message when playback
* is complete. Unless the play command fails, the
* window procedure closes the device.
*/
#ifdef WIN98SHAREWARE
return;
#endif
if( !CD_OK )
return;
mciPlay.dwCallback = (DWORD) myglobs.hWndMain;
mciPlay.dwFrom = MCI_MAKE_TMSF(cd_info.current_track, 0, 0, 0);
if ( cd_info.current_track == cd_info.num_tracks )
{
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_PLAY, MCI_FROM | MCI_NOTIFY , (DWORD)(LPVOID) &mciPlay))
{
mciGetErrorString( dwReturn, ErrorText, 128 );
DebugPrintf("PlayAudioTrack() - unable to play track %d - error: %s\n", cd_info.current_track, ErrorText );
return;
}
}else
{
mciPlay.dwTo = MCI_MAKE_TMSF(cd_info.current_track + 1, 0, 0, 0);
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_PLAY, MCI_FROM | MCI_TO | MCI_NOTIFY , (DWORD)(LPVOID) &mciPlay))
{
mciGetErrorString( dwReturn, ErrorText, 128 );
DebugPrintf("PlayAudioTrack() - unable to play track %d - error: %s\n", cd_info.current_track, ErrorText );
return;
}
}
#ifdef CD_LOOP_THREAD
CDFinishTime = timeGetTime() + cd_info.track_length[ cd_info.current_track - 1 ];
DebugPrintf("CD started at %d", timeGetTime() );
DebugPrintf("due to finish at %d", CDFinishTime );
#endif
cd_info.IsPlaying = TRUE;
return;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Stop Playing Audio Track
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void CdStop( void )
{
DWORD dwReturn;
MCI_GENERIC_PARMS mciGenericParms;
cd_info.IsPlaying = FALSE;
if( !cd_info.DeviceID ) return;
mciGenericParms.dwCallback = (DWORD) myglobs.hWndMain;
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_STOP, MCI_WAIT, (DWORD)(LPVOID) &mciGenericParms))
{
CloseCD();
}
cd_info.loop = FALSE;
cd_info.paused = FALSE;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Unpause CD Audio
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void CdUnPause( void )
{
DWORD dwReturn;
MCI_PLAY_PARMS mciPlay;
char ErrorText[128];
cd_info.IsPlaying = TRUE;
if( !cd_info.DeviceID ) return;
mciPlay.dwFrom = cd_info.current_position;
mciPlay.dwTo = MCI_MAKE_TMSF(cd_info.current_track + 1, 0, 0, 0);
mciPlay.dwCallback = (DWORD) myglobs.hWndMain;
if ( cd_info.current_track == cd_info.num_tracks )
{
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_PLAY, MCI_FROM | MCI_NOTIFY , (DWORD)(LPVOID) &mciPlay))
{
mciGetErrorString( dwReturn, ErrorText, 128 );
DebugPrintf("PlayAudioTrack() - unable to play track %d - error: %s\n", cd_info.current_track, ErrorText );
return;
}
}else
{
mciPlay.dwTo = MCI_MAKE_TMSF(cd_info.current_track + 1, 0, 0, 0);
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_PLAY, MCI_FROM | MCI_TO | MCI_NOTIFY , (DWORD)(LPVOID) &mciPlay))
{
mciGetErrorString( dwReturn, ErrorText, 128 );
DebugPrintf("PlayAudioTrack() - unable to play track %d - error: %s\n", cd_info.current_track, ErrorText );
return;
}
}
cd_info.paused = FALSE;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Pause CD Audio
Input : Nothing
Output : Nothing
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
void CdPause( void )
{
DWORD dwReturn;
MCI_GENERIC_PARMS mciGeneric;
MCI_STATUS_PARMS mciStatus;
#ifdef WIN98SHAREWARE
return;
#endif
cd_info.IsPlaying = FALSE;
if( !cd_info.DeviceID ) return;
mciGeneric.dwCallback = (DWORD) myglobs.hWndMain;
mciStatus.dwCallback = (DWORD) myglobs.hWndMain;
mciStatus.dwItem = MCI_STATUS_POSITION;
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_STATUS, MCI_STATUS_ITEM, (DWORD)(LPVOID) &mciStatus))
{
CloseCD();
}
if (dwReturn = mciSendCommand(cd_info.DeviceID, MCI_STOP, MCI_WAIT, (DWORD)(LPVOID) &mciGeneric))
{
CloseCD();
}
cd_info.current_position = mciStatus.dwReturn;
cd_info.paused = TRUE;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Check if CD is still playing
Input : Nothing
Output : BOOL True/False
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
BOOL CdIsPlaying( void )
{
DWORD dwReturn;
MCI_STATUS_PARMS mciStatus;
#ifdef WIN98SHAREWARE
return FALSE;
#endif
if( !cd_info.DeviceID ) return TRUE;
if( !cd_info.loop ) return TRUE;
mciStatus.dwItem = MCI_STATUS_MODE;
dwReturn = mciSendCommand(cd_info.DeviceID, MCI_STATUS, MCI_STATUS_ITEM, (DWORD)(LPVOID) &mciStatus);
return( mciStatus.dwReturn == MCI_MODE_PLAY );
}