vgmstream/src/meta/maxis_xa.c

51 lines
1.5 KiB
C
Raw Normal View History

#include "meta.h"
#include "../util.h"
2017-07-08 10:28:08 +02:00
/* Maxis XA - found in Sim City 3000 (PC) */
VGMSTREAM * init_vgmstream_maxis_xa(STREAMFILE *streamFile) {
VGMSTREAM * vgmstream = NULL;
off_t start_offset;
2017-07-08 10:28:08 +02:00
int loop_flag, channel_count, i;
/* check extension, case insensitive */
2017-07-08 10:28:08 +02:00
if (!check_extensions(streamFile,"xa"))
goto fail;
/* check header */
2017-07-08 10:28:08 +02:00
if ((read_32bitBE(0x00,streamFile) != 0x58414900) && /* "XAI\0" */
(read_32bitBE(0x00,streamFile) != 0x58414A00)) /* "XAJ\0" (some odd song uses this, no apparent diffs) */
goto fail;
2017-07-08 10:28:08 +02:00
loop_flag = 0;
2017-07-08 10:28:08 +02:00
channel_count = read_16bitLE(0x0A,streamFile);
/* build the VGMSTREAM */
vgmstream = allocate_vgmstream(channel_count,loop_flag);
if (!vgmstream) goto fail;
start_offset = 0x18;
2017-07-08 10:28:08 +02:00
vgmstream->channels = channel_count;
vgmstream->sample_rate = read_32bitLE(0x0C,streamFile);
vgmstream->coding_type = coding_MAXIS_MT10;
vgmstream->num_samples = read_32bitLE(0x04,streamFile)/2/channel_count;
vgmstream->layout_type = layout_none;
vgmstream->meta_type = meta_MAXIS_XA;
2017-07-08 10:28:08 +02:00
/* open streams */
if (!vgmstream_open_stream(vgmstream,streamFile,start_offset))
goto fail;
/* fix channel offsets as needed by the codec (could be simplified) */
for (i = 0; i < channel_count; i++) {
vgmstream->ch[i].channel_start_offset = start_offset+i;
vgmstream->ch[i].offset = 0;
}
return vgmstream;
fail:
2017-07-08 10:28:08 +02:00
close_vgmstream(vgmstream);
return NULL;
}