2004-09-06 11:14:40 +00:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
// Quake is a trademark of Id Software, Inc., (c) 1996 Id Software, Inc. All
|
|
|
|
// rights reserved.
|
|
|
|
|
2024-09-13 18:15:15 +00:00
|
|
|
/*
|
|
|
|
* All Unix porting was primarily focused on getting this to work on FreeBSD 14+
|
|
|
|
* but hopefully will give others the ability to further improve upon it.
|
|
|
|
* Most information sourced from the following documentation:
|
|
|
|
* Linux CDROM ioctl: https://www.kernel.org/doc/html/latest/userspace-api/ioctl/cdrom.html
|
|
|
|
* FreeBSD 14.0 cd man page: https://man.freebsd.org/cgi/man.cgi?query=cd&sektion=4&apropos=0&manpath=FreeBSD+14.0-RELEASE+and+Ports
|
|
|
|
* The cdio header file found at /usr/include/sys/cdio.h (very well documented about what everything does)
|
|
|
|
* - Brad
|
|
|
|
*/
|
|
|
|
|
2005-02-28 07:16:19 +00:00
|
|
|
#include "quakedef.h"
|
|
|
|
|
2017-02-21 23:26:13 +00:00
|
|
|
#ifndef HAVE_CDPLAYER
|
|
|
|
//nothing
|
|
|
|
#elif defined(__CYGWIN__)
|
2004-09-06 11:14:40 +00:00
|
|
|
#include "cd_null.c"
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
2024-09-13 18:15:15 +00:00
|
|
|
#if defined(__linux__)
|
2004-09-06 11:14:40 +00:00
|
|
|
#include <linux/cdrom.h>
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
#include <sys/cdio.h>
|
|
|
|
#define CDROMEJECT CDDOEJECT
|
|
|
|
#define CDROMCLOSETRAY CDDOCLOSE
|
|
|
|
#define CDROMPAUSE CDDOPAUSE
|
|
|
|
#define CDROMRESUME CDDORESUME
|
|
|
|
#define CDROMRESET CDDORESET
|
|
|
|
#define CDROMSTOP CDDOSTOP
|
|
|
|
#define CDROMSTART CDDOSTART
|
|
|
|
#define CDROMREADTOCHDR CDREADHEADER
|
|
|
|
#define CDROMREADTOCENTRY CDIOREADTOCENTRY
|
|
|
|
#define CDROMSUBCHNL CDREADSUBQ
|
|
|
|
#define CDROM_MSF CD_MSF_FORMAT
|
|
|
|
#define CDROM_DATA_TRACK CD_SUBQ_DATA
|
|
|
|
#define CDROM_AUDIO_PAUSED CD_AS_PLAY_PAUSED
|
|
|
|
#define CDROM_AUDIO_PLAY CD_AS_PLAY_IN_PROGRESS
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
|
|
|
|
static int cdfile = -1;
|
2024-09-13 18:15:15 +00:00
|
|
|
#if defined(__unix__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(__linux__)
|
|
|
|
static char cd_dev[64] = "/dev/cd0";
|
|
|
|
#else
|
2004-09-06 11:14:40 +00:00
|
|
|
static char cd_dev[64] = "/dev/cdrom";
|
2024-09-13 18:15:15 +00:00
|
|
|
#endif
|
2013-10-08 16:31:53 +00:00
|
|
|
static qboolean playing;
|
2004-09-06 11:14:40 +00:00
|
|
|
|
2013-10-08 16:17:19 +00:00
|
|
|
void CDAudio_Eject(void)
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
2004-09-06 11:14:40 +00:00
|
|
|
return; // no cd init'd
|
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMEJECT) == -1 )
|
|
|
|
Con_DPrintf("ioctl cdromeject failed\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-08 16:17:19 +00:00
|
|
|
void CDAudio_CloseDoor(void)
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
2004-09-06 11:14:40 +00:00
|
|
|
return; // no cd init'd
|
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMCLOSETRAY) == -1 )
|
|
|
|
Con_DPrintf("ioctl cdromclosetray failed\n");
|
|
|
|
}
|
|
|
|
|
2013-10-08 16:17:19 +00:00
|
|
|
int CDAudio_GetAudioDiskInfo(void)
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2004-09-06 11:14:40 +00:00
|
|
|
struct cdrom_tochdr tochdr;
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
struct ioc_toc_header tochdr;
|
|
|
|
struct cd_sub_channel_track_info trk;
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
|
|
|
return -1;
|
2004-09-06 11:14:40 +00:00
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMREADTOCHDR, &tochdr) == -1 )
|
2024-09-13 18:15:15 +00:00
|
|
|
{
|
2020-09-29 07:09:01 +00:00
|
|
|
Con_DPrintf("ioctl cdromreadtochdr failed\n");
|
|
|
|
return -1;
|
2024-09-13 18:15:15 +00:00
|
|
|
}
|
2004-09-06 11:14:40 +00:00
|
|
|
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
|
|
|
if (tochdr.cdth_trk0 < 1)
|
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
if (trk.track_number < 0) // track_number may not work correctly here - Brad
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
|
|
|
Con_DPrintf("CDAudio: no music tracks\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2013-10-08 14:28:11 +00:00
|
|
|
return tochdr.cdth_trk1;
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
return tochdr.starting_track;
|
|
|
|
#else
|
|
|
|
Con_DPrintf("CDAudio: no music tracks\n");
|
|
|
|
return -1;
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-08 16:29:54 +00:00
|
|
|
void CDAudio_Play(int track)
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2004-09-06 11:14:40 +00:00
|
|
|
struct cdrom_tocentry entry;
|
|
|
|
struct cdrom_ti ti;
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__) // This all may be wrong, but it should be close - Brad
|
|
|
|
struct ioc_toc_header tochdr; // cd drive header info (for getting start and end track info mostly)
|
|
|
|
struct ioc_read_toc_single_entry entry; // individual audio track's entry info
|
|
|
|
struct cd_sub_channel_info ti; // individual audio track's subchannel info (for indexing and whatnot)
|
|
|
|
struct ioc_play_track play; // cd drive audio indexing
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
2004-09-06 11:14:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// don't try to play a non-audio track
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2004-09-06 11:14:40 +00:00
|
|
|
entry.cdte_track = track;
|
|
|
|
entry.cdte_format = CDROM_MSF;
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
entry.track = track;
|
|
|
|
entry.address_format = CDROM_MSF;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMREADTOCENTRY, &entry) == -1 )
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
|
|
|
Con_DPrintf("ioctl cdromreadtocentry failed\n");
|
|
|
|
return;
|
|
|
|
}
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2004-09-06 11:14:40 +00:00
|
|
|
if (entry.cdte_ctrl == CDROM_DATA_TRACK)
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
if (entry.entry.control == CDROM_DATA_TRACK)
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
|
|
|
Con_Printf("CDAudio: track %i is not audio\n", track);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2004-09-06 11:14:40 +00:00
|
|
|
ti.cdti_trk0 = track;
|
|
|
|
ti.cdti_trk1 = track;
|
|
|
|
ti.cdti_ind0 = 1;
|
|
|
|
ti.cdti_ind1 = 99;
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
if (ti.what.position.track_number == 0 || ti.what.position.track_number == 1)
|
|
|
|
{
|
|
|
|
entry.track = track;
|
|
|
|
}
|
|
|
|
if (ti.what.position.index_number == 0)
|
|
|
|
{
|
|
|
|
play.start_track = tochdr.starting_track;
|
|
|
|
}
|
|
|
|
if (ti.what.position.index_number == 1)
|
|
|
|
{
|
|
|
|
play.end_track = tochdr.ending_track;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CDROMPLAYTRKIND ti.what.position.track_number
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMPLAYTRKIND, &ti) == -1 )
|
2024-09-13 18:15:15 +00:00
|
|
|
{
|
2004-09-06 11:14:40 +00:00
|
|
|
Con_DPrintf("ioctl cdromplaytrkind failed\n");
|
|
|
|
return;
|
2024-09-13 18:15:15 +00:00
|
|
|
}
|
2004-09-06 11:14:40 +00:00
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMRESUME) == -1 )
|
|
|
|
Con_DPrintf("ioctl cdromresume failed\n");
|
|
|
|
|
2013-10-08 16:29:54 +00:00
|
|
|
playing = true;
|
|
|
|
|
Too many changes, sorry.
Change revision displays, use the SVN commit date instead of using __DATE__ (when there's no local changes). This should allow reproducible builds.
Added s_al_disable cvar, to block openal and all the various problems people have had with it, without having to name an explicit fallback (which would vary by system).
Add mastervolume cvar (for ss).
Add r_shadows 2 (aka fake shadows - for ss).
Add scr_loadingscreen_aspect -1 setting, to disable levelshots entirely, also disables the progress bar (for ss).
Better support for some effectinfo hacks (for ss).
Added dpcompat_nocsqcwarnings (because of lazy+buggy mods like ss).
Rework the dpcsqc versions of project+unproject builtins for better compat (for ss).
Added dpcompat_csqcinputeventtypes to block unexpected csqc input events (for ss).
Better compat with DP's loadfont console command (for ss).
Added dpcompat_smallerfonts cvar to replicate a DP bug (for ss).
Detect dp's m_draw extension, to work around it (for ss).
Cvar dpcompat_ignoremodificationtimes added. A value of 0 favour the most recently modified file, 1 will use DP-like alphabetically sorted preferences (for ss).
loadfont builtin can now accept outline=1 in the sizes arg for slightly more readable fonts.
Fix bbox calcs for rotated entities, fix needed for r_ignorenetpvs 0.
Hackily parse emoji.json to provide :poop: etc suggestions.
Skip prediction entirely when there's no local entity info. This fixes stair-smoothing in xonotic.
screenshot_cubemap will now capture half-float images when saving to ktx or dds files.
Fix support for xcf files larger than 4gb, mostly to avoid compiler warnings.
Fixed size of gfx/loading.lmp when replacement textures are used.
Added mipmap support for rg8 and l8a8 textures.
r_hdr_framebuffer cvar updated to support format names instead of random negative numbers. Description updated to name some interesting ones.
Perform autoupdate _checks_ ONLY with explicit user confirmation (actual updating already needed user confirmation, but this extra step should reduce the chances of us getting wrongly accused of exfiltrating user data if we're run in a sandbox - we ONLY ever included the updating engine's version in the checks, though there's nothing we can do to avoid sending the user's router's IP).
Removed the 'summon satan all over your harddrive' quit message, in case paranoid security researchers are idiots and don't bother doing actual research.
Removed the triptohell.info and fte.triptohell.info certificates, they really need to stop being self-signed. The updates domain is still self-signed for autoupdates.
Video drivers are now able to report supported video resolutions, visible to menuqc. Currently only works with SDL2 builds.
Added setmousepos builtin. Should work with glx+win32 build.
VF_SKYROOM_CAMERA can now accept an extra two args, setviewprop(VF_SKYROOM_CAMERA, org, axis, degrees).
Removed v_skyroom_origin+v_skyroom_orientation cvars in favour just v_skyroom, which should make it behave more like the 'fog' command (used when csqc isn't overriding).
Added R_EndPolygonRibbon builtin to make it faster+easier to generate textured ribbon/cable/etc wide lines (for TW).
sdl: Fix up sys_sdl.c's file enumeration to support wildcards in directories.
edit command now displays end1.bin/end2.bin correctly, because we can.
Finally add support for f_modified - though ruleset_allow_larger_models and ruleset_allow_overlong_sounds generally make it redundant.
Fix threading race condition in sha1 lookups.
Updated f_ruleset to include the same extra flags reported by ezquake.
A mod's default.fmf file can now contain an eg 'mainconfig config.cfg' line (to explicitly set the main config saved with cfg_save_auto 1 etc).
fmf: basegame steam:GameName/GameDir can be used to try to load a mod directory from an installed steam game. The resulting gamedir will be read-only.
HOMEDIR CHANGE: use homedirs only if the basedir cannot be written or a homedir already exists, which should further reduce the probability of microsoft randomly uploading our data to their cloud (but mostly because its annoying to never know where your data is written).
Fixed buf_cvarlist, should work in xonotic now, and without segfaults.
Added an extra arg to URI_Get_Callback calls - the response size, also changed the tempstring to contain all bytes of the response, you need to be careful about nulls though.
Try to work around nvidia's forced-panning bug on x11 when changing video modes. This might screw with other programs.
sdl: support custom icons.
sdl: support choosing a specific display.
Added some documentation to menuqc builtins.
menusys: use outlines for slightly more readable fonts.
menusys: switch vid_width and vid_height combos into a single video mode combo to set both according to reported video modes.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5581 fc73d0e0-1445-4013-8a0c-d673dee63da5
2019-11-20 03:09:50 +00:00
|
|
|
if (!bgmvolume.value || !mastervolume.value)
|
2004-09-06 11:14:40 +00:00
|
|
|
CDAudio_Pause ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CDAudio_Stop(void)
|
|
|
|
{
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
2004-09-06 11:14:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMSTOP) == -1 )
|
|
|
|
Con_DPrintf("ioctl cdromstop failed (%d)\n", errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CDAudio_Pause(void)
|
|
|
|
{
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
2004-09-06 11:14:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMPAUSE) == -1 )
|
|
|
|
Con_DPrintf("ioctl cdrompause failed\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CDAudio_Resume(void)
|
|
|
|
{
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
2004-09-06 11:14:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ioctl(cdfile, CDROMRESUME) == -1 )
|
|
|
|
Con_DPrintf("ioctl cdromresume failed\n");
|
2006-05-07 20:57:30 +00:00
|
|
|
}
|
|
|
|
|
2004-09-06 11:14:40 +00:00
|
|
|
void CDAudio_Update(void)
|
|
|
|
{
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2004-09-06 11:14:40 +00:00
|
|
|
struct cdrom_subchnl subchnl;
|
|
|
|
static time_t lastchk;
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
struct cd_sub_channel_info subchnl;
|
|
|
|
struct ioc_read_subchannel cdsc; // subchn.cdsc_format workaround - Brad
|
|
|
|
// Note: there doesn't seem to be a way to check how much time is left for playing
|
|
|
|
// cd audio without doing some extra manual work, so I'll be omitting it from
|
|
|
|
// the unix checks for the time being - Brad
|
|
|
|
#endif
|
2004-09-06 11:14:40 +00:00
|
|
|
|
2024-09-13 18:15:15 +00:00
|
|
|
if (playing
|
|
|
|
#ifdef __linux__
|
|
|
|
&& lastchk < time(NULL)
|
|
|
|
#endif
|
|
|
|
)
|
2013-10-08 14:28:11 +00:00
|
|
|
{
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2013-10-08 14:28:11 +00:00
|
|
|
lastchk = time(NULL) + 2; //two seconds between checks
|
2004-09-06 11:14:40 +00:00
|
|
|
subchnl.cdsc_format = CDROM_MSF;
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
cdsc.address_format = CDROM_MSF;
|
|
|
|
#endif
|
2013-10-08 14:28:11 +00:00
|
|
|
if (ioctl(cdfile, CDROMSUBCHNL, &subchnl) == -1 )
|
|
|
|
{
|
2004-09-06 11:14:40 +00:00
|
|
|
Con_DPrintf("ioctl cdromsubchnl failed\n");
|
|
|
|
playing = false;
|
|
|
|
return;
|
|
|
|
}
|
2024-09-13 18:15:15 +00:00
|
|
|
#ifdef __linux__
|
2004-09-06 11:14:40 +00:00
|
|
|
if (subchnl.cdsc_audiostatus != CDROM_AUDIO_PLAY &&
|
2013-10-08 14:28:11 +00:00
|
|
|
subchnl.cdsc_audiostatus != CDROM_AUDIO_PAUSED)
|
2024-09-13 18:15:15 +00:00
|
|
|
#elif defined(__unix__) && !defined(__CYGWIN__)
|
|
|
|
if (subchnl.header.audio_status != CDROM_AUDIO_PLAY &&
|
|
|
|
subchnl.header.audio_status != CDROM_AUDIO_PAUSED)
|
|
|
|
#endif
|
2013-10-08 14:28:11 +00:00
|
|
|
{
|
2004-09-06 11:14:40 +00:00
|
|
|
playing = false;
|
2013-10-08 16:21:11 +00:00
|
|
|
Media_EndedTrack();
|
2004-09-06 11:14:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
qboolean CDAudio_Startup(void)
|
2004-09-06 11:14:40 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile != -1)
|
|
|
|
return true;
|
2004-09-06 11:14:40 +00:00
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
if ((i = COM_CheckParm("-cddev")) != 0 && i < com_argc - 1)
|
|
|
|
{
|
2004-09-06 11:14:40 +00:00
|
|
|
Q_strncpyz(cd_dev, com_argv[i + 1], sizeof(cd_dev));
|
|
|
|
cd_dev[sizeof(cd_dev) - 1] = 0;
|
|
|
|
}
|
|
|
|
|
2020-09-29 07:09:01 +00:00
|
|
|
if ((cdfile = open(cd_dev, O_RDONLY|O_NONBLOCK)) == -1)
|
2013-10-08 14:28:11 +00:00
|
|
|
{
|
2004-09-06 11:14:40 +00:00
|
|
|
Con_Printf("CDAudio_Init: open of \"%s\" failed (%i)\n", cd_dev, errno);
|
|
|
|
cdfile = -1;
|
2013-10-08 14:28:11 +00:00
|
|
|
return false;
|
2004-09-06 11:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
2004-09-06 11:14:40 +00:00
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
void CDAudio_Init(void)
|
|
|
|
{
|
2004-09-06 11:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CDAudio_Shutdown(void)
|
|
|
|
{
|
2013-10-08 14:28:11 +00:00
|
|
|
if (cdfile == -1)
|
2004-09-06 11:14:40 +00:00
|
|
|
return;
|
|
|
|
CDAudio_Stop();
|
|
|
|
close(cdfile);
|
|
|
|
cdfile = -1;
|
|
|
|
}
|
|
|
|
#endif
|