2005-11-13 18:58:14 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
Copyright (C) 1999-2005 Id Software, Inc.
|
|
|
|
Copyright (C) 2005 Stuart Dalton (badcdev@gmail.com)
|
|
|
|
|
|
|
|
This file is part of Quake III Arena source code.
|
|
|
|
|
|
|
|
Quake III Arena source code 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.
|
|
|
|
|
|
|
|
Quake III Arena source code 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 Quake III Arena source code; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "client.h"
|
|
|
|
#include "snd_codec.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
FGetLittleLong
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
static int FGetLittleLong( fileHandle_t f ) {
|
|
|
|
int v;
|
|
|
|
|
|
|
|
FS_Read( &v, sizeof(v), f );
|
|
|
|
|
|
|
|
return LittleLong( v);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
FGetLittleShort
|
|
|
|
=================
|
|
|
|
*/
|
2005-11-26 07:46:21 +00:00
|
|
|
static short FGetLittleShort( fileHandle_t f ) {
|
2005-11-13 18:58:14 +00:00
|
|
|
short v;
|
|
|
|
|
|
|
|
FS_Read( &v, sizeof(v), f );
|
|
|
|
|
|
|
|
return LittleShort( v);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
S_ReadChunkInfo
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
static int S_ReadChunkInfo(fileHandle_t f, char *name)
|
|
|
|
{
|
|
|
|
int len, r;
|
|
|
|
|
|
|
|
name[4] = 0;
|
|
|
|
|
|
|
|
r = FS_Read(name, 4, f);
|
|
|
|
if(r != 4)
|
2005-11-30 01:57:53 +00:00
|
|
|
return -1;
|
2005-11-13 18:58:14 +00:00
|
|
|
|
|
|
|
len = FGetLittleLong(f);
|
2005-11-16 20:23:37 +00:00
|
|
|
if( len < 0 ) {
|
|
|
|
Com_Printf( S_COLOR_YELLOW "WARNING: Negative chunk length\n" );
|
2005-11-30 01:57:53 +00:00
|
|
|
return -1;
|
2005-11-16 20:23:37 +00:00
|
|
|
}
|
2005-11-13 18:58:14 +00:00
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
2005-11-16 20:23:37 +00:00
|
|
|
S_FindRIFFChunk
|
2005-11-13 18:58:14 +00:00
|
|
|
|
2005-11-30 01:57:53 +00:00
|
|
|
Returns the length of the data in the chunk, or -1 if not found
|
2005-11-13 18:58:14 +00:00
|
|
|
=================
|
|
|
|
*/
|
2005-11-16 20:23:37 +00:00
|
|
|
static int S_FindRIFFChunk( fileHandle_t f, char *chunk ) {
|
2005-11-13 18:58:14 +00:00
|
|
|
char name[5];
|
|
|
|
int len;
|
|
|
|
|
2005-11-30 01:57:53 +00:00
|
|
|
while( ( len = S_ReadChunkInfo(f, name) ) >= 0 )
|
2005-11-13 18:58:14 +00:00
|
|
|
{
|
|
|
|
// If this is the right chunk, return
|
2005-11-16 20:23:37 +00:00
|
|
|
if( !Q_strncmp( name, chunk, 4 ) )
|
2005-11-13 18:58:14 +00:00
|
|
|
return len;
|
|
|
|
|
2005-12-05 17:32:54 +00:00
|
|
|
len = PAD( len, 2 );
|
2005-11-16 20:23:37 +00:00
|
|
|
|
2005-11-13 18:58:14 +00:00
|
|
|
// Not the right chunk - skip it
|
2005-11-14 18:26:25 +00:00
|
|
|
FS_Seek( f, len, FS_SEEK_CUR );
|
2005-11-13 18:58:14 +00:00
|
|
|
}
|
2005-11-16 20:23:37 +00:00
|
|
|
|
2005-11-30 01:57:53 +00:00
|
|
|
return -1;
|
2005-11-13 18:58:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
S_ByteSwapRawSamples
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
static void S_ByteSwapRawSamples( int samples, int width, int s_channels, const byte *data ) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ( width != 2 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( LittleShort( 256 ) == 256 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( s_channels == 2 ) {
|
|
|
|
samples <<= 1;
|
|
|
|
}
|
|
|
|
for ( i = 0 ; i < samples ; i++ ) {
|
|
|
|
((short *)data)[i] = LittleShort( ((short *)data)[i] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
2005-11-16 20:23:37 +00:00
|
|
|
S_ReadRIFFHeader
|
2005-11-13 18:58:14 +00:00
|
|
|
=================
|
|
|
|
*/
|
2005-11-16 20:23:37 +00:00
|
|
|
static qboolean S_ReadRIFFHeader(fileHandle_t file, snd_info_t *info)
|
2005-11-13 18:58:14 +00:00
|
|
|
{
|
|
|
|
char dump[16];
|
|
|
|
int wav_format;
|
2006-02-21 22:29:29 +00:00
|
|
|
int bits;
|
2005-11-13 18:58:14 +00:00
|
|
|
int fmtlen = 0;
|
|
|
|
|
|
|
|
// skip the riff wav header
|
|
|
|
FS_Read(dump, 12, file);
|
|
|
|
|
|
|
|
// Scan for the format chunk
|
2005-11-30 01:57:53 +00:00
|
|
|
if((fmtlen = S_FindRIFFChunk(file, "fmt ")) < 0)
|
2005-11-13 18:58:14 +00:00
|
|
|
{
|
2005-11-16 20:23:37 +00:00
|
|
|
Com_Printf( S_COLOR_RED "ERROR: Couldn't find \"fmt\" chunk\n");
|
2005-11-13 18:58:14 +00:00
|
|
|
return qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the parameters
|
|
|
|
wav_format = FGetLittleShort(file);
|
|
|
|
info->channels = FGetLittleShort(file);
|
|
|
|
info->rate = FGetLittleLong(file);
|
|
|
|
FGetLittleLong(file);
|
|
|
|
FGetLittleShort(file);
|
2006-02-21 22:29:29 +00:00
|
|
|
bits = FGetLittleShort(file);
|
|
|
|
|
|
|
|
if( bits < 8 )
|
|
|
|
{
|
|
|
|
Com_Printf( S_COLOR_RED "ERROR: Less than 8 bit sound is not supported\n");
|
|
|
|
return qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
info->width = bits / 8;
|
2005-11-13 18:58:14 +00:00
|
|
|
info->dataofs = 0;
|
|
|
|
|
|
|
|
// Skip the rest of the format chunk if required
|
|
|
|
if(fmtlen > 16)
|
|
|
|
{
|
|
|
|
fmtlen -= 16;
|
2005-11-14 18:35:31 +00:00
|
|
|
FS_Seek( file, fmtlen, FS_SEEK_CUR );
|
2005-11-13 18:58:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Scan for the data chunk
|
2005-11-30 01:57:53 +00:00
|
|
|
if( (info->size = S_FindRIFFChunk(file, "data")) < 0)
|
2005-11-13 18:58:14 +00:00
|
|
|
{
|
2005-11-16 20:23:37 +00:00
|
|
|
Com_Printf( S_COLOR_RED "ERROR: Couldn't find \"data\" chunk\n");
|
2005-11-13 18:58:14 +00:00
|
|
|
return qfalse;
|
|
|
|
}
|
|
|
|
info->samples = (info->size / info->width) / info->channels;
|
|
|
|
|
|
|
|
return qtrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// WAV codec
|
|
|
|
snd_codec_t wav_codec =
|
|
|
|
{
|
2011-05-12 12:25:36 +00:00
|
|
|
"wav",
|
2005-11-13 18:58:14 +00:00
|
|
|
S_WAV_CodecLoad,
|
|
|
|
S_WAV_CodecOpenStream,
|
|
|
|
S_WAV_CodecReadStream,
|
|
|
|
S_WAV_CodecCloseStream,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
S_WAV_CodecLoad
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
void *S_WAV_CodecLoad(const char *filename, snd_info_t *info)
|
|
|
|
{
|
|
|
|
fileHandle_t file;
|
|
|
|
void *buffer;
|
|
|
|
|
|
|
|
// Try to open the file
|
|
|
|
FS_FOpenFileRead(filename, &file, qtrue);
|
|
|
|
if(!file)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the RIFF header
|
2005-11-16 20:23:37 +00:00
|
|
|
if(!S_ReadRIFFHeader(file, info))
|
2005-11-13 18:58:14 +00:00
|
|
|
{
|
|
|
|
FS_FCloseFile(file);
|
2005-11-16 20:23:37 +00:00
|
|
|
Com_Printf( S_COLOR_RED "ERROR: Incorrect/unsupported format in \"%s\"\n",
|
|
|
|
filename);
|
2005-11-13 18:58:14 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate some memory
|
2011-06-17 23:29:19 +00:00
|
|
|
buffer = Hunk_AllocateTempMemory(info->size);
|
2005-11-13 18:58:14 +00:00
|
|
|
if(!buffer)
|
|
|
|
{
|
|
|
|
FS_FCloseFile(file);
|
2005-11-16 20:23:37 +00:00
|
|
|
Com_Printf( S_COLOR_RED "ERROR: Out of memory reading \"%s\"\n",
|
|
|
|
filename);
|
2005-11-13 18:58:14 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read, byteswap
|
|
|
|
FS_Read(buffer, info->size, file);
|
|
|
|
S_ByteSwapRawSamples(info->samples, info->width, info->channels, (byte *)buffer);
|
|
|
|
|
|
|
|
// Close and return
|
|
|
|
FS_FCloseFile(file);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
S_WAV_CodecOpenStream
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
snd_stream_t *S_WAV_CodecOpenStream(const char *filename)
|
|
|
|
{
|
|
|
|
snd_stream_t *rv;
|
|
|
|
|
|
|
|
// Open
|
|
|
|
rv = S_CodecUtilOpen(filename, &wav_codec);
|
|
|
|
if(!rv)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Read the RIFF header
|
2005-11-16 20:23:37 +00:00
|
|
|
if(!S_ReadRIFFHeader(rv->file, &rv->info))
|
2005-11-13 18:58:14 +00:00
|
|
|
{
|
2007-11-18 01:06:46 +00:00
|
|
|
S_CodecUtilClose(&rv);
|
2005-11-13 18:58:14 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
S_WAV_CodecCloseStream
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
void S_WAV_CodecCloseStream(snd_stream_t *stream)
|
|
|
|
{
|
2007-11-18 01:06:46 +00:00
|
|
|
S_CodecUtilClose(&stream);
|
2005-11-13 18:58:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
S_WAV_CodecReadStream
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
int S_WAV_CodecReadStream(snd_stream_t *stream, int bytes, void *buffer)
|
|
|
|
{
|
|
|
|
int remaining = stream->info.size - stream->pos;
|
|
|
|
int samples;
|
|
|
|
|
|
|
|
if(remaining <= 0)
|
|
|
|
return 0;
|
|
|
|
if(bytes > remaining)
|
|
|
|
bytes = remaining;
|
|
|
|
stream->pos += bytes;
|
|
|
|
samples = (bytes / stream->info.width) / stream->info.channels;
|
|
|
|
FS_Read(buffer, bytes, stream->file);
|
|
|
|
S_ByteSwapRawSamples(samples, stream->info.width, stream->info.channels, buffer);
|
|
|
|
return bytes;
|
|
|
|
}
|