2008-11-07 00:30:33 +01:00
|
|
|
#include "meta.h"
|
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
/* BGW (FF XI) */
|
|
|
|
VGMSTREAM * init_vgmstream_bgw(STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2013-05-27 05:55:50 +02:00
|
|
|
char filename[PATH_LIMIT];
|
2008-11-07 00:30:33 +01:00
|
|
|
off_t start_offset;
|
2008-11-07 02:26:25 +01:00
|
|
|
int32_t loop_start;
|
2008-11-07 00:30:33 +01:00
|
|
|
|
|
|
|
int loop_flag = 0;
|
|
|
|
int channel_count;
|
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
|
|
|
if (strcasecmp("bgw",filename_extension(filename))) goto fail;
|
|
|
|
|
|
|
|
/* "BGMStream" */
|
|
|
|
if (read_32bitBE(0,streamFile) != 0x42474d53 ||
|
|
|
|
read_32bitBE(4,streamFile) != 0x74726561 ||
|
2008-11-07 02:47:39 +01:00
|
|
|
read_32bitBE(8,streamFile) != 0x6d000000 ||
|
2008-11-07 00:30:33 +01:00
|
|
|
read_32bitBE(12,streamFile) != 0) goto fail;
|
|
|
|
|
|
|
|
/* check file size with header value */
|
|
|
|
if (read_32bitLE(0x10,streamFile) != get_streamfile_size(streamFile))
|
|
|
|
goto fail;
|
|
|
|
|
2008-11-07 02:47:39 +01:00
|
|
|
channel_count = read_8bit(0x2e,streamFile);
|
2008-11-07 02:26:25 +01:00
|
|
|
loop_start = read_32bitLE(0x1c,streamFile);
|
|
|
|
loop_flag = (loop_start > 0);
|
2008-11-07 00:30:33 +01:00
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
2008-11-07 02:47:39 +01:00
|
|
|
start_offset = read_32bitLE(0x28,streamFile);
|
2008-11-07 00:30:33 +01:00
|
|
|
vgmstream->channels = channel_count;
|
|
|
|
vgmstream->sample_rate = 44100;
|
|
|
|
vgmstream->coding_type = coding_FFXI;
|
|
|
|
vgmstream->num_samples = read_32bitLE(0x18,streamFile)*16;
|
|
|
|
if (loop_flag) {
|
2008-11-07 02:26:25 +01:00
|
|
|
vgmstream->loop_start_sample = (loop_start-1)*16;
|
2008-11-07 00:30:33 +01:00
|
|
|
vgmstream->loop_end_sample = vgmstream->num_samples;
|
|
|
|
}
|
|
|
|
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 9;
|
|
|
|
vgmstream->meta_type = meta_FFXI_BGW;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
vgmstream->ch[i].channel_start_offset=
|
|
|
|
vgmstream->ch[i].offset=start_offset+i*9;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
/* clean up anything we may have opened */
|
|
|
|
fail:
|
|
|
|
if (vgmstream) close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-11-07 02:47:39 +01:00
|
|
|
|
|
|
|
/* .spw (SEWave, PlayOnline viewer for FFXI), very similar to bgw */
|
|
|
|
VGMSTREAM * init_vgmstream_spw(STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2013-05-27 05:55:50 +02:00
|
|
|
char filename[PATH_LIMIT];
|
2008-11-07 02:47:39 +01:00
|
|
|
off_t start_offset;
|
|
|
|
|
|
|
|
int loop_flag = 0;
|
|
|
|
int32_t loop_start;
|
|
|
|
int channel_count;
|
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
|
|
|
if (strcasecmp("spw",filename_extension(filename))) goto fail;
|
|
|
|
|
|
|
|
/* "SeWave" */
|
|
|
|
if (read_32bitBE(0,streamFile) != 0x53655761 ||
|
|
|
|
read_32bitBE(4,streamFile) != 0x76650000) goto fail;
|
|
|
|
|
|
|
|
/* check file size with header value */
|
|
|
|
if (read_32bitLE(0x8,streamFile) != get_streamfile_size(streamFile))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
channel_count = read_8bit(0x2a,streamFile);
|
|
|
|
loop_start = read_32bitLE(0x18,streamFile);
|
|
|
|
loop_flag = (loop_start > 0);
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
|
|
|
start_offset = read_32bitLE(0x24,streamFile);
|
|
|
|
vgmstream->channels = channel_count;
|
|
|
|
vgmstream->sample_rate = 44100;
|
|
|
|
vgmstream->coding_type = coding_FFXI;
|
|
|
|
vgmstream->num_samples = read_32bitLE(0x14,streamFile)*16;
|
|
|
|
if (loop_flag) {
|
|
|
|
vgmstream->loop_start_sample = (loop_start-1)*16;
|
|
|
|
vgmstream->loop_end_sample = vgmstream->num_samples;
|
|
|
|
}
|
|
|
|
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 9;
|
|
|
|
vgmstream->meta_type = meta_FFXI_SPW;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
vgmstream->ch[i].channel_start_offset=
|
|
|
|
vgmstream->ch[i].offset=start_offset+i*9;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
/* clean up anything we may have opened */
|
|
|
|
fail:
|
|
|
|
if (vgmstream) close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|