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
|
/*
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 included (GNU.txt) 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.
$Id: cd_linux.c,v 1.9 2007-10-04 13:48:11 dkure Exp $
*/
// cd_linux.c
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/file.h>
#include <sys/types.h>
#include <fcntl.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#ifdef __FreeBSD__
#include <sys/cdio.h>
#else
#include <linux/cdrom.h>
#endif
#include "quakedef.h"
#include "cdaudio.h"
#include "qsound.h"
static qbool cdValid = false;
static qbool playing = false;
static qbool wasPlaying = false;
static qbool initialized = false;
static qbool enabled = true;
static qbool playLooping = false;
static float cdvolume;
static byte remap[100];
static byte playTrack;
static byte maxTrack;
static int cdfile = -1;
static char cd_dev[64] = "/dev/cdrom";
static void CDAudio_Eject(void)
{
if (cdfile == -1 || !enabled)
return; // no cd init'd
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOCEJECT) == -1)
Com_DPrintf ("ioctl cdioceject failed\n");
#else
if ( ioctl(cdfile, CDROMEJECT) == -1 )
Com_DPrintf ("ioctl cdromeject failed\n");
#endif
}
static void CDAudio_CloseDoor(void)
{
if (cdfile == -1 || !enabled)
return; // no cd init'd
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOCCLOSE) == -1)
Com_DPrintf ("ioctl cdiocclose failed\n");
#else
if ( ioctl(cdfile, CDROMCLOSETRAY) == -1 )
Com_DPrintf ("ioctl cdromclosetray failed\n");
#endif
}
static int CDAudio_GetAudioDiskInfo(void)
{
#ifdef __FreeBSD__
struct ioc_toc_header tochdr;
#else
struct cdrom_tochdr tochdr;
#endif
cdValid = false;
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOREADTOCHEADER, &tochdr) == -1)
{
Com_DPrintf ("ioctl cdioreadtocheader failed\n");
#else
if ( ioctl(cdfile, CDROMREADTOCHDR, &tochdr) == -1 )
{
Com_DPrintf ("ioctl cdromreadtochdr failed\n");
#endif
return -1;
}
#ifdef __FreeBSD__
if (tochdr.starting_track < 1)
#else
if (tochdr.cdth_trk0 < 1)
#endif
{
Com_DPrintf ("CDAudio: no music tracks\n");
return -1;
}
cdValid = true;
#ifdef __FreeBSD__
maxTrack = tochdr.ending_track;
#else
maxTrack = tochdr.cdth_trk1;
#endif
return 0;
}
void CDAudio_Play(byte track, qbool looping)
{
#ifdef __FreeBSD__
struct ioc_read_toc_entry entry;
struct cd_toc_entry toc_buffer;
struct ioc_play_track ti;
#else
struct cdrom_tocentry entry;
struct cdrom_ti ti;
#endif
if (cdfile == -1 || !enabled)
return;
if (!cdValid)
{
CDAudio_GetAudioDiskInfo();
if (!cdValid)
return;
}
track = remap[track];
if (track < 1 || track > maxTrack)
{
Com_DPrintf ("CDAudio: Bad track number %u.\n", track);
return;
}
#ifdef __FreeBSD__
#define CDROM_DATA_TRACK 4
bzero((char *)&toc_buffer, sizeof(toc_buffer));
entry.data_len = sizeof(toc_buffer);
entry.data = &toc_buffer;
// don't try to play a non-audio track
entry.starting_track = track;
entry.address_format = CD_MSF_FORMAT;
if ( ioctl(cdfile, CDIOREADTOCENTRYS, &entry) == -1 )
{
Com_DPrintf("ioctl cdromreadtocentry failed\n");
return;
}
if (toc_buffer.control == CDROM_DATA_TRACK)
#else
// don't try to play a non-audio track
entry.cdte_track = track;
entry.cdte_format = CDROM_MSF;
if ( ioctl(cdfile, CDROMREADTOCENTRY, &entry) == -1 )
{
Com_DPrintf ("ioctl cdromreadtocentry failed\n");
return;
}
if (entry.cdte_ctrl == CDROM_DATA_TRACK)
#endif
{
Com_Printf ("CDAudio: track %i is not audio\n", track);
return;
}
if (playing)
{
if (playTrack == track)
return;
CDAudio_Stop();
}
#ifdef __FreeBSD__
ti.start_track = track;
ti.end_track = track;
ti.start_index = 1;
ti.end_index = 99;
#else
ti.cdti_trk0 = track;
ti.cdti_trk1 = track;
ti.cdti_ind0 = 1;
ti.cdti_ind1 = 99;
#endif
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOCPLAYTRACKS, &ti) == -1)
{
Com_DPrintf ("ioctl cdiocplaytracks failed\n");
#else
if ( ioctl(cdfile, CDROMPLAYTRKIND, &ti) == -1 )
{
Com_DPrintf ("ioctl cdromplaytrkind failed\n");
#endif
return;
}
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOCRESUME) == -1)
Com_DPrintf ("ioctl cdiocresume failed\n");
#else
if ( ioctl(cdfile, CDROMRESUME) == -1 )
Com_DPrintf ("ioctl cdromresume failed\n");
#endif
playLooping = looping;
playTrack = track;
playing = true;
if (cdvolume == 0.0)
CDAudio_Pause ();
}
void CDAudio_Stop(void)
{
if (cdfile == -1 || !enabled)
return;
if (!playing)
return;
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOCSTOP) == -1)
Com_DPrintf ("ioctl cdiocstop failed (%d)\n", errno);
#else
if ( ioctl(cdfile, CDROMSTOP) == -1 )
Com_DPrintf ("ioctl cdromstop failed (%d)\n", errno);
#endif
wasPlaying = false;
playing = false;
}
void CDAudio_Pause(void)
{
if (cdfile == -1 || !enabled)
return;
if (!playing)
return;
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOCPAUSE) == -1)
Com_DPrintf ("ioctl cdiocpause failed\n");
#else
if ( ioctl(cdfile, CDROMPAUSE) == -1 )
Com_DPrintf ("ioctl cdrompause failed\n");
#endif
wasPlaying = playing;
playing = false;
}
void CDAudio_Resume(void)
{
if (cdfile == -1 || !enabled)
return;
if (!cdValid)
return;
if (!wasPlaying)
return;
#ifdef __FreeBSD__
if (ioctl(cdfile, CDIOCRESUME) == -1)
Com_DPrintf ("ioctl cdiocresume failed\n");
#else
if ( ioctl(cdfile, CDROMRESUME) == -1 )
Com_DPrintf ("ioctl cdromresume failed\n");
#endif
playing = true;
}
#define CHECK_CD_ARGS(x) \
if (Cmd_Argc() != x) { \
Com_Printf("Usage: %s <on|off|reset|remap|close|play|loop|stop|pause|resume|eject|info>\n", Cmd_Argv(0)); \
return; \
}
void CD_f (void) {
char *command;
int ret, n;
if (Cmd_Argc() < 2) {
Com_Printf("Usage: %s <on|off|reset|remap|close|play|loop|stop|pause|resume|eject|info>\n", Cmd_Argv(0));
return;
}
command = Cmd_Argv (1);
if (!strcasecmp(command, "on")) {
CHECK_CD_ARGS(2);
enabled = true;
return;
} else if (!strcasecmp(command, "off")) {
CHECK_CD_ARGS(2);
CDAudio_Stop();
enabled = false;
return;
} else if (!strcasecmp(command, "reset")) {
CHECK_CD_ARGS(2);
enabled = true;
CDAudio_Stop();
for (n = 0; n < 100; n++)
remap[n] = n;
CDAudio_GetAudioDiskInfo();
return;
} else if (!strcasecmp(command, "remap")) {
ret = Cmd_Argc() - 2;
if (!ret) {
for (n = 1; n < 100; n++)
if (remap[n] != n)
Com_Printf (" %u -> %u\n", n, remap[n]);
} else {
for (n = 1; n <= ret; n++)
remap[n] = Q_atoi(Cmd_Argv (n + 1));
}
return;
} else if (!strcasecmp(command, "close")) {
CHECK_CD_ARGS(2);
CDAudio_CloseDoor();
return;
}
if (!cdValid) {
CDAudio_GetAudioDiskInfo();
if (!cdValid) {
Com_Printf ("No CD in player.\n");
return;
}
}
if (!strcasecmp(command, "play")) {
CHECK_CD_ARGS(3);
CDAudio_Play((byte) Q_atoi(Cmd_Argv(2)), false);
} else if (!strcasecmp(command, "loop")) {
CHECK_CD_ARGS(3);
CDAudio_Play((byte) Q_atoi(Cmd_Argv(2)), true);
} else if (!strcasecmp(command, "stop")) {
CHECK_CD_ARGS(2);
CDAudio_Stop();
} else if (!strcasecmp(command, "pause")) {
CHECK_CD_ARGS(2);
CDAudio_Pause();
} else if (!strcasecmp(command, "resume")) {
CHECK_CD_ARGS(2);
CDAudio_Resume();
} else if (!strcasecmp(command, "eject")) {
CHECK_CD_ARGS(2);
CDAudio_Stop();
CDAudio_Eject();
cdValid = false;
} else if (!strcasecmp(command, "info")) {
CHECK_CD_ARGS(2);
Com_Printf ("%u tracks\n", maxTrack);
if (playing)
Com_Printf ("Currently %s track %u\n", playLooping ? "looping" : "playing", playTrack);
else if (wasPlaying)
Com_Printf ("Paused %s track %u\n", playLooping ? "looping" : "playing", playTrack);
Com_Printf ("Volume is %f\n", cdvolume);
}
}
void CDAudio_Update(void)
{
#ifdef __FreeBSD__
struct ioc_read_subchannel subchnl;
struct cd_sub_channel_info data;
#else
struct cdrom_subchnl subchnl;
#endif
static time_t lastchk;
if (!enabled)
return;
if (bgmvolume.value != cdvolume)
{
if (cdvolume)
{
Cvar_SetValue (&bgmvolume, 0.0);
cdvolume = bgmvolume.value;
CDAudio_Pause ();
}
else
{
Cvar_SetValue (&bgmvolume, 1.0);
cdvolume = bgmvolume.value;
CDAudio_Resume ();
}
}
if (playing && lastchk < time(NULL)) {
lastchk = time(NULL) + 2; //two seconds between chks
#if defined(__FreeBSD__)
subchnl.address_format = CD_MSF_FORMAT;
subchnl.data_format = CD_CURRENT_POSITION;
subchnl.data_len = sizeof(data);
subchnl.track = playTrack;
subchnl.data = &data;
if (ioctl(cdfile, CDIOCREADSUBCHANNEL, &subchnl) == -1 ) {
Com_DPrintf("ioctl cdiocreadsubchannel failed\n");
playing = false;
return;
}
if (subchnl.data->header.audio_status != CD_AS_PLAY_IN_PROGRESS &&
subchnl.data->header.audio_status != CD_AS_PLAY_PAUSED) {
playing = false;
if (playLooping)
CDAudio_Play(playTrack, true);
}
#else
subchnl.cdsc_format = CDROM_MSF;
if (ioctl(cdfile, CDROMSUBCHNL, &subchnl) == -1 ) {
Com_DPrintf ("ioctl cdromsubchnl failed\n");
playing = false;
return;
}
if (subchnl.cdsc_audiostatus != CDROM_AUDIO_PLAY &&
subchnl.cdsc_audiostatus != CDROM_AUDIO_PAUSED) {
playing = false;
if (playLooping)
CDAudio_Play(playTrack, true);
}
#endif
}
}
int CDAudio_Init(void)
{
int i;
if (!COM_CheckParm("-cdaudio"))
return -1;
if ((i = COM_CheckParm("-cddev")) != 0 && i < COM_Argc() - 1)
strlcpy (cd_dev, COM_Argv(i + 1), sizeof(cd_dev));
if ((cdfile = open(cd_dev, O_RDONLY)) == -1) {
Com_Printf ("CDAudio_Init: open of \"%s\" failed (%i)\n", cd_dev, errno);
cdfile = -1;
return -1;
}
for (i = 0; i < 100; i++)
remap[i] = i;
initialized = true;
enabled = true;
if (CDAudio_GetAudioDiskInfo())
{
Com_Printf ("CDAudio_Init: No CD in player.\n");
cdValid = false;
}
Cmd_AddCommand ("cd", CD_f);
Com_Printf ("CD Audio Initialized\n");
return 0;
}
void CDAudio_Shutdown(void)
{
if (!initialized)
return;
CDAudio_Stop();
close(cdfile);
cdfile = -1;
}
|