2008-05-06 05:35:37 +02:00
|
|
|
#include "meta.h"
|
2008-05-06 06:01:05 +02:00
|
|
|
#include "../coding/coding.h"
|
2008-05-06 03:01:06 +02:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
/* RWSD is quite similar to BRSTM, but can contain several streams.
|
2008-05-06 04:58:29 +02:00
|
|
|
* Still, some games use it for single streams. We only support the
|
2008-05-06 03:01:06 +02:00
|
|
|
* single stream form here */
|
2008-05-20 17:18:38 +02:00
|
|
|
VGMSTREAM * init_vgmstream_rwsd(STREAMFILE *streamFile) {
|
2008-05-06 03:01:06 +02:00
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2008-05-20 17:18:38 +02:00
|
|
|
char filename[260];
|
2008-05-06 03:01:06 +02:00
|
|
|
|
|
|
|
coding_t coding_type;
|
|
|
|
|
2008-05-06 04:58:29 +02:00
|
|
|
off_t wave_offset;
|
|
|
|
size_t wave_length;
|
2008-05-06 03:01:06 +02:00
|
|
|
int codec_number;
|
|
|
|
int channel_count;
|
|
|
|
int loop_flag;
|
|
|
|
|
|
|
|
off_t start_offset;
|
2008-05-06 04:58:29 +02:00
|
|
|
size_t stream_size;
|
2008-05-06 03:01:06 +02:00
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
2008-05-20 17:18:38 +02:00
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
2008-05-06 04:58:29 +02:00
|
|
|
if (strcasecmp("rwsd",filename_extension(filename))) goto fail;
|
2008-05-06 03:01:06 +02:00
|
|
|
|
|
|
|
/* check header */
|
2008-05-20 17:18:38 +02:00
|
|
|
if ((uint32_t)read_32bitBE(0,streamFile)!=0x52575344 || /* "RWSD" */
|
|
|
|
(uint32_t)read_32bitBE(4,streamFile)!=0xFEFF0102)
|
2008-05-06 03:01:06 +02:00
|
|
|
goto fail;
|
|
|
|
|
2008-05-06 04:58:29 +02:00
|
|
|
/* ideally we would look through the chunk list for a WAVE chunk,
|
|
|
|
* but it's always in the same order */
|
|
|
|
/* get WAVE offset, check */
|
2008-05-20 17:18:38 +02:00
|
|
|
wave_offset = read_32bitBE(0x18,streamFile);
|
|
|
|
if ((uint32_t)read_32bitBE(wave_offset,streamFile)!=0x57415645) /* "WAVE" */
|
2008-05-06 03:01:06 +02:00
|
|
|
goto fail;
|
2008-05-06 04:58:29 +02:00
|
|
|
/* get WAVE size, check */
|
2008-05-20 17:18:38 +02:00
|
|
|
wave_length = read_32bitBE(0x1c,streamFile);
|
|
|
|
if (read_32bitBE(wave_offset+4,streamFile)!=wave_length)
|
2008-05-06 04:58:29 +02:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* check wave count */
|
2008-05-20 17:18:38 +02:00
|
|
|
if (read_32bitBE(wave_offset+8,streamFile) != 1)
|
2008-05-06 04:58:29 +02:00
|
|
|
goto fail; /* only support 1 */
|
2008-05-06 03:01:06 +02:00
|
|
|
|
2008-05-06 04:58:29 +02:00
|
|
|
/* get type details */
|
2008-05-20 17:18:38 +02:00
|
|
|
codec_number = read_8bit(wave_offset+0x10,streamFile);
|
|
|
|
loop_flag = read_8bit(wave_offset+0x11,streamFile);
|
|
|
|
channel_count = read_8bit(wave_offset+0x12,streamFile);
|
2008-05-06 03:01:06 +02:00
|
|
|
|
|
|
|
switch (codec_number) {
|
|
|
|
case 0:
|
|
|
|
coding_type = coding_PCM8;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
coding_type = coding_PCM16BE;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
coding_type = coding_NGC_DSP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (channel_count < 1) goto fail;
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->num_samples = dsp_nibbles_to_samples(read_32bitBE(wave_offset+0x1c,streamFile));
|
|
|
|
vgmstream->sample_rate = (uint16_t)read_16bitBE(wave_offset+0x14,streamFile);
|
2008-05-06 03:01:06 +02:00
|
|
|
/* channels and loop flag are set by allocate_vgmstream */
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->loop_start_sample = dsp_nibbles_to_samples(read_32bitBE(wave_offset+0x18,streamFile));
|
2008-05-06 03:01:06 +02:00
|
|
|
vgmstream->loop_end_sample = vgmstream->num_samples;
|
|
|
|
|
|
|
|
vgmstream->coding_type = coding_type;
|
2008-05-06 04:58:29 +02:00
|
|
|
vgmstream->layout_type = layout_none;
|
2008-05-06 03:01:06 +02:00
|
|
|
|
2008-05-06 04:58:29 +02:00
|
|
|
vgmstream->meta_type = meta_RWSD;
|
2008-05-06 03:01:06 +02:00
|
|
|
|
|
|
|
if (vgmstream->coding_type == coding_NGC_DSP) {
|
|
|
|
off_t coef_offset;
|
|
|
|
int i,j;
|
|
|
|
|
2008-05-06 04:58:29 +02:00
|
|
|
coef_offset=0x6c;
|
2008-05-06 03:01:06 +02:00
|
|
|
|
|
|
|
for (j=0;j<vgmstream->channels;j++) {
|
|
|
|
for (i=0;i<16;i++) {
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->ch[j].adpcm_coef[i]=read_16bitBE(wave_offset+coef_offset+j*0x30+i*2,streamFile);
|
2008-05-06 03:01:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
start_offset = read_32bitBE(8,streamFile);
|
|
|
|
stream_size = read_32bitBE(wave_offset+0x50,streamFile);
|
2008-05-06 03:01:06 +02:00
|
|
|
|
|
|
|
/* open the file for reading by each channel */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i=0;i<channel_count;i++) {
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->ch[i].streamfile = streamFile->open(streamFile,filename,
|
2008-05-06 03:01:06 +02:00
|
|
|
0x1000);
|
|
|
|
|
|
|
|
if (!vgmstream->ch[i].streamfile) goto fail;
|
|
|
|
|
|
|
|
vgmstream->ch[i].channel_start_offset=
|
|
|
|
vgmstream->ch[i].offset=
|
2008-05-06 04:58:29 +02:00
|
|
|
start_offset + i*stream_size;
|
2008-05-06 03:01:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
/* clean up anything we may have opened */
|
|
|
|
fail:
|
|
|
|
if (vgmstream) close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|