2017-11-05 17:06:40 +01:00
|
|
|
#include "meta.h"
|
|
|
|
#include "../coding/coding.h"
|
|
|
|
|
|
|
|
|
2018-12-17 08:05:45 +01:00
|
|
|
typedef enum { UBI_ADPCM, RAW_PCM, RAW_PSX, RAW_DSP, RAW_XBOX, FMT_VAG, FMT_AT3, RAW_XMA1, FMT_OGG } ubi_sb_codec;
|
|
|
|
typedef enum { UBI_PC, UBI_PS2, UBI_XBOX, UBI_GC, UBI_X360, UBI_3DS, UBI_PS3, UBI_WII, UBI_PSP } ubi_sb_platform;
|
2017-11-05 17:06:40 +01:00
|
|
|
typedef struct {
|
2018-12-17 08:05:45 +01:00
|
|
|
ubi_sb_platform platform;
|
2017-11-05 17:06:40 +01:00
|
|
|
int big_endian;
|
|
|
|
int total_streams;
|
|
|
|
int is_external;
|
|
|
|
int autodetect_external;
|
|
|
|
ubi_sb_codec codec;
|
|
|
|
|
|
|
|
/* main/fixed info */
|
|
|
|
uint32_t version;
|
|
|
|
size_t section1_num;
|
|
|
|
size_t section2_num;
|
|
|
|
size_t section3_num;
|
|
|
|
size_t extra_size;
|
|
|
|
int flag1;
|
|
|
|
int flag2;
|
|
|
|
|
|
|
|
/* stream info config (format varies slightly per game) */
|
|
|
|
size_t section1_entry_size;
|
|
|
|
size_t section2_entry_size;
|
|
|
|
size_t section3_entry_size;
|
|
|
|
off_t external_flag_offset;
|
2018-12-17 08:05:45 +01:00
|
|
|
off_t samples_flag_offset;
|
2017-11-05 17:06:40 +01:00
|
|
|
off_t num_samples_offset;
|
2018-12-17 08:05:45 +01:00
|
|
|
off_t num_samples_offset2;
|
2017-11-05 17:06:40 +01:00
|
|
|
off_t sample_rate_offset;
|
|
|
|
off_t channels_offset;
|
|
|
|
off_t stream_type_offset;
|
|
|
|
off_t stream_name_offset;
|
|
|
|
off_t extra_name_offset;
|
|
|
|
size_t stream_name_size;
|
2018-12-17 08:05:45 +01:00
|
|
|
off_t stream_id_offset;
|
|
|
|
off_t xma_pointer_offset;
|
2017-11-05 17:06:40 +01:00
|
|
|
int has_short_channels;
|
|
|
|
int has_internal_names;
|
2017-11-11 15:56:29 +01:00
|
|
|
int has_extra_name_flag;
|
|
|
|
int has_rotating_ids;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
/* derived */
|
|
|
|
size_t main_size;
|
|
|
|
size_t section1_size;
|
|
|
|
size_t section2_size;
|
|
|
|
size_t section3_size;
|
|
|
|
|
|
|
|
/* stream info */
|
|
|
|
uint32_t header_id;
|
|
|
|
uint32_t header_type;
|
|
|
|
size_t stream_size;
|
|
|
|
off_t extra_offset;
|
|
|
|
off_t stream_offset;
|
|
|
|
uint32_t stream_id;
|
2018-12-17 08:05:45 +01:00
|
|
|
off_t xma_header_offset;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
int stream_samples; /* usually only for external resources */
|
|
|
|
int sample_rate;
|
|
|
|
int channels;
|
|
|
|
uint32_t stream_type;
|
|
|
|
char stream_name[255];
|
|
|
|
|
|
|
|
|
|
|
|
} ubi_sb_header;
|
|
|
|
|
|
|
|
static int parse_sb_header(ubi_sb_header * sb, STREAMFILE *streamFile);
|
|
|
|
static int config_sb_header_version(ubi_sb_header * sb, STREAMFILE *streamFile);
|
|
|
|
|
|
|
|
|
|
|
|
/* .SBx - banks from Ubisoft's sound engine ("DARE" / "UbiSound Driver") games in ~2000-2008 */
|
|
|
|
VGMSTREAM * init_vgmstream_ubi_sb(STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
|
|
|
STREAMFILE *streamData = NULL;
|
|
|
|
off_t start_offset;
|
|
|
|
int loop_flag = 0;
|
|
|
|
ubi_sb_header sb = {0};
|
|
|
|
|
|
|
|
/* check extension (number represents the platform, see later) */
|
|
|
|
if ( !check_extensions(streamFile,"sb0,sb1,sb2,sb3,sb4,sb5,sb6,sb7") )
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
|
|
/* .sb0 (sound bank) is a small multisong format (loaded in memory?) that contains SFX data
|
|
|
|
* but can also reference .ss0/ls0 (sound stream) external files for longer streams.
|
|
|
|
* A companion .sp0 (sound project) describes files and if it uses BANKs (.sb0) or MAPs (.sm0). */
|
|
|
|
|
|
|
|
/* main parse */
|
|
|
|
if ( !parse_sb_header(&sb, streamFile) )
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
|
|
/* open external stream if needed */
|
|
|
|
if (sb.autodetect_external) { /* works most of the time but could give false positives */
|
|
|
|
VGM_LOG("UBI SB: autodetecting external stream '%s'\n", sb.stream_name);
|
|
|
|
|
2018-03-29 22:34:21 +02:00
|
|
|
streamData = open_streamfile_by_filename(streamFile,sb.stream_name);
|
2017-11-05 17:06:40 +01:00
|
|
|
if (!streamData) {
|
|
|
|
streamData = streamFile; /* assume internal */
|
|
|
|
if (sb.stream_size > get_streamfile_size(streamData)) {
|
|
|
|
VGM_LOG("UBI SB: expected external stream\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sb.is_external = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (sb.is_external) {
|
2018-03-29 22:34:21 +02:00
|
|
|
streamData = open_streamfile_by_filename(streamFile,sb.stream_name);
|
2017-11-05 17:06:40 +01:00
|
|
|
if (!streamData) {
|
|
|
|
VGM_LOG("UBI SB: external stream '%s' not found\n", sb.stream_name);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
streamData = streamFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* final offset */
|
|
|
|
if (sb.is_external) {
|
|
|
|
start_offset = sb.stream_offset;
|
|
|
|
} else {
|
|
|
|
start_offset = sb.main_size + sb.section1_size + sb.section2_size + sb.extra_size + sb.section3_size;
|
|
|
|
start_offset += sb.stream_offset;
|
|
|
|
}
|
2018-02-17 02:07:43 +01:00
|
|
|
//;VGM_LOG("start offset=%lx, external=%i\n", start_offset, sb.is_external);
|
2017-11-11 15:56:29 +01:00
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(sb.channels,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
vgmstream->sample_rate = sb.sample_rate;
|
|
|
|
vgmstream->num_streams = sb.total_streams;
|
2018-01-28 00:41:25 +01:00
|
|
|
vgmstream->stream_size = sb.stream_size;
|
2017-11-05 17:06:40 +01:00
|
|
|
vgmstream->meta_type = meta_UBI_SB;
|
|
|
|
|
|
|
|
|
|
|
|
switch(sb.codec) {
|
2017-11-11 15:56:29 +01:00
|
|
|
case UBI_ADPCM: {
|
2017-11-05 17:06:40 +01:00
|
|
|
vgmstream->coding_type = coding_UBI_IMA;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
vgmstream->num_samples = ubi_ima_bytes_to_samples(sb.stream_size, sb.channels, streamData, start_offset);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case RAW_PCM:
|
2017-11-11 17:46:18 +01:00
|
|
|
vgmstream->coding_type = coding_PCM16LE; /* always LE even on Wii */
|
2017-11-05 17:06:40 +01:00
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 0x02;
|
|
|
|
vgmstream->num_samples = pcm_bytes_to_samples(sb.stream_size, sb.channels, 16);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RAW_PSX:
|
|
|
|
vgmstream->coding_type = coding_PSX;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = sb.stream_size / sb.channels;
|
|
|
|
vgmstream->num_samples = ps_bytes_to_samples(sb.stream_size, sb.channels) ;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RAW_XBOX:
|
2018-02-17 12:30:14 +01:00
|
|
|
vgmstream->coding_type = coding_XBOX_IMA;
|
2017-11-05 17:06:40 +01:00
|
|
|
vgmstream->layout_type = layout_none;
|
2018-02-17 12:30:14 +01:00
|
|
|
vgmstream->num_samples = xbox_ima_bytes_to_samples(sb.stream_size, sb.channels);
|
2017-11-05 17:06:40 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RAW_DSP:
|
|
|
|
vgmstream->coding_type = coding_NGC_DSP;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = sb.stream_size / sb.channels;
|
|
|
|
vgmstream->num_samples = dsp_bytes_to_samples(sb.stream_size, sb.channels);
|
|
|
|
|
|
|
|
{
|
|
|
|
off_t coefs_offset = sb.main_size + sb.section1_size + sb.section2_size + sb.extra_offset;
|
|
|
|
coefs_offset += 0x10; /* entry size is 0x40 (first/last 0x10 = unknown), per channel */
|
|
|
|
|
|
|
|
dsp_read_coefs_be(vgmstream,streamFile,coefs_offset, 0x40);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FMT_VAG:
|
|
|
|
/* skip VAG header (some sb4 use VAG and others raw PSX) */
|
|
|
|
if (read_32bitBE(start_offset, streamData) == 0x56414770) { /* "VAGp" */
|
|
|
|
start_offset += 0x30;
|
|
|
|
sb.stream_size -= 0x30;
|
|
|
|
}
|
|
|
|
|
|
|
|
vgmstream->coding_type = coding_PSX;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = sb.stream_size / sb.channels;
|
2017-11-11 15:56:29 +01:00
|
|
|
vgmstream->num_samples = ps_bytes_to_samples(sb.stream_size, sb.channels);
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
#ifdef VGM_USE_FFMPEG
|
|
|
|
case FMT_AT3: {
|
|
|
|
ffmpeg_codec_data *ffmpeg_data;
|
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
/* skip weird value (3, 4) in Brothers in Arms: D-Day (PSP) */
|
|
|
|
if (read_32bitBE(start_offset+0x04,streamData) == 0x52494646) {
|
|
|
|
start_offset += 0x04;
|
|
|
|
sb.stream_size -= 0x04;
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
ffmpeg_data = init_ffmpeg_offset(streamData, start_offset, sb.stream_size);
|
|
|
|
if ( !ffmpeg_data ) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
|
|
|
|
if (sb.stream_samples == 0) /* sometimes not known */
|
|
|
|
sb.stream_samples = ffmpeg_data->totalSamples;
|
|
|
|
vgmstream->num_samples = sb.stream_samples;
|
|
|
|
if (sb.stream_samples != ffmpeg_data->totalSamples) {
|
|
|
|
VGM_LOG("UBI SB: header samples differ (%i vs %i)\n", sb.stream_samples, (size_t)ffmpeg_data->totalSamples);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2018-08-14 16:35:17 +02:00
|
|
|
if (ffmpeg_data->skipSamples <= 0) /* in case FFmpeg didn't get them */
|
|
|
|
ffmpeg_set_skip_samples(ffmpeg_data, riff_get_fact_skip_samples(streamData, start_offset));
|
2017-11-05 17:06:40 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-17 08:05:45 +01:00
|
|
|
case RAW_XMA1: {
|
|
|
|
ffmpeg_codec_data *ffmpeg_data;
|
|
|
|
uint8_t buf[0x100];
|
|
|
|
size_t bytes;
|
|
|
|
off_t header_offset;
|
|
|
|
|
|
|
|
header_offset = sb.main_size + sb.section1_size + sb.section2_size + sb.xma_header_offset;
|
|
|
|
bytes = ffmpeg_make_riff_xma_from_fmt_chunk(buf, 0x100, header_offset, 0x20, sb.stream_size, streamFile, 1);
|
|
|
|
|
|
|
|
ffmpeg_data = init_ffmpeg_header_offset(streamData, buf, bytes, start_offset, sb.stream_size);
|
|
|
|
if (!ffmpeg_data) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
vgmstream->num_samples = sb.stream_samples;
|
|
|
|
VGM_ASSERT(sb.stream_samples != ffmpeg_data->totalSamples, "UBI SB: header samples differ\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
case FMT_OGG: {
|
|
|
|
ffmpeg_codec_data *ffmpeg_data;
|
|
|
|
|
|
|
|
ffmpeg_data = init_ffmpeg_offset(streamData, start_offset, sb.stream_size);
|
|
|
|
if ( !ffmpeg_data ) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
|
|
|
|
vgmstream->num_samples = sb.stream_samples; /* ffmpeg_data->totalSamples */
|
|
|
|
VGM_ASSERT(sb.stream_samples != ffmpeg_data->totalSamples, "UBI SB: header samples differ\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown codec\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sb.has_internal_names || sb.is_external) {
|
|
|
|
strcpy(vgmstream->stream_name, sb.stream_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* open the file for reading (can be an external stream, different from the current .sb0) */
|
|
|
|
if ( !vgmstream_open_stream(vgmstream, streamData, start_offset) )
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (sb.is_external && streamData) close_streamfile(streamData);
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (sb.is_external && streamData) close_streamfile(streamData);
|
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int parse_sb_header(ubi_sb_header * sb, STREAMFILE *streamFile) {
|
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = NULL;
|
|
|
|
int16_t (*read_16bit)(off_t,STREAMFILE*) = NULL;
|
2017-11-11 15:56:29 +01:00
|
|
|
int i, ok, current_type = -1, current_id = -1;
|
2017-11-05 17:06:40 +01:00
|
|
|
int target_stream = streamFile->stream_index;
|
|
|
|
|
|
|
|
if (target_stream == 0) target_stream = 1;
|
|
|
|
|
2018-12-17 08:05:45 +01:00
|
|
|
/* sigh... PSP hijacks not one but *two* platform indexes */
|
|
|
|
/* please add any PSP game versions under sb4 and sb5 sections so we can properly identify platform */
|
|
|
|
sb->version = read_32bitLE(0x00, streamFile);
|
|
|
|
|
2018-12-17 12:01:00 +01:00
|
|
|
if (check_extensions(streamFile, "sb0")) {
|
2018-12-17 08:05:45 +01:00
|
|
|
sb->platform = UBI_PC;
|
|
|
|
} else if (check_extensions(streamFile, "sb1")) {
|
|
|
|
sb->platform = UBI_PS2;
|
|
|
|
} else if (check_extensions(streamFile, "sb2")) {
|
|
|
|
sb->platform = UBI_XBOX;
|
|
|
|
} else if (check_extensions(streamFile, "sb3")) {
|
|
|
|
sb->platform = UBI_GC;
|
|
|
|
} else if (check_extensions(streamFile, "sb4")) {
|
|
|
|
switch (sb->version) {
|
|
|
|
case 0x0012000C: /* Prince of Persia: Revelations (2005)(PSP) */
|
|
|
|
sb->platform = UBI_PSP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sb->platform = UBI_X360;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (check_extensions(streamFile, "sb5")) {
|
|
|
|
switch (sb->version) {
|
|
|
|
case 0x00180005: /* Prince of Persia: Rival Swords (2007)(PSP) */
|
|
|
|
case 0x00180006: /* Rainbow Six Vegas (2007)(PSP) */
|
|
|
|
sb->platform = UBI_PSP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sb->platform = UBI_3DS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (check_extensions(streamFile, "sb6")) {
|
|
|
|
sb->platform = UBI_PS3;
|
|
|
|
} else if (check_extensions(streamFile, "sb7")) {
|
|
|
|
sb->platform = UBI_WII;
|
2018-12-17 12:01:00 +01:00
|
|
|
} else {
|
2018-12-17 08:05:45 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
sb->big_endian = (sb->platform == UBI_GC ||
|
|
|
|
sb->platform == UBI_PS3 ||
|
|
|
|
sb->platform == UBI_X360 ||
|
|
|
|
sb->platform == UBI_WII);
|
2017-11-05 17:06:40 +01:00
|
|
|
if (sb->big_endian) {
|
|
|
|
read_32bit = read_32bitBE;
|
|
|
|
read_16bit = read_16bitBE;
|
|
|
|
} else {
|
|
|
|
read_32bit = read_32bitLE;
|
|
|
|
read_16bit = read_16bitLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* file layout is: base header, section1, section2, extra section, section3, data (all except base header can be null) */
|
|
|
|
|
|
|
|
sb->version = read_32bit(0x00, streamFile); /* 16b+16b major/minor version */
|
|
|
|
sb->section1_num = read_32bit(0x04, streamFile); /* group headers? */
|
|
|
|
sb->section2_num = read_32bit(0x08, streamFile); /* streams headers (internal or external) */
|
|
|
|
sb->section3_num = read_32bit(0x0c, streamFile); /* internal streams table */
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->extra_size = read_32bit(0x10, streamFile); /* extra table, unknown (config for non-audio types) except with DSP = coefs */
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->flag1 = read_32bit(0x14, streamFile); /* unknown, usually -1 but can be others (0/1/2/etc) */
|
|
|
|
sb->flag2 = read_32bit(0x18, streamFile); /* unknown, usually -1 but can be others */
|
|
|
|
|
|
|
|
ok = config_sb_header_version(sb, streamFile);
|
|
|
|
if (!ok) {
|
|
|
|
VGM_LOG("UBI SB: unknown SB version+platform\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
sb->main_size = 0x1c;
|
|
|
|
sb->section1_size = sb->section1_entry_size * sb->section1_num;
|
|
|
|
sb->section2_size = sb->section2_entry_size * sb->section2_num;
|
|
|
|
sb->section3_size = sb->section3_entry_size * sb->section3_num;
|
|
|
|
|
|
|
|
/* find target stream info in section2 */
|
|
|
|
for (i = 0; i < sb->section2_num; i++) {
|
|
|
|
off_t offset = sb->main_size + sb->section1_size + sb->section2_entry_size*i;
|
|
|
|
|
|
|
|
/* ignore non-audio entry (other types seem to have config data) */
|
|
|
|
if (read_32bit(offset + 0x04, streamFile) != 0x01)
|
|
|
|
continue;
|
2018-06-30 21:24:19 +02:00
|
|
|
//;VGM_LOG("SB at %lx\n", offset);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
/* weird case when there is no internal substream ID and just seem to rotate every time type changes, joy */
|
|
|
|
if (sb->has_rotating_ids) { /* assumes certain configs can't happen in this case */
|
|
|
|
int current_is_external = 0;
|
|
|
|
int type = read_32bit(offset + sb->stream_type_offset, streamFile);
|
|
|
|
|
|
|
|
if (current_type == -1)
|
|
|
|
current_type = type;
|
|
|
|
if (current_id == -1) /* use first ID in section3 */
|
|
|
|
current_id = read_32bit(sb->main_size + sb->section1_size + sb->section2_size + sb->extra_size + 0x00, streamFile);
|
|
|
|
|
|
|
|
if (sb->external_flag_offset) {
|
|
|
|
current_is_external = read_32bit(offset + sb->external_flag_offset, streamFile);
|
|
|
|
} else if (sb->has_extra_name_flag && read_32bit(offset + sb->extra_name_offset, streamFile) != 0xFFFFFFFF) {
|
|
|
|
current_is_external = 1; /* -1 in extra_name means internal */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!current_is_external) {
|
|
|
|
if (current_type != type) {
|
|
|
|
current_type = type;
|
|
|
|
current_id++; /* rotate */
|
|
|
|
if (current_id >= sb->section3_num)
|
|
|
|
current_id = 0; /* reset */
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
/* update streams (total_stream also doubles as current) */
|
|
|
|
sb->total_streams++;
|
|
|
|
if (sb->total_streams != target_stream)
|
|
|
|
continue;
|
2017-11-11 15:56:29 +01:00
|
|
|
//;VGM_LOG("target at offset=%lx (size=%x)\n", offset, sb->section2_entry_size);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
sb->header_id = read_32bit(offset + 0x00, streamFile); /* 16b+16b group+sound id */
|
|
|
|
sb->header_type = read_32bit(offset + 0x04, streamFile);
|
|
|
|
sb->stream_size = read_32bit(offset + 0x08, streamFile);
|
|
|
|
sb->extra_offset = read_32bit(offset + 0x0c, streamFile); /* within the extra section */
|
|
|
|
sb->stream_offset = read_32bit(offset + 0x10, streamFile); /* within the data section */
|
|
|
|
sb->channels = (sb->has_short_channels) ?
|
|
|
|
(uint16_t)read_16bit(offset + sb->channels_offset, streamFile) :
|
|
|
|
(uint32_t)read_32bit(offset + sb->channels_offset, streamFile);
|
|
|
|
sb->sample_rate = read_32bit(offset + sb->sample_rate_offset, streamFile);
|
|
|
|
sb->stream_type = read_32bit(offset + sb->stream_type_offset, streamFile);
|
|
|
|
|
2018-12-17 08:05:45 +01:00
|
|
|
/* Some games may store number of samples at different locations */
|
|
|
|
if (sb->samples_flag_offset &&
|
|
|
|
read_32bit(offset + sb->samples_flag_offset, streamFile) != 0) {
|
|
|
|
sb->stream_samples = read_32bit(offset + sb->num_samples_offset2, streamFile);
|
2018-12-17 12:01:00 +01:00
|
|
|
} else if (sb->num_samples_offset) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->stream_samples = read_32bit(offset + sb->num_samples_offset, streamFile);
|
2018-12-17 08:05:45 +01:00
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
if (sb-> has_rotating_ids) {
|
|
|
|
sb->stream_id = current_id;
|
|
|
|
} else if (sb->stream_id_offset) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->stream_id = read_32bit(offset + sb->stream_id_offset, streamFile);
|
2017-11-11 15:56:29 +01:00
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
/* external stream name can be found in the header (first versions) or the extra table (later versions) */
|
|
|
|
if (sb->stream_name_offset) {
|
|
|
|
read_string(sb->stream_name, sb->stream_name_size, offset + sb->stream_name_offset, streamFile);
|
|
|
|
} else {
|
|
|
|
sb->stream_name_offset = read_32bit(offset + sb->extra_name_offset, streamFile);
|
|
|
|
read_string(sb->stream_name, sb->stream_name_size, sb->main_size + sb->section1_size + sb->section2_size + sb->stream_name_offset, streamFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not always set and must be derived */
|
|
|
|
if (sb->external_flag_offset) {
|
|
|
|
sb->is_external = read_32bit(offset + sb->external_flag_offset, streamFile);
|
2017-11-11 15:56:29 +01:00
|
|
|
} else if (sb->has_extra_name_flag && read_32bit(offset + sb->extra_name_offset, streamFile) != 0xFFFFFFFF) {
|
|
|
|
sb->is_external = 1; /* -1 in extra_name means internal */
|
2017-11-05 17:06:40 +01:00
|
|
|
} else if (sb->section3_num == 0) {
|
|
|
|
sb->is_external = 1;
|
|
|
|
} else {
|
|
|
|
sb->autodetect_external = 1;
|
|
|
|
|
|
|
|
if (sb->stream_name[0] == '\0')
|
|
|
|
sb->autodetect_external = 0; /* no name */
|
|
|
|
if (sb->extra_size > 0 && sb->stream_name_offset > sb->extra_size)
|
|
|
|
sb->autodetect_external = 0; /* name outside extra table == is internal */
|
|
|
|
}
|
2018-12-17 08:05:45 +01:00
|
|
|
|
|
|
|
/* this field is only seen in X360 games, points at XMA1 header in extra section */
|
|
|
|
if (sb->xma_pointer_offset) {
|
|
|
|
sb->xma_header_offset = read_32bit(offset + sb->xma_pointer_offset, streamFile);
|
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
|
|
|
if (sb->total_streams == 0) {
|
|
|
|
VGM_LOG("UBI SB: no streams\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (target_stream < 0 || target_stream > sb->total_streams || sb->total_streams < 1) {
|
|
|
|
VGM_LOG("UBI SB: wrong target stream (target=%i, total=%i)\n", target_stream, sb->total_streams);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
if (!(sb->stream_id_offset || sb->has_rotating_ids) && sb->section3_num > 1) {
|
2017-11-05 17:06:40 +01:00
|
|
|
VGM_LOG("UBI SB: unexpected number of internal streams %i\n", sb->section3_num);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* happens in some versions */
|
|
|
|
if (sb->stream_type > 0xFF) {
|
|
|
|
VGM_LOG("UBI SB: garbage in stream_type\n");
|
|
|
|
sb->stream_type = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* guess codec */
|
2018-12-17 12:01:00 +01:00
|
|
|
switch (sb->stream_type) {
|
2017-11-05 17:06:40 +01:00
|
|
|
case 0x00: /* platform default (rarely external) */
|
2018-12-17 08:05:45 +01:00
|
|
|
switch (sb->platform) {
|
|
|
|
case UBI_PC:
|
|
|
|
sb->codec = RAW_PCM;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_PS2:
|
|
|
|
sb->codec = RAW_PSX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_PSP:
|
|
|
|
if (check_extensions(streamFile, "sb4")) {
|
|
|
|
sb->codec = FMT_VAG;
|
2018-12-17 12:01:00 +01:00
|
|
|
} else {
|
2018-12-17 08:05:45 +01:00
|
|
|
sb->codec = RAW_PSX;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_XBOX:
|
|
|
|
sb->codec = RAW_XBOX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_GC:
|
|
|
|
case UBI_WII:
|
|
|
|
sb->codec = RAW_DSP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_X360:
|
|
|
|
sb->codec = RAW_XMA1;
|
|
|
|
break;
|
|
|
|
#if 0
|
|
|
|
case UBI_PS3:
|
|
|
|
/* Need to confirm */
|
|
|
|
sb->codec = FMT_AT3;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown internal format\n");
|
|
|
|
goto fail;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2017-11-11 17:46:18 +01:00
|
|
|
case 0x01: /* PCM (Wii, rarely used) */
|
|
|
|
sb->codec = RAW_PCM;
|
|
|
|
break;
|
|
|
|
|
2018-12-17 08:05:45 +01:00
|
|
|
case 0x02: /* PS ADPCM (PS3) */
|
|
|
|
sb->codec = RAW_PSX;
|
|
|
|
break;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
case 0x03: /* Ubi ADPCM (main external stream codec, has subtypes) */
|
|
|
|
sb->codec = UBI_ADPCM;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x04: /* Ogg (later PC games) */
|
|
|
|
sb->codec = FMT_OGG;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x05: /* AT3 (PSP, PS3) */
|
|
|
|
sb->codec = FMT_AT3;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown stream_type %x\n", sb->stream_type);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* uncommon but possible */
|
|
|
|
//VGM_ASSERT(sb->is_external && sb->section3_num != 0, "UBI SS: mixed external and internal streams\n");
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
/* seems that can be safely ignored */
|
2017-11-05 17:06:40 +01:00
|
|
|
//VGM_ASSERT(sb->is_external && sb->stream_id_offset && sb->stream_id > 0, "UBI SB: unexpected external stream with stream id\n");
|
|
|
|
|
|
|
|
/* section 3: substreams within the file, adjust stream offset (rarely used but table is always present) */
|
2017-11-11 15:56:29 +01:00
|
|
|
if (!sb->is_external && (sb->stream_id_offset || sb->has_rotating_ids) && sb->section3_num > 1) {
|
2017-11-05 17:06:40 +01:00
|
|
|
for (i = 0; i < sb->section3_num; i++) {
|
|
|
|
off_t offset = sb->main_size + sb->section1_size + sb->section2_size + sb->extra_size + sb->section3_entry_size * i;
|
|
|
|
|
|
|
|
/* table has unordered ids+size, so if our id doesn't match current data offset must be beyond */
|
|
|
|
if (read_32bit(offset + 0x00, streamFile) == sb->stream_id)
|
|
|
|
break;
|
|
|
|
sb->stream_offset += read_32bit(offset + 0x04, streamFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int config_sb_header_version(ubi_sb_header * sb, STREAMFILE *streamFile) {
|
2017-12-07 23:54:05 +01:00
|
|
|
int is_biadd_psp = 0;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* The format varies with almost every game + platform (some kind of class serialization?),
|
|
|
|
* support is done case-by-case as offsets move slightly. Basic layout:
|
|
|
|
* - fixed part (0x00..0x14)
|
|
|
|
* - garbage, flags
|
|
|
|
* - external stream number of samples / internal garbage
|
|
|
|
* - external stream size (also in the common part) / internal garbage
|
|
|
|
* - garbage
|
|
|
|
* - external original sample rate / internal garbage
|
|
|
|
* - sample rate, pcm bits?, channels
|
|
|
|
* - stream type and external filename (internal filename too on some platforms)
|
|
|
|
* - end flags/garbage
|
|
|
|
* Garbage looks like uninitialized variables (may be null, contain part of strings, etc).
|
|
|
|
* Later version don't have filename per header but in the extra section.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* common */
|
|
|
|
sb->section3_entry_size = 0x08;
|
|
|
|
sb->stream_name_size = 0x24; /* maybe 0x28 or 0x20 for some but ok enough (null terminated) */
|
|
|
|
|
|
|
|
/* Prince of Persia: Sands of Time (2003)(PC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_PC) || /* (not sure if exists, just in case) */
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_PC)) { /* main game */
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x64;
|
|
|
|
sb->section2_entry_size = 0x80;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x24; /* maybe 0x28 */
|
|
|
|
sb->num_samples_offset = 0x30;
|
|
|
|
sb->sample_rate_offset = 0x44;
|
|
|
|
sb->channels_offset = 0x4a;
|
|
|
|
sb->stream_type_offset = 0x4c;
|
|
|
|
sb->stream_name_offset = 0x50;
|
|
|
|
|
|
|
|
sb->has_short_channels = 1;
|
|
|
|
sb->has_internal_names = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: Sands of Time (2003)(PS2) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_PS2) || /* Prince of Persia 1 port */
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_PS2)) { /* main game */
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x6c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0; /* no apparent flag */
|
|
|
|
sb->channels_offset = 0x20;
|
|
|
|
sb->sample_rate_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0x30;
|
|
|
|
sb->stream_name_offset = 0x40;
|
|
|
|
sb->stream_type_offset = 0x68;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: Sands of Time (2003)(Xbox) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_XBOX) || /* Prince of Persia 1 port */
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_XBOX)) { /* main game */
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x64;
|
|
|
|
sb->section2_entry_size = 0x78;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x24; /* maybe 0x28 */
|
|
|
|
sb->num_samples_offset = 0x30;
|
|
|
|
sb->sample_rate_offset = 0x44;
|
|
|
|
sb->channels_offset = 0x4a;
|
|
|
|
sb->stream_type_offset = 0x4c; /* may contain garbage */
|
|
|
|
sb->stream_name_offset = 0x50;
|
|
|
|
|
|
|
|
sb->has_short_channels = 1;
|
|
|
|
sb->has_internal_names = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
/* Tom Clancy's Rainbow Six 3 (2003)(PS2) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x000A0007 && sb->platform == UBI_PS2) {
|
2017-12-07 23:54:05 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x6c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0; /* no apparent flag */
|
|
|
|
sb->channels_offset = 0x20;
|
|
|
|
sb->sample_rate_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0x30;
|
|
|
|
sb->stream_name_offset = 0x40;
|
|
|
|
sb->stream_type_offset = 0x68;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
/* Prince of Persia: Sands of Time (2003)(GC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_GC) || /* Prince of Persia 1 port */
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_GC)) { /* main game */
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x64;
|
|
|
|
sb->section2_entry_size = 0x74;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x20; /* maybe 0x24 */
|
|
|
|
sb->num_samples_offset = 0x2c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->channels_offset = 0x46;
|
|
|
|
sb->stream_type_offset = 0x48;
|
|
|
|
sb->stream_name_offset = 0x4c;
|
|
|
|
|
|
|
|
sb->has_short_channels = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-12-03 20:25:50 +01:00
|
|
|
/* Myst IV Demo (2004)(PC) (final game is different) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00100000 && sb->platform == UBI_PC) {
|
2017-12-03 20:25:50 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0xa4;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0x34;
|
|
|
|
sb->sample_rate_offset = 0x44;
|
|
|
|
sb->channels_offset = 0x4c;
|
|
|
|
sb->stream_type_offset = 0x50;
|
|
|
|
sb->stream_name_offset = 0x54;
|
|
|
|
|
|
|
|
sb->has_internal_names = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
/* Prince of Persia: Warrior Within (2004)(PC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00120009 && sb->platform == UBI_PC) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x6c;
|
|
|
|
sb->section2_entry_size = 0x84;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0x30;
|
|
|
|
sb->sample_rate_offset = 0x44;
|
|
|
|
sb->channels_offset = 0x4c;
|
|
|
|
sb->stream_type_offset = 0x50;
|
|
|
|
sb->stream_name_offset = 0x54;
|
|
|
|
|
|
|
|
sb->has_internal_names = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: Warrior Within (2004)(PS2) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00120009 && sb->platform == UBI_PS2) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x6c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0; /* no apparent flag */
|
|
|
|
sb->channels_offset = 0x20;
|
|
|
|
sb->sample_rate_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0x30;
|
|
|
|
sb->stream_name_offset = 0x40;
|
|
|
|
sb->stream_type_offset = 0x68;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: Warrior Within (2004)(Xbox) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00120009 && sb->platform == UBI_XBOX) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x6c;
|
|
|
|
sb->section2_entry_size = 0x90;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0x44;
|
|
|
|
sb->sample_rate_offset = 0x58;
|
|
|
|
sb->channels_offset = 0x60;
|
|
|
|
sb->stream_type_offset = 0x64; /* may contain garbage */
|
|
|
|
sb->stream_name_offset = 0x68;
|
|
|
|
|
|
|
|
sb->has_internal_names = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: Warrior Within (2004)(GC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00120009 && sb->platform == UBI_GC) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x6c;
|
|
|
|
sb->section2_entry_size = 0x78;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x20;
|
|
|
|
sb->num_samples_offset = 0x2c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->channels_offset = 0x48;
|
|
|
|
sb->stream_type_offset = 0x4c;
|
|
|
|
sb->stream_name_offset = 0x50;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
/* two games with same id; use project file as identifier */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x0012000C && sb->platform == UBI_PSP) {
|
2018-03-29 22:34:21 +02:00
|
|
|
STREAMFILE * streamTest = open_streamfile_by_filename(streamFile, "BIAAUDIO.SP4");
|
2017-12-07 23:54:05 +01:00
|
|
|
if (streamTest) {
|
|
|
|
is_biadd_psp = 1;
|
|
|
|
close_streamfile(streamTest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: Revelations (2005)(PSP) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x0012000C && sb->platform == UBI_PSP && !is_biadd_psp) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x84;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0x30;
|
|
|
|
sb->sample_rate_offset = 0x44;
|
|
|
|
sb->channels_offset = 0x4c;
|
|
|
|
sb->stream_type_offset = 0x50;
|
|
|
|
sb->stream_name_offset = 0x54;
|
|
|
|
|
|
|
|
sb->has_internal_names = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
/* Brothers in Arms - D-Day (2006)(PSP) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x0012000C && sb->platform == UBI_PSP && is_biadd_psp) {
|
2017-12-07 23:54:05 +01:00
|
|
|
sb->section1_entry_size = 0x80;
|
|
|
|
sb->section2_entry_size = 0x94;
|
|
|
|
|
|
|
|
sb->stream_id_offset = 0x0; //todo 0x1C or 0x20? table seems problematic
|
|
|
|
sb->external_flag_offset = 0x24;
|
|
|
|
sb->num_samples_offset = 0; /* variable? */
|
|
|
|
sb->sample_rate_offset = 0x44;
|
|
|
|
sb->channels_offset = 0x4c;
|
|
|
|
sb->stream_type_offset = 0x50;
|
|
|
|
sb->stream_name_offset = 0x54;
|
|
|
|
|
|
|
|
sb->has_internal_names = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
/* Prince of Persia: The Two Thrones (2005)(PC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00150000 && sb->platform == UBI_PC) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x78;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x2c;
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->stream_id_offset = 0x34;
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->num_samples_offset = 0x40;
|
|
|
|
sb->sample_rate_offset = 0x54;
|
|
|
|
sb->channels_offset = 0x5c;
|
|
|
|
sb->stream_type_offset = 0x60;
|
|
|
|
sb->extra_name_offset = 0x64;
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->has_extra_name_flag = 1;
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: The Two Thrones (2005)(PS2) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00150000 && sb->platform == UBI_PS2) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x5c;
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->external_flag_offset = 0;
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->channels_offset = 0x2c;
|
|
|
|
sb->sample_rate_offset = 0x30;
|
|
|
|
sb->num_samples_offset = 0x3c;
|
|
|
|
sb->extra_name_offset = 0x4c;
|
|
|
|
sb->stream_type_offset = 0x50;
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->has_extra_name_flag = 1;
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: The Two Thrones (2005)(Xbox) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00150000 && sb->platform == UBI_XBOX) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x58;
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->external_flag_offset = 0;
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->num_samples_offset = 0x28;
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->stream_id_offset = 0;
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->sample_rate_offset = 0x3c;
|
|
|
|
sb->channels_offset = 0x44;
|
|
|
|
sb->stream_type_offset = 0x48;
|
|
|
|
sb->extra_name_offset = 0x4c;
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->has_extra_name_flag = 1;
|
|
|
|
sb->has_rotating_ids = 1;
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: The Two Thrones (2005)(GC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00150000 && sb->platform == UBI_GC) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x6c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28; /* maybe 0x2c */
|
|
|
|
sb->num_samples_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x50;
|
|
|
|
sb->channels_offset = 0x58;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x60;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2018-06-30 21:24:19 +02:00
|
|
|
#if 0
|
|
|
|
/* Far cry: Instincts - Evolution (2006)(Xbox) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00170000 && sb->platform == UBI_XBOX) {
|
2018-06-30 21:24:19 +02:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x6c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0;
|
|
|
|
sb->num_samples_offset = 0x28;
|
|
|
|
sb->stream_id_offset = 0;
|
|
|
|
sb->sample_rate_offset = 0x3c;
|
|
|
|
sb->channels_offset = 0x44;
|
|
|
|
sb->stream_type_offset = 0x48;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
/* Prince of Persia: Rival Swords (2007)(PSP) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00180005 && sb->platform == UBI_PSP) {
|
2017-12-07 23:54:05 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x54;
|
2017-11-11 17:46:18 +01:00
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
sb->external_flag_offset = 0;
|
|
|
|
sb->channels_offset = 0x28;
|
|
|
|
sb->sample_rate_offset = 0x2c;
|
|
|
|
//sb->num_samples_offset = 0x34 or 0x3c /* varies */
|
|
|
|
sb->extra_name_offset = 0x44;
|
|
|
|
sb->stream_type_offset = 0x48;
|
2017-11-11 17:46:18 +01:00
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
sb->has_extra_name_flag = 1;
|
2017-11-11 17:46:18 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:54:05 +01:00
|
|
|
#if 0
|
|
|
|
/* Rainbow Six Vegas (2007)(PSP) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00180006 && sb->platform == UBI_PSP) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x54;
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->external_flag_offset = 0;
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->channels_offset = 0x28;
|
|
|
|
sb->sample_rate_offset = 0x2c;
|
|
|
|
//sb->num_samples_offset = 0x34 or 0x3c /* varies */
|
|
|
|
sb->extra_name_offset = 0x44;
|
|
|
|
sb->stream_type_offset = 0x48;
|
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->has_extra_name_flag = 1;
|
2017-12-07 23:54:05 +01:00
|
|
|
sb->has_rotating_ids = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* todo Rainbow Six Vegas changes:
|
|
|
|
* some streams use type 0x06 instead of 0x01, known values:
|
|
|
|
* 0x0c: header offset in extra table?
|
|
|
|
* 0x2c: stream size
|
|
|
|
* 0x30: stream offset
|
|
|
|
* most other fields are fixed, comparing different files
|
|
|
|
* header is in the extra table, after the stream name (repeated?)
|
|
|
|
* (0x04: sample rate, 0x0c: channels, etc)
|
|
|
|
* stream data may be newer Ubi ADPCM (see DecUbiSnd)
|
|
|
|
*/
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Red Steel (2006)(Wii) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00180006 && sb->platform == UBI_WII) { /* same as 0x00150000 */
|
2017-12-07 23:54:05 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x6c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28; /* maybe 0x2c */
|
|
|
|
sb->num_samples_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x50;
|
|
|
|
sb->channels_offset = 0x58;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x60;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prince of Persia: Rival Swords (2007)(Wii) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00190003 && sb->platform == UBI_WII) {
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x70;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28; /* maybe 0x2c */
|
|
|
|
sb->channels_offset = 0x3c;
|
2017-11-11 15:56:29 +01:00
|
|
|
sb->sample_rate_offset = 0x40;
|
2017-11-05 17:06:40 +01:00
|
|
|
sb->num_samples_offset = 0x48;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2018-12-17 11:20:53 +01:00
|
|
|
|
|
|
|
/* TMNT (2007)(PC) */
|
|
|
|
if (sb->version == 0x00190002 && sb->platform == UBI_PC) {
|
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x74;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28;
|
|
|
|
sb->stream_id_offset = 0x2c;
|
|
|
|
sb->channels_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->num_samples_offset = 0x48;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2017-12-03 20:25:50 +01:00
|
|
|
/* TMNT (2007)(PS2) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00190002 && sb->platform == UBI_PS2) {
|
2017-12-03 20:25:50 +01:00
|
|
|
sb->section1_entry_size = 0x48;
|
|
|
|
sb->section2_entry_size = 0x5c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0;
|
|
|
|
sb->channels_offset = 0x28;
|
|
|
|
sb->sample_rate_offset = 0x2c;
|
|
|
|
//sb->num_samples_offset = 0x34 or 0x3c /* varies */
|
|
|
|
sb->extra_name_offset = 0x44;
|
|
|
|
sb->stream_type_offset = 0x48;
|
|
|
|
|
|
|
|
sb->has_extra_name_flag = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TMNT (2007)(GC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00190002 && sb->platform == UBI_GC) { /* same as 0x00190003 */
|
2017-12-03 20:25:50 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x6c;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28; /* maybe 0x2c */
|
|
|
|
sb->channels_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->num_samples_offset = 0x48;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-12-17 11:20:53 +01:00
|
|
|
/* TMNT (2007)(X360) */
|
|
|
|
if (sb->version == 0x00190002 && sb->platform == UBI_X360) {
|
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x70;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28;
|
|
|
|
sb->samples_flag_offset = 0x30;
|
|
|
|
sb->channels_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->num_samples_offset = 0x48;
|
|
|
|
sb->num_samples_offset2 = 0x50;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
sb->xma_pointer_offset = 0x6c;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-02-17 02:07:43 +01:00
|
|
|
/* Surf's Up (2007)(PC) */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00190005 && sb->platform == UBI_PC) {
|
2018-02-17 02:07:43 +01:00
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x74;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28; /* maybe 0x2c */
|
|
|
|
sb->channels_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->num_samples_offset = 0x48;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
|
|
|
|
sb->has_extra_name_flag = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-12-17 08:05:45 +01:00
|
|
|
/* Surf's Up (2007)(PS3) */
|
|
|
|
if (sb->version == 0x00190005 && sb->platform == UBI_PS3) {
|
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x70;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28;
|
|
|
|
sb->channels_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->num_samples_offset = 0x48;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
|
|
|
|
sb->has_extra_name_flag = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Surf's Up (2007)(X360) */
|
|
|
|
if (sb->version == 0x00190005 && sb->platform == UBI_X360) {
|
|
|
|
sb->section1_entry_size = 0x68;
|
|
|
|
sb->section2_entry_size = 0x70;
|
|
|
|
|
|
|
|
sb->external_flag_offset = 0x28;
|
|
|
|
sb->samples_flag_offset = 0x30;
|
|
|
|
sb->channels_offset = 0x3c;
|
|
|
|
sb->sample_rate_offset = 0x40;
|
|
|
|
sb->num_samples_offset = 0x48;
|
|
|
|
sb->num_samples_offset2 = 0x50;
|
|
|
|
sb->stream_type_offset = 0x5c;
|
|
|
|
sb->extra_name_offset = 0x58;
|
|
|
|
sb->xma_pointer_offset = 0x6c;
|
|
|
|
|
|
|
|
sb->has_extra_name_flag = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|