Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
665 lines (606 loc) · 18.4 KB

SDL_syscdrom.c

File metadata and controls

665 lines (606 loc) · 18.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Feb 1, 2006
Feb 1, 2006
2
3
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library 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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
20
21
22
23
Carsten Griwodz
griff@kom.tu-darmstadt.de
based on linux/SDL_syscdrom.c by Sam Lantinga
*/
Feb 21, 2006
Feb 21, 2006
24
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
25
Apr 14, 2006
Apr 14, 2006
26
27
#ifdef SDL_CDROM_AIX
Apr 26, 2001
Apr 26, 2001
28
29
/* Functions for system-level CD-ROM audio control */
Feb 16, 2006
Feb 16, 2006
30
/*#define DEBUG_CDROM 1*/
Apr 26, 2001
Apr 26, 2001
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/devinfo.h>
#include <sys/mntctl.h>
#include <sys/statfs.h>
#include <sys/vmount.h>
#include <fstab.h>
#include <sys/scdisk.h>
#include "SDL_cdrom.h"
Feb 16, 2006
Feb 16, 2006
47
#include "../SDL_syscdrom.h"
Apr 26, 2001
Apr 26, 2001
48
49
/* The maximum number of CD-ROM drives we'll detect */
Jul 10, 2006
Jul 10, 2006
50
#define MAX_DRIVES 16
Apr 26, 2001
Apr 26, 2001
51
52
53
54
55
56
57
/* A list of available CD-ROM drives */
static char *SDL_cdlist[MAX_DRIVES];
static dev_t SDL_cdmode[MAX_DRIVES];
/* The system-dependent CD control functions */
static const char *SDL_SYS_CDName(int drive);
Jul 10, 2006
Jul 10, 2006
58
59
60
61
62
63
64
65
66
67
static int SDL_SYS_CDOpen(int drive);
static int SDL_SYS_CDGetTOC(SDL_CD * cdrom);
static CDstatus SDL_SYS_CDStatus(SDL_CD * cdrom, int *position);
static int SDL_SYS_CDPlay(SDL_CD * cdrom, int start, int length);
static int SDL_SYS_CDPause(SDL_CD * cdrom);
static int SDL_SYS_CDResume(SDL_CD * cdrom);
static int SDL_SYS_CDStop(SDL_CD * cdrom);
static int SDL_SYS_CDEject(SDL_CD * cdrom);
static void SDL_SYS_CDClose(SDL_CD * cdrom);
static int SDL_SYS_CDioctl(int id, int command, void *arg);
Apr 26, 2001
Apr 26, 2001
68
69
/* Check a drive to see if it is a CD-ROM */
Jul 10, 2006
Jul 10, 2006
70
71
static int
CheckDrive(char *drive, struct stat *stbuf)
Apr 26, 2001
Apr 26, 2001
72
73
74
75
76
77
78
{
int is_cd;
int cdfd;
int ret;
struct devinfo info;
/* If it doesn't exist, return -1 */
Jul 10, 2006
Jul 10, 2006
79
if (stat(drive, stbuf) < 0) {
Apr 26, 2001
Apr 26, 2001
80
81
82
83
84
return -1;
}
/* If it does exist, verify that it's an available CD-ROM */
is_cd = 0;
Jul 10, 2006
Jul 10, 2006
85
86
87
88
89
90
91
92
93
94
95
96
97
98
if (S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode)) {
cdfd = open(drive, (O_RDONLY | O_EXCL | O_NONBLOCK), 0);
if (cdfd >= 0) {
ret = SDL_SYS_CDioctl(cdfd, IOCINFO, &info);
if (ret < 0) {
/* Some kind of error */
is_cd = 0;
} else {
if (info.devtype == DD_CDROM) {
is_cd = 1;
} else {
is_cd = 0;
}
}
Apr 26, 2001
Apr 26, 2001
99
close(cdfd);
Jul 10, 2006
Jul 10, 2006
100
}
Apr 26, 2001
Apr 26, 2001
101
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
102
103
104
105
else {
fprintf(stderr, "Could not open drive %s (%s)\n", drive,
strerror(errno));
}
Apr 26, 2001
Apr 26, 2001
106
107
108
109
110
111
#endif
}
return is_cd;
}
/* Add a CD-ROM drive to our list of valid drives */
Jul 10, 2006
Jul 10, 2006
112
113
static void
AddDrive(char *drive, struct stat *stbuf)
Apr 26, 2001
Apr 26, 2001
114
{
Jul 10, 2006
Jul 10, 2006
115
116
117
118
119
120
121
122
int i;
if (SDL_numcds < MAX_DRIVES) {
/* Check to make sure it's not already in our list.
This can happen when we see a drive via symbolic link.
*/
for (i = 0; i < SDL_numcds; ++i) {
if (stbuf->st_rdev == SDL_cdmode[i]) {
Apr 26, 2001
Apr 26, 2001
123
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
124
125
fprintf(stderr, "Duplicate drive detected: %s == %s\n",
drive, SDL_cdlist[i]);
Apr 26, 2001
Apr 26, 2001
126
#endif
Jul 10, 2006
Jul 10, 2006
127
128
129
130
131
132
133
134
135
136
137
138
139
return;
}
}
/* Add this drive to our list */
i = SDL_numcds;
SDL_cdlist[i] = SDL_strdup(drive);
if (SDL_cdlist[i] == NULL) {
SDL_OutOfMemory();
return;
}
SDL_cdmode[i] = stbuf->st_rdev;
++SDL_numcds;
Apr 26, 2001
Apr 26, 2001
140
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
141
fprintf(stderr, "Added CD-ROM drive: %s\n", drive);
Apr 26, 2001
Apr 26, 2001
142
#endif
Jul 10, 2006
Jul 10, 2006
143
}
Apr 26, 2001
Apr 26, 2001
144
145
}
Jul 10, 2006
Jul 10, 2006
146
147
static void
CheckMounts()
Apr 26, 2001
Apr 26, 2001
148
{
Jul 10, 2006
Jul 10, 2006
149
150
151
152
153
154
155
156
157
158
159
char *buffer;
int bufsz;
struct vmount *ptr;
int ret;
buffer = (char *) SDL_malloc(10);
bufsz = 10;
if (buffer == NULL) {
fprintf(stderr,
"Could not allocate 10 bytes in aix/SDL_syscdrom.c:CheckMounts\n");
exit(-10);
Apr 26, 2001
Apr 26, 2001
160
161
}
Jul 10, 2006
Jul 10, 2006
162
163
164
165
166
167
168
169
do {
/* mntctrl() returns an array of all mounted filesystems */
ret = mntctl(MCTL_QUERY, bufsz, buffer);
if (ret == 0) {
/* Buffer was too small, realloc. */
bufsz = *(int *) buffer; /* Required size is in first word. */
/* (whatever a word is in AIX 4.3.3) */
/* int seems to be OK in 32bit mode. */
Feb 7, 2006
Feb 7, 2006
170
SDL_free(buffer);
Jul 10, 2006
Jul 10, 2006
171
172
buffer = (char *) SDL_malloc(bufsz);
if (buffer == NULL) {
Apr 26, 2001
Apr 26, 2001
173
fprintf(stderr,
Jul 10, 2006
Jul 10, 2006
174
175
176
"Could not allocate %d bytes in aix/SDL_syscdrom.c:CheckMounts\n",
bufsz);
exit(-10);
Apr 26, 2001
Apr 26, 2001
177
}
Jul 10, 2006
Jul 10, 2006
178
} else if (ret < 0) {
Apr 26, 2001
Apr 26, 2001
179
180
181
#ifdef DEBUG_CDROM
fprintf(stderr, "Error reading vmount structures\n");
#endif
Jul 10, 2006
Jul 10, 2006
182
183
return;
}
Aug 27, 2008
Aug 27, 2008
184
} while (ret == 0);
Apr 26, 2001
Apr 26, 2001
185
186
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
187
fprintf(stderr, "Read %d vmount structures\n", ret);
Apr 26, 2001
Apr 26, 2001
188
#endif
Jul 10, 2006
Jul 10, 2006
189
190
191
192
ptr = (struct vmount *) buffer;
do {
switch (ptr->vmt_gfstype) {
case MNT_CDROM:
Apr 26, 2001
Apr 26, 2001
193
{
Jul 10, 2006
Jul 10, 2006
194
195
struct stat stbuf;
char *text;
Apr 26, 2001
Apr 26, 2001
196
Jul 10, 2006
Jul 10, 2006
197
text = (char *) ptr + ptr->vmt_data[VMT_OBJECT].vmt_off;
Apr 26, 2001
Apr 26, 2001
198
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
199
200
201
fprintf(stderr,
"Checking mount path: %s mounted on %s\n", text,
(char *) ptr + ptr->vmt_data[VMT_STUB].vmt_off);
Apr 26, 2001
Apr 26, 2001
202
#endif
Jul 10, 2006
Jul 10, 2006
203
204
if (CheckDrive(text, &stbuf) > 0) {
AddDrive(text, &stbuf);
Apr 26, 2001
Apr 26, 2001
205
206
}
}
Jul 10, 2006
Jul 10, 2006
207
208
209
210
211
212
break;
default:
break;
}
ptr = (struct vmount *) ((char *) ptr + ptr->vmt_length);
ret--;
Aug 27, 2008
Aug 27, 2008
213
} while (ret > 0);
Apr 26, 2001
Apr 26, 2001
214
Jul 10, 2006
Jul 10, 2006
215
free(buffer);
Apr 26, 2001
Apr 26, 2001
216
217
}
Jul 10, 2006
Jul 10, 2006
218
219
static int
CheckNonmounts()
Apr 26, 2001
Apr 26, 2001
220
221
{
#ifdef _THREAD_SAFE
Jul 10, 2006
Jul 10, 2006
222
223
224
AFILE_t fsFile = NULL;
int passNo = 0;
int ret;
Apr 26, 2001
Apr 26, 2001
225
struct fstab entry;
Jul 10, 2006
Jul 10, 2006
226
227
228
229
230
231
232
233
234
235
236
struct stat stbuf;
ret = setfsent_r(&fsFile, &passNo);
if (ret != 0)
return -1;
do {
ret = getfsent_r(&entry, &fsFile, &passNo);
if (ret == 0) {
char *l = SDL_strrchr(entry.fs_spec, '/');
if (l != NULL) {
if (!SDL_strncmp("cd", ++l, 2)) {
Apr 26, 2001
Apr 26, 2001
237
238
#ifdef DEBUG_CDROM
fprintf(stderr,
Jul 10, 2006
Jul 10, 2006
239
240
"Found unmounted CD ROM drive with device name %s\n",
entry.fs_spec);
Apr 26, 2001
Apr 26, 2001
241
#endif
Jul 10, 2006
Jul 10, 2006
242
243
244
if (CheckDrive(entry.fs_spec, &stbuf) > 0) {
AddDrive(entry.fs_spec, &stbuf);
}
Apr 26, 2001
Apr 26, 2001
245
246
247
}
}
}
Aug 27, 2008
Aug 27, 2008
248
} while (ret == 0);
Jul 10, 2006
Jul 10, 2006
249
250
251
ret = endfsent_r(&fsFile);
if (ret != 0)
return -1;
Apr 26, 2001
Apr 26, 2001
252
253
return 0;
#else
Jul 10, 2006
Jul 10, 2006
254
255
struct fstab *entry;
struct stat stbuf;
Apr 26, 2001
Apr 26, 2001
256
257
setfsent();
Jul 10, 2006
Jul 10, 2006
258
do {
Apr 26, 2001
Apr 26, 2001
259
entry = getfsent();
Jul 10, 2006
Jul 10, 2006
260
261
262
263
if (entry != NULL) {
char *l = SDL_strrchr(entry->fs_spec, '/');
if (l != NULL) {
if (!SDL_strncmp("cd", ++l, 2)) {
Apr 26, 2001
Apr 26, 2001
264
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
265
266
267
fprintf(stderr,
"Found unmounted CD ROM drive with device name %s",
entry->fs_spec);
Apr 26, 2001
Apr 26, 2001
268
#endif
Jul 10, 2006
Jul 10, 2006
269
270
271
if (CheckDrive(entry->fs_spec, &stbuf) > 0) {
AddDrive(entry->fs_spec, &stbuf);
}
Apr 26, 2001
Apr 26, 2001
272
273
274
}
}
}
Aug 27, 2008
Aug 27, 2008
275
} while (entry != NULL);
Apr 26, 2001
Apr 26, 2001
276
277
278
279
endfsent();
#endif
}
Jul 10, 2006
Jul 10, 2006
280
281
int
SDL_SYS_CDInit(void)
Apr 26, 2001
Apr 26, 2001
282
{
Jul 10, 2006
Jul 10, 2006
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
char *SDLcdrom;
struct stat stbuf;
/* Fill in our driver capabilities */
SDL_CDcaps.Name = SDL_SYS_CDName;
SDL_CDcaps.Open = SDL_SYS_CDOpen;
SDL_CDcaps.GetTOC = SDL_SYS_CDGetTOC;
SDL_CDcaps.Status = SDL_SYS_CDStatus;
SDL_CDcaps.Play = SDL_SYS_CDPlay;
SDL_CDcaps.Pause = SDL_SYS_CDPause;
SDL_CDcaps.Resume = SDL_SYS_CDResume;
SDL_CDcaps.Stop = SDL_SYS_CDStop;
SDL_CDcaps.Eject = SDL_SYS_CDEject;
SDL_CDcaps.Close = SDL_SYS_CDClose;
/* Look in the environment for our CD-ROM drive list */
SDLcdrom = SDL_getenv("SDL_CDROM"); /* ':' separated list of devices */
if (SDLcdrom != NULL) {
char *cdpath, *delim;
size_t len = SDL_strlen(SDLcdrom) + 1;
cdpath = SDL_stack_alloc(char, len);
if (cdpath != NULL) {
SDL_strlcpy(cdpath, SDLcdrom, len);
SDLcdrom = cdpath;
do {
delim = SDL_strchr(SDLcdrom, ':');
if (delim) {
*delim++ = '\0';
}
Apr 26, 2001
Apr 26, 2001
312
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
313
314
315
fprintf(stderr,
"Checking CD-ROM drive from SDL_CDROM: %s\n",
SDLcdrom);
Apr 26, 2001
Apr 26, 2001
316
#endif
Jul 10, 2006
Jul 10, 2006
317
318
319
320
321
322
323
324
if (CheckDrive(SDLcdrom, &stbuf) > 0) {
AddDrive(SDLcdrom, &stbuf);
}
if (delim) {
SDLcdrom = delim;
} else {
SDLcdrom = NULL;
}
Aug 27, 2008
Aug 27, 2008
325
} while (SDLcdrom);
Jul 10, 2006
Jul 10, 2006
326
327
328
329
330
331
332
333
334
335
336
337
338
SDL_stack_free(cdpath);
}
/* If we found our drives, there's nothing left to do */
if (SDL_numcds > 0) {
return (0);
}
}
CheckMounts();
CheckNonmounts();
return 0;
Apr 26, 2001
Apr 26, 2001
339
340
341
}
/* General ioctl() CD-ROM command function */
Jul 10, 2006
Jul 10, 2006
342
343
static int
SDL_SYS_CDioctl(int id, int command, void *arg)
Apr 26, 2001
Apr 26, 2001
344
345
346
347
{
int retval;
retval = ioctl(id, command, arg);
Jul 10, 2006
Jul 10, 2006
348
if (retval < 0) {
Apr 26, 2001
Apr 26, 2001
349
350
351
352
353
SDL_SetError("ioctl() error: %s", strerror(errno));
}
return retval;
}
Jul 10, 2006
Jul 10, 2006
354
355
static const char *
SDL_SYS_CDName(int drive)
Apr 26, 2001
Apr 26, 2001
356
{
Jul 10, 2006
Jul 10, 2006
357
return (SDL_cdlist[drive]);
Apr 26, 2001
Apr 26, 2001
358
359
}
Jul 10, 2006
Jul 10, 2006
360
361
static int
SDL_SYS_CDOpen(int drive)
Apr 26, 2001
Apr 26, 2001
362
{
Jul 10, 2006
Jul 10, 2006
363
364
365
int fd;
char *lastsl;
char *cdromname;
Feb 19, 2006
Feb 19, 2006
366
size_t len;
Apr 26, 2001
Apr 26, 2001
367
368
369
370
371
/*
* We found /dev/cd? drives and that is in our list. But we can
* open only the /dev/rcd? versions of those devices for Audio CD.
*/
Jul 10, 2006
Jul 10, 2006
372
373
374
375
len = SDL_strlen(SDL_cdlist[drive]) + 2;
cdromname = (char *) SDL_malloc(len);
SDL_strlcpy(cdromname, SDL_cdlist[drive], len);
lastsl = SDL_strrchr(cdromname, '/');
Apr 26, 2001
Apr 26, 2001
376
if (lastsl) {
Jul 10, 2006
Jul 10, 2006
377
378
379
380
381
382
383
*lastsl = 0;
SDL_strlcat(cdromname, "/r", len);
lastsl = SDL_strrchr(SDL_cdlist[drive], '/');
if (lastsl) {
lastsl++;
SDL_strlcat(cdromname, lastsl, len);
}
Apr 26, 2001
Apr 26, 2001
384
385
}
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
386
387
fprintf(stderr, "Should open drive %s, opening %s\n", SDL_cdlist[drive],
cdromname);
Apr 26, 2001
Apr 26, 2001
388
389
390
391
392
393
394
395
#endif
/*
* Use exclusive access. Don't use SC_DIAGNOSTICS as xmcd does because they
* require root priviledges, and we don't want that. SC_SINGLE provides
* exclusive access with less trouble.
*/
fd = openx(cdromname, O_RDONLY, NULL, SC_SINGLE);
Jul 10, 2006
Jul 10, 2006
396
if (fd < 0) {
Apr 26, 2001
Apr 26, 2001
397
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
398
399
fprintf(stderr, "Could not open drive %s (%s)\n", cdromname,
strerror(errno));
Apr 26, 2001
Apr 26, 2001
400
#endif
Jul 10, 2006
Jul 10, 2006
401
402
403
} else {
struct mode_form_op cdMode;
int ret;
Apr 26, 2001
Apr 26, 2001
404
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
405
406
407
cdMode.action = CD_GET_MODE;
ret = SDL_SYS_CDioctl(fd, DK_CD_MODE, &cdMode);
if (ret < 0) {
Apr 26, 2001
Apr 26, 2001
408
fprintf(stderr,
Jul 10, 2006
Jul 10, 2006
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
"Could not get drive mode for %s (%s)\n",
cdromname, strerror(errno));
} else {
switch (cdMode.cd_mode_form) {
case CD_MODE1:
fprintf(stderr,
"Drive mode for %s is %s\n",
cdromname, "CD-ROM Data Mode 1");
break;
case CD_MODE2_FORM1:
fprintf(stderr,
"Drive mode for %s is %s\n",
cdromname, "CD-ROM XA Data Mode 2 Form 1");
break;
case CD_MODE2_FORM2:
fprintf(stderr,
"Drive mode for %s is %s\n",
cdromname, "CD-ROM XA Data Mode 2 Form 2");
break;
case CD_DA:
fprintf(stderr,
"Drive mode for %s is %s\n", cdromname, "CD-DA");
break;
default:
fprintf(stderr,
"Drive mode for %s is %s\n", cdromname, "unknown");
break;
}
}
Apr 26, 2001
Apr 26, 2001
438
439
#endif
Jul 10, 2006
Jul 10, 2006
440
441
442
443
cdMode.action = CD_CHG_MODE;
cdMode.cd_mode_form = CD_DA;
ret = SDL_SYS_CDioctl(fd, DK_CD_MODE, &cdMode);
if (ret < 0) {
Apr 26, 2001
Apr 26, 2001
444
445
#ifdef DEBUG_CDROM
fprintf(stderr,
Jul 10, 2006
Jul 10, 2006
446
447
"Could not set drive mode for %s (%s)\n",
cdromname, strerror(errno));
Apr 26, 2001
Apr 26, 2001
448
#endif
Jul 10, 2006
Jul 10, 2006
449
450
451
452
SDL_SetError
("ioctl() error: Could not set CD drive mode, %s",
strerror(errno));
} else {
Apr 26, 2001
Apr 26, 2001
453
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
454
fprintf(stderr, "Drive mode for %s set to CD_DA\n", cdromname);
Apr 26, 2001
Apr 26, 2001
455
#endif
Jul 10, 2006
Jul 10, 2006
456
}
Apr 26, 2001
Apr 26, 2001
457
}
Feb 7, 2006
Feb 7, 2006
458
SDL_free(cdromname);
Apr 26, 2001
Apr 26, 2001
459
460
461
return fd;
}
Jul 10, 2006
Jul 10, 2006
462
463
static int
SDL_SYS_CDGetTOC(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
464
465
466
{
struct cd_audio_cmd cmd;
struct cd_audio_cmd entry;
Jul 10, 2006
Jul 10, 2006
467
468
int i;
int okay;
Apr 26, 2001
Apr 26, 2001
469
470
cmd.audio_cmds = CD_TRK_INFO_AUDIO;
Jul 10, 2006
Jul 10, 2006
471
472
473
cmd.msf_flag = FALSE;
if (SDL_SYS_CDioctl(cdrom->id, DKAUDIO, &cmd) < 0) {
return -1;
Apr 26, 2001
Apr 26, 2001
474
475
476
477
}
okay = 0;
cdrom->numtracks = cmd.indexing.track_index.last_track
Jul 10, 2006
Jul 10, 2006
478
479
- cmd.indexing.track_index.first_track + 1;
if (cdrom->numtracks > SDL_MAX_TRACKS) {
Apr 26, 2001
Apr 26, 2001
480
481
482
483
cdrom->numtracks = SDL_MAX_TRACKS;
}
/* Read all the track TOC entries */
Jul 10, 2006
Jul 10, 2006
484
485
for (i = 0; i <= cdrom->numtracks; ++i) {
if (i == cdrom->numtracks) {
Apr 26, 2001
Apr 26, 2001
486
487
cdrom->track[i].id = 0xAA;;
} else {
Jul 10, 2006
Jul 10, 2006
488
cdrom->track[i].id = cmd.indexing.track_index.first_track + i;
Apr 26, 2001
Apr 26, 2001
489
}
Jul 10, 2006
Jul 10, 2006
490
491
492
entry.audio_cmds = CD_GET_TRK_MSF;
entry.indexing.track_msf.track = cdrom->track[i].id;
if (SDL_SYS_CDioctl(cdrom->id, DKAUDIO, &entry) < 0) {
Apr 26, 2001
Apr 26, 2001
493
494
break;
} else {
Jul 10, 2006
Jul 10, 2006
495
496
497
498
499
cdrom->track[i].type = 0; /* don't know how to detect 0x04 data track */
cdrom->track[i].offset =
MSF_TO_FRAMES(entry.indexing.track_msf.mins,
entry.indexing.track_msf.secs,
entry.indexing.track_msf.frames);
Apr 26, 2001
Apr 26, 2001
500
cdrom->track[i].length = 0;
Jul 10, 2006
Jul 10, 2006
501
502
503
if (i > 0) {
cdrom->track[i - 1].length = cdrom->track[i].offset
- cdrom->track[i - 1].offset;
Apr 26, 2001
Apr 26, 2001
504
505
506
}
}
}
Jul 10, 2006
Jul 10, 2006
507
if (i == (cdrom->numtracks + 1)) {
Apr 26, 2001
Apr 26, 2001
508
509
okay = 1;
}
Jul 10, 2006
Jul 10, 2006
510
return (okay ? 0 : -1);
Apr 26, 2001
Apr 26, 2001
511
512
513
}
/* Get CD-ROM status */
Jul 10, 2006
Jul 10, 2006
514
515
static CDstatus
SDL_SYS_CDStatus(SDL_CD * cdrom, int *position)
Apr 26, 2001
Apr 26, 2001
516
{
Jul 10, 2006
Jul 10, 2006
517
CDstatus status;
Apr 26, 2001
Apr 26, 2001
518
519
520
struct cd_audio_cmd cmd;
cmd.audio_cmds = CD_INFO_AUDIO;
Jul 10, 2006
Jul 10, 2006
521
if (SDL_SYS_CDioctl(cdrom->id, DKAUDIO, &cmd) < 0) {
Apr 26, 2001
Apr 26, 2001
522
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
523
524
fprintf(stderr, "ioctl failed in SDL_SYS_CDStatus (%s)\n",
SDL_GetError());
Apr 26, 2001
Apr 26, 2001
525
526
527
528
#endif
status = CD_ERROR;
} else {
switch (cmd.status) {
Jul 10, 2006
Jul 10, 2006
529
530
531
532
533
534
535
536
537
538
539
case CD_NO_AUDIO:
case CD_COMPLETED:
status = CD_STOPPED;
break;
case CD_PLAY_AUDIO:
status = CD_PLAYING;
break;
case CD_PAUSE_AUDIO:
status = CD_PAUSED;
break;
case CD_NOT_VALID:
Apr 26, 2001
Apr 26, 2001
540
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
541
fprintf(stderr, "cdStatus failed with CD_NOT_VALID\n");
Apr 26, 2001
Apr 26, 2001
542
#endif
Jul 10, 2006
Jul 10, 2006
543
544
545
status = CD_ERROR;
break;
case CD_STATUS_ERROR:
Apr 26, 2001
Apr 26, 2001
546
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
547
fprintf(stderr, "cdStatus failed with CD_STATUS_ERROR\n");
Apr 26, 2001
Apr 26, 2001
548
#endif
Jul 10, 2006
Jul 10, 2006
549
550
551
status = CD_ERROR;
break;
default:
Apr 26, 2001
Apr 26, 2001
552
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
553
fprintf(stderr, "cdStatus failed with unknown error\n");
Apr 26, 2001
Apr 26, 2001
554
#endif
Jul 10, 2006
Jul 10, 2006
555
556
status = CD_ERROR;
break;
Apr 26, 2001
Apr 26, 2001
557
558
}
}
Jul 10, 2006
Jul 10, 2006
559
560
561
562
563
564
if (position) {
if (status == CD_PLAYING || (status == CD_PAUSED)) {
*position =
MSF_TO_FRAMES(cmd.indexing.info_audio.current_mins,
cmd.indexing.info_audio.current_secs,
cmd.indexing.info_audio.current_frames);
Apr 26, 2001
Apr 26, 2001
565
566
567
568
569
570
571
572
} else {
*position = 0;
}
}
return status;
}
/* Start play */
Jul 10, 2006
Jul 10, 2006
573
574
static int
SDL_SYS_CDPlay(SDL_CD * cdrom, int start, int length)
Apr 26, 2001
Apr 26, 2001
575
576
577
578
579
580
581
582
583
{
struct cd_audio_cmd cmd;
/*
* My CD Rom is muted by default. I think I read that this is new with
* AIX 4.3. SDL does not change the volume, so I need a kludge. Maybe
* its better to do this elsewhere?
*/
cmd.audio_cmds = CD_PLAY_AUDIO | CD_SET_VOLUME;
Jul 10, 2006
Jul 10, 2006
584
cmd.msf_flag = TRUE;
Apr 26, 2001
Apr 26, 2001
585
586
587
588
FRAMES_TO_MSF(start,
&cmd.indexing.msf.first_mins,
&cmd.indexing.msf.first_secs,
&cmd.indexing.msf.first_frames);
Jul 10, 2006
Jul 10, 2006
589
FRAMES_TO_MSF(start + length,
Apr 26, 2001
Apr 26, 2001
590
&cmd.indexing.msf.last_mins,
Jul 10, 2006
Jul 10, 2006
591
592
593
594
595
596
597
&cmd.indexing.msf.last_secs, &cmd.indexing.msf.last_frames);
cmd.volume_type = CD_VOLUME_ALL;
cmd.all_channel_vol = 255; /* This is a uchar. What is a good value? No docu! */
cmd.out_port_0_sel = CD_AUDIO_CHNL_0;
cmd.out_port_1_sel = CD_AUDIO_CHNL_1;
cmd.out_port_2_sel = CD_AUDIO_CHNL_2;
cmd.out_port_3_sel = CD_AUDIO_CHNL_3;
Apr 26, 2001
Apr 26, 2001
598
599
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
600
601
602
603
604
605
fprintf(stderr, "Trying to play from %d:%d:%d to %d:%d:%d\n",
cmd.indexing.msf.first_mins,
cmd.indexing.msf.first_secs,
cmd.indexing.msf.first_frames,
cmd.indexing.msf.last_mins,
cmd.indexing.msf.last_secs, cmd.indexing.msf.last_frames);
Apr 26, 2001
Apr 26, 2001
606
#endif
Jul 10, 2006
Jul 10, 2006
607
return (SDL_SYS_CDioctl(cdrom->id, DKAUDIO, &cmd));
Apr 26, 2001
Apr 26, 2001
608
609
610
}
/* Pause play */
Jul 10, 2006
Jul 10, 2006
611
612
static int
SDL_SYS_CDPause(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
613
614
615
{
struct cd_audio_cmd cmd;
cmd.audio_cmds = CD_PAUSE_AUDIO;
Jul 10, 2006
Jul 10, 2006
616
return (SDL_SYS_CDioctl(cdrom->id, DKAUDIO, &cmd));
Apr 26, 2001
Apr 26, 2001
617
618
619
}
/* Resume play */
Jul 10, 2006
Jul 10, 2006
620
621
static int
SDL_SYS_CDResume(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
622
623
624
{
struct cd_audio_cmd cmd;
cmd.audio_cmds = CD_RESUME_AUDIO;
Jul 10, 2006
Jul 10, 2006
625
return (SDL_SYS_CDioctl(cdrom->id, DKAUDIO, &cmd));
Apr 26, 2001
Apr 26, 2001
626
627
628
}
/* Stop play */
Jul 10, 2006
Jul 10, 2006
629
630
static int
SDL_SYS_CDStop(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
631
632
633
{
struct cd_audio_cmd cmd;
cmd.audio_cmds = CD_STOP_AUDIO;
Jul 10, 2006
Jul 10, 2006
634
return (SDL_SYS_CDioctl(cdrom->id, DKAUDIO, &cmd));
Apr 26, 2001
Apr 26, 2001
635
636
637
}
/* Eject the CD-ROM */
Jul 10, 2006
Jul 10, 2006
638
639
static int
SDL_SYS_CDEject(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
640
{
Jul 10, 2006
Jul 10, 2006
641
return (SDL_SYS_CDioctl(cdrom->id, DKEJECT, 0));
Apr 26, 2001
Apr 26, 2001
642
643
644
}
/* Close the CD-ROM handle */
Jul 10, 2006
Jul 10, 2006
645
646
static void
SDL_SYS_CDClose(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
647
648
649
650
{
close(cdrom->id);
}
Jul 10, 2006
Jul 10, 2006
651
652
void
SDL_SYS_CDQuit(void)
Apr 26, 2001
Apr 26, 2001
653
{
Jul 10, 2006
Jul 10, 2006
654
655
656
657
658
659
660
661
int i;
if (SDL_numcds > 0) {
for (i = 0; i < SDL_numcds; ++i) {
SDL_free(SDL_cdlist[i]);
}
SDL_numcds = 0;
}
Apr 26, 2001
Apr 26, 2001
662
663
}
Apr 14, 2006
Apr 14, 2006
664
#endif /* SDL_CDROM_AIX */
Jul 10, 2006
Jul 10, 2006
665
/* vi: set ts=4 sw=4 expandtab: */