2007-08-22 07:52:33 +00:00
|
|
|
#include <engine/system.h>
|
2007-05-24 20:54:08 +00:00
|
|
|
#include <engine/interface.h>
|
2007-08-14 18:37:16 +00:00
|
|
|
#include <engine/config.h>
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
#include <engine/external/portaudio/portaudio.h>
|
|
|
|
#include <engine/external/wavpack/wavpack.h>
|
2007-09-25 19:48:52 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
2007-08-09 14:55:11 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
NUM_SOUNDS = 512,
|
|
|
|
NUM_VOICES = 64,
|
|
|
|
NUM_CHANNELS = 4,
|
2007-08-22 07:52:33 +00:00
|
|
|
};
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
enum
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
MAX_FRAMES = 1024
|
|
|
|
};
|
2007-08-14 18:37:16 +00:00
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
static LOCK sound_lock = 0;
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static struct sound
|
|
|
|
{
|
2007-05-22 15:03:32 +00:00
|
|
|
short *data;
|
|
|
|
int num_samples;
|
|
|
|
int rate;
|
|
|
|
int channels;
|
2007-09-25 19:48:52 +00:00
|
|
|
int loop_start;
|
|
|
|
int loop_end;
|
|
|
|
} sounds[NUM_SOUNDS] = { {0x0, 0, 0, 0, -1, -1} };
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static struct voice
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
volatile struct sound *sound;
|
|
|
|
int tick;
|
|
|
|
int stop;
|
|
|
|
int loop;
|
|
|
|
float vol;
|
|
|
|
float pan;
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
volatile struct voice *prev;
|
|
|
|
volatile struct voice *next;
|
|
|
|
} voices[NUM_VOICES] = { {0x0, 0, -1, -1, 1.0f, 0.0f, 0.0f, 0.0f, 0x0, 0x0} };
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
#define CHANNEL_POSITION_VOLUME 1
|
|
|
|
#define CHANNEL_POSITION_PAN 2
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static struct channel
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
volatile struct voice *first_voice;
|
|
|
|
float vol;
|
|
|
|
float pan;
|
|
|
|
int flags;
|
|
|
|
} channels[NUM_CHANNELS] = { {0x0, 1.0f, 0.0f, 0} };
|
|
|
|
|
|
|
|
static float center_x = 0.0f;
|
|
|
|
static float center_y = 0.0f;
|
|
|
|
static float master_vol = 1.0f;
|
|
|
|
static float master_pan = 0.0f;
|
|
|
|
static float pan_deadzone = 256.0f;
|
|
|
|
static float pan_falloff = 1.0f;
|
|
|
|
static float volume_deadzone = 256.0f;
|
|
|
|
static float volume_falloff = 1.0f;
|
|
|
|
|
|
|
|
static inline short int2short(int i)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
if(i > 0x7fff)
|
|
|
|
return 0x7fff;
|
|
|
|
else if(i < -0x7fff)
|
|
|
|
return -0x7fff;
|
|
|
|
return i;
|
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static inline float sgn(float f)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
if(f < 0.0f)
|
|
|
|
return -1.0f;
|
|
|
|
return 1.0f;
|
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static void reset_voice(struct voice *v)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
v->sound = 0x0;
|
|
|
|
v->tick = 0;
|
|
|
|
v->stop = -1;
|
|
|
|
v->loop = -1;
|
|
|
|
v->vol = 1.0f;
|
|
|
|
v->pan = 0.0f;
|
|
|
|
v->x = 0.0f;
|
|
|
|
v->y = 0.0f;
|
|
|
|
v->next = 0x0;
|
|
|
|
v->prev = 0x0;
|
|
|
|
}
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static inline void fill_mono(int *out, unsigned frames, struct voice *v, float fvol, float fpan)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
int ivol = (int) (31.0f * fvol);
|
|
|
|
int ipan = (int) (31.0f * ipan);
|
2007-08-14 18:37:16 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned i;
|
2007-08-22 07:52:33 +00:00
|
|
|
for(i = 0; i < frames; i++)
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned j = i<<1;
|
|
|
|
int val = v->sound->data[v->tick] * ivol;
|
|
|
|
out[j] += val;
|
|
|
|
out[j+1] += val;
|
|
|
|
v->tick++;
|
2007-07-21 16:45:06 +00:00
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
2007-07-21 16:45:06 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static inline void fill_stereo(int *out, unsigned frames, struct voice *v, float fvol, float fpan)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
int ivol = (int) (31.0f * fvol);
|
|
|
|
int ipan = (int) (31.0f * ipan);
|
2007-08-14 18:37:16 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned i;
|
2007-08-22 07:52:33 +00:00
|
|
|
for(i = 0; i < frames; i++)
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned j = i<<1;
|
|
|
|
out[j] += v->sound->data[v->tick] * ivol;
|
|
|
|
out[j+1] += v->sound->data[v->tick+1] * ivol;
|
|
|
|
v->tick += 2;
|
2007-07-21 16:45:06 +00:00
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
2007-07-21 16:45:06 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static void mix(short *out, unsigned frames)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
static int main_buffer[MAX_FRAMES*2];
|
2007-10-02 16:19:25 +00:00
|
|
|
unsigned locked = 0;
|
2007-07-21 16:45:06 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
dbg_assert(frames <= MAX_FRAMES, "too many frames to fill");
|
2007-08-14 18:37:16 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned i;
|
2007-08-22 07:52:33 +00:00
|
|
|
for(i = 0; i < frames; i++)
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned j = i<<1;
|
|
|
|
main_buffer[j] = 0;
|
|
|
|
main_buffer[j+1] = 0;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
2007-07-21 16:45:06 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned cid;
|
|
|
|
for(cid = 0; cid < NUM_CHANNELS; cid++)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
struct channel *c = &channels[cid];
|
|
|
|
struct voice *v = (struct voice*)c->first_voice;
|
|
|
|
|
|
|
|
while(v)
|
2007-07-21 16:45:06 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned filled = 0;
|
2007-10-02 16:19:25 +00:00
|
|
|
unsigned step = 1;
|
|
|
|
|
|
|
|
while(v && v->sound && filled < frames)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
// calculate maximum frames to fill
|
|
|
|
unsigned frames_left = (v->sound->num_samples - v->tick) >> (v->sound->channels-1);
|
|
|
|
unsigned long to_fill = frames>frames_left?frames_left:frames;
|
|
|
|
float vol = 1.0f;
|
|
|
|
float pan = 0.0f;
|
|
|
|
|
|
|
|
// clamp to_fill if voice should stop
|
|
|
|
if(v->stop >= 0)
|
|
|
|
to_fill = (unsigned)v->stop>frames_left?frames:v->stop;
|
|
|
|
|
|
|
|
// clamp to_fill if we are about to loop
|
|
|
|
if(v->loop >= 0 && v->sound->loop_start >= 0)
|
|
|
|
{
|
|
|
|
unsigned tmp = v->sound->loop_end - v->tick;
|
|
|
|
to_fill = tmp>to_fill?to_fill:tmp;
|
|
|
|
}
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
// calculate voice volume and delta
|
|
|
|
if(c->flags & CHANNEL_POSITION_VOLUME)
|
|
|
|
{
|
|
|
|
float dx = v->x - center_x;
|
|
|
|
float dy = v->y - center_y;
|
|
|
|
float dist = dx*dx + dy*dy;
|
|
|
|
if(dist < volume_deadzone*volume_deadzone)
|
|
|
|
vol = master_vol * c->vol;
|
|
|
|
else
|
|
|
|
vol = master_vol * c->vol / ((dist - volume_deadzone*volume_deadzone)*volume_falloff); //TODO: use some fast 1/x^2
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vol = master_vol * c->vol * v->vol;
|
|
|
|
}
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
// calculate voice pan and delta
|
|
|
|
if(c->flags & CHANNEL_POSITION_PAN)
|
|
|
|
{
|
|
|
|
float dx = v->x - center_x;
|
|
|
|
if(fabs(dx) < pan_deadzone)
|
|
|
|
pan = master_pan + c->pan;
|
|
|
|
else
|
|
|
|
pan = master_pan + c->pan + sgn(dx)*(fabs(dx) - pan_deadzone)/pan_falloff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pan = master_pan + c->pan + v->pan;
|
|
|
|
}
|
2007-07-23 17:30:29 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
// fill the main buffer
|
|
|
|
if(v->sound->channels == 1)
|
|
|
|
fill_mono(&main_buffer[filled], to_fill, v, vol, pan);
|
|
|
|
else
|
|
|
|
fill_stereo(&main_buffer[filled], to_fill, v, vol, pan);
|
|
|
|
|
|
|
|
// reset tick of we hit loop point
|
|
|
|
if(v->loop >= 0 &&
|
|
|
|
v->sound->loop_start >= 0 &&
|
|
|
|
v->tick >= v->sound->loop_end)
|
|
|
|
v->tick = v->sound->loop_start;
|
|
|
|
|
|
|
|
// stop sample if nessecary
|
|
|
|
if(v->stop >= 0)
|
|
|
|
v->stop -= to_fill;
|
|
|
|
if(v->tick >= v->sound->num_samples || v->stop == 0)
|
|
|
|
{
|
2007-10-02 16:19:25 +00:00
|
|
|
struct voice *vn = v->next;
|
|
|
|
if(!locked)
|
|
|
|
{
|
|
|
|
lock_wait(sound_lock);
|
|
|
|
locked = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(v->next)
|
|
|
|
v->next->prev = v->prev;
|
2007-07-21 16:45:06 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(v->prev)
|
|
|
|
v->prev->next = v->next;
|
|
|
|
else
|
|
|
|
channels[cid].first_voice = v->next;
|
2007-07-21 16:45:06 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
dbg_msg("snd", "sound stopped");
|
2007-07-23 17:30:29 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
reset_voice(v);
|
2007-10-02 16:19:25 +00:00
|
|
|
step = 0;
|
|
|
|
v = vn;
|
2007-09-25 19:48:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
filled += to_fill;
|
|
|
|
}
|
2007-08-14 18:37:16 +00:00
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
if(step)
|
|
|
|
v = (struct voice*)v->next;
|
2007-08-14 18:37:16 +00:00
|
|
|
}
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
if(locked)
|
|
|
|
lock_release(sound_lock);
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
// clamp accumulated values
|
2007-08-22 07:52:33 +00:00
|
|
|
for(i = 0; i < frames; i++)
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
int j = i<<1;
|
|
|
|
int vl = main_buffer[j];
|
|
|
|
int vr = main_buffer[j+1];
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
out[j] = int2short(vl>>5);
|
|
|
|
out[j+1] = int2short(vr>>5);
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
static int pacallback(const void *in, void *out, unsigned long frames, const PaStreamCallbackTimeInfo* time, PaStreamCallbackFlags status, void *user)
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
mix(out, frames);
|
2007-08-22 07:52:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
static PaStream *stream;
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
int snd_init()
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-08-22 07:52:33 +00:00
|
|
|
PaStreamParameters params;
|
|
|
|
PaError err = Pa_Initialize();
|
|
|
|
params.device = Pa_GetDefaultOutputDevice();
|
2007-09-25 20:38:33 +00:00
|
|
|
if(params.device < 0)
|
|
|
|
return 1;
|
2007-08-22 07:52:33 +00:00
|
|
|
params.channelCount = 2;
|
|
|
|
params.sampleFormat = paInt16;
|
|
|
|
params.suggestedLatency = Pa_GetDeviceInfo(params.device)->defaultLowOutputLatency;
|
|
|
|
params.hostApiSpecificStreamInfo = 0x0;
|
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
sound_lock = lock_create();
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
err = Pa_OpenStream(
|
2007-09-25 19:48:52 +00:00
|
|
|
&stream, /* passes back stream pointer */
|
|
|
|
0, /* no input channels */
|
|
|
|
¶ms, /* pointer to parameters */
|
|
|
|
44100, /* sample rate */
|
|
|
|
128, /* frames per buffer */
|
|
|
|
paClipOff, /* no clamping */
|
|
|
|
pacallback, /* specify our custom callback */
|
|
|
|
0x0); /* pass our data through to callback */
|
2007-08-22 07:52:33 +00:00
|
|
|
err = Pa_StartStream(stream);
|
2007-09-25 19:48:52 +00:00
|
|
|
|
|
|
|
return 0;
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
int snd_shutdown()
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-08-22 07:52:33 +00:00
|
|
|
Pa_StopStream(stream);
|
2007-09-25 19:48:52 +00:00
|
|
|
Pa_Terminate();
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
lock_destroy(sound_lock);
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
return 0;
|
2007-07-21 17:03:27 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
void snd_set_center(int x, int y)
|
2007-07-21 17:03:27 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
center_x = x;
|
|
|
|
center_y = y;
|
2007-07-21 17:03:27 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
int snd_alloc_id()
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
unsigned sid;
|
|
|
|
for(sid = 0; sid < NUM_SOUNDS; sid++)
|
|
|
|
{
|
|
|
|
if(sounds[sid].data == 0x0)
|
|
|
|
{
|
|
|
|
return sid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-08-09 14:55:11 +00:00
|
|
|
static FILE *file = NULL;
|
|
|
|
|
|
|
|
static int read_data(void *buffer, int size)
|
|
|
|
{
|
|
|
|
return fread(buffer, 1, size, file);
|
|
|
|
}
|
|
|
|
|
|
|
|
int snd_load_wv(const char *filename)
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
struct sound *snd;
|
|
|
|
int sid = -1;
|
2007-08-09 14:55:11 +00:00
|
|
|
char error[100];
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
sid = snd_alloc_id();
|
|
|
|
if(sid < 0)
|
|
|
|
return -1;
|
|
|
|
snd = &sounds[sid];
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
file = fopen(filename, "rb"); // TODO: use system.h stuff for this
|
2007-08-09 14:55:11 +00:00
|
|
|
|
|
|
|
WavpackContext *context = WavpackOpenFileInput(read_data, error);
|
|
|
|
if (context)
|
|
|
|
{
|
|
|
|
int samples = WavpackGetNumSamples(context);
|
|
|
|
int bitspersample = WavpackGetBitsPerSample(context);
|
|
|
|
unsigned int samplerate = WavpackGetSampleRate(context);
|
|
|
|
int channels = WavpackGetNumChannels(context);
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
snd->channels = channels;
|
|
|
|
snd->rate = samplerate;
|
2007-08-09 14:55:11 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(snd->channels > 2)
|
2007-08-09 14:55:11 +00:00
|
|
|
{
|
|
|
|
dbg_msg("sound/wv", "file is not mono or stereo. filename='%s'", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(snd->rate != 44100)
|
2007-08-09 14:55:11 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
dbg_msg("sound/wv", "file is %d Hz, not 44100 Hz. filename='%s'", snd->rate, filename);
|
2007-08-09 14:55:11 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(bitspersample != 16)
|
|
|
|
{
|
|
|
|
dbg_msg("sound/wv", "bps is %d, not 16, filname='%s'", bitspersample, filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int *data = (int *)mem_alloc(4*samples*channels, 1);
|
|
|
|
WavpackUnpackSamples(context, data, samples); // TODO: check return value
|
|
|
|
int *src = data;
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
snd->data = (short *)mem_alloc(2*samples*channels, 1);
|
|
|
|
short *dst = snd->data;
|
2007-08-09 14:55:11 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < samples*channels; i++)
|
2007-08-09 14:55:11 +00:00
|
|
|
*dst++ = (short)*src++;
|
|
|
|
|
|
|
|
mem_free(data);
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
snd->num_samples = samples;
|
|
|
|
snd->loop_start = -1;
|
|
|
|
snd->loop_end = -1;
|
2007-08-09 14:55:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dbg_msg("sound/wv", "failed to open %s: %s", filename, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
file = NULL;
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(config.debug)
|
|
|
|
dbg_msg("sound/wv", "loaded %s", filename);
|
2007-08-09 14:55:11 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
return sid;
|
2007-08-09 14:55:11 +00:00
|
|
|
}
|
|
|
|
|
2007-05-22 15:03:32 +00:00
|
|
|
int snd_load_wav(const char *filename)
|
|
|
|
{
|
|
|
|
// open file for reading
|
2007-08-22 07:52:33 +00:00
|
|
|
IOHANDLE file;
|
|
|
|
file = io_open(filename, IOFLAG_READ);
|
|
|
|
if(!file)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
|
|
|
dbg_msg("sound/wav", "failed to open file. filename='%s'", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
struct sound *snd;
|
|
|
|
int sid = -1;
|
|
|
|
|
|
|
|
sid = snd_alloc_id();
|
|
|
|
if(sid < 0)
|
|
|
|
return -1;
|
|
|
|
snd = &sounds[sid];
|
|
|
|
|
2007-05-22 15:03:32 +00:00
|
|
|
int state = 0;
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
// read chunk header
|
|
|
|
unsigned char head[8];
|
2007-08-22 07:52:33 +00:00
|
|
|
if(io_read(file, head, sizeof(head)) != 8)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int chunk_size = head[4] | (head[5]<<8) | (head[6]<<16) | (head[7]<<24);
|
|
|
|
head[4] = 0;
|
|
|
|
|
|
|
|
if(state == 0)
|
|
|
|
{
|
|
|
|
// read the riff and wave headers
|
|
|
|
if(head[0] != 'R' || head[1] != 'I' || head[2] != 'F' || head[3] != 'F')
|
|
|
|
{
|
|
|
|
dbg_msg("sound/wav", "not a RIFF file. filename='%s'", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char type[4];
|
2007-08-22 07:52:33 +00:00
|
|
|
io_read(file, type, 4);
|
2007-05-22 15:03:32 +00:00
|
|
|
|
|
|
|
if(type[0] != 'W' || type[1] != 'A' || type[2] != 'V' || type[3] != 'E')
|
|
|
|
{
|
|
|
|
dbg_msg("sound/wav", "RIFF file is not a WAVE. filename='%s'", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
state++;
|
|
|
|
}
|
|
|
|
else if(state == 1)
|
|
|
|
{
|
|
|
|
// read the format chunk
|
|
|
|
if(head[0] == 'f' && head[1] == 'm' && head[2] == 't' && head[3] == ' ')
|
|
|
|
{
|
|
|
|
unsigned char fmt[16];
|
2007-08-22 07:52:33 +00:00
|
|
|
if(io_read(file, fmt, sizeof(fmt)) != sizeof(fmt))
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
|
|
|
dbg_msg("sound/wav", "failed to read format. filename='%s'", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode format
|
|
|
|
int compression_code = fmt[0] | (fmt[1]<<8);
|
2007-09-25 19:48:52 +00:00
|
|
|
snd->channels = fmt[2] | (fmt[3]<<8);
|
|
|
|
snd->rate = fmt[4] | (fmt[5]<<8) | (fmt[6]<<16) | (fmt[7]<<24);
|
2007-05-22 15:03:32 +00:00
|
|
|
|
|
|
|
if(compression_code != 1)
|
|
|
|
{
|
|
|
|
dbg_msg("sound/wav", "file is not uncompressed. filename='%s'", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(snd->channels > 2)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
|
|
|
dbg_msg("sound/wav", "file is not mono or stereo. filename='%s'", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(snd->rate != 44100)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
dbg_msg("sound/wav", "file is %d Hz, not 44100 Hz. filename='%s'", snd->rate, filename);
|
2007-05-22 15:03:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bps = fmt[14] | (fmt[15]<<8);
|
|
|
|
if(bps != 16)
|
|
|
|
{
|
|
|
|
dbg_msg("sound/wav", "bps is %d, not 16, filname='%s'", bps, filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// next state
|
|
|
|
state++;
|
|
|
|
}
|
|
|
|
else
|
2007-08-22 07:52:33 +00:00
|
|
|
io_skip(file, chunk_size);
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
else if(state == 2)
|
|
|
|
{
|
|
|
|
// read the data
|
|
|
|
if(head[0] == 'd' && head[1] == 'a' && head[2] == 't' && head[3] == 'a')
|
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
snd->data = (short*)mem_alloc(chunk_size, 1);
|
|
|
|
io_read(file, snd->data, chunk_size);
|
|
|
|
snd->num_samples = chunk_size/(2);
|
2007-07-14 15:57:40 +00:00
|
|
|
#if defined(CONF_ARCH_ENDIAN_BIG)
|
2007-09-25 19:48:52 +00:00
|
|
|
swap_endian(snd->data, sizeof(short), snd->num_samples);
|
2007-07-14 15:57:40 +00:00
|
|
|
#endif
|
2007-09-25 19:48:52 +00:00
|
|
|
snd->loop_start = -1;
|
|
|
|
snd->loop_end = -1;
|
2007-05-22 15:03:32 +00:00
|
|
|
state++;
|
|
|
|
}
|
|
|
|
else
|
2007-08-22 07:52:33 +00:00
|
|
|
io_skip(file, chunk_size);
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
else if(state == 3)
|
|
|
|
{
|
|
|
|
if(head[0] == 's' && head[1] == 'm' && head[2] == 'p' && head[3] == 'l')
|
|
|
|
{
|
2007-07-21 16:45:06 +00:00
|
|
|
unsigned char smpl[36];
|
|
|
|
unsigned char loop[24];
|
2007-08-14 18:37:16 +00:00
|
|
|
if(config.debug)
|
|
|
|
dbg_msg("sound/wav", "got sustain");
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
io_read(file, smpl, sizeof(smpl));
|
2007-07-21 16:45:06 +00:00
|
|
|
unsigned num_loops = (smpl[28] | (smpl[29]<<8) | (smpl[30]<<16) | (smpl[31]<<24));
|
|
|
|
unsigned skip = (smpl[32] | (smpl[33]<<8) | (smpl[34]<<16) | (smpl[35]<<24));
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-07-21 16:45:06 +00:00
|
|
|
if(num_loops > 0)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-08-22 07:52:33 +00:00
|
|
|
io_read(file, loop, sizeof(loop));
|
2007-07-21 16:45:06 +00:00
|
|
|
unsigned start = (loop[8] | (loop[9]<<8) | (loop[10]<<16) | (loop[11]<<24));
|
|
|
|
unsigned end = (loop[12] | (loop[13]<<8) | (loop[14]<<16) | (loop[15]<<24));
|
2007-09-25 19:48:52 +00:00
|
|
|
snd->loop_start = start * snd->channels;
|
|
|
|
snd->loop_end = end * snd->channels;
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-07-21 16:45:06 +00:00
|
|
|
if(num_loops > 1)
|
2007-08-22 07:52:33 +00:00
|
|
|
io_skip(file, (num_loops-1) * sizeof(loop));
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
io_skip(file, skip);
|
2007-05-22 15:03:32 +00:00
|
|
|
state++;
|
|
|
|
}
|
|
|
|
else
|
2007-08-22 07:52:33 +00:00
|
|
|
io_skip(file, chunk_size);
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
else
|
2007-08-22 07:52:33 +00:00
|
|
|
io_skip(file, chunk_size);
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
if(config.debug)
|
|
|
|
dbg_msg("sound/wav", "loaded %s", filename);
|
2007-05-22 15:03:32 +00:00
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
return sid;
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
int snd_play(int cid, int sid, int loop, float x, float y)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
int vid;
|
2007-10-02 16:19:25 +00:00
|
|
|
dbg_msg("snd", "try adding sound");
|
2007-09-25 19:48:52 +00:00
|
|
|
for(vid = 0; vid < NUM_VOICES; vid++)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
if(voices[vid].sound == 0x0)
|
|
|
|
{
|
|
|
|
voices[vid].tick = 0;
|
|
|
|
voices[vid].x = x;
|
|
|
|
voices[vid].y = y;
|
|
|
|
voices[vid].sound = &sounds[sid];
|
|
|
|
if(loop == SND_LOOP)
|
|
|
|
voices[vid].loop = voices[vid].sound->loop_end;
|
|
|
|
else
|
|
|
|
voices[vid].loop = -1;
|
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
lock_wait(sound_lock);
|
|
|
|
dbg_msg("snd", "sound added");
|
2007-09-25 19:48:52 +00:00
|
|
|
voices[vid].next = channels[cid].first_voice;
|
|
|
|
if(channels[cid].first_voice)
|
|
|
|
channels[cid].first_voice->prev = &voices[vid];
|
|
|
|
channels[cid].first_voice = &voices[vid];
|
2007-10-02 16:19:25 +00:00
|
|
|
lock_release(sound_lock);
|
2007-09-25 19:48:52 +00:00
|
|
|
return vid;
|
|
|
|
}
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
dbg_msg("snd", "failed");
|
2007-09-25 19:48:52 +00:00
|
|
|
return -1;
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
void snd_set_master_volume(float val)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
master_vol = val;
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
void snd_stop(int vid)
|
2007-05-22 15:03:32 +00:00
|
|
|
{
|
2007-09-25 19:48:52 +00:00
|
|
|
//TODO: lerp volume to 0
|
|
|
|
voices[vid].stop = 0;
|
2007-05-22 15:03:32 +00:00
|
|
|
}
|
2007-10-02 16:19:25 +00:00
|
|
|
|
|
|
|
void snd_set_listener_pos(float x, float y)
|
|
|
|
{
|
|
|
|
center_x = x;
|
|
|
|
center_y = y;
|
|
|
|
}
|