/* 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. */ // Quake is a trademark of Id Software, Inc., (c) 1996 Id Software, Inc. All // rights reserved. #include "quakedef.h" #include "cdaudio.h" #include "sound.h" #define MAXTRACKS 256 // Prototypes of the system dependent functions extern void CDAudio_SysEject (void); extern void CDAudio_SysCloseDoor (void); extern int CDAudio_SysGetAudioDiskInfo (void); extern float CDAudio_SysGetVolume (void); extern void CDAudio_SysSetVolume (float volume); extern int CDAudio_SysPlay (unsigned char track); extern int CDAudio_SysStop (void); extern int CDAudio_SysPause (void); extern int CDAudio_SysResume (void); extern int CDAudio_SysUpdate (void); extern void CDAudio_SysInit (void); extern int CDAudio_SysStartup (void); extern void CDAudio_SysShutdown (void); // used by menu to ghost CD audio slider cvar_t cdaudioinitialized = {CVAR_READONLY,"cdaudioinitialized","0","indicates if CD Audio system is active"}; static qboolean wasPlaying = false; static qboolean initialized = false; static qboolean enabled = false; static float cdvolume; typedef char filename_t[MAX_QPATH]; static filename_t remap[MAXTRACKS]; static unsigned char maxTrack; static int faketrack = -1; static float saved_vol = 1.0f; // exported variables qboolean cdValid = false; qboolean cdPlaying = false; qboolean cdPlayLooping = false; unsigned char cdPlayTrack; cl_cdstate_t cd; static void CDAudio_Eject (void) { if (!enabled) return; CDAudio_SysEject(); } static void CDAudio_CloseDoor (void) { if (!enabled) return; CDAudio_SysCloseDoor(); } static int CDAudio_GetAudioDiskInfo (void) { int ret; cdValid = false; ret = CDAudio_SysGetAudioDiskInfo(); if (ret < 1) return -1; cdValid = true; maxTrack = ret; return 0; } void CDAudio_Play_byName (const char *trackname, qboolean looping) { unsigned int track; sfx_t* sfx; Host_StartVideo(); if (!enabled) return; if(strspn(trackname, "0123456789") == strlen(trackname)) { track = (unsigned char) atoi(trackname); if(track > 0 && track < MAXTRACKS) if(*remap[track]) trackname = remap[track]; } if(strspn(trackname, "0123456789") == strlen(trackname)) { track = (unsigned char) atoi(trackname); if (track < 1) { Con_Printf("CDAudio: Bad track number %u.\n", track); return; } } else track = 0; if (cdPlaying && cdPlayTrack == track && faketrack == -1) return; CDAudio_Stop (); // Try playing a fake track (sound file) first if(track >= 1) { sfx = S_PrecacheSound (va ("cdtracks/track%02u.wav", track), false, false); if (sfx == NULL || !S_IsSoundPrecached (sfx)) sfx = S_PrecacheSound (va ("cdtracks/track%03u.wav", track), false, false); if (sfx == NULL || !S_IsSoundPrecached (sfx)) sfx = S_PrecacheSound (va ("cdtracks/track%02u", track), false, false); if (sfx == NULL || !S_IsSoundPrecached (sfx)) sfx = S_PrecacheSound (va ("cdtracks/track%03u", track), false, false); } else { sfx = S_PrecacheSound (va("cdtracks/%s.wav", trackname), false, false); if (sfx == NULL || !S_IsSoundPrecached (sfx)) sfx = S_PrecacheSound (va("cdtracks/%s", trackname), false, false); } if (sfx != NULL) { faketrack = S_StartSound (-1, 0, sfx, vec3_origin, cdvolume, 0); if (faketrack != -1) { if (looping) S_SetChannelFlag (faketrack, CHANNELFLAG_FORCELOOP, true); S_SetChannelFlag (faketrack, CHANNELFLAG_FULLVOLUME, true); if(track >= 1) Con_Printf ("Fake CD track %u playing...\n", track); else Con_Printf ("BGM track %s playing...\n", trackname); } } // If we can't play a fake CD track, try the real one if (faketrack == -1) { if(track < 1) { Con_Print("Could not load BGM track.\n"); return; } if (!cdValid) { CDAudio_GetAudioDiskInfo(); if (!cdValid) { Con_Print ("No CD in player.\n"); return; } } if (track > maxTrack) { Con_Printf("CDAudio: Bad track number %u.\n", track); return; } if (CDAudio_SysPlay(track) == -1) return; } cdPlayLooping = looping; cdPlayTrack = track; cdPlaying = true; if (cdvolume == 0.0) CDAudio_Pause (); } void CDAudio_Play (unsigned char track, qboolean looping) { char buf[20]; dpsnprintf(buf, sizeof(buf), "%d", (int) track); CDAudio_Play_byName(buf, looping); } void CDAudio_Stop (void) { if (!enabled) return; if (faketrack != -1) { S_StopChannel (faketrack, true); faketrack = -1; } else if (cdPlaying && (CDAudio_SysStop() == -1)) return; wasPlaying = false; cdPlaying = false; } void CDAudio_Pause (void) { if (!enabled || !cdPlaying) return; if (faketrack != -1) S_SetChannelFlag (faketrack, CHANNELFLAG_PAUSED, true); else if (CDAudio_SysPause() == -1) return; wasPlaying = cdPlaying; cdPlaying = false; } void CDAudio_Resume (void) { if (!enabled || cdPlaying || !wasPlaying) return; if (faketrack != -1) S_SetChannelFlag (faketrack, CHANNELFLAG_PAUSED, false); else if (CDAudio_SysResume() == -1) return; cdPlaying = true; } static void CD_f (void) { const char *command; int ret; int n; if (Cmd_Argc() < 2) return; command = Cmd_Argv (1); if (strcasecmp(command, "remap") != 0) Host_StartVideo(); if (strcasecmp(command, "on") == 0) { enabled = true; return; } if (strcasecmp(command, "off") == 0) { if (cdPlaying) CDAudio_Stop(); enabled = false; return; } if (strcasecmp(command, "reset") == 0) { enabled = true; if (cdPlaying) CDAudio_Stop(); for (n = 0; n < MAXTRACKS; n++) *remap[n] = 0; // empty string, that is, unremapped CDAudio_GetAudioDiskInfo(); return; } if (strcasecmp(command, "remap") == 0) { ret = Cmd_Argc() - 2; if (ret <= 0) { for (n = 1; n < MAXTRACKS; n++) if (*remap[n]) Con_Printf(" %u -> %s\n", n, remap[n]); return; } for (n = 1; n <= ret; n++) strlcpy(remap[n], Cmd_Argv (n+1), sizeof(*remap)); return; } if (strcasecmp(command, "close") == 0) { CDAudio_CloseDoor(); return; } if (strcasecmp(command, "play") == 0) { CDAudio_Play_byName(Cmd_Argv (2), false); return; } if (strcasecmp(command, "loop") == 0) { CDAudio_Play_byName(Cmd_Argv (2), true); return; } if (strcasecmp(command, "stop") == 0) { CDAudio_Stop(); return; } if (strcasecmp(command, "pause") == 0) { CDAudio_Pause(); return; } if (strcasecmp(command, "resume") == 0) { CDAudio_Resume(); return; } if (strcasecmp(command, "eject") == 0) { if (cdPlaying && faketrack == -1) CDAudio_Stop(); CDAudio_Eject(); cdValid = false; return; } if (strcasecmp(command, "info") == 0) { CDAudio_GetAudioDiskInfo (); if (cdValid) Con_Printf("%u tracks on CD.\n", maxTrack); else Con_Print ("No CD in player.\n"); if (cdPlaying) Con_Printf("Currently %s track %u\n", cdPlayLooping ? "looping" : "playing", cdPlayTrack); else if (wasPlaying) Con_Printf("Paused %s track %u\n", cdPlayLooping ? "looping" : "playing", cdPlayTrack); Con_Printf("Volume is %f\n", cdvolume); return; } Con_Printf("CD commands:\n"); Con_Printf("cd on - enables CD audio system\n"); Con_Printf("cd off - stops and disables CD audio system\n"); Con_Printf("cd reset - resets CD audio system (clears track remapping and re-reads disc information)"); Con_Printf("cd remap [remap2] [remap3] [...] - chooses (possibly emulated) CD tracks to play when a map asks for a particular track, this has many uses\n"); Con_Printf("cd close - closes CD tray\n"); Con_Printf("cd eject - stops playing music and opens CD tray to allow you to change disc\n"); Con_Printf("cd play - plays selected track in remapping table\n"); Con_Printf("cd loop - plays and repeats selected track in remapping table\n"); Con_Printf("cd stop - stops playing current CD track\n"); Con_Printf("cd pause - pauses CD playback\n"); Con_Printf("cd resume - unpauses CD playback\n"); Con_Printf("cd info - prints basic disc information (number of tracks, currently playing track, volume level)\n"); } void CDAudio_SetVolume (float newvol) { // If the volume hasn't changed if (newvol == cdvolume) return; // If the CD has been muted if (newvol == 0.0f) CDAudio_Pause (); else { // If the CD has been unmuted if (cdvolume == 0.0f) CDAudio_Resume (); if (faketrack != -1) S_SetChannelVolume (faketrack, newvol); CDAudio_SysSetVolume (newvol); } cdvolume = newvol; } void CDAudio_Update (void) { if (!enabled) return; CDAudio_SetVolume (bgmvolume.value); if (faketrack == -1) CDAudio_SysUpdate(); } int CDAudio_Init (void) { int i; if (cls.state == ca_dedicated) return -1; // COMMANDLINEOPTION: Sound: -nocdaudio disables CD audio support if (COM_CheckParm("-nocdaudio")) return -1; CDAudio_SysInit(); for (i = 0; i < MAXTRACKS; i++) *remap[i] = 0; Cvar_RegisterVariable(&cdaudioinitialized); Cvar_SetValueQuick(&cdaudioinitialized, true); enabled = true; Cmd_AddCommand("cd", CD_f, "execute a CD drive command (cd on/off/reset/remap/close/play/loop/stop/pause/resume/eject/info) - use cd by itself for usage"); return 0; } int CDAudio_Startup (void) { if (COM_CheckParm("-nocdaudio")) return -1; CDAudio_SysStartup (); if (CDAudio_GetAudioDiskInfo()) { Con_Print("CDAudio_Init: No CD in player.\n"); cdValid = false; } saved_vol = CDAudio_SysGetVolume (); if (saved_vol < 0.0f) { Con_Print ("Can't get initial CD volume\n"); saved_vol = 1.0f; } else Con_Printf ("Initial CD volume: %g\n", saved_vol); initialized = true; Con_Print("CD Audio Initialized\n"); return 0; } void CDAudio_Shutdown (void) { if (!initialized) return; CDAudio_SysSetVolume (saved_vol); CDAudio_Stop(); CDAudio_SysShutdown(); initialized = false; }