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

Latest commit

 

History

History
357 lines (314 loc) · 8.41 KB

SDL_cdrom.c

File metadata and controls

357 lines (314 loc) · 8.41 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 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
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
/* This is the CD-audio control API for Simple DirectMedia Layer */
Feb 7, 2006
Feb 7, 2006
26
#include "SDL_cdrom.h"
Apr 26, 2001
Apr 26, 2001
27
28
#include "SDL_syscdrom.h"
Jul 10, 2006
Jul 10, 2006
29
#define CLIP_FRAMES 10 /* Some CD-ROMs won't go all the way */
Apr 26, 2001
Apr 26, 2001
30
31
32
33
34
35
static int SDL_cdinitted = 0;
static SDL_CD *default_cdrom;
/* The system level CD-ROM control functions */
struct CDcaps SDL_CDcaps = {
Jul 10, 2006
Jul 10, 2006
36
37
38
39
40
41
42
43
44
45
NULL, /* Name */
NULL, /* Open */
NULL, /* GetTOC */
NULL, /* Status */
NULL, /* Play */
NULL, /* Pause */
NULL, /* Resume */
NULL, /* Stop */
NULL, /* Eject */
NULL, /* Close */
Apr 26, 2001
Apr 26, 2001
46
};
Aug 27, 2008
Aug 27, 2008
47
Apr 26, 2001
Apr 26, 2001
48
49
int SDL_numcds;
Jul 10, 2006
Jul 10, 2006
50
51
int
SDL_CDROMInit(void)
Apr 26, 2001
Apr 26, 2001
52
{
Jul 10, 2006
Jul 10, 2006
53
54
55
56
57
58
59
60
61
int retval;
SDL_numcds = 0;
retval = SDL_SYS_CDInit();
if (retval == 0) {
SDL_cdinitted = 1;
}
default_cdrom = NULL;
return (retval);
Apr 26, 2001
Apr 26, 2001
62
63
64
}
/* Check to see if the CD-ROM subsystem has been initialized */
Jul 10, 2006
Jul 10, 2006
65
66
static int
CheckInit(int check_cdrom, SDL_CD ** cdrom)
Apr 26, 2001
Apr 26, 2001
67
{
Jul 10, 2006
Jul 10, 2006
68
69
70
71
72
73
74
75
76
77
78
79
80
81
int okay;
okay = SDL_cdinitted;
if (check_cdrom && (*cdrom == NULL)) {
*cdrom = default_cdrom;
if (*cdrom == NULL) {
SDL_SetError("CD-ROM not opened");
okay = 0;
}
}
if (!SDL_cdinitted) {
SDL_SetError("CD-ROM subsystem not initialized");
}
return (okay);
Apr 26, 2001
Apr 26, 2001
82
83
}
Jul 10, 2006
Jul 10, 2006
84
85
int
SDL_CDNumDrives(void)
Apr 26, 2001
Apr 26, 2001
86
{
Jul 10, 2006
Jul 10, 2006
87
88
89
90
if (!CheckInit(0, NULL)) {
return (-1);
}
return (SDL_numcds);
Apr 26, 2001
Apr 26, 2001
91
92
}
Jul 10, 2006
Jul 10, 2006
93
94
const char *
SDL_CDName(int drive)
Apr 26, 2001
Apr 26, 2001
95
{
Jul 10, 2006
Jul 10, 2006
96
97
98
99
100
101
102
103
104
105
106
107
if (!CheckInit(0, NULL)) {
return (NULL);
}
if (drive >= SDL_numcds) {
SDL_SetError("Invalid CD-ROM drive index");
return (NULL);
}
if (SDL_CDcaps.Name) {
return (SDL_CDcaps.Name(drive));
} else {
return ("");
}
Apr 26, 2001
Apr 26, 2001
108
109
}
Jul 10, 2006
Jul 10, 2006
110
111
SDL_CD *
SDL_CDOpen(int drive)
Apr 26, 2001
Apr 26, 2001
112
{
Jul 10, 2006
Jul 10, 2006
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
struct SDL_CD *cdrom;
if (!CheckInit(0, NULL)) {
return (NULL);
}
if (drive >= SDL_numcds) {
SDL_SetError("Invalid CD-ROM drive index");
return (NULL);
}
cdrom = (SDL_CD *) SDL_malloc(sizeof(*cdrom));
if (cdrom == NULL) {
SDL_OutOfMemory();
return (NULL);
}
SDL_memset(cdrom, 0, sizeof(*cdrom));
cdrom->id = SDL_CDcaps.Open(drive);
if (cdrom->id < 0) {
SDL_free(cdrom);
return (NULL);
}
default_cdrom = cdrom;
return (cdrom);
Apr 26, 2001
Apr 26, 2001
135
136
}
Jul 10, 2006
Jul 10, 2006
137
138
CDstatus
SDL_CDStatus(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
139
{
Jul 10, 2006
Jul 10, 2006
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
CDstatus status;
int i;
Uint32 position;
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return (CD_ERROR);
}
/* Get the current status of the drive */
cdrom->numtracks = 0;
cdrom->cur_track = 0;
cdrom->cur_frame = 0;
status = SDL_CDcaps.Status(cdrom, &i);
position = (Uint32) i;
cdrom->status = status;
/* Get the table of contents, if there's a CD available */
if (CD_INDRIVE(status)) {
if (SDL_CDcaps.GetTOC(cdrom) < 0) {
status = CD_ERROR;
}
/* If the drive is playing, get current play position */
if ((status == CD_PLAYING) || (status == CD_PAUSED)) {
for (i = 1; cdrom->track[i].offset <= position; ++i) {
/* Keep looking */ ;
}
Apr 26, 2001
Apr 26, 2001
167
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
168
169
170
fprintf(stderr,
"Current position: %d, track = %d (offset is %d)\n",
position, i - 1, cdrom->track[i - 1].offset);
Apr 26, 2001
Apr 26, 2001
171
#endif
Jul 10, 2006
Jul 10, 2006
172
173
174
175
176
177
cdrom->cur_track = i - 1;
position -= cdrom->track[cdrom->cur_track].offset;
cdrom->cur_frame = position;
}
}
return (status);
Apr 26, 2001
Apr 26, 2001
178
179
}
Jul 10, 2006
Jul 10, 2006
180
181
182
int
SDL_CDPlayTracks(SDL_CD * cdrom,
int strack, int sframe, int ntracks, int nframes)
Apr 26, 2001
Apr 26, 2001
183
{
Jul 10, 2006
Jul 10, 2006
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
int etrack, eframe;
int start, length;
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return (CD_ERROR);
}
/* Determine the starting and ending tracks */
if ((strack < 0) || (strack >= cdrom->numtracks)) {
SDL_SetError("Invalid starting track");
return (CD_ERROR);
}
if (!ntracks && !nframes) {
etrack = cdrom->numtracks;
eframe = 0;
} else {
etrack = strack + ntracks;
if (etrack == strack) {
eframe = sframe + nframes;
} else {
eframe = nframes;
}
}
if (etrack > cdrom->numtracks) {
SDL_SetError("Invalid play length");
return (CD_ERROR);
}
/* Skip data tracks and verify frame offsets */
while ((strack <= etrack) &&
(cdrom->track[strack].type == SDL_DATA_TRACK)) {
++strack;
}
if (sframe >= (int) cdrom->track[strack].length) {
SDL_SetError("Invalid starting frame for track %d", strack);
return (CD_ERROR);
}
while ((etrack > strack) &&
(cdrom->track[etrack - 1].type == SDL_DATA_TRACK)) {
--etrack;
}
if (eframe > (int) cdrom->track[etrack].length) {
SDL_SetError("Invalid ending frame for track %d", etrack);
return (CD_ERROR);
}
/* Determine start frame and play length */
start = (cdrom->track[strack].offset + sframe);
length = (cdrom->track[etrack].offset + eframe) - start;
Apr 26, 2001
Apr 26, 2001
234
#ifdef CLIP_FRAMES
Jul 10, 2006
Jul 10, 2006
235
236
/* I've never seen this necessary, but xmcd does it.. */
length -= CLIP_FRAMES; /* CLIP_FRAMES == 10 */
Apr 26, 2001
Apr 26, 2001
237
#endif
Jul 10, 2006
Jul 10, 2006
238
239
240
if (length < 0) {
return (0);
}
Apr 26, 2001
Apr 26, 2001
241
Jul 10, 2006
Jul 10, 2006
242
/* Play! */
Apr 26, 2001
Apr 26, 2001
243
#ifdef DEBUG_CDROM
Jul 10, 2006
Jul 10, 2006
244
fprintf(stderr, "Playing %d frames at offset %d\n", length, start);
Apr 26, 2001
Apr 26, 2001
245
#endif
Jul 10, 2006
Jul 10, 2006
246
return (SDL_CDcaps.Play(cdrom, start, length));
Apr 26, 2001
Apr 26, 2001
247
248
}
Jul 10, 2006
Jul 10, 2006
249
250
int
SDL_CDPlay(SDL_CD * cdrom, int sframe, int length)
Apr 26, 2001
Apr 26, 2001
251
{
Jul 10, 2006
Jul 10, 2006
252
253
254
255
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return (CD_ERROR);
}
Apr 26, 2001
Apr 26, 2001
256
Jul 10, 2006
Jul 10, 2006
257
return (SDL_CDcaps.Play(cdrom, sframe, length));
Apr 26, 2001
Apr 26, 2001
258
259
}
Jul 10, 2006
Jul 10, 2006
260
261
int
SDL_CDPause(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
262
{
Jul 10, 2006
Jul 10, 2006
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
CDstatus status;
int retval;
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return (CD_ERROR);
}
status = SDL_CDcaps.Status(cdrom, NULL);
switch (status) {
case CD_PLAYING:
retval = SDL_CDcaps.Pause(cdrom);
break;
default:
retval = 0;
break;
}
return (retval);
Apr 26, 2001
Apr 26, 2001
281
282
}
Jul 10, 2006
Jul 10, 2006
283
284
int
SDL_CDResume(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
285
{
Jul 10, 2006
Jul 10, 2006
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
CDstatus status;
int retval;
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return (CD_ERROR);
}
status = SDL_CDcaps.Status(cdrom, NULL);
switch (status) {
case CD_PAUSED:
retval = SDL_CDcaps.Resume(cdrom);
default:
retval = 0;
break;
}
return (retval);
Apr 26, 2001
Apr 26, 2001
303
304
}
Jul 10, 2006
Jul 10, 2006
305
306
int
SDL_CDStop(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
307
{
Jul 10, 2006
Jul 10, 2006
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
CDstatus status;
int retval;
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return (CD_ERROR);
}
status = SDL_CDcaps.Status(cdrom, NULL);
switch (status) {
case CD_PLAYING:
case CD_PAUSED:
retval = SDL_CDcaps.Stop(cdrom);
default:
retval = 0;
break;
}
return (retval);
Apr 26, 2001
Apr 26, 2001
326
327
}
Jul 10, 2006
Jul 10, 2006
328
329
int
SDL_CDEject(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
330
{
Jul 10, 2006
Jul 10, 2006
331
332
333
334
335
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return (CD_ERROR);
}
return (SDL_CDcaps.Eject(cdrom));
Apr 26, 2001
Apr 26, 2001
336
337
}
Jul 10, 2006
Jul 10, 2006
338
339
void
SDL_CDClose(SDL_CD * cdrom)
Apr 26, 2001
Apr 26, 2001
340
{
Jul 10, 2006
Jul 10, 2006
341
342
343
344
345
346
347
/* Check if the CD-ROM subsystem has been initialized */
if (!CheckInit(1, &cdrom)) {
return;
}
SDL_CDcaps.Close(cdrom);
SDL_free(cdrom);
default_cdrom = NULL;
Apr 26, 2001
Apr 26, 2001
348
349
}
Jul 10, 2006
Jul 10, 2006
350
351
void
SDL_CDROMQuit(void)
Apr 26, 2001
Apr 26, 2001
352
{
Jul 10, 2006
Jul 10, 2006
353
354
SDL_SYS_CDQuit();
SDL_cdinitted = 0;
Apr 26, 2001
Apr 26, 2001
355
}
Jul 10, 2006
Jul 10, 2006
356
357
/* vi: set ts=4 sw=4 expandtab: */