-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcd_win.pas
More file actions
537 lines (446 loc) · 11.3 KB
/
Copy pathcd_win.pas
File metadata and controls
537 lines (446 loc) · 11.3 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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
// ------------------------------------------------------------------------------
// DelphiQuake, Copyright (C) 2005-2011 by Jim Valavanis
// E-Mail: jimmyvalavanis@yahoo.gr
//
// Copyright (C) 1996-1997 Id Software, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// ------------------------------------------------------------------------------
{$I dquake.inc}
unit cd_win;
interface
uses
q_delphi,
Windows;
function CDAudio_Init: integer;
procedure CDAudio_Play(track: byte; looping: qboolean);
procedure CDAudio_Stop;
procedure CDAudio_Pause;
procedure CDAudio_Resume;
procedure CDAudio_Shutdown;
procedure CDAudio_Update;
function CDAudio_MessageHandler(_hWnd: HWND; uMsg: longword; _wParam: WPARAM; _lParam: LPARAM): LONG;
implementation
uses
common,
mmsystem,
console,
gl_vidnt,
cmd,
snd_dma_h,
cvar,
cl_main_h,
client;
var
cdValid: qboolean = false;
playing: qboolean = false;
wasPlaying: qboolean = false;
initialized: qboolean = false;
enabled: qboolean = false;
playLooping: qboolean = false;
cdvolume: single;
remap: array[0..99] of byte;
playTrack: byte;
maxTrack: byte;
wDeviceID: longword;
procedure CDAudio_Eject;
var
dwReturn: DWORD;
begin
dwReturn := mciSendCommand(wDeviceID, MCI_SET, MCI_SET_DOOR_OPEN, DWORD(0));
if dwReturn <> 0 then
Con_DPrintf('MCI_SET_DOOR_OPEN failed (%d)'#10, [dwReturn]);
end;
procedure CDAudio_CloseDoor;
var
dwReturn: DWORD;
begin
dwReturn := mciSendCommand(wDeviceID, MCI_SET, MCI_SET_DOOR_CLOSED, DWORD(0));
if dwReturn <> 0 then
Con_DPrintf('MCI_SET_DOOR_CLOSED failed (%d)'#10, [dwReturn]);
end;
function CDAudio_GetAudioDiskInfo: integer;
var
dwReturn: DWORD;
mciStatusParms: MCI_STATUS_PARMS;
begin
cdValid := false;
mciStatusParms.dwItem := MCI_STATUS_READY;
dwReturn := mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM or MCI_WAIT, DWORD(@mciStatusParms));
if dwReturn <> 0 then
begin
Con_DPrintf('CDAudio: drive ready test - get status failed'#10);
result := -1;
exit;
end;
if mciStatusParms.dwReturn = 0 then
begin
Con_DPrintf('CDAudio: drive not ready'#10);
result := -1;
exit;
end;
mciStatusParms.dwItem := MCI_STATUS_NUMBER_OF_TRACKS;
dwReturn := mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM or MCI_WAIT, DWORD(@mciStatusParms));
if dwReturn <> 0 then
begin
Con_DPrintf('CDAudio: get tracks - status failed'#10);
result := -1;
exit;
end;
if mciStatusParms.dwReturn < 1 then
begin
Con_DPrintf('CDAudio: no music tracks'#10);
result := -1;
exit;
end;
cdValid := true;
maxTrack := mciStatusParms.dwReturn;
result := 0;
end;
procedure CDAudio_Play(track: byte; looping: qboolean);
var
dwReturn: DWORD;
mciPlayParms: MCI_PLAY_PARMS;
mciStatusParms: MCI_STATUS_PARMS;
begin
if not enabled then
exit;
if not cdValid then
begin
CDAudio_GetAudioDiskInfo;
if not cdValid then
exit;
end;
track := remap[track];
if (track < 1) or (track > maxTrack) then
begin
Con_DPrintf('CDAudio: Bad track number %d.'#10, [track]);
exit;
end;
// don't try to play a non-audio track
mciStatusParms.dwItem := MCI_CDA_STATUS_TYPE_TRACK;
mciStatusParms.dwTrack := track;
dwReturn := mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM or MCI_TRACK or MCI_WAIT, DWORD(@mciStatusParms));
if dwReturn <> 0 then
begin
Con_DPrintf('MCI_STATUS failed (%d)'#10, [dwReturn]);
exit;
end;
if (mciStatusParms.dwReturn <> MCI_CDA_TRACK_AUDIO) then
begin
Con_Printf('CDAudio: track %d is not audio'#10, [track]);
exit;
end;
// get the length of the track to be played
mciStatusParms.dwItem := MCI_STATUS_LENGTH;
mciStatusParms.dwTrack := track;
dwReturn := mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM or MCI_TRACK or MCI_WAIT, DWORD(@mciStatusParms));
if dwReturn <> 0 then
begin
Con_DPrintf('MCI_STATUS failed (%d)'#10, [dwReturn]);
exit;
end;
if playing then
begin
if playTrack = track then
exit;
CDAudio_Stop;
end;
mciPlayParms.dwFrom := MCI_MAKE_TMSF(track, 0, 0, 0);
mciPlayParms.dwTo := (mciStatusParms.dwReturn shl 8) or track;
mciPlayParms.dwCallback := DWORD(mainwindow);
dwReturn := mciSendCommand(wDeviceID, MCI_PLAY, MCI_NOTIFY or MCI_FROM or MCI_TO, DWORD(@mciPlayParms));
if dwReturn <> 0 then
begin
Con_DPrintf('CDAudio: MCI_PLAY failed (%d)'#10, [dwReturn]);
exit;
end;
playLooping := looping;
playTrack := track;
playing := true;
if cdvolume = 0.0 then
CDAudio_Pause;
end;
procedure CDAudio_Stop;
var
dwReturn: DWORD;
begin
if not enabled then
exit;
if not playing then
exit;
dwReturn := mciSendCommand(wDeviceID, MCI_STOP, 0, DWORD(0));
if dwReturn <> 0 then
Con_DPrintf('MCI_STOP failed (%d)'#10, [dwReturn]);
wasPlaying := false;
playing := false;
end;
procedure CDAudio_Pause;
var
dwReturn: DWORD;
mciGenericParms: MCI_GENERIC_PARMS;
begin
if not enabled then
exit;
if not playing then
exit;
mciGenericParms.dwCallback := DWORD(mainwindow);
dwReturn := mciSendCommand(wDeviceID, MCI_PAUSE, 0, DWORD(@mciGenericParms));
if dwReturn <> 0 then
Con_DPrintf('MCI_PAUSE failed (%d)'#10, [dwReturn]);
wasPlaying := playing;
playing := false;
end;
procedure CDAudio_Resume;
var
dwReturn: DWORD;
mciPlayParms: MCI_PLAY_PARMS;
begin
if not enabled then
exit;
if not cdValid then
exit;
if not wasPlaying then
exit;
mciPlayParms.dwFrom := MCI_MAKE_TMSF(playTrack, 0, 0, 0);
mciPlayParms.dwTo := MCI_MAKE_TMSF(playTrack + 1, 0, 0, 0);
mciPlayParms.dwCallback := DWORD(mainwindow);
dwReturn := mciSendCommand(wDeviceID, MCI_PLAY, MCI_TO or MCI_NOTIFY, DWORD(@mciPlayParms));
if dwReturn <> 0 then
begin
Con_DPrintf('CDAudio: MCI_PLAY failed (%d)'#10, [dwReturn]);
exit;
end;
playing := true;
end;
procedure CD_f;
var
command: PChar;
ret: integer;
n: integer;
begin
if Cmd_Argc_f < 2 then
exit;
command := Cmd_Argv_f(1);
if Q_strcasecmp(command, 'on') = 0 then
begin
enabled := true;
exit;
end;
if Q_strcasecmp(command, 'off') = 0 then
begin
if playing then
CDAudio_Stop;
enabled := false;
exit;
end;
if Q_strcasecmp(command, 'reset') = 0 then
begin
enabled := true;
if playing then
CDAudio_Stop;
for n := 0 to 99 do
remap[n] := n;
CDAudio_GetAudioDiskInfo;
exit;
end;
if Q_strcasecmp(command, 'remap') = 0 then
begin
ret := Cmd_Argc_f - 2;
if ret <= 0 then
begin
for n := 1 to 99 do
if remap[n] <> n then
Con_Printf(' %d -> %d'#10, [n, remap[n]]);
exit;
end;
for n := 1 to ret do
remap[n] := Q_atoi(Cmd_Argv_f (n + 1));
exit;
end;
if Q_strcasecmp(command, 'close') = 0 then
begin
CDAudio_CloseDoor;
exit;
end;
if not cdValid then
begin
CDAudio_GetAudioDiskInfo;
if not cdValid then
begin
Con_Printf('No CD in player.'#10);
exit;
end;
end;
if Q_strcasecmp(command, 'play') = 0 then
begin
CDAudio_Play(byte(Q_atoi(Cmd_Argv_f(2))), false);
exit;
end;
if Q_strcasecmp(command, 'loop') = 0 then
begin
CDAudio_Play(byte(Q_atoi(Cmd_Argv_f(2))), true);
exit;
end;
if Q_strcasecmp(command, 'stop') = 0 then
begin
CDAudio_Stop;
exit;
end;
if Q_strcasecmp(command, 'pause') = 0 then
begin
CDAudio_Pause;
exit;
end;
if Q_strcasecmp(command, 'resume') = 0 then
begin
CDAudio_Resume;
exit;
end;
if Q_strcasecmp(command, 'eject') = 0 then
begin
if playing then
CDAudio_Stop;
CDAudio_Eject;
cdValid := false;
exit;
end;
if Q_strcasecmp(command, 'info') = 0 then
begin
Con_Printf('%d tracks'#10, [maxTrack]);
if playing then
Con_Printf('Currently %s track %d'#10, [decide(playLooping, 'looping', 'playing'), playTrack])
else if wasPlaying then
Con_Printf('Paused %s track %d'#10, [decide(playLooping, 'looping', 'playing'), playTrack]);
Con_Printf('Volume is %f'#10, [cdvolume]);
exit;
end;
end;
function CDAudio_MessageHandler(_hWnd: HWND; uMsg: longword; _wParam: WPARAM; _lParam: LPARAM): LONG;
begin
if Cardinal(_lParam) <> wDeviceID then
begin
result := 1;
exit;
end;
case _wParam of
MCI_NOTIFY_SUCCESSFUL:
begin
if playing then
begin
playing := false;
if playLooping then
CDAudio_Play(playTrack, true);
end;
end;
MCI_NOTIFY_ABORTED,
MCI_NOTIFY_SUPERSEDED:
begin
end;
MCI_NOTIFY_FAILURE:
begin
Con_DPrintf('MCI_NOTIFY_FAILURE'#10);
CDAudio_Stop;
cdValid := false;
end;
else
begin
Con_DPrintf('Unexpected MM_MCINOTIFY type (%d)'#10, [_wParam]);
result := 1;
exit;
end;
end;
result := 0;
end;
procedure CDAudio_Update;
begin
if not enabled then
exit;
if bgmvolume.value <> cdvolume then
begin
if cdvolume <> 0 then
begin
Cvar_SetValue('bgmvolume', 0.0);
cdvolume := bgmvolume.value;
CDAudio_Pause;
end
else
begin
Cvar_SetValue('bgmvolume', 1.0);
cdvolume := bgmvolume.value;
CDAudio_Resume;
end;
end;
end;
function CDAudio_Init: integer;
var
dwReturn: DWORD;
mciOpenParms: MCI_OPEN_PARMS;
mciSetParms: MCI_SET_PARMS;
n: integer;
begin
if cls.state = ca_dedicated then
begin
result := -1;
exit;
end;
if COM_CheckParm('-nocdaudio') <> 0 then
begin
result := -1;
exit;
end;
mciOpenParms.lpstrDeviceType := 'cdaudio';
dwReturn := mciSendCommand(0, MCI_OPEN, MCI_OPEN_TYPE or MCI_OPEN_SHAREABLE, DWORD(@mciOpenParms));
if dwReturn <> 0 then
begin
Con_Printf('CDAudio_Init: MCI_OPEN failed (%d)'#10, [dwReturn]);
result := -1;
exit;
end;
wDeviceID := mciOpenParms.wDeviceID;
// Set the time format to track/minute/second/frame (TMSF).
mciSetParms.dwTimeFormat := MCI_FORMAT_TMSF;
dwReturn := mciSendCommand(wDeviceID, MCI_SET, MCI_SET_TIME_FORMAT, DWORD(@mciSetParms));
if dwReturn <> 0 then
begin
Con_Printf('MCI_SET_TIME_FORMAT failed (%d)'#10, [dwReturn]);
mciSendCommand(wDeviceID, MCI_CLOSE, 0, DWORD(0));
result := -1;
exit;
end;
for n := 0 to 99 do
remap[n] := n;
initialized := true;
enabled := true;
if CDAudio_GetAudioDiskInfo <> 0 then
begin
Con_Printf('CDAudio_Init: No CD in player.'#10);
cdValid := false;
end;
Cmd_AddCommand('cd', CD_f);
Con_Printf('CD Audio Initialized'#10);
result := 0;
end;
procedure CDAudio_Shutdown;
begin
if not initialized then
exit;
CDAudio_Stop;
if mciSendCommand(wDeviceID, MCI_CLOSE, MCI_WAIT, DWORD(0)) <> 0 then
Con_DPrintf('CDAudio_Shutdown: MCI_CLOSE failed'#10);
end;
end.