2008-07-14 13:02:39 +02:00
|
|
|
#include "meta.h"
|
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
/* RSD (Crash Bandicot games, possibly more) */
|
|
|
|
VGMSTREAM * init_vgmstream_rsd(STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
|
|
|
char filename[260];
|
|
|
|
off_t start_offset;
|
|
|
|
|
|
|
|
coding_t coding_type;
|
|
|
|
|
2008-10-17 22:35:24 +02:00
|
|
|
int j;
|
2008-07-29 15:07:10 +02:00
|
|
|
int loop_flag=0;
|
2008-07-14 13:02:39 +02:00
|
|
|
int channel_count;
|
|
|
|
int rsd_ident;
|
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
|
|
|
if (strcasecmp("rsd",filename_extension(filename))) goto fail;
|
|
|
|
|
|
|
|
|
|
|
|
/* check header */
|
2008-08-10 00:38:44 +02:00
|
|
|
if (read_32bitBE(0x0,streamFile) != 0x52534432 && /* RSD2 */
|
|
|
|
read_32bitBE(0x0,streamFile) != 0x52534434 && /* RSD4 */
|
|
|
|
read_32bitBE(0x0,streamFile) != 0x52534436) /* RSD6 */
|
2008-07-14 13:02:39 +02:00
|
|
|
goto fail;
|
|
|
|
|
2008-07-29 15:07:10 +02:00
|
|
|
loop_flag = 0; /* (read_32bitLE(checkZERO-0x4,streamFile)!=0); */
|
2008-07-18 21:40:14 +02:00
|
|
|
channel_count = (read_32bitLE(0x8,streamFile));
|
2008-07-14 13:02:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
|
|
|
|
rsd_ident = read_32bitBE(0x4,streamFile);
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
|
|
|
|
|
|
|
switch (rsd_ident) {
|
|
|
|
case 0x56414720: /* RSD4VAG & RSD6VAG */
|
2008-07-29 15:07:10 +02:00
|
|
|
start_offset = 0x800;
|
2008-07-14 13:02:39 +02:00
|
|
|
coding_type = coding_PSX;
|
|
|
|
vgmstream->interleave_block_size = read_32bitLE(0x0C,streamFile);
|
2008-07-29 15:07:10 +02:00
|
|
|
vgmstream->num_samples = (get_streamfile_size(streamFile)-start_offset)*28/16/channel_count;
|
2008-07-14 13:02:39 +02:00
|
|
|
if (loop_flag) {
|
2008-08-10 00:38:44 +02:00
|
|
|
vgmstream->loop_start_sample = 0;
|
2008-07-29 15:07:10 +02:00
|
|
|
vgmstream->loop_end_sample = (get_streamfile_size(streamFile)-start_offset)*28/16/channel_count;
|
2008-07-14 13:02:39 +02:00
|
|
|
}
|
|
|
|
break;
|
2008-07-25 19:49:09 +02:00
|
|
|
|
2008-07-14 13:02:39 +02:00
|
|
|
case 0x50434D20: /* RSD4PCM */
|
2008-07-29 15:07:10 +02:00
|
|
|
start_offset = 0x800;
|
2008-07-14 13:02:39 +02:00
|
|
|
coding_type = coding_PCM16LE;
|
|
|
|
vgmstream->interleave_block_size = 0x2;
|
2008-07-29 15:07:10 +02:00
|
|
|
vgmstream->num_samples = (get_streamfile_size(streamFile)-start_offset)/2/channel_count;
|
2008-07-14 13:02:39 +02:00
|
|
|
if (loop_flag) {
|
2008-08-10 00:38:44 +02:00
|
|
|
vgmstream->loop_start_sample = 0;
|
2008-07-29 15:07:10 +02:00
|
|
|
vgmstream->loop_end_sample = (get_streamfile_size(streamFile)-start_offset)/2/channel_count;
|
2008-07-14 13:02:39 +02:00
|
|
|
}
|
|
|
|
break;
|
2008-07-25 19:49:09 +02:00
|
|
|
|
2008-07-29 15:07:10 +02:00
|
|
|
case 0x52414450: /* RSD4RADP */
|
|
|
|
start_offset = 0x800;
|
|
|
|
coding_type = coding_NGC_DTK; /* or DSP??? */
|
|
|
|
vgmstream->interleave_block_size = 0x10;
|
|
|
|
vgmstream->num_samples = (get_streamfile_size(streamFile)-start_offset)/2/channel_count;
|
|
|
|
if (loop_flag) {
|
2008-08-10 00:38:44 +02:00
|
|
|
vgmstream->loop_start_sample = 0;
|
2008-07-29 15:07:10 +02:00
|
|
|
vgmstream->loop_end_sample = (get_streamfile_size(streamFile)-start_offset)/2/channel_count;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x50434D42: /* RSD4PCMB */
|
|
|
|
start_offset = 0x80;
|
|
|
|
coding_type = coding_PCM16BE;
|
|
|
|
vgmstream->interleave_block_size = 0x2;
|
|
|
|
vgmstream->num_samples = (get_streamfile_size(streamFile)-start_offset)/2/channel_count;
|
|
|
|
if (loop_flag) {
|
2008-08-10 00:38:44 +02:00
|
|
|
vgmstream->loop_start_sample = 0;
|
2008-07-29 15:07:10 +02:00
|
|
|
vgmstream->loop_end_sample = (get_streamfile_size(streamFile)-start_offset)/2/channel_count;
|
2008-10-17 22:35:24 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x57414450: /* RSD2WADP */
|
|
|
|
start_offset = 0x800;
|
|
|
|
coding_type = coding_NGC_DSP;
|
|
|
|
vgmstream->interleave_block_size = read_32bitLE(0xC,streamFile);
|
|
|
|
vgmstream->num_samples = (get_streamfile_size(streamFile)-start_offset);
|
|
|
|
|
|
|
|
|
|
|
|
if (loop_flag) {
|
|
|
|
vgmstream->loop_start_sample = 0;
|
|
|
|
vgmstream->loop_end_sample = (get_streamfile_size(streamFile)-start_offset)*64/36/channel_count;
|
2008-07-29 15:07:10 +02:00
|
|
|
}
|
|
|
|
break;
|
2008-08-10 00:38:44 +02:00
|
|
|
case 0x58414450: /* RSD2XADP */
|
|
|
|
start_offset = 0x40;
|
|
|
|
coding_type = coding_XBOX;
|
|
|
|
vgmstream->num_samples = (get_streamfile_size(streamFile)-start_offset)*64/36/channel_count;
|
|
|
|
|
2008-07-29 15:07:10 +02:00
|
|
|
|
2008-08-10 00:38:44 +02:00
|
|
|
if (loop_flag) {
|
|
|
|
vgmstream->loop_start_sample = 0;
|
|
|
|
vgmstream->loop_end_sample = (get_streamfile_size(streamFile)-start_offset)*64/36/channel_count;
|
|
|
|
}
|
|
|
|
break;
|
2008-07-29 15:07:10 +02:00
|
|
|
|
2008-08-10 00:38:44 +02:00
|
|
|
#if 0
|
2008-07-25 19:49:09 +02:00
|
|
|
case 0x584D4120: /* RSD6XMA */
|
2008-08-10 00:38:44 +02:00
|
|
|
goto fail;
|
2008-07-25 19:49:09 +02:00
|
|
|
default:
|
2008-07-14 13:02:39 +02:00
|
|
|
goto fail;
|
2008-08-10 00:38:44 +02:00
|
|
|
#endif
|
2008-07-25 19:49:09 +02:00
|
|
|
|
2008-07-14 13:02:39 +02:00
|
|
|
}
|
2008-07-25 19:49:09 +02:00
|
|
|
|
|
|
|
|
2008-07-14 13:02:39 +02:00
|
|
|
vgmstream->channels = channel_count;
|
2008-07-25 19:49:09 +02:00
|
|
|
vgmstream->sample_rate = (uint16_t)read_16bitLE(0x10,streamFile);
|
2008-07-14 13:02:39 +02:00
|
|
|
vgmstream->coding_type = coding_type;
|
|
|
|
|
2008-07-29 15:07:10 +02:00
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->meta_type = meta_RSD;
|
|
|
|
|
2008-07-14 13:02:39 +02:00
|
|
|
|
2008-10-17 22:35:24 +02:00
|
|
|
if (vgmstream->coding_type == coding_NGC_DSP) {
|
|
|
|
int i;
|
|
|
|
for (i=0;i<16;i++) {
|
|
|
|
vgmstream->ch[0].adpcm_coef[i] = read_16bitBE(0x1A4+i*2,streamFile);
|
|
|
|
}
|
|
|
|
if (vgmstream->channels) {
|
|
|
|
for (i=0;i<16;i++) {
|
|
|
|
vgmstream->ch[1].adpcm_coef[i] = read_16bitBE(0x1CC+i*2,streamFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-08-10 00:38:44 +02:00
|
|
|
|
2008-07-14 13:02:39 +02:00
|
|
|
/* open the file for reading */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
STREAMFILE * file;
|
|
|
|
file = streamFile->open(streamFile,filename,STREAMFILE_DEFAULT_BUFFER_SIZE);
|
|
|
|
if (!file) goto fail;
|
|
|
|
for (i=0;i<channel_count;i++) {
|
|
|
|
vgmstream->ch[i].streamfile = file;
|
|
|
|
|
2008-10-17 22:35:24 +02:00
|
|
|
|
|
|
|
if (vgmstream->coding_type == coding_XBOX) {
|
2008-08-10 22:08:03 +02:00
|
|
|
vgmstream->layout_type=layout_none;
|
2008-08-10 00:38:44 +02:00
|
|
|
vgmstream->ch[i].channel_start_offset=start_offset;
|
|
|
|
} else {
|
|
|
|
vgmstream->ch[i].channel_start_offset=
|
|
|
|
start_offset+vgmstream->interleave_block_size*i;
|
|
|
|
}
|
|
|
|
vgmstream->ch[i].offset = vgmstream->ch[i].channel_start_offset;
|
2008-07-14 13:02:39 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
/* clean up anything we may have opened */
|
|
|
|
fail:
|
|
|
|
if (vgmstream) close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-10 00:38:44 +02:00
|
|
|
|