2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // Quake is a trademark of Id Software, Inc., (c) 1996 Id Software, Inc. All
23 // suggested by Zero_Dogg to fix a compile problem on Mandriva Linux
24 #define __KERNEL_STRICT_NAMES
26 #include <linux/cdrom.h>
27 #include <sys/ioctl.h>
38 static int cdfile = -1;
39 static char cd_dev[64] = "/dev/cdrom";
42 void CDAudio_SysEject (void)
47 if (ioctl(cdfile, CDROMEJECT) == -1)
48 Con_Print("ioctl CDROMEJECT failed\n");
52 void CDAudio_SysCloseDoor (void)
57 if (ioctl(cdfile, CDROMCLOSETRAY) == -1)
58 Con_Print("ioctl CDROMCLOSETRAY failed\n");
61 int CDAudio_SysGetAudioDiskInfo (void)
63 struct cdrom_tochdr tochdr;
68 if (ioctl(cdfile, CDROMREADTOCHDR, &tochdr) == -1)
70 Con_Print("ioctl CDROMREADTOCHDR failed\n");
74 if (tochdr.cdth_trk0 < 1)
76 Con_Print("CDAudio: no music tracks\n");
80 return tochdr.cdth_trk1;
84 float CDAudio_SysGetVolume (void)
86 struct cdrom_volctrl vol;
91 if (ioctl (cdfile, CDROMVOLREAD, &vol) == -1)
93 Con_Print("ioctl CDROMVOLREAD failed\n");
97 return (vol.channel0 + vol.channel1) / 2.0f / 255.0f;
101 void CDAudio_SysSetVolume (float volume)
103 struct cdrom_volctrl vol;
108 vol.channel0 = vol.channel1 = (__u8)(volume * 255);
109 vol.channel2 = vol.channel3 = 0;
111 if (ioctl (cdfile, CDROMVOLCTRL, &vol) == -1)
112 Con_Print("ioctl CDROMVOLCTRL failed\n");
116 int CDAudio_SysPlay (unsigned char track)
118 struct cdrom_tocentry entry;
124 // don't try to play a non-audio track
125 entry.cdte_track = track;
126 entry.cdte_format = CDROM_MSF;
127 if (ioctl(cdfile, CDROMREADTOCENTRY, &entry) == -1)
129 Con_Print("ioctl CDROMREADTOCENTRY failed\n");
132 if (entry.cdte_ctrl == CDROM_DATA_TRACK)
134 Con_Printf("CDAudio: track %i is not audio\n", track);
141 ti.cdti_trk0 = track;
142 ti.cdti_trk1 = track;
146 if (ioctl(cdfile, CDROMPLAYTRKIND, &ti) == -1)
148 Con_Print("ioctl CDROMPLAYTRKIND failed\n");
152 if (ioctl(cdfile, CDROMRESUME) == -1)
154 Con_Print("ioctl CDROMRESUME failed\n");
162 int CDAudio_SysStop (void)
167 if (ioctl(cdfile, CDROMSTOP) == -1)
169 Con_Printf("ioctl CDROMSTOP failed (%d)\n", errno);
176 int CDAudio_SysPause (void)
181 if (ioctl(cdfile, CDROMPAUSE) == -1)
183 Con_Print("ioctl CDROMPAUSE failed\n");
191 int CDAudio_SysResume (void)
196 if (ioctl(cdfile, CDROMRESUME) == -1)
197 Con_Print("ioctl CDROMRESUME failed\n");
202 int CDAudio_SysUpdate (void)
204 struct cdrom_subchnl subchnl;
205 static time_t lastchk = 0;
207 if (cdPlaying && lastchk < time(NULL))
209 lastchk = time(NULL) + 2; //two seconds between chks
210 subchnl.cdsc_format = CDROM_MSF;
211 if (ioctl(cdfile, CDROMSUBCHNL, &subchnl) == -1)
213 Con_Print("ioctl CDROMSUBCHNL failed\n");
217 if (subchnl.cdsc_audiostatus != CDROM_AUDIO_PLAY &&
218 subchnl.cdsc_audiostatus != CDROM_AUDIO_PAUSED)
222 CDAudio_Play(cdPlayTrack, true);
225 cdPlayTrack = subchnl.cdsc_trk;
231 void CDAudio_SysInit (void)
235 // COMMANDLINEOPTION: Linux Sound: -cddev <devicepath> chooses which CD drive to use
236 if ((i = COM_CheckParm("-cddev")) != 0 && i < com_argc - 1)
237 strlcpy(cd_dev, com_argv[i + 1], sizeof(cd_dev));
240 int CDAudio_SysStartup (void)
242 if ((cdfile = open(cd_dev, O_RDONLY | O_NONBLOCK)) == -1)
244 Con_Printf("CDAudio_SysStartup: open of \"%s\" failed (%i)\n",
253 void CDAudio_SysShutdown (void)