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.
21 #include <sys/param.h>
22 #include <sys/audioio.h>
23 #include <sys/endian.h>
24 #include <sys/ioctl.h>
34 static const int tryrates[] = {44100, 22050, 11025, 8000};
36 static int audio_fd = -1;
37 static qboolean snd_inited = false;
39 // TODO: allocate them in SNDDMA_Init, with a size depending on
40 // the sound format (enough for 0.5 sec of sound for instance)
41 #define SND_BUFF_SIZE 65536
42 static qbyte dma_buffer [SND_BUFF_SIZE];
43 static qbyte writebuf [SND_BUFF_SIZE];
46 qboolean SNDDMA_Init (void)
52 memset ((void*)shm, 0, sizeof (*shm));
54 // Open the audio device
58 snddev = "/dev/sound";
60 audio_fd = open (snddev, O_WRONLY | O_NDELAY | O_NONBLOCK);
63 Con_Printf("Can't open the sound device (%s)\n", snddev);
67 // Look for an appropriate sound format
68 // TODO: we should also test mono/stereo and bits
69 // TODO: support "-sndspeed", "-sndbits", "-sndmono" and "-sndstereo"
70 shm->format.channels = 2;
71 shm->format.width = 2;
72 for (i = 0; i < sizeof (tryrates) / sizeof (tryrates[0]); i++)
74 shm->format.speed = tryrates[i];
76 AUDIO_INITINFO (&info);
77 info.play.sample_rate = shm->format.speed;
78 info.play.channels = shm->format.channels;
79 info.play.precision = shm->format.width * 8;
80 // We only handle sound cards of the same endianess than the CPU
81 #if BYTE_ORDER == BIG_ENDIAN
82 info.play.encoding = AUDIO_ENCODING_SLINEAR_BE;
84 info.play.encoding = AUDIO_ENCODING_SLINEAR_LE;
86 if (ioctl (audio_fd, AUDIO_SETINFO, &info) == 0)
89 if (i == sizeof (tryrates) / sizeof (tryrates[0]))
91 Con_Print("Can't select an appropriate sound output format\n");
96 // Print some information
97 Con_Printf("%d bit %s sound initialized (rate: %dHz)\n",
99 (info.play.channels == 2) ? "stereo" : "mono",
100 info.play.sample_rate);
102 shm->samples = sizeof (dma_buffer) / shm->format.width;
104 shm->buffer = dma_buffer;
110 int SNDDMA_GetDMAPos (void)
117 if (ioctl (audio_fd, AUDIO_GETINFO, &info) < 0)
119 Con_Print("Error: can't get audio info\n");
124 return ((info.play.samples * shm->format.channels) % shm->samples);
127 void SNDDMA_Shutdown (void)
141 Send sound to device if buffer isn't really the dma buffer
144 void SNDDMA_Submit (void)
148 static int wbufp = 0;
151 int stop = paintedtime;
156 if (paintedtime < wbufp)
159 bsize = shm->format.channels * shm->format.width;
160 bytes = (paintedtime - wbufp) * bsize;
165 if (bytes > sizeof (writebuf))
167 bytes = sizeof (writebuf);
168 stop = wbufp + bytes / bsize;
171 // Transfert the sound data from the circular dma_buffer to writebuf
172 // TODO: using 2 memcpys instead of this loop should be faster
174 idx = (wbufp*bsize) & (sizeof (dma_buffer) - 1);
175 for (b = bytes; b; b--)
177 *p++ = dma_buffer[idx];
178 idx = (idx + 1) & (sizeof (dma_buffer) - 1);
181 if (write (audio_fd, writebuf, bytes) < bytes)
182 Con_Print("audio can't keep up!\n");
187 void *S_LockBuffer (void)
192 void S_UnlockBuffer (void)