2017-11-05 17:06:40 +01:00
|
|
|
#include "meta.h"
|
2019-01-19 20:03:48 +01:00
|
|
|
#include "../layout/layout.h"
|
2017-11-05 17:06:40 +01:00
|
|
|
#include "../coding/coding.h"
|
2019-01-19 20:03:48 +01:00
|
|
|
#include "ubi_sb_streamfile.h"
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
typedef enum { UBI_IMA, UBI_UNK, RAW_PCM, RAW_PSX, RAW_DSP, RAW_XBOX, FMT_VAG, FMT_AT3, RAW_AT3, FMT_XMA1, RAW_XMA1, FMT_OGG, FMT_CWAV } ubi_sb_codec;
|
2019-01-05 04:32:07 +01:00
|
|
|
typedef enum { UBI_PC, UBI_PS2, UBI_XBOX, UBI_GC, UBI_X360, UBI_PSP, UBI_PS3, UBI_WII, UBI_3DS } ubi_sb_platform;
|
2019-01-19 20:03:48 +01:00
|
|
|
typedef enum { UBI_NONE = 0, UBI_AUDIO, UBI_LAYER, UBI_SEQUENCE } ubi_sb_type;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
typedef struct {
|
2018-12-17 08:05:45 +01:00
|
|
|
ubi_sb_platform platform;
|
2019-01-19 20:03:48 +01:00
|
|
|
int is_psp_old;
|
2017-11-05 17:06:40 +01:00
|
|
|
int big_endian;
|
2019-01-13 23:27:29 +01:00
|
|
|
int total_subsongs;
|
2019-01-19 20:03:48 +01:00
|
|
|
int bank_subsongs;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* map base header info */
|
|
|
|
off_t map_start;
|
|
|
|
off_t map_num;
|
|
|
|
size_t map_entry_size;
|
|
|
|
|
|
|
|
uint32_t map_type;
|
|
|
|
uint32_t map_zero;
|
|
|
|
off_t map_offset;
|
|
|
|
off_t map_size;
|
2019-01-19 20:03:48 +01:00
|
|
|
char map_name[0x24];
|
2019-01-05 04:02:14 +01:00
|
|
|
uint32_t map_unknown;
|
|
|
|
|
2019-01-07 18:03:47 +01:00
|
|
|
/* SB info (some values are derived depending if it's standard sbX or map sbX) */
|
|
|
|
int is_map;
|
|
|
|
uint32_t version; /* 16b+16b major+minor version */
|
|
|
|
uint32_t version_empty; /* map sbX versions are empty */
|
2019-01-19 20:03:48 +01:00
|
|
|
/* events (often share header_id/type with some descriptors,
|
|
|
|
* but may exist without headers or header exist without them) */
|
2017-11-05 17:06:40 +01:00
|
|
|
size_t section1_num;
|
2019-01-07 18:03:47 +01:00
|
|
|
size_t section1_offset;
|
|
|
|
/* descriptors, audio header or other config types */
|
2017-11-05 17:06:40 +01:00
|
|
|
size_t section2_num;
|
2019-01-07 18:03:47 +01:00
|
|
|
size_t section2_offset;
|
2019-01-19 20:03:48 +01:00
|
|
|
/* internal streams table, referenced by each header */
|
2017-11-05 17:06:40 +01:00
|
|
|
size_t section3_num;
|
2019-01-07 18:03:47 +01:00
|
|
|
size_t section3_offset;
|
|
|
|
/* section with sounds in some map versions */
|
2018-12-24 12:29:55 +01:00
|
|
|
size_t section4_num;
|
2019-01-07 18:03:47 +01:00
|
|
|
size_t section4_offset;
|
|
|
|
/* extra table, config for certain types (DSP coefs, external resources, layer headers, etc) */
|
2019-01-05 04:02:14 +01:00
|
|
|
size_t sectionX_size;
|
2019-01-07 18:03:47 +01:00
|
|
|
size_t sectionX_offset;
|
|
|
|
/* unknown, usually -1 but can be others (0/1/2/etc) */
|
2017-11-05 17:06:40 +01:00
|
|
|
int flag1;
|
|
|
|
int flag2;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* header/stream info config */
|
2019-01-07 18:03:47 +01:00
|
|
|
/* audio header varies slightly per game/version but not enough parse case by case,
|
2019-01-05 04:02:14 +01:00
|
|
|
* instead we configure sizes and offsets to where each variable is */
|
2019-01-19 20:03:48 +01:00
|
|
|
int map_version;
|
2017-11-05 17:06:40 +01:00
|
|
|
size_t section1_entry_size;
|
|
|
|
size_t section2_entry_size;
|
|
|
|
size_t section3_entry_size;
|
2019-01-05 04:02:14 +01:00
|
|
|
size_t resource_name_size;
|
2019-01-19 20:03:48 +01:00
|
|
|
/* type 0x01 (audio) config */
|
|
|
|
off_t cfga_extra_offset;
|
|
|
|
off_t cfga_stream_size;
|
|
|
|
off_t cfga_stream_offset;
|
|
|
|
off_t cfga_stream_type;
|
|
|
|
off_t cfga_group_id;
|
|
|
|
off_t cfga_external_flag;
|
|
|
|
off_t cfga_loop_flag;
|
|
|
|
off_t cfga_num_samples;
|
|
|
|
off_t cfga_num_samples2;
|
|
|
|
off_t cfga_sample_rate;
|
|
|
|
off_t cfga_channels;
|
|
|
|
off_t cfga_stream_name;
|
|
|
|
off_t cfga_extra_name;
|
|
|
|
off_t cfga_xma_offset;
|
|
|
|
int cfga_and_external_flag;
|
|
|
|
int cfga_and_loop_flag;
|
|
|
|
int cfga_and_group_id;
|
|
|
|
int cfga_has_internal_names;
|
|
|
|
/* type 0x05/0c (sequence) config */
|
2019-01-13 23:27:29 +01:00
|
|
|
off_t cfgs_extra_offset;
|
2019-01-20 17:16:44 +01:00
|
|
|
off_t cfgs_sequence_loop;
|
|
|
|
off_t cfgs_sequence_single;
|
2019-01-13 23:27:29 +01:00
|
|
|
off_t cfgs_sequence_count;
|
2019-01-19 20:03:48 +01:00
|
|
|
off_t cfgs_entry_number;
|
|
|
|
size_t sequence_entry_size;
|
|
|
|
/* type 0x06/0d (layer) config */
|
|
|
|
off_t cfgl_extra_offset;
|
|
|
|
off_t cfgl_layer_count;
|
|
|
|
off_t cfgl_stream_size;
|
|
|
|
off_t cfgl_stream_offset;
|
|
|
|
off_t cfgl_stream_name;
|
|
|
|
off_t cfgl_extra_name;
|
|
|
|
off_t cfgl_sample_rate;
|
|
|
|
off_t cfgl_channels;
|
|
|
|
off_t cfgl_stream_type;
|
|
|
|
off_t cfgl_num_samples;
|
|
|
|
size_t layer_entry_size;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* header/stream info */
|
2019-01-19 20:03:48 +01:00
|
|
|
ubi_sb_type type; /* unified type */
|
|
|
|
ubi_sb_codec codec; /* unified codec */
|
|
|
|
int header_index; /* entry number within section2 */
|
|
|
|
off_t header_offset; /* entry offset within section2 */
|
|
|
|
uint32_t header_id; /* 16b+16b group+sound identifier (unique within a sbX, but not smX), may start from 0 */
|
|
|
|
uint32_t header_type; /* parsed type (we only need audio types) */
|
2019-01-05 04:02:14 +01:00
|
|
|
off_t extra_offset; /* offset within sectionX to extra data */
|
2019-01-19 20:03:48 +01:00
|
|
|
off_t stream_offset; /* offset within the data section (internal) or absolute (external) to the audio */
|
|
|
|
size_t stream_size; /* size of the audio data */
|
2019-01-13 23:27:29 +01:00
|
|
|
uint32_t stream_type; /* rough codec value */
|
2019-01-07 22:10:48 +01:00
|
|
|
uint32_t group_id; /* internal id to reference in section3 */
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
int loop_flag; /* stream loops (normally internal sfx, but also external music) */
|
|
|
|
int loop_start; /* usually 0 */
|
2019-01-07 22:10:48 +01:00
|
|
|
int num_samples; /* should match manually calculated samples */
|
2017-11-05 17:06:40 +01:00
|
|
|
int sample_rate;
|
|
|
|
int channels;
|
2019-01-19 20:03:48 +01:00
|
|
|
off_t xma_header_offset; /* some XMA have extra header stuff */
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
int layer_count; /* number of layers in a layer type */
|
|
|
|
int sequence_count; /* number of segments in a sequence type */
|
|
|
|
int sequence_chain[64]; /* sequence of entry numbers */
|
2019-01-20 17:16:44 +01:00
|
|
|
int sequence_loop; /* chain index to loop */
|
|
|
|
int sequence_single; /* if que sequence plays once (loops by default) */
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
int is_external; /* stream is in a external file */
|
|
|
|
char resource_name[0x24]; /* filename to the external stream, or internal stream info for some games */
|
|
|
|
|
|
|
|
char readable_name[255]; /* final subsong name */
|
|
|
|
int types[16]; /* counts each header types, for debugging */
|
|
|
|
int allowed_types[16];
|
2017-11-05 17:06:40 +01:00
|
|
|
} ubi_sb_header;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
static VGMSTREAM * init_vgmstream_ubi_sb_header(ubi_sb_header *sb, STREAMFILE* streamTest, STREAMFILE *streamFile);
|
2019-01-13 23:27:29 +01:00
|
|
|
static int parse_sb_header(ubi_sb_header * sb, STREAMFILE *streamFile, int target_subsong);
|
2019-01-19 20:03:48 +01:00
|
|
|
static int parse_header(ubi_sb_header * sb, STREAMFILE *streamFile, off_t offset, int index);
|
2019-01-05 04:32:07 +01:00
|
|
|
static int config_sb_platform(ubi_sb_header * sb, STREAMFILE *streamFile);
|
2019-01-05 04:02:14 +01:00
|
|
|
static int config_sb_version(ubi_sb_header * sb, STREAMFILE *streamFile);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-07 18:03:47 +01:00
|
|
|
|
|
|
|
/* .SBx - banks from Ubisoft's DARE (Digital Audio Rendering Engine) engine games in ~2000-2008+ */
|
2017-11-05 17:06:40 +01:00
|
|
|
VGMSTREAM * init_vgmstream_ubi_sb(STREAMFILE *streamFile) {
|
2019-01-19 20:03:48 +01:00
|
|
|
VGMSTREAM* vgmstream = NULL;
|
2019-01-02 23:46:39 +01:00
|
|
|
STREAMFILE *streamTest = NULL;
|
2018-12-22 22:47:24 +01:00
|
|
|
int32_t(*read_32bit)(off_t, STREAMFILE*) = NULL;
|
2019-01-19 20:03:48 +01:00
|
|
|
ubi_sb_header sb = {0};
|
2019-01-13 23:27:29 +01:00
|
|
|
int target_subsong = streamFile->stream_index;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
|
|
|
|
/* checks (number represents the platform, see later) */
|
2018-12-22 22:47:24 +01:00
|
|
|
if (!check_extensions(streamFile, "sb0,sb1,sb2,sb3,sb4,sb5,sb6,sb7"))
|
2017-11-05 17:06:40 +01:00
|
|
|
goto fail;
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* .sbX (sound bank) is a small multisong format (loaded in memory?) that contains SFX data
|
2017-11-05 17:06:40 +01:00
|
|
|
* but can also reference .ss0/ls0 (sound stream) external files for longer streams.
|
2019-01-19 20:03:48 +01:00
|
|
|
* A companion .sp0 (sound project) describes files and if it uses BANKs (.sbX) or MAPs (.smX). */
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
|
|
|
|
/* PLATFORM DETECTION */
|
2019-01-05 04:32:07 +01:00
|
|
|
if (!config_sb_platform(&sb, streamFile))
|
2018-12-22 22:47:24 +01:00
|
|
|
goto fail;
|
|
|
|
if (sb.big_endian) {
|
|
|
|
read_32bit = read_32bitBE;
|
|
|
|
} else {
|
|
|
|
read_32bit = read_32bitLE;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (target_subsong <= 0) target_subsong = 1;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* use smaller header buffer for performance */
|
2019-01-05 04:02:14 +01:00
|
|
|
streamTest = reopen_streamfile(streamFile, 0x100);
|
|
|
|
if (!streamTest) goto fail;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* SB HEADER */
|
2019-01-19 20:03:48 +01:00
|
|
|
/* SBx layout: header, section1, section2, extra section, section3, data (all except header can be null) */
|
2018-12-22 22:47:24 +01:00
|
|
|
sb.is_map = 0;
|
2019-01-07 18:03:47 +01:00
|
|
|
sb.version = read_32bit(0x00, streamFile);
|
|
|
|
sb.section1_num = read_32bit(0x04, streamFile);
|
|
|
|
sb.section2_num = read_32bit(0x08, streamFile);
|
|
|
|
sb.section3_num = read_32bit(0x0c, streamFile);
|
|
|
|
sb.sectionX_size = read_32bit(0x10, streamFile);
|
|
|
|
sb.flag1 = read_32bit(0x14, streamFile);
|
|
|
|
sb.flag2 = read_32bit(0x18, streamFile);
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (!config_sb_version(&sb, streamFile))
|
|
|
|
goto fail;
|
2019-01-05 04:02:14 +01:00
|
|
|
|
|
|
|
sb.section1_offset = 0x1c;
|
|
|
|
sb.section2_offset = sb.section1_offset + sb.section1_entry_size * sb.section1_num;
|
|
|
|
sb.sectionX_offset = sb.section2_offset + sb.section2_entry_size * sb.section2_num;
|
|
|
|
sb.section3_offset = sb.sectionX_offset + sb.sectionX_size;
|
2019-01-02 23:46:39 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
if (!parse_sb_header(&sb, streamTest, target_subsong))
|
2017-11-05 17:06:40 +01:00
|
|
|
goto fail;
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* CREATE VGMSTREAM */
|
2019-01-19 20:03:48 +01:00
|
|
|
vgmstream = init_vgmstream_ubi_sb_header(&sb, streamTest, streamFile);
|
|
|
|
close_streamfile(streamTest);
|
|
|
|
return vgmstream;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
|
|
|
fail:
|
2019-01-02 23:46:39 +01:00
|
|
|
close_streamfile(streamTest);
|
2018-12-22 22:47:24 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* .SMx - maps (sets of custom SBx files) also from Ubisoft's sound engine games in ~2000-2008+ */
|
2018-12-22 22:47:24 +01:00
|
|
|
VGMSTREAM * init_vgmstream_ubi_sm(STREAMFILE *streamFile) {
|
2019-01-19 20:03:48 +01:00
|
|
|
VGMSTREAM* vgmstream = NULL;
|
2019-01-02 23:46:39 +01:00
|
|
|
STREAMFILE *streamTest = NULL;
|
2018-12-22 22:47:24 +01:00
|
|
|
int32_t(*read_32bit)(off_t, STREAMFILE*) = NULL;
|
2019-01-19 20:03:48 +01:00
|
|
|
ubi_sb_header sb = {0}, target_sb = {0};
|
2019-01-13 23:27:29 +01:00
|
|
|
int target_subsong = streamFile->stream_index;
|
2019-01-19 20:03:48 +01:00
|
|
|
int i;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* checks (number represents platform, lmX are localized variations) */
|
2018-12-30 17:32:13 +01:00
|
|
|
if (!check_extensions(streamFile, "sm0,sm1,sm2,sm3,sm4,sm5,sm6,sm7,lm0,lm1,lm2,lm3,lm4,lm5,lm6,lm7"))
|
2018-12-22 22:47:24 +01:00
|
|
|
goto fail;
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* .smX (sound map) is a set of slightly different sbX files, compiled into one "map" file.
|
2019-01-19 20:03:48 +01:00
|
|
|
* Map has a sbX (called "submap") per named area (example: menu, level1, boss1, level2...).
|
2019-01-05 04:02:14 +01:00
|
|
|
* This counts subsongs from all sbX, so totals can be massive, but there are splitters into mini-smX. */
|
|
|
|
|
2018-12-23 05:20:36 +01:00
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* PLATFORM DETECTION */
|
2019-01-05 04:32:07 +01:00
|
|
|
if (!config_sb_platform(&sb, streamFile))
|
2018-12-22 22:47:24 +01:00
|
|
|
goto fail;
|
|
|
|
if (sb.big_endian) {
|
|
|
|
read_32bit = read_32bitBE;
|
|
|
|
} else {
|
|
|
|
read_32bit = read_32bitLE;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (target_subsong <= 0) target_subsong = 1;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* use smaller header buffer for performance */
|
2019-01-02 23:46:39 +01:00
|
|
|
streamTest = reopen_streamfile(streamFile, 0x100);
|
|
|
|
if (!streamTest) goto fail;
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
|
|
|
|
/* SM BASE HEADER */
|
2019-01-19 20:03:48 +01:00
|
|
|
/* SMx layout: header with N map area offset/sizes + custom SBx with relative offsets */
|
2019-01-05 04:02:14 +01:00
|
|
|
sb.is_map = 1;
|
|
|
|
sb.version = read_32bit(0x00, streamFile);
|
|
|
|
sb.map_start = read_32bit(0x04, streamFile);
|
|
|
|
sb.map_num = read_32bit(0x08, streamFile);
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (!config_sb_version(&sb, streamFile))
|
|
|
|
goto fail;
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2018-12-24 12:29:55 +01:00
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
for (i = 0; i < sb.map_num; i++) {
|
2019-01-05 04:02:14 +01:00
|
|
|
off_t offset = sb.map_start + i * sb.map_entry_size;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* SUBMAP HEADER */
|
2019-01-05 04:02:14 +01:00
|
|
|
sb.map_type = read_32bit(offset + 0x00, streamFile); /* usually 0/1=first, 0=rest */
|
|
|
|
sb.map_zero = read_32bit(offset + 0x04, streamFile);
|
|
|
|
sb.map_offset = read_32bit(offset + 0x08, streamFile);
|
|
|
|
sb.map_size = read_32bit(offset + 0x0c, streamFile); /* includes sbX header, but not internal streams */
|
2019-01-19 20:03:48 +01:00
|
|
|
read_string(sb.map_name, sizeof(sb.map_name), offset + 0x10, streamFile); /* null-terminated and may contain garbage after null */
|
2019-01-05 04:02:14 +01:00
|
|
|
if (sb.map_version >= 3)
|
|
|
|
sb.map_unknown = read_32bit(offset + 0x30, streamFile); /* uncommon, id/config? longer name? mem garbage? */
|
|
|
|
|
|
|
|
/* SB HEADER */
|
2019-01-19 20:03:48 +01:00
|
|
|
/* SBx layout: base header, section1, section2, section4, extra section, section3, data (all except header can be null?) */
|
2019-01-05 04:02:14 +01:00
|
|
|
sb.version_empty = read_32bit(sb.map_offset + 0x00, streamFile); /* sbX in maps don't set version */
|
|
|
|
sb.section1_offset = read_32bit(sb.map_offset + 0x04, streamFile) + sb.map_offset;
|
|
|
|
sb.section1_num = read_32bit(sb.map_offset + 0x08, streamFile);
|
|
|
|
sb.section2_offset = read_32bit(sb.map_offset + 0x0c, streamFile) + sb.map_offset;
|
|
|
|
sb.section2_num = read_32bit(sb.map_offset + 0x10, streamFile);
|
2018-12-24 12:29:55 +01:00
|
|
|
|
|
|
|
if (sb.map_version < 3) {
|
2019-01-05 04:02:14 +01:00
|
|
|
sb.section3_offset = read_32bit(sb.map_offset + 0x14, streamFile) + sb.map_offset;
|
|
|
|
sb.section3_num = read_32bit(sb.map_offset + 0x18, streamFile);
|
|
|
|
sb.sectionX_offset = read_32bit(sb.map_offset + 0x1c, streamFile) + sb.map_offset;
|
|
|
|
sb.sectionX_size = read_32bit(sb.map_offset + 0x20, streamFile);
|
2018-12-24 12:29:55 +01:00
|
|
|
} else {
|
2019-01-05 04:02:14 +01:00
|
|
|
sb.section4_offset = read_32bit(sb.map_offset + 0x14, streamFile);
|
|
|
|
sb.section4_num = read_32bit(sb.map_offset + 0x18, streamFile);
|
|
|
|
sb.section3_offset = read_32bit(sb.map_offset + 0x1c, streamFile) + sb.map_offset;
|
|
|
|
sb.section3_num = read_32bit(sb.map_offset + 0x20, streamFile);
|
|
|
|
sb.sectionX_offset = read_32bit(sb.map_offset + 0x24, streamFile) + sb.map_offset;
|
|
|
|
sb.sectionX_size = read_32bit(sb.map_offset + 0x28, streamFile);
|
|
|
|
|
2018-12-24 12:29:55 +01:00
|
|
|
/* latest map format has another section with sounds after section 2 */
|
2019-01-05 04:02:14 +01:00
|
|
|
sb.section2_num += sb.section4_num; /* Let's just merge it with section 2 */
|
|
|
|
sb.sectionX_offset += sb.section4_offset; /* for some reason, this is relative to section 4 here */
|
2018-12-24 12:29:55 +01:00
|
|
|
}
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
VGM_ASSERT(sb.map_type != 0 && sb.map_type != 1, "UBI SM: unknown map_type at %x\n", (uint32_t)offset);
|
|
|
|
VGM_ASSERT(sb.map_zero != 0, "UBI SM: unknown map_zero at %x\n", (uint32_t)offset);
|
2019-01-05 04:02:14 +01:00
|
|
|
//;VGM_ASSERT(sb.map_unknown != 0, "UBI SM: unknown map_unknown at %x\n", (uint32_t)offset);
|
2019-01-19 20:03:48 +01:00
|
|
|
VGM_ASSERT(sb.version_empty != 0, "UBI SM: unknown version_empty at %x\n", (uint32_t)offset);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
if (!parse_sb_header(&sb, streamTest, target_subsong))
|
2018-12-22 22:47:24 +01:00
|
|
|
goto fail;
|
2018-12-23 05:20:36 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* snapshot of current sb if subsong was found
|
|
|
|
* (it gets rewritten and we need exact values for sequences and stuff) */
|
|
|
|
if (sb.type != UBI_NONE) {
|
|
|
|
target_sb = sb; /* memcpy */
|
2019-01-20 17:16:44 +01:00
|
|
|
sb.type = UBI_NONE; /* reset parsed flag */
|
2019-01-19 20:03:48 +01:00
|
|
|
}
|
2018-12-23 05:20:36 +01:00
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
target_sb.total_subsongs = sb.total_subsongs;
|
2019-01-05 04:02:14 +01:00
|
|
|
|
|
|
|
/* CREATE VGMSTREAM */
|
2019-01-19 20:03:48 +01:00
|
|
|
vgmstream = init_vgmstream_ubi_sb_header(&target_sb, streamTest, streamFile);
|
|
|
|
close_streamfile(streamTest);
|
|
|
|
return vgmstream;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
|
|
|
fail:
|
2019-01-02 23:46:39 +01:00
|
|
|
close_streamfile(streamTest);
|
2018-12-22 22:47:24 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* ************************************************************************* */
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
static VGMSTREAM * init_vgmstream_ubi_sb_base(ubi_sb_header *sb, STREAMFILE *streamHead, STREAMFILE *streamData, off_t start_offset) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2017-11-11 15:56:29 +01:00
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
/* build the VGMSTREAM */
|
2019-01-19 20:03:48 +01:00
|
|
|
vgmstream = allocate_vgmstream(sb->channels, sb->loop_flag);
|
2017-11-05 17:06:40 +01:00
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
2019-01-07 18:03:47 +01:00
|
|
|
vgmstream->meta_type = meta_UBI_SB;
|
2018-12-22 22:47:24 +01:00
|
|
|
vgmstream->sample_rate = sb->sample_rate;
|
2019-01-13 23:27:29 +01:00
|
|
|
vgmstream->num_streams = sb->total_subsongs;
|
2018-12-22 22:47:24 +01:00
|
|
|
vgmstream->stream_size = sb->stream_size;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-07 22:10:48 +01:00
|
|
|
vgmstream->num_samples = sb->num_samples;
|
|
|
|
vgmstream->loop_start_sample = sb->loop_start;
|
|
|
|
vgmstream->loop_end_sample = sb->num_samples;
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
switch(sb->codec) {
|
2019-01-19 20:03:48 +01:00
|
|
|
case UBI_IMA:
|
2017-11-05 17:06:40 +01:00
|
|
|
vgmstream->coding_type = coding_UBI_IMA;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case UBI_UNK:
|
|
|
|
// todo some kind of blocked layout + Ubi 4/6-bit ADPCM?
|
|
|
|
// used in Splinter Cell and some Myst IV banks (ex. puzzle_si_splintercell.sb2)
|
|
|
|
VGM_LOG("UBI SB: unsupported Ubi ADPCM found\n");
|
|
|
|
goto fail;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
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;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RAW_PSX:
|
|
|
|
vgmstream->coding_type = coding_PSX;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
2018-12-22 22:47:24 +01:00
|
|
|
vgmstream->interleave_block_size = (sb->stream_type == 0x00) ? sb->stream_size / sb->channels : 0x10; /* TODO: needs testing */
|
2019-01-07 22:10:48 +01:00
|
|
|
if (vgmstream->num_samples == 0) { /* early PS2 games may not set it for a few internal streams */
|
|
|
|
vgmstream->num_samples = ps_bytes_to_samples(sb->stream_size, sb->channels) ;
|
|
|
|
vgmstream->loop_end_sample = vgmstream->num_samples;
|
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
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;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RAW_DSP:
|
|
|
|
vgmstream->coding_type = coding_NGC_DSP;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
2019-01-19 20:03:48 +01:00
|
|
|
vgmstream->interleave_block_size = align_size_to_block(sb->stream_size / sb->channels, 0x08); /* frame-aligned */
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* DSP extra info entry size is 0x40 (first/last 0x10 = unknown), per channel */
|
2019-01-19 20:03:48 +01:00
|
|
|
dsp_read_coefs_be(vgmstream,streamHead,sb->extra_offset + 0x10, 0x40);
|
2017-11-05 17:06:40 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FMT_VAG:
|
2019-01-07 18:03:47 +01:00
|
|
|
/* skip VAG header (some sb4 use VAG and others raw PSX) */ //todo remove
|
2017-11-05 17:06:40 +01:00
|
|
|
if (read_32bitBE(start_offset, streamData) == 0x56414770) { /* "VAGp" */
|
|
|
|
start_offset += 0x30;
|
2018-12-22 22:47:24 +01:00
|
|
|
sb->stream_size -= 0x30;
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
vgmstream->coding_type = coding_PSX;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
2018-12-22 22:47:24 +01:00
|
|
|
vgmstream->interleave_block_size = 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;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* skip weird value (3, 4) in Brothers in Arms: D-Day (PSP) */ //todo remove
|
2017-12-07 23:54:05 +01:00
|
|
|
if (read_32bitBE(start_offset+0x04,streamData) == 0x52494646) {
|
2019-01-05 04:02:14 +01:00
|
|
|
VGM_LOG("UBI SB: skipping unknown value 0x%x before RIFF\n", read_32bitBE(start_offset+0x00,streamData));
|
2017-12-07 23:54:05 +01:00
|
|
|
start_offset += 0x04;
|
2018-12-22 22:47:24 +01:00
|
|
|
sb->stream_size -= 0x04;
|
2017-12-07 23:54:05 +01:00
|
|
|
}
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
ffmpeg_data = init_ffmpeg_offset(streamData, start_offset, sb->stream_size);
|
2017-11-05 17:06:40 +01:00
|
|
|
if ( !ffmpeg_data ) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
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-21 15:17:10 +01:00
|
|
|
case RAW_AT3: {
|
2018-12-24 12:29:55 +01:00
|
|
|
ffmpeg_codec_data *ffmpeg_data;
|
2018-12-21 15:17:10 +01:00
|
|
|
uint8_t buf[0x100];
|
|
|
|
int32_t bytes, block_size, encoder_delay, joint_stereo;
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
block_size = 0x98 * sb->channels;
|
2018-12-21 15:17:10 +01:00
|
|
|
joint_stereo = 0;
|
|
|
|
encoder_delay = 0x00; /* TODO: this is incorrect */
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
bytes = ffmpeg_make_riff_atrac3(buf, 0x100, sb->num_samples, sb->stream_size, sb->channels, sb->sample_rate, block_size, joint_stereo, encoder_delay);
|
2018-12-24 12:29:55 +01:00
|
|
|
ffmpeg_data = init_ffmpeg_header_offset(streamData, buf, bytes, start_offset, sb->stream_size);
|
|
|
|
if (!ffmpeg_data) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
2018-12-21 15:17:10 +01:00
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo: some XMA1 decode a bit strangely at certain positions (FFmpeg bug?)
|
2018-12-21 15:17:10 +01:00
|
|
|
case FMT_XMA1: {
|
|
|
|
ffmpeg_codec_data *ffmpeg_data;
|
|
|
|
uint8_t buf[0x100];
|
2018-12-31 21:05:58 +01:00
|
|
|
uint32_t sec1_num, sec2_num, sec3_num, num_frames, bits_per_frame;
|
2018-12-30 20:25:14 +01:00
|
|
|
uint8_t flag;
|
2019-01-02 23:31:14 +01:00
|
|
|
size_t bytes, chunk_size, header_size, data_size;
|
2018-12-21 15:17:10 +01:00
|
|
|
off_t header_offset;
|
|
|
|
|
|
|
|
chunk_size = 0x20;
|
|
|
|
|
|
|
|
/* formatted XMA sounds have a strange custom header */
|
2018-12-30 20:25:14 +01:00
|
|
|
header_offset = start_offset; /* XMA fmt chunk at the start */
|
|
|
|
flag = read_8bit(header_offset + 0x20, streamData);
|
|
|
|
sec2_num = read_32bitBE(header_offset + 0x24, streamData); /* number of XMA frames */
|
|
|
|
sec1_num = read_32bitBE(header_offset + 0x28, streamData);
|
|
|
|
sec3_num = read_32bitBE(header_offset + 0x2c, streamData);
|
2018-12-31 21:05:58 +01:00
|
|
|
num_frames = sec2_num;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
bits_per_frame = 4;
|
|
|
|
if (flag == 0x02 || flag == 0x04)
|
2018-12-31 21:05:58 +01:00
|
|
|
bits_per_frame = 2;
|
2019-01-19 20:03:48 +01:00
|
|
|
else if (flag == 0x08)
|
|
|
|
bits_per_frame = 1;
|
2018-12-30 20:25:14 +01:00
|
|
|
|
2018-12-31 21:05:58 +01:00
|
|
|
header_size = 0x30;
|
|
|
|
header_size += sec1_num * 0x04;
|
2019-01-19 20:03:48 +01:00
|
|
|
header_size += align_size_to_block(sec2_num * bits_per_frame, 32) / 8; /* bitstream seek table? */
|
2018-12-31 21:05:58 +01:00
|
|
|
header_size += sec3_num * 0x08;
|
2018-12-30 20:25:14 +01:00
|
|
|
start_offset += header_size;
|
2018-12-31 21:05:58 +01:00
|
|
|
data_size = num_frames * 0x800;
|
2018-12-21 15:17:10 +01:00
|
|
|
|
|
|
|
bytes = ffmpeg_make_riff_xma_from_fmt_chunk(buf, 0x100, header_offset, chunk_size, data_size, streamData, 1);
|
|
|
|
|
|
|
|
ffmpeg_data = init_ffmpeg_header_offset(streamData, buf, bytes, start_offset, data_size);
|
|
|
|
if (!ffmpeg_data) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
2019-01-19 20:03:48 +01:00
|
|
|
|
|
|
|
xma_fix_raw_samples_ch(vgmstream, streamData, start_offset, data_size, sb->channels, 0, 0);
|
2018-12-21 15:17:10 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-17 08:05:45 +01:00
|
|
|
case RAW_XMA1: {
|
|
|
|
ffmpeg_codec_data *ffmpeg_data;
|
|
|
|
uint8_t buf[0x100];
|
2018-12-21 15:17:10 +01:00
|
|
|
size_t bytes, chunk_size;
|
2018-12-17 08:05:45 +01:00
|
|
|
off_t header_offset;
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
VGM_ASSERT(sb->is_external, "Ubi SB: Raw XMA used for external sound\n");
|
2018-12-17 08:05:45 +01:00
|
|
|
|
2018-12-23 02:15:50 +01:00
|
|
|
/* get XMA header from extra section */
|
2018-12-21 15:17:10 +01:00
|
|
|
chunk_size = 0x20;
|
2018-12-23 16:55:20 +01:00
|
|
|
header_offset = sb->xma_header_offset;
|
2019-01-19 20:03:48 +01:00
|
|
|
bytes = ffmpeg_make_riff_xma_from_fmt_chunk(buf, 0x100, header_offset, chunk_size, sb->stream_size, streamHead, 1);
|
2018-12-17 08:05:45 +01:00
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
ffmpeg_data = init_ffmpeg_header_offset(streamData, buf, bytes, start_offset, sb->stream_size);
|
2018-12-17 08:05:45 +01:00
|
|
|
if (!ffmpeg_data) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
2019-01-19 20:03:48 +01:00
|
|
|
|
|
|
|
xma_fix_raw_samples_ch(vgmstream, streamData, start_offset, sb->stream_size, sb->channels, 0, 0);
|
2018-12-17 08:05:45 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
case FMT_OGG: {
|
|
|
|
ffmpeg_codec_data *ffmpeg_data;
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
ffmpeg_data = init_ffmpeg_offset(streamData, start_offset, sb->stream_size);
|
2017-11-05 17:06:40 +01:00
|
|
|
if ( !ffmpeg_data ) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2019-01-07 18:03:47 +01:00
|
|
|
case FMT_CWAV:
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->channels > 1) goto fail; /* unknown layout */
|
2019-01-07 18:03:47 +01:00
|
|
|
vgmstream->coding_type = coding_NGC_DSP;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 0x08;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
dsp_read_coefs_le(vgmstream,streamData,start_offset + 0x7c, 0x40);
|
2019-01-07 22:10:48 +01:00
|
|
|
start_offset += 0xe0; /* skip CWAV header */
|
2019-01-07 18:03:47 +01:00
|
|
|
break;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown codec\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* open the actual for decoding (streamData can be an internal or external stream) */
|
2017-11-05 17:06:40 +01:00
|
|
|
if ( !vgmstream_open_stream(vgmstream, streamData, start_offset) )
|
|
|
|
goto fail;
|
2019-01-19 20:03:48 +01:00
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VGMSTREAM * init_vgmstream_ubi_sb_audio(ubi_sb_header *sb, STREAMFILE *streamTest, STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
|
|
|
STREAMFILE *streamData = NULL;
|
|
|
|
|
|
|
|
/* open external stream if needed */
|
|
|
|
if (sb->is_external) {
|
|
|
|
streamData = open_streamfile_by_filename(streamFile,sb->resource_name);
|
|
|
|
if (streamData == NULL) {
|
|
|
|
VGM_LOG("UBI SB: external stream '%s' not found\n", sb->resource_name);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
streamData = streamFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* init actual VGMSTREAM */
|
|
|
|
vgmstream = init_vgmstream_ubi_sb_base(sb, streamTest, streamData, sb->stream_offset);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
if (sb->is_external && streamData) close_streamfile(streamData);
|
2017-11-05 17:06:40 +01:00
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
fail:
|
2018-12-22 22:47:24 +01:00
|
|
|
if (sb->is_external && streamData) close_streamfile(streamData);
|
2017-11-05 17:06:40 +01:00
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
static VGMSTREAM * init_vgmstream_ubi_sb_layer(ubi_sb_header *sb, STREAMFILE *streamTest, STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
|
|
|
layered_layout_data* data = NULL;
|
|
|
|
STREAMFILE* temp_streamFile = NULL;
|
|
|
|
STREAMFILE *streamData = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* open external stream if needed */
|
|
|
|
if (sb->is_external) {
|
|
|
|
streamData = open_streamfile_by_filename(streamFile,sb->resource_name);
|
|
|
|
if (streamData == NULL) {
|
|
|
|
VGM_LOG("UBI SB: external stream '%s' not found\n", sb->resource_name);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
streamData = streamFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* init layout */
|
|
|
|
data = init_layout_layered(sb->layer_count);
|
|
|
|
if (!data) goto fail;
|
|
|
|
|
|
|
|
/* open all layers and mix */
|
|
|
|
for (i = 0; i < sb->layer_count; i++) {
|
|
|
|
/* prepare streamfile from a single layer section */
|
|
|
|
temp_streamFile = setup_ubi_sb_streamfile(streamData, sb->stream_offset, sb->stream_size, i, sb->layer_count, sb->big_endian);
|
|
|
|
if (!temp_streamFile) goto fail;
|
|
|
|
|
|
|
|
/* build the layer VGMSTREAM (standard sb with custom streamfile) */
|
|
|
|
data->layers[i] = init_vgmstream_ubi_sb_base(sb, streamTest, temp_streamFile, 0x00);
|
|
|
|
if (!data->layers[i]) goto fail;
|
|
|
|
|
|
|
|
close_streamfile(temp_streamFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!setup_layout_layered(data))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* build the base VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(sb->channels * sb->layer_count, sb->loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
vgmstream->meta_type = meta_UBI_SB;
|
|
|
|
vgmstream->sample_rate = sb->sample_rate;
|
|
|
|
vgmstream->num_streams = sb->total_subsongs;
|
|
|
|
vgmstream->stream_size = sb->stream_size;
|
|
|
|
|
|
|
|
vgmstream->num_samples = sb->num_samples;
|
|
|
|
vgmstream->loop_start_sample = sb->loop_start;
|
|
|
|
vgmstream->loop_end_sample = sb->num_samples;
|
|
|
|
|
|
|
|
vgmstream->coding_type = data->layers[0]->coding_type;
|
|
|
|
vgmstream->layout_type = layout_layered;
|
|
|
|
vgmstream->layout_data = data;
|
|
|
|
|
|
|
|
|
|
|
|
if (sb->is_external && streamData) close_streamfile(streamData);
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
fail:
|
|
|
|
close_streamfile(temp_streamFile);
|
|
|
|
if (sb->is_external && streamData) close_streamfile(streamData);
|
|
|
|
if (vgmstream)
|
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
else
|
|
|
|
free_layout_layered(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VGMSTREAM * init_vgmstream_ubi_sb_sequence(ubi_sb_header *sb, STREAMFILE *streamTest, STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
|
|
|
segmented_layout_data* data = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* init layout */
|
|
|
|
data = init_layout_segmented(sb->sequence_count);
|
|
|
|
if (!data) goto fail;
|
|
|
|
|
|
|
|
sb->num_samples = 0;
|
|
|
|
|
|
|
|
/* open all segments and mix */
|
|
|
|
for (i = 0; i < sb->sequence_count; i++) {
|
|
|
|
ubi_sb_header temp_sb = *sb; /* memcpy'ed */
|
|
|
|
int entry_index = sb->sequence_chain[i];
|
|
|
|
off_t entry_offset = sb->section2_offset + sb->section2_entry_size * entry_index;
|
|
|
|
|
|
|
|
;VGM_LOG("UBI SB: index=%x, offset=%lx\n", entry_index, entry_offset);
|
|
|
|
|
|
|
|
/* parse expected entry */
|
|
|
|
if (!parse_header(&temp_sb, streamTest, entry_offset, entry_index))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (temp_sb.type != UBI_AUDIO && temp_sb.type != UBI_LAYER) {
|
|
|
|
VGM_LOG("UBI SB: unexpected sequence entry type at %x\n", (uint32_t)entry_offset);
|
|
|
|
goto fail; /* technically ok but too much recursiveness? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* build the layer VGMSTREAM (current sb entry config) */
|
|
|
|
data->segments[i] = init_vgmstream_ubi_sb_header(&temp_sb, streamTest, streamFile);
|
|
|
|
if (!data->segments[i]) goto fail;
|
|
|
|
|
2019-01-20 17:16:44 +01:00
|
|
|
if (i == sb->sequence_loop)
|
|
|
|
sb->loop_start = sb->num_samples;
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->num_samples += data->segments[i]->num_samples;
|
|
|
|
}
|
|
|
|
|
2019-01-20 17:16:44 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (!setup_layout_segmented(data))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* build the base VGMSTREAM */
|
2019-01-20 17:16:44 +01:00
|
|
|
vgmstream = allocate_vgmstream(data->segments[0]->channels, !sb->sequence_single);
|
2019-01-19 20:03:48 +01:00
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
vgmstream->meta_type = meta_UBI_SB;
|
|
|
|
vgmstream->sample_rate = data->segments[0]->sample_rate;
|
|
|
|
vgmstream->num_streams = sb->total_subsongs;
|
|
|
|
//vgmstream->stream_size = sb->stream_size; /* auto when getting avg br */
|
|
|
|
|
|
|
|
vgmstream->num_samples = sb->num_samples;
|
|
|
|
vgmstream->loop_start_sample = sb->loop_start;
|
|
|
|
vgmstream->loop_end_sample = sb->num_samples;
|
|
|
|
|
|
|
|
vgmstream->coding_type = data->segments[0]->coding_type;
|
|
|
|
vgmstream->layout_type = layout_segmented;
|
|
|
|
vgmstream->layout_data = data;
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
fail:
|
|
|
|
if (vgmstream)
|
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
else
|
|
|
|
free_layout_segmented(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VGMSTREAM * init_vgmstream_ubi_sb_header(ubi_sb_header *sb, STREAMFILE* streamTest, STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
|
|
|
|
|
|
|
if (sb->total_subsongs == 0) {
|
|
|
|
VGM_LOG("UBI SB: no subsongs\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
;VGM_LOG("UBI SB: target at %x + %x, extra=%x, name=%s, id=%i, t=%i\n",
|
|
|
|
(uint32_t)sb->header_offset, sb->section2_entry_size, (uint32_t)sb->extra_offset, sb->resource_name, sb->group_id, sb->stream_type);
|
|
|
|
|
|
|
|
;VGM_LOG("UBI SB: stream offset=%x, size=%x, name=%s\n", (uint32_t)sb->stream_offset, sb->stream_size, sb->is_external ? sb->resource_name : "internal" );
|
|
|
|
|
|
|
|
switch(sb->type) {
|
|
|
|
case UBI_AUDIO:
|
|
|
|
vgmstream = init_vgmstream_ubi_sb_audio(sb, streamTest, streamFile);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_LAYER:
|
|
|
|
vgmstream = init_vgmstream_ubi_sb_layer(sb, streamTest, streamFile);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_SEQUENCE:
|
|
|
|
vgmstream = init_vgmstream_ubi_sb_sequence(sb, streamTest, streamFile);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UBI_NONE:
|
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: subsong not found/parsed\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
strcpy(vgmstream->stream_name, sb->readable_name);
|
|
|
|
return vgmstream;
|
|
|
|
fail:
|
|
|
|
close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ************************************************************************* */
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
static void build_readable_name(char * buf, size_t buf_size, ubi_sb_header * sb) {
|
2019-01-13 23:27:29 +01:00
|
|
|
const char *grp_name;
|
|
|
|
const char *res_name;
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t type;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
/* config */
|
|
|
|
if (sb->is_map)
|
|
|
|
grp_name = sb->map_name;
|
|
|
|
else
|
|
|
|
grp_name = "bank"; //NULL
|
|
|
|
id = sb->header_id;
|
|
|
|
type = sb->header_type;
|
|
|
|
if (sb->is_map)
|
2019-01-19 20:03:48 +01:00
|
|
|
index = sb->header_index; //sb->bank_subsongs;
|
2019-01-13 23:27:29 +01:00
|
|
|
else
|
|
|
|
index = sb->header_index; //-1
|
2019-01-19 20:03:48 +01:00
|
|
|
|
|
|
|
if (sb->type == UBI_SEQUENCE) {
|
2019-01-20 17:16:44 +01:00
|
|
|
if (sb->sequence_single) {
|
|
|
|
if (sb->sequence_count == 1)
|
|
|
|
res_name = "single";
|
|
|
|
else
|
|
|
|
res_name = "multi";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (sb->sequence_count == 1)
|
|
|
|
res_name = "single-loop";
|
|
|
|
else
|
|
|
|
res_name = (sb->sequence_loop == 0) ? "multi-loop" : "intro-loop";
|
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (sb->is_external || sb->cfga_has_internal_names)
|
|
|
|
res_name = sb->resource_name;
|
|
|
|
else
|
|
|
|
res_name = NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
|
|
|
|
/* create name */
|
|
|
|
if (grp_name) {
|
2019-01-19 20:03:48 +01:00
|
|
|
if (res_name && res_name[0]) {
|
2019-01-13 23:27:29 +01:00
|
|
|
if (index >= 0)
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%s/%04d/%02x-%08x/%s", grp_name, index, type, id, res_name);
|
2019-01-13 23:27:29 +01:00
|
|
|
else
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%s/%02x-%08x/%s", grp_name, type, id, res_name);
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (index >= 0)
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%s/%04d/%02x-%08x", grp_name, index, type, id);
|
2019-01-13 23:27:29 +01:00
|
|
|
else
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%s/%02x-%08x", grp_name, type, id);
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2019-01-19 20:03:48 +01:00
|
|
|
if (res_name && res_name[0]) {
|
2019-01-13 23:27:29 +01:00
|
|
|
if (index >= 0)
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%04d/%02x-%08x/%s", index, type, id, res_name);
|
2019-01-13 23:27:29 +01:00
|
|
|
else
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%02x-%08x/%s", type, id, res_name);
|
2019-01-13 23:27:29 +01:00
|
|
|
} else {
|
|
|
|
if (index >= 0)
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%04d/%02x-%08x", index, type, id);
|
2019-01-13 23:27:29 +01:00
|
|
|
else
|
2019-01-19 20:03:48 +01:00
|
|
|
snprintf(buf,buf_size, "%02x-%08x", type, id);
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
2019-01-02 23:31:14 +01:00
|
|
|
}
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
2019-01-02 23:31:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
static int parse_type_audio(ubi_sb_header * sb, off_t offset, STREAMFILE* streamFile) {
|
2019-01-13 23:27:29 +01:00
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = sb->big_endian ? read_32bitBE : read_32bitLE;
|
|
|
|
int16_t (*read_16bit)(off_t,STREAMFILE*) = sb->big_endian ? read_16bitBE : read_16bitLE;
|
2019-01-02 23:31:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* audio header */
|
|
|
|
sb->type = UBI_AUDIO;
|
2019-01-02 23:31:14 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
sb->extra_offset = read_32bit(offset + sb->cfga_extra_offset, streamFile) + sb->sectionX_offset;
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->stream_size = read_32bit(offset + sb->cfga_stream_size, streamFile);
|
2019-01-13 23:27:29 +01:00
|
|
|
sb->stream_offset = read_32bit(offset + sb->cfga_stream_offset, streamFile);
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->channels = (sb->cfga_channels % 4) ? /* non-aligned offset is always 16b */
|
2019-01-13 23:27:29 +01:00
|
|
|
(uint16_t)read_16bit(offset + sb->cfga_channels, streamFile) :
|
|
|
|
(uint32_t)read_32bit(offset + sb->cfga_channels, streamFile);
|
|
|
|
sb->sample_rate = read_32bit(offset + sb->cfga_sample_rate, streamFile);
|
|
|
|
sb->stream_type = read_32bit(offset + sb->cfga_stream_type, streamFile);
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->stream_size == 0) {
|
|
|
|
VGM_LOG("UBI SB: bad stream size\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
if (sb->cfga_loop_flag) {
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->loop_flag = (read_32bit(offset + sb->cfga_loop_flag, streamFile) & sb->cfga_and_loop_flag);
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
if (sb->loop_flag) {
|
|
|
|
sb->loop_start = read_32bit(offset + sb->cfga_num_samples, streamFile);
|
|
|
|
sb->num_samples = read_32bit(offset + sb->cfga_num_samples2, streamFile) + sb->loop_start;
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->cfga_num_samples == sb->cfga_num_samples2) { /* early games just repeat and don't set loop start */
|
2019-01-13 23:27:29 +01:00
|
|
|
sb->num_samples = sb->loop_start;
|
|
|
|
sb->loop_start = 0;
|
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
/* loop starts that aren't 0 do exist but are very rare (ex. Beowulf PSP sb 82, index 575) */
|
2019-01-13 23:27:29 +01:00
|
|
|
} else {
|
|
|
|
sb->num_samples = read_32bit(offset + sb->cfga_num_samples, streamFile);
|
|
|
|
}
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
if (sb->cfga_group_id) {
|
|
|
|
sb->group_id = read_32bit(offset + sb->cfga_group_id, streamFile);
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->cfga_and_group_id) sb->group_id &= sb->cfga_and_group_id;
|
|
|
|
|
|
|
|
/* normalize bitflag, known groups are only id 0/1 (if needed could calculate
|
|
|
|
* (shift-right value here, based on cfga_and_group_id first 1-bit) */
|
|
|
|
if (sb->group_id > 1)
|
|
|
|
sb->group_id = 1;
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
if (sb->cfga_external_flag) {
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->is_external = (read_32bit(offset + sb->cfga_external_flag, streamFile) & sb->cfga_and_external_flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sb->resource_name_size > sizeof(sb->resource_name)) {
|
|
|
|
goto fail;
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
/* external stream name can be found in the header (first versions) or the sectionX table (later versions) */
|
|
|
|
if (sb->cfga_stream_name) {
|
|
|
|
read_string(sb->resource_name, sb->resource_name_size, offset + sb->cfga_stream_name, streamFile);
|
|
|
|
} else {
|
|
|
|
sb->cfga_stream_name = read_32bit(offset + sb->cfga_extra_name, streamFile);
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->cfgl_stream_name != 0xFFFFFFFF)
|
2019-01-13 23:27:29 +01:00
|
|
|
read_string(sb->resource_name, sb->resource_name_size, sb->sectionX_offset + sb->cfga_stream_name, streamFile);
|
|
|
|
}
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* points at XMA1 header in the extra section (only for RAW_XMA1, garbage ignored otherwise) */
|
|
|
|
if (sb->cfga_xma_offset) {
|
|
|
|
sb->xma_header_offset = read_32bit(offset + sb->cfga_xma_offset, streamFile) + sb->sectionX_offset;
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
2019-01-02 23:31:14 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
static int parse_type_sequence(ubi_sb_header * sb, off_t offset, STREAMFILE* streamFile) {
|
2019-01-13 23:27:29 +01:00
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = sb->big_endian ? read_32bitBE : read_32bitLE;
|
2019-01-19 20:03:48 +01:00
|
|
|
off_t table_offset;
|
|
|
|
int i;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* sequence chain */
|
|
|
|
sb->type = UBI_SEQUENCE;
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->extra_offset = read_32bit(offset + sb->cfgs_extra_offset, streamFile) + sb->sectionX_offset;
|
2019-01-20 17:16:44 +01:00
|
|
|
sb->sequence_loop = read_32bit(offset + sb->cfgs_sequence_loop, streamFile);
|
|
|
|
sb->sequence_single = read_32bit(offset + sb->cfgs_sequence_single, streamFile);
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->sequence_count = read_32bit(offset + sb->cfgs_sequence_count, streamFile);
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->sequence_entry_size == 0) {
|
|
|
|
VGM_LOG("Ubi SB: sequence entry size not configured at %x\n", (uint32_t)offset);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (sb->sequence_count > sizeof(sb->sequence_chain)) { /* arbitrary max */
|
|
|
|
VGM_LOG("Ubi SB: incorrect layer count\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* get chain in extra table */
|
|
|
|
table_offset = sb->extra_offset;
|
|
|
|
for (i = 0; i < sb->sequence_count; i++) {
|
|
|
|
uint32_t entry_number = (uint32_t)read_32bit(table_offset+sb->cfgs_entry_number, streamFile);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* some sequences have an upper bit for some reason */
|
|
|
|
;VGM_ASSERT_ONCE(entry_number & 0x80000000, "UBI SB: sequence bit entry found at %x\n", (uint32_t)sb->extra_offset);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
entry_number = entry_number & 0x7FFFFFFF;
|
|
|
|
if (entry_number > sb->section2_num) {
|
|
|
|
VGM_LOG("UBI SB: chain with wrong entry %i vs %i at %x\n", entry_number, sb->section2_num, (uint32_t)sb->extra_offset);
|
2019-01-13 23:27:29 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->sequence_chain[i] = entry_number;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
table_offset += sb->sequence_entry_size;
|
|
|
|
}
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
static int parse_type_layer(ubi_sb_header * sb, off_t offset, STREAMFILE* streamFile) {
|
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = sb->big_endian ? read_32bitBE : read_32bitLE;
|
|
|
|
int16_t (*read_16bit)(off_t,STREAMFILE*) = sb->big_endian ? read_16bitBE : read_16bitLE;
|
|
|
|
off_t table_offset;
|
|
|
|
int i;
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* layer header */
|
|
|
|
sb->type = UBI_LAYER;
|
2019-01-07 22:10:48 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->extra_offset = read_32bit(offset + sb->cfgl_extra_offset, streamFile) + sb->sectionX_offset;
|
|
|
|
sb->layer_count = read_32bit(offset + sb->cfgl_layer_count, streamFile);
|
|
|
|
sb->stream_size = read_32bit(offset + sb->cfgl_stream_size, streamFile);
|
|
|
|
sb->stream_offset = read_32bit(offset + sb->cfgl_stream_offset, streamFile);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->stream_size == 0) {
|
|
|
|
VGM_LOG("UBI SB: bad stream size\n");
|
|
|
|
goto fail;
|
2019-01-02 23:31:14 +01:00
|
|
|
}
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->layer_entry_size == 0) {
|
|
|
|
VGM_LOG("Ubi SB: layer entry size not configured at %x\n", (uint32_t)offset);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (sb->layer_count > 16) { /* arbitrary max */
|
|
|
|
VGM_LOG("Ubi SB: incorrect layer count\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
2019-01-02 23:31:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* get 1st layer header in extra table and validate all headers match */
|
|
|
|
table_offset = sb->extra_offset;
|
|
|
|
sb->channels = (sb->cfgl_channels % 4) ? /* non-aligned offset is always 16b */
|
|
|
|
(uint16_t)read_16bit(table_offset + sb->cfgl_channels, streamFile) :
|
|
|
|
(uint32_t)read_32bit(table_offset + sb->cfgl_channels, streamFile);
|
|
|
|
sb->sample_rate = read_32bit(table_offset + sb->cfgl_sample_rate, streamFile);
|
|
|
|
sb->stream_type = read_32bit(table_offset + sb->cfgl_stream_type, streamFile);
|
|
|
|
sb->num_samples = read_32bit(table_offset + sb->cfgl_num_samples, streamFile);
|
|
|
|
|
|
|
|
for (i = 0; i < sb->layer_count; i++) {
|
|
|
|
int channels = (sb->cfgl_channels % 4) ? /* non-aligned offset is always 16b */
|
|
|
|
(uint16_t)read_16bit(table_offset + sb->cfgl_channels, streamFile) :
|
|
|
|
(uint32_t)read_32bit(table_offset + sb->cfgl_channels, streamFile);
|
|
|
|
int sample_rate = read_32bit(table_offset + sb->cfgl_sample_rate, streamFile);
|
|
|
|
int stream_type = read_32bit(table_offset + sb->cfgl_stream_type, streamFile);
|
|
|
|
int num_samples = read_32bit(table_offset + sb->cfgl_num_samples, streamFile);
|
|
|
|
if (sb->channels != channels || sb->sample_rate != sample_rate || sb->stream_type != stream_type) {
|
|
|
|
VGM_LOG("Ubi SB: layer headers don't match at %x\n", (uint32_t)table_offset);
|
2018-12-23 05:20:36 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* can be +-1 */
|
|
|
|
if (sb->num_samples != num_samples && sb->num_samples + 1 == num_samples) {
|
|
|
|
sb->num_samples -= 1;
|
2018-12-23 05:20:36 +01:00
|
|
|
}
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
table_offset += sb->layer_entry_size;
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* all layers seem external */
|
|
|
|
sb->is_external = 1;
|
|
|
|
|
|
|
|
/* external stream name can be found in the header (first versions) or the sectionX table (later versions) */
|
|
|
|
if (sb->cfgl_stream_name) {
|
|
|
|
read_string(sb->resource_name, sb->resource_name_size, offset + sb->cfgl_stream_name, streamFile);
|
|
|
|
} else {
|
|
|
|
sb->cfgl_stream_name = read_32bit(offset + sb->cfgl_extra_name, streamFile);
|
|
|
|
if (sb->cfgl_stream_name != 0xFFFFFFFF)
|
|
|
|
read_string(sb->resource_name, sb->resource_name_size, sb->sectionX_offset + sb->cfgl_stream_name, streamFile);
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* layers seem to include XMA header */
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_stream_type(ubi_sb_header * sb) {
|
|
|
|
|
|
|
|
if (sb->type == UBI_SEQUENCE)
|
|
|
|
return 1;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-07 18:03:47 +01:00
|
|
|
/* happens in a few internal sounds from early Xbox games */
|
2017-11-05 17:06:40 +01:00
|
|
|
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:
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->is_psp_old)
|
2018-12-17 08:05:45 +01:00
|
|
|
sb->codec = FMT_VAG;
|
2019-01-19 20:03:48 +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
|
2019-01-19 20:03:48 +01:00
|
|
|
case UBI_PS3: /* assumed, but not games seem to use it */
|
2018-12-21 15:17:10 +01:00
|
|
|
sb->codec = RAW_AT3;
|
2018-12-17 08:05:45 +01:00
|
|
|
break;
|
|
|
|
#endif
|
2019-01-07 18:03:47 +01:00
|
|
|
case UBI_3DS:
|
|
|
|
sb->codec = FMT_CWAV;
|
|
|
|
break;
|
2018-12-17 08:05:45 +01:00
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown internal format\n");
|
|
|
|
goto fail;
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x01:
|
2019-01-07 22:10:48 +01:00
|
|
|
switch (sb->version) {
|
|
|
|
case 0x00000003: /* Donald Duck: Goin' Quackers */
|
|
|
|
sb->codec = RAW_DSP;
|
|
|
|
break;
|
|
|
|
default:
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->codec = RAW_PCM; /* uncommon, ex. Wii/PSP/3DS */
|
2019-01-07 22:10:48 +01:00
|
|
|
break;
|
|
|
|
}
|
2017-11-11 17:46:18 +01:00
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x02:
|
|
|
|
switch (sb->version) {
|
|
|
|
case 0x00000007: /* Splinter Cell, Splinter Cell: Pandora Tomorrow */
|
|
|
|
case 0x00120012: /* Myst IV: Exile */
|
|
|
|
sb->codec = UBI_UNK;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sb->codec = RAW_PSX; /* PS3 */
|
|
|
|
break;
|
|
|
|
}
|
2018-12-17 08:05:45 +01:00
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x03:
|
|
|
|
sb->codec = UBI_IMA; /* Ubi IMA v3+ (versions handled in decoder) */
|
2017-11-05 17:06:40 +01:00
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x04:
|
2019-01-07 22:10:48 +01:00
|
|
|
switch (sb->version) {
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x00000007: /* Splinter Cell, Splinter Cell: Pandora Tomorrow */
|
|
|
|
sb->codec = UBI_IMA;
|
2019-01-07 22:10:48 +01:00
|
|
|
break;
|
|
|
|
default:
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->codec = FMT_OGG; /* later PC games */
|
2019-01-07 22:10:48 +01:00
|
|
|
break;
|
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x05:
|
2018-12-21 15:17:10 +01:00
|
|
|
switch (sb->platform) {
|
|
|
|
case UBI_X360:
|
|
|
|
sb->codec = FMT_XMA1;
|
|
|
|
break;
|
|
|
|
case UBI_PS3:
|
|
|
|
case UBI_PSP:
|
|
|
|
sb->codec = FMT_AT3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown codec for stream_type %x\n", sb->stream_type);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x06:
|
|
|
|
sb->codec = RAW_PSX; /* later PSP and PS3(?) games */
|
2018-12-24 12:29:55 +01:00
|
|
|
break;
|
|
|
|
|
2018-12-21 15:17:10 +01:00
|
|
|
case 0x07:
|
|
|
|
sb->codec = RAW_AT3;
|
2017-11-05 17:06:40 +01:00
|
|
|
break;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
case 0x08:
|
2019-01-07 22:10:48 +01:00
|
|
|
switch (sb->version) {
|
|
|
|
case 0x00000003: /* Donald Duck: Goin' Quackers */
|
2019-01-13 23:27:29 +01:00
|
|
|
case 0x00000004: /* Myst III: Exile */
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->codec = UBI_IMA; /* Ubi IMA v2/v3 */
|
2019-01-07 22:10:48 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sb->codec = FMT_AT3;
|
|
|
|
break;
|
|
|
|
}
|
2018-12-30 15:38:03 +01:00
|
|
|
break;
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown stream_type %x\n", sb->stream_type);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_internal_offset(ubi_sb_header * sb, STREAMFILE *streamFile) {
|
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = sb->big_endian ? read_32bitBE : read_32bitLE;
|
|
|
|
int i, j, k;
|
|
|
|
|
|
|
|
if (sb->type == UBI_SEQUENCE)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
VGM_ASSERT(!sb->is_map && sb->section3_num > 2, "UBI SB: section3 > 2 found\n");
|
|
|
|
|
|
|
|
if (!(sb->cfga_group_id || sb->is_map) && sb->section3_num > 1) {
|
|
|
|
VGM_LOG("UBI SB: unexpected number of internal stream groups %i\n", sb->section3_num);
|
|
|
|
goto fail;
|
2018-12-23 09:03:50 +01:00
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->is_external)
|
|
|
|
return 1;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Internal sounds are split into codec groups, with their offsets being relative to group start.
|
|
|
|
* A table contains sizes of each group, so we adjust offsets based on the group ID of our sound.
|
|
|
|
* Headers normally only use 0 or 1, and section3 may only define id1 (which the internal sound would use).
|
|
|
|
* May exist even for external streams only, and they often use id 1 too. */
|
2019-01-07 22:10:48 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->is_map) {
|
|
|
|
/* maps store internal sounds offsets in a separate subtable, find the matching entry */
|
|
|
|
for (i = 0; i < sb->section3_num; i++) {
|
|
|
|
off_t offset = sb->section3_offset + 0x14 * i;
|
|
|
|
off_t table_offset = read_32bit(offset + 0x04, streamFile) + sb->section3_offset;
|
|
|
|
uint32_t table_num = read_32bit(offset + 0x08, streamFile);
|
|
|
|
off_t table2_offset = read_32bit(offset + 0x0c, streamFile) + sb->section3_offset;
|
|
|
|
uint32_t table2_num = read_32bit(offset + 0x10, streamFile);
|
|
|
|
|
|
|
|
for (j = 0; j < table_num; j++) {
|
|
|
|
int index = read_32bit(table_offset + 0x08 * j + 0x00, streamFile) & 0x0000FFFF;
|
|
|
|
|
|
|
|
if (index == sb->header_index) {
|
|
|
|
if (!sb->cfga_group_id && table2_num > 1) {
|
|
|
|
VGM_LOG("UBI SB: unexpected number of internal stream map groups %i at %x\n", table2_num, (uint32_t)table2_offset);
|
|
|
|
goto fail;
|
|
|
|
}
|
2018-12-21 15:17:10 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->stream_offset = read_32bit(table_offset + 0x08 * j + 0x04, streamFile);
|
|
|
|
for (k = 0; k < table2_num; k++) {
|
|
|
|
/* entry layout:
|
|
|
|
* 0x00 - group ID
|
|
|
|
* 0x04 - size with padding included
|
|
|
|
* 0x08 - size without padding
|
|
|
|
* 0x0c - absolute offset */
|
|
|
|
uint32_t id = read_32bit(table2_offset + 0x10 * k + 0x00, streamFile);
|
|
|
|
if (id == sb->group_id) {
|
|
|
|
sb->stream_offset += read_32bit(table2_offset + 0x10 * k + 0x0c, streamFile);
|
|
|
|
break;
|
2018-12-21 15:17:10 +01:00
|
|
|
}
|
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
break;
|
2018-12-21 15:17:10 +01:00
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->stream_offset)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* banks store internal sounds after all headers and adjusted by the group table, find the matching entry */
|
|
|
|
|
|
|
|
off_t sounds_offset = sb->section3_offset + sb->section3_entry_size*sb->section3_num;
|
|
|
|
sb->stream_offset = sounds_offset + sb->stream_offset;
|
|
|
|
|
|
|
|
if (sb->cfga_group_id && sb->section3_num > 1) { /* maybe should always test this? */
|
|
|
|
for (i = 0; i < sb->section3_num; i++) {
|
|
|
|
off_t offset = sb->section3_offset + 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->group_id)
|
2018-12-21 15:17:10 +01:00
|
|
|
break;
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->stream_offset += read_32bit(offset + 0x04, streamFile);
|
2018-12-21 15:17:10 +01:00
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
2018-12-21 15:17:10 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* parse a header resource at offset */
|
|
|
|
static int parse_header(ubi_sb_header * sb, STREAMFILE *streamFile, off_t offset, int index) {
|
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = sb->big_endian ? read_32bitBE : read_32bitLE;
|
2019-01-07 22:10:48 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* parse known headers (see config_sb for info) */
|
|
|
|
sb->header_index = index;
|
|
|
|
sb->header_offset = offset;
|
2018-12-23 16:55:20 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->header_id = read_32bit(offset + 0x00, streamFile);
|
|
|
|
sb->header_type = read_32bit(offset + 0x04, streamFile);
|
|
|
|
|
|
|
|
switch(sb->header_type) {
|
|
|
|
case 0x01:
|
|
|
|
if (!parse_type_audio(sb, offset, streamFile))
|
|
|
|
goto fail;
|
|
|
|
break;
|
|
|
|
case 0x05:
|
|
|
|
case 0x0c:
|
|
|
|
if (!parse_type_sequence(sb, offset, streamFile))
|
|
|
|
goto fail;
|
|
|
|
break;
|
|
|
|
case 0x06:
|
|
|
|
case 0x0d:
|
|
|
|
if (!parse_type_layer(sb, offset, streamFile))
|
|
|
|
goto fail;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
VGM_LOG("UBI SB: unknown header type at %x\n", (uint32_t)offset);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find actual codec (as different games' stream_type can overlap) */
|
|
|
|
if (!parse_stream_type(sb))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* find actual stream offset in section3 */
|
|
|
|
if (!parse_internal_offset(sb, streamFile))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* parse a bank and its possible audio headers (resources). */
|
|
|
|
static int parse_sb_header(ubi_sb_header * sb, STREAMFILE *streamFile, int target_subsong) {
|
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = sb->big_endian ? read_32bitBE : read_32bitLE;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
;VGM_LOG("UBI SB: s1=%x (%x*%x), s2=%x (%x*%x), sX=%x (%x), s3=%x (%x*%x)\n",
|
|
|
|
sb->section1_offset,sb->section1_entry_size,sb->section1_num,sb->section2_offset,sb->section2_entry_size,sb->section2_num,
|
|
|
|
sb->sectionX_offset,sb->sectionX_size,sb->section3_offset,sb->section3_entry_size,sb->section3_num);
|
|
|
|
|
|
|
|
/* find target subsong info in section2 */
|
|
|
|
sb->bank_subsongs = 0;
|
|
|
|
for (i = 0; i < sb->section2_num; i++) {
|
|
|
|
off_t offset = sb->section2_offset + sb->section2_entry_size*i;
|
|
|
|
uint32_t header_type;
|
|
|
|
|
|
|
|
/* check candidate types */
|
|
|
|
/*header_id =*/ read_32bit(offset + 0x00, streamFile); /* forces buffer read */
|
|
|
|
header_type = read_32bit(offset + 0x04, streamFile);
|
|
|
|
|
|
|
|
if (header_type <= 0x00 || header_type >= 0x10 || header_type == 0x09 || header_type == 0x0b) {
|
|
|
|
VGM_LOG("UBI SB: unknown type %x at %x\n", header_type, (uint32_t)offset);
|
|
|
|
goto fail;
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
|
|
|
|
sb->types[header_type]++;
|
|
|
|
|
|
|
|
if (!sb->allowed_types[header_type])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* update subsongs (keep counting even after found) */
|
|
|
|
sb->bank_subsongs++;
|
|
|
|
sb->total_subsongs++;
|
|
|
|
if (sb->total_subsongs != target_subsong)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* parse target subsong */
|
|
|
|
if (!parse_header(sb, streamFile, offset, i))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* maps can contain +10000 subsongs, we need something helpful
|
|
|
|
* (best here right after subsong detection, since some sequence re-parse types) */
|
|
|
|
build_readable_name(sb->readable_name, sizeof(sb->readable_name), sb);
|
2017-11-05 17:06:40 +01:00
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* either target subsong found or it's in another bank (in case of maps), both handled externally */
|
|
|
|
|
|
|
|
;VGM_LOG("UBI SB: types "); {int i; for (i=0;i<16;i++){ VGM_ASSERT(sb->types[i],"%02x=%i ",i,sb->types[i]); }} VGM_LOG("\n");
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* ************************************************************************* */
|
|
|
|
|
2019-01-05 04:32:07 +01:00
|
|
|
static int config_sb_platform(ubi_sb_header * sb, STREAMFILE *streamFile) {
|
|
|
|
char filename[PATH_LIMIT];
|
|
|
|
int filename_len;
|
|
|
|
char platform_char;
|
|
|
|
uint32_t version;
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* to find out hijacking (LE) platforms */
|
2019-01-05 04:32:07 +01:00
|
|
|
version = read_32bitLE(0x00, streamFile);
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* get X from .sbX/smX/lmX */
|
2019-01-05 04:32:07 +01:00
|
|
|
get_streamfile_name(streamFile,filename,sizeof(filename));
|
|
|
|
filename_len = strlen(filename);
|
|
|
|
platform_char = filename[filename_len - 1];
|
|
|
|
|
|
|
|
switch(platform_char) {
|
|
|
|
case '0':
|
|
|
|
sb->platform = UBI_PC;
|
|
|
|
break;
|
|
|
|
case '1':
|
|
|
|
sb->platform = UBI_PS2;
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
sb->platform = UBI_XBOX;
|
|
|
|
break;
|
|
|
|
case '3':
|
|
|
|
sb->platform = UBI_GC;
|
|
|
|
break;
|
|
|
|
case '4':
|
|
|
|
switch(version) { /* early PSP clashes with X360 */
|
|
|
|
case 0x0012000C: /* multiple games use this ID and all are sb4/sm4 */
|
|
|
|
sb->platform = UBI_PSP;
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->is_psp_old = 1;
|
2019-01-05 04:32:07 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sb->platform = UBI_X360;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '5':
|
|
|
|
switch(version) { /* 3DS could be sb8/sm8 but somehow hijacks extension */
|
|
|
|
case 0x00130001: /* Splinter Cell 3DS (2011) */
|
|
|
|
sb->platform = UBI_3DS;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
sb->platform = UBI_PSP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '6':
|
|
|
|
sb->platform = UBI_PS3;
|
|
|
|
break;
|
|
|
|
case '7':
|
|
|
|
sb->platform = UBI_WII;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
sb->big_endian =
|
|
|
|
sb->platform == UBI_GC ||
|
|
|
|
sb->platform == UBI_PS3 ||
|
|
|
|
sb->platform == UBI_X360 ||
|
|
|
|
sb->platform == UBI_WII;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
fail:
|
|
|
|
return 0;
|
|
|
|
}
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
|
|
|
|
static void config_sb_entry(ubi_sb_header * sb, size_t section1_size_entry, size_t section2_size_entry) {
|
|
|
|
sb->section1_entry_size = section1_size_entry;
|
|
|
|
sb->section2_entry_size = section2_size_entry;
|
|
|
|
sb->section3_entry_size = 0x08;
|
2019-01-13 23:27:29 +01:00
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
static void config_sb_audio_fs(ubi_sb_header * sb, off_t external_flag, off_t group_id, off_t loop_flag) {
|
|
|
|
/* audio header with standard flags */
|
|
|
|
sb->cfga_external_flag = external_flag;
|
|
|
|
sb->cfga_group_id = group_id;
|
|
|
|
sb->cfga_loop_flag = loop_flag;
|
|
|
|
sb->cfga_and_external_flag = 1;
|
|
|
|
sb->cfga_and_group_id = 1;
|
|
|
|
sb->cfga_and_loop_flag = 1;
|
|
|
|
}
|
|
|
|
static void config_sb_audio_fb(ubi_sb_header * sb, off_t flag_bits, int external_and, int group_and, int loop_and) {
|
|
|
|
/* audio header with bit flags */
|
|
|
|
sb->cfga_external_flag = flag_bits;
|
|
|
|
sb->cfga_group_id = flag_bits;
|
|
|
|
sb->cfga_loop_flag = flag_bits;
|
|
|
|
sb->cfga_and_external_flag = external_and;
|
|
|
|
sb->cfga_and_group_id = group_and;
|
|
|
|
sb->cfga_and_loop_flag = loop_and;
|
|
|
|
}
|
|
|
|
static void config_sb_audio_hs(ubi_sb_header * sb, off_t channels, off_t sample_rate, off_t num_samples, off_t num_samples2, off_t stream_name, off_t stream_type) {
|
|
|
|
/* audio header with stream name */
|
|
|
|
sb->cfga_channels = channels;
|
|
|
|
sb->cfga_sample_rate = sample_rate;
|
|
|
|
sb->cfga_num_samples = num_samples;
|
|
|
|
sb->cfga_num_samples2 = num_samples2;
|
|
|
|
sb->cfga_stream_name = stream_name;
|
|
|
|
sb->cfga_stream_type = stream_type;
|
|
|
|
}
|
|
|
|
static void config_sb_audio_he(ubi_sb_header * sb, off_t channels, off_t sample_rate, off_t num_samples, off_t num_samples2, off_t extra_name, off_t stream_type) {
|
|
|
|
/* audio header with extra name */
|
|
|
|
sb->cfga_channels = channels;
|
|
|
|
sb->cfga_sample_rate = sample_rate;
|
|
|
|
sb->cfga_num_samples = num_samples;
|
|
|
|
sb->cfga_num_samples2 = num_samples2;
|
|
|
|
sb->cfga_extra_name = extra_name;
|
|
|
|
sb->cfga_stream_type = stream_type;
|
|
|
|
}
|
|
|
|
static void config_sb_sequence(ubi_sb_header * sb, off_t sequence_count, off_t entry_size) {
|
|
|
|
/* sequence header and chain table */
|
2019-01-20 17:16:44 +01:00
|
|
|
sb->cfgs_sequence_loop = sequence_count - 0x10;
|
|
|
|
sb->cfgs_sequence_single = sequence_count - 0x0c;
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->cfgs_sequence_count = sequence_count;
|
|
|
|
sb->sequence_entry_size = entry_size;
|
|
|
|
sb->cfgs_entry_number = 0x00;
|
|
|
|
}
|
|
|
|
static void config_sb_layer_hs(ubi_sb_header * sb, off_t layer_count, off_t stream_size, off_t stream_offset, off_t stream_name) {
|
|
|
|
/* layer headers with stream name */
|
|
|
|
sb->cfgl_layer_count = layer_count;
|
|
|
|
sb->cfgl_stream_size = stream_size;
|
|
|
|
sb->cfgl_stream_offset = stream_offset;
|
|
|
|
sb->cfgl_stream_name = stream_name;
|
|
|
|
}
|
|
|
|
static void config_sb_layer_he(ubi_sb_header * sb, off_t layer_count, off_t stream_size, off_t stream_offset, off_t extra_name) {
|
|
|
|
/* layer headers with extra name */
|
|
|
|
sb->cfgl_layer_count = layer_count;
|
|
|
|
sb->cfgl_stream_size = stream_size;
|
|
|
|
sb->cfgl_stream_offset = stream_offset;
|
|
|
|
sb->cfgl_extra_name = extra_name;
|
|
|
|
}
|
|
|
|
static void config_sb_layer_sh(ubi_sb_header * sb, off_t entry_size, off_t sample_rate, off_t channels, off_t stream_type, off_t num_samples) {
|
|
|
|
/* layer sub-headers in extra table */
|
|
|
|
sb->layer_entry_size = entry_size;
|
|
|
|
sb->cfgl_sample_rate = sample_rate;
|
|
|
|
sb->cfgl_channels = channels;
|
|
|
|
sb->cfgl_stream_type = stream_type;
|
|
|
|
sb->cfgl_num_samples = num_samples;
|
|
|
|
}
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
static int config_sb_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
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Most of the format varies with almost every game + platform (struct serialization?).
|
|
|
|
* Support is configured case-by-case as offsets/order/fields only change slightly,
|
|
|
|
* and later games may remove fields. We only configure those actually needed.
|
|
|
|
*
|
|
|
|
* Various type use "chains" of entry numbers (defined in the extra table).
|
|
|
|
* Its format also depends on type.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Header types found in section2 (possibly called "resource headers"):
|
|
|
|
*
|
|
|
|
* Type 01 (old/new):
|
|
|
|
* Single audio header, external or internal, part of a chain or single. Format:
|
2019-01-07 18:03:47 +01:00
|
|
|
* - fixed part (id, type, stream size, extra offset, stream offset)
|
2019-01-19 20:03:48 +01:00
|
|
|
* - flags (as bitflags or in separate fields, around ~6 observed flags)
|
|
|
|
* - samples+samples (loop+total) + size+size (roughly equal to stream size)
|
|
|
|
* - bitrate (total sample rate)
|
|
|
|
* - base info (sample rate, pcm bits?, channels, codec)
|
2019-01-07 18:03:47 +01:00
|
|
|
* - external filename or internal filename on some platforms (earlier versions)
|
|
|
|
* - external filename offset in the extra table (later versions)
|
2019-01-19 20:03:48 +01:00
|
|
|
* - end flags?
|
|
|
|
*
|
|
|
|
* Type 02 (old?/new):
|
|
|
|
* Chain, possibly to play with config (ex: type 08 (float 0.3) + 01)
|
|
|
|
*
|
|
|
|
* Type 03 (new), 09? (old):
|
|
|
|
* Chain, other way to play things? (ex: type 03 + 04)
|
|
|
|
*
|
|
|
|
* Type 04 (old/new), 0a (old):
|
|
|
|
* Chain of N types, possibly to play one as random (usually N voice/sfx like
|
|
|
|
* like death screams, but may include sequences).
|
|
|
|
*
|
|
|
|
* Type 05 (new), 0c (old): sequences
|
|
|
|
* N audio segment, normally with lead-in but not lead-outs. Sequences can reuse
|
|
|
|
* segments (internal loops), or can be single entries (full song or leads).
|
|
|
|
* Sequences seem to include only music or cutscenes, so even single entries can be
|
|
|
|
* useful to parse, since the readable name would make them stand out. Format:
|
|
|
|
* - extra offset to chain
|
|
|
|
* - intro flag
|
|
|
|
* - outro flag
|
|
|
|
* - sequence count
|
|
|
|
* - ID-like fields in the header and sequence table may point to other chains?
|
|
|
|
*
|
|
|
|
* Type 06 (new), 0d (old):
|
|
|
|
* Layer header, stream divided into N equal parts in a blocked format. Format:
|
|
|
|
* - fixed part (id, type)
|
|
|
|
* - extra offset to layer info (sample rate, pcm bits?, channels, codec, samples)
|
|
|
|
* - layer count
|
|
|
|
* - sometimes total channels, bitrate, etc
|
|
|
|
* - flags?
|
|
|
|
* - stream size + stream offset
|
|
|
|
* - external filename, or filename offset in the extra table
|
|
|
|
* Layer blocks are handled separatedly as the format doesn't depend on sb's version/platform.
|
|
|
|
* Some values may be flags/config as multiple 0x06 can point to the same layer, with different 'flags'?
|
2019-01-07 18:03:47 +01:00
|
|
|
*
|
2019-01-19 20:03:48 +01:00
|
|
|
* Type 07 (new), 0e (old):
|
|
|
|
* - another chain of something (single entry?), rare.
|
2019-01-07 18:03:47 +01:00
|
|
|
*
|
2019-01-19 20:03:48 +01:00
|
|
|
* Type 08 (new), 0f (old):
|
|
|
|
* - audio config? (almost all fields 0 except sometimes 1.0 float in the middle).
|
|
|
|
* in older games may also point to the extra table, maybe equivalent to 02.
|
2017-11-05 17:06:40 +01:00
|
|
|
*/
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* debug strings reference:
|
|
|
|
* - TYPE_SAMPLE: should be 0x01 (also "sound resource")
|
|
|
|
* - TYPE_MULTITRACK: should be 0x06/0x0d (also "multilayer resource")
|
|
|
|
* - TYPE_SILENCE: ?
|
|
|
|
* sequences may be "theme resource"
|
|
|
|
* "class descryptor" is referenced,
|
|
|
|
*
|
|
|
|
* Possible type names from .bnm (.sb's predecessor):
|
|
|
|
* 0: TYPE_INVALID
|
|
|
|
* 1: TYPE_SAMPLE
|
|
|
|
* 2: TYPE_MIDI
|
|
|
|
* 3: TYPE_CDAUDIO
|
|
|
|
* 4: TYPE_SEQUENCE
|
|
|
|
* 5: TYPE_SWITCH_OLD
|
|
|
|
* 6: TYPE_SPLIT
|
|
|
|
* 7: TYPE_THEME_OLD
|
|
|
|
* 8: TYPE_SWITCH
|
|
|
|
* 9: TYPE_THEME_OLD2
|
|
|
|
* A: TYPE_RANDOM
|
|
|
|
* B: TYPE_THEME0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* All types may contain memory garbage, making it harder to identify fields (platforms
|
|
|
|
* and games are affected differently by this). Often types contain memory from the previous
|
|
|
|
* type header unless overwritten, random memory, or default initialization garbage.
|
|
|
|
* So if some non-audio type looks like audio it's probably repeating old data.
|
|
|
|
* This even happens for common fields (ex. type 6 at 0x08 has prev garbage, not stream size). */
|
|
|
|
|
2017-11-05 17:06:40 +01:00
|
|
|
|
|
|
|
/* common */
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->resource_name_size = 0x24; /* maybe 0x20/0x28 for some but ok enough (null terminated) */
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* represents map style (1=first, 2=mid, 3=latest) */
|
|
|
|
if (sb->version <= 0x00000007)
|
|
|
|
sb->map_version = 1;
|
|
|
|
else if (sb->version < 0x00150000)
|
|
|
|
sb->map_version = 2;
|
|
|
|
else
|
|
|
|
sb->map_version = 3;
|
2019-01-07 18:03:47 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->map_entry_size = (sb->map_version < 2) ? 0x30 : 0x34;
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
if (sb->version <= 0x00000007) {
|
|
|
|
sb->cfga_stream_size = 0x0c;
|
|
|
|
sb->cfga_extra_offset = 0x10;
|
|
|
|
sb->cfga_stream_offset = 0x14;
|
2018-12-26 15:09:35 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
sb->cfgs_extra_offset = 0x10;
|
|
|
|
|
|
|
|
sb->cfgl_extra_offset = 0x10;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sb->cfga_stream_size = 0x08;
|
|
|
|
sb->cfga_extra_offset = 0x0c;
|
|
|
|
sb->cfga_stream_offset = 0x10;
|
|
|
|
|
|
|
|
sb->cfgs_extra_offset = 0x0c;
|
|
|
|
|
|
|
|
sb->cfgl_extra_offset = 0x0c;
|
|
|
|
}
|
|
|
|
|
|
|
|
sb->allowed_types[0x01] = 1;
|
|
|
|
sb->allowed_types[0x05] = 1;
|
|
|
|
sb->allowed_types[0x0c] = 1;
|
|
|
|
sb->allowed_types[0x06] = 1;
|
|
|
|
sb->allowed_types[0x0d] = 1;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
{
|
|
|
|
STREAMFILE * streamTest;
|
|
|
|
streamTest= open_streamfile_by_filename(streamFile, ".no_audio.sbx");
|
|
|
|
if (streamTest) { sb->allowed_types[0x01] = 0; close_streamfile(streamTest); }
|
|
|
|
|
|
|
|
streamTest= open_streamfile_by_filename(streamFile, ".no_sequence.sbx");
|
|
|
|
if (streamTest) { sb->allowed_types[0x05] = sb->allowed_types[0x0c] = 0; close_streamfile(streamTest); }
|
|
|
|
|
|
|
|
streamTest= open_streamfile_by_filename(streamFile, ".no_layer.sbx");
|
|
|
|
if (streamTest) { sb->allowed_types[0x06] = sb->allowed_types[0x0d] = 0; close_streamfile(streamTest); }
|
|
|
|
}
|
|
|
|
#endif
|
2019-01-07 22:10:48 +01:00
|
|
|
|
|
|
|
//todo some dsp offsets have problems, wrong id?
|
|
|
|
//todo uses Ubi IMA v2 has has some deviation in the right channel + clicks?
|
|
|
|
//todo has some sample rate / loop configs problems? (ex Batman #5451)
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo buggy reads in layers?
|
2019-01-07 22:10:48 +01:00
|
|
|
/* Disney's Tarzan: Untamed (2001)(GC)-map */
|
|
|
|
/* Batman: Vengeance (2001)(GC)-map */
|
2018-12-26 15:09:35 +01:00
|
|
|
/* Donald Duck: Goin' Quackers (2002)(GC)-map */
|
|
|
|
if (sb->version == 0x00000003 && sb->platform == UBI_GC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x40, 0x6c);
|
2018-12-26 15:09:35 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x30, 0x2c, 0x34);
|
|
|
|
config_sb_audio_hs(sb, 0x56, 0x50, 0x48, 0x48, 0x5c, 0x58);
|
2018-12-26 15:09:35 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x1c);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_hs(sb, 0x20, 0x4c, 0x44, 0x34);
|
|
|
|
config_sb_layer_sh(sb, 0x1c, 0x04, 0x0a, 0x0c, 0x18);
|
2018-12-26 15:09:35 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2019-01-19 20:03:48 +01:00
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
#if 0
|
|
|
|
/* Batman: Vengeance (2001)(PS2)-map */
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Disney's Tarzan: Untamed (2001)(PS2)-map */
|
2019-01-13 23:27:29 +01:00
|
|
|
if (sb->version == 0x00000003 && sb->platform == UBI_PS2) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x30, 0x3c);
|
|
|
|
|
|
|
|
config_sb_audio_fb(sb, 0x20, (1 << 2), (1 << 3), (1 << 4));//?
|
|
|
|
sb->cfga_group_id = 0x1c?;
|
|
|
|
sb->cfga_external_flag = 0x1c?;
|
|
|
|
sb->cfga_loop_flag = 0x1c?;
|
|
|
|
sb->cfga_num_samples = 0x28;
|
|
|
|
sb->cfga_num_samples2 = 0x28;
|
|
|
|
sb->cfga_sample_rate = 0x24;
|
|
|
|
sb->cfga_channels = 0x2a?
|
|
|
|
sb->cfga_stream_type = 0x34? 0x38;
|
|
|
|
sb->cfga_stream_name = -1; /* implicit STRM.SM1 */
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x2c, 0x10);
|
|
|
|
|
|
|
|
//layer format ???
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
//todo offsets seems to work differently (stream offset is always 0)
|
|
|
|
/* Myst III: Exile (2001)(PS2)-map */
|
|
|
|
if (sb->version == 0x00000004 && sb->platform == UBI_PS2) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x34, 0x70);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fb(sb, 0x1c, (1 << 2), (1 << 3), (1 << 4));
|
|
|
|
config_sb_audio_hs(sb, 0x24, 0x28, 0x2c, 0x34, 0x44, 0x6c);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo sequences
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo layers
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
#if 0
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo uses codec 02
|
2018-12-22 22:47:24 +01:00
|
|
|
/* Splinter Cell (2002)(PC)-map */
|
2018-12-24 13:48:15 +01:00
|
|
|
/* Splinter Cell: Pandora Tomorrow (2004)(PC)-map */
|
2018-12-21 15:17:10 +01:00
|
|
|
if (sb->version == 0x00000007 && sb->platform == UBI_PC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x58, 0x80);
|
2018-12-21 15:17:10 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x2c, 0x24?);
|
|
|
|
config_sb_audio_hs(sb, 0x4a, 0x44, 0x30, 0x38, 0x50, 0x4c);
|
|
|
|
sb->cfga_has_internal_names = 1;
|
2018-12-26 15:09:35 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo sequences
|
2018-12-26 15:09:35 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_hs(sb, 0x20, 0x64, 0x5c, 0x34);
|
|
|
|
config_sb_layer_sh(sb, 0x18, 0x00, 0x06, 0x08, 0x14);
|
2018-12-21 15:17:10 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2018-12-30 15:38:03 +01:00
|
|
|
#endif
|
2019-01-19 20:03:48 +01:00
|
|
|
|
2019-01-07 22:10:48 +01:00
|
|
|
#if 0
|
|
|
|
/* Splinter Cell (2002)(Xbox)-map */
|
2019-01-13 23:27:29 +01:00
|
|
|
/* Splinter Cell: Pandora Tomorrow (2004)(Xbox)-map */
|
2019-01-07 22:10:48 +01:00
|
|
|
if (sb->version == 0x00000007 && sb->platform == UBI_XBOX) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x58, 0x78);
|
2018-12-21 15:17:10 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x24? 0x2c?, 0x2c? 0x24?);
|
|
|
|
config_sb_audio_hs(sb, 0x4a, 0x44, 0x30, 0x38, 0x50, 0x4c);
|
|
|
|
sb->cfga_has_internal_names = 1;
|
2019-01-07 22:10:48 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo sequences
|
2019-01-07 22:10:48 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo layers
|
2019-01-07 22:10:48 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Prince of Persia: Sands of Time (2003)(PC)-bank 0x000A0004 / 0x000A0002 (just in case) */
|
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_PC) ||
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_PC)) {
|
|
|
|
config_sb_entry(sb, 0x64, 0x80);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x24, 0x2c, 0x28);
|
|
|
|
config_sb_audio_hs(sb, 0x4a, 0x44, 0x30, 0x38, 0x50, 0x4c);
|
|
|
|
sb->cfga_has_internal_names = 1;
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_hs(sb, 0x20, 0x60, 0x58, 0x30);
|
|
|
|
config_sb_layer_sh(sb, 0x14, 0x00, 0x06, 0x08, 0x10);
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Prince of Persia: Sands of Time (2003)(PS2)-bank 0x000A0004 / 0x000A0002 (POP1 port) */
|
|
|
|
/* Tom Clancy's Rainbow Six 3 (2003)(PS2)-bank 0x000A0007 */
|
|
|
|
/* Splinter Cell: Pandora Tomorrow(?) (2006)(PS2)-bank 0x000A0008 */
|
|
|
|
/* Prince of Persia: Warrior Within (2004)(PS2)-bank 0x00120009 */
|
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_PS2) ||
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_PS2) ||
|
|
|
|
(sb->version == 0x000A0007 && sb->platform == UBI_PS2) ||
|
|
|
|
(sb->version == 0x000A0008 && sb->platform == UBI_PS2) ||
|
|
|
|
(sb->version == 0x00120009 && sb->platform == UBI_PS2)) {
|
|
|
|
config_sb_entry(sb, 0x48, 0x6c);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fb(sb, 0x18, (1 << 2), (1 << 3), (1 << 4));
|
|
|
|
config_sb_audio_hs(sb, 0x20, 0x24, 0x30, 0x38, 0x40, 0x68); /* num_samples may be null */
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x28, 0x10);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_hs(sb, 0x20, 0x60, 0x58, 0x30);
|
|
|
|
config_sb_layer_sh(sb, 0x14, 0x00, 0x06, 0x08, 0x10);
|
2019-01-05 04:02:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Prince of Persia: Sands of Time (2003)(Xbox)-bank 0x000A0004 / 0x000A0002 (POP1 port) */
|
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_XBOX) ||
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_XBOX)) {
|
|
|
|
config_sb_entry(sb, 0x64, 0x78);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x24, 0x28, 0x2c);
|
|
|
|
config_sb_audio_hs(sb, 0x4a, 0x44, 0x30, 0x38, 0x50, 0x4c); /* stream_type may contain garbage */
|
|
|
|
sb->cfga_has_internal_names = 1;
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_hs(sb, 0x20, 0x60, 0x58, 0x30);
|
|
|
|
config_sb_layer_sh(sb, 0x14, 0x00, 0x06, 0x08, 0x10);
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Batman: Rise of Sin Tzu (2003)(GC)-map 0x000A0002 */
|
|
|
|
/* Prince of Persia: Sands of Time (2003)(GC)-bank 0x000A0004 / 0x000A0002 (POP1 port)*/
|
|
|
|
if ((sb->version == 0x000A0002 && sb->platform == UBI_GC) ||
|
|
|
|
(sb->version == 0x000A0004 && sb->platform == UBI_GC)) {
|
|
|
|
config_sb_entry(sb, 0x64, 0x74);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x20, 0x24, 0x28);
|
|
|
|
config_sb_audio_hs(sb, 0x46, 0x40, 0x2c, 0x34, 0x4c, 0x48);
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
|
|
|
|
|
|
|
config_sb_layer_hs(sb, 0x20, 0x60, 0x58, 0x30);
|
|
|
|
config_sb_layer_sh(sb, 0x14, 0x00, 0x06, 0x08, 0x10);
|
2019-01-07 18:03:47 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* Myst IV Demo (2004)(PC)-bank */
|
2019-01-13 23:27:29 +01:00
|
|
|
if (sb->version == 0x00100000 && sb->platform == UBI_PC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x68, 0xa4);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x24, 0x2c, 0x28);
|
|
|
|
config_sb_audio_hs(sb, 0x4c, 0x44, 0x30, 0x38, 0x54, 0x50);
|
|
|
|
sb->cfga_has_internal_names = 1;
|
|
|
|
|
|
|
|
/* no sequences */
|
|
|
|
|
|
|
|
/* no layers */
|
2017-12-03 20:25:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
/* Prince of Persia: Warrior Within (2004)(PC)-bank */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00120009 && sb->platform == UBI_PC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x6c, 0x84);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x24, 0x2c, 0x28);
|
|
|
|
config_sb_audio_hs(sb, 0x4c, 0x44, 0x30, 0x38, 0x54, 0x50);
|
|
|
|
sb->cfga_has_internal_names = 1;
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* no layers */
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
/* Prince of Persia: Warrior Within (2004)(Xbox)-bank */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00120009 && sb->platform == UBI_XBOX) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x6c, 0x90);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x24, 0x28, 0x40);
|
|
|
|
config_sb_audio_hs(sb, 0x60, 0x58, 0x44, 0x4c, 0x68, 0x64); /* stream_type may contain garbage */
|
|
|
|
sb->cfga_has_internal_names = 1;
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
|
|
|
|
|
|
|
/* no layers */
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
/* Prince of Persia: Warrior Within (2004)(GC)-bank */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00120009 && sb->platform == UBI_GC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x6c, 0x78);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x20, 0x24, 0x28);
|
|
|
|
config_sb_audio_hs(sb, 0x48, 0x40, 0x2c, 0x34, 0x50, 0x4c);
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
|
|
|
|
|
|
|
/* no layers */
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-07 18:03:47 +01:00
|
|
|
/* two configs with same id and both sb4/sm4; 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
/* Prince of Persia: Revelations (2005)(PSP)-bank */
|
2018-12-23 02:15:50 +01:00
|
|
|
/* Splinter Cell: Essentials (2006)(PSP)-map */
|
2019-01-07 18:03:47 +01:00
|
|
|
/* Beowulf: The Game (2007)(PSP)-map */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x0012000C && sb->platform == UBI_PSP && !is_biadd_psp) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x68, 0x84);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x24, 0x2c, 0x28);
|
|
|
|
config_sb_audio_hs(sb, 0x4c, 0x44, 0x30, 0x38, 0x54, 0x50);
|
|
|
|
sb->cfga_has_internal_names = 1;
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
|
|
|
|
|
|
|
config_sb_layer_hs(sb, 0x1c, 0x60, 0x64, 0x30);
|
|
|
|
config_sb_layer_sh(sb, 0x18, 0x00, 0x08, 0x0c, 0x14);
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo some .sbX have bad external stream offsets, but not all (ex. offset 0xE3641 but should be 0x0A26)
|
|
|
|
/* Brothers in Arms: D-Day (2006)(PSP)-bank */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x0012000C && sb->platform == UBI_PSP && is_biadd_psp) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x80, 0x94);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x24, 0x2c, 0x28);
|
|
|
|
config_sb_audio_hs(sb, 0x4c, 0x44, 0x30, 0x38, 0x54, 0x50);
|
|
|
|
sb->cfga_has_internal_names = 1;
|
|
|
|
|
|
|
|
/* no sequences */
|
|
|
|
|
|
|
|
/* no layers */
|
2017-12-07 23:54:05 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-13 23:27:29 +01:00
|
|
|
/* Splinter Cell: Chaos Theory (2005)(PC)-map */
|
|
|
|
if (sb->version == 0x00120012 && sb->platform == UBI_PC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x68, 0x60);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x24, 0x2c, 0x28);
|
|
|
|
config_sb_audio_he(sb, 0x4c, 0x44, 0x30, 0x38, 0x54, 0x50);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x28, 0x14);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* no layers */
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Myst IV: Revelation (2005)(PC)-bank */
|
|
|
|
/* Splinter Cell: Chaos Theory (2005)(Xbox)-map */
|
|
|
|
if (sb->version == 0x00120012 && sb->platform == UBI_XBOX) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x48, 0x4c);
|
|
|
|
|
|
|
|
config_sb_audio_fb(sb, 0x18, (1 << 3), (1 << 4), (1 << 10));
|
|
|
|
config_sb_audio_he(sb, 0x38, 0x30, 0x1c, 0x24, 0x40, 0x3c);
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x28, 0x10);
|
|
|
|
|
|
|
|
/* no layers */
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-05 04:02:14 +01:00
|
|
|
/* Splinter Cell 3D (2011)(3DS)-map */
|
|
|
|
if (sb->version == 0x00130001 && sb->platform == UBI_3DS) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x48, 0x4c);
|
|
|
|
|
|
|
|
config_sb_audio_fb(sb, 0x18, (1 << 2), (1 << 3), (1 << 4));
|
|
|
|
config_sb_audio_he(sb, 0x38, 0x30, 0x1c, 0x24, 0x40, 0x3c);
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x28, 0x10);
|
|
|
|
|
|
|
|
config_sb_layer_he(sb, 0x1c, 0x28, 0x30, 0x34);
|
|
|
|
config_sb_layer_sh(sb, 0x18, 0x00, 0x08, 0x0c, 0x14);
|
2019-01-05 04:02:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-12-22 22:47:24 +01:00
|
|
|
/* Prince of Persia: The Two Thrones (2005)(PC)-bank */
|
2018-12-17 08:05:45 +01:00
|
|
|
if (sb->version == 0x00150000 && sb->platform == UBI_PC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x68, 0x78);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x2c, 0x34, 0x30);
|
|
|
|
config_sb_audio_he(sb, 0x5c, 0x54, 0x40, 0x48, 0x64, 0x60);
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x2c, 0x14);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* no layers */
|
2017-11-05 17:06:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Prince of Persia: The Two Thrones (2005)(PS2)-bank */
|
|
|
|
if (sb->version == 0x00150000 && sb->platform == UBI_PS2) {
|
|
|
|
config_sb_entry(sb, 0x48, 0x5c);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fb(sb, 0x20, (1 << 2), (1 << 3), (1 << 4));
|
|
|
|
config_sb_audio_he(sb, 0x2c, 0x30, 0x3c, 0x44, 0x4c, 0x50);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x10);
|
2018-12-21 15:17:10 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* no layers */
|
2018-12-21 15:17:10 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Prince of Persia: The Two Thrones (2005)(Xbox)-bank 0x00150000 */
|
|
|
|
/* Far Cry Instincts (2005)(Xbox)-bank 0x00150000 */
|
|
|
|
/* Splinter Cell: Double Agent (2006)(Xbox)-map 0x00160002 */
|
|
|
|
/* Far cry Instincts: Evolution (2006)(Xbox)-bank 0x00170000 */
|
|
|
|
if ((sb->version == 0x00150000 && sb->platform == UBI_XBOX) ||
|
|
|
|
(sb->version == 0x00160002 && sb->platform == UBI_XBOX) ||
|
|
|
|
(sb->version == 0x00170000 && sb->platform == UBI_XBOX)) {
|
|
|
|
config_sb_entry(sb, 0x48, 0x58);
|
2018-12-23 10:49:54 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fb(sb, 0x20, (1 << 3), (1 << 4), (1 << 10));
|
|
|
|
config_sb_audio_he(sb, 0x44, 0x3c, 0x28, 0x30, 0x4c, 0x48);
|
2018-12-23 10:49:54 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x10);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x2c, 0x34, 0x3c);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x08, 0x0c, 0x14);
|
2019-01-05 04:02:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Prince of Persia: The Two Thrones (2005)(GC)-bank 0x00150000 */
|
|
|
|
/* Splinter Cell: Double Agent (2006)(GC)-map 0x00160002 */
|
|
|
|
if ((sb->version == 0x00150000 && sb->platform == UBI_GC) ||
|
|
|
|
(sb->version == 0x00160002 && sb->platform == UBI_GC)) {
|
|
|
|
config_sb_entry(sb, 0x68, 0x6c);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x2c, 0x30);
|
|
|
|
config_sb_audio_he(sb, 0x58, 0x50, 0x3c, 0x44, 0x60, 0x5c);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x14);
|
2018-12-23 10:49:54 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x38, 0x40, 0x48);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x08, 0x0c, 0x14);
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo Open Season (PSP) uses sequence with type 0x08 (silence?)
|
|
|
|
//todo Rainbow Six Vegas (PSP) has layers with different sample rates (but 2nd layer is silent, can be ignored)
|
|
|
|
/* Splinter Cell: Double Agent (2006)(PS2)-map 0x00160002 */
|
|
|
|
/* Open Season (2005)(PS2)-map 0x00180003 */
|
|
|
|
/* Open Season (2005)(PSP)-map 0x00180003 */
|
|
|
|
/* Shaun White Snowboarding (2008)(PS2)-map 0x00180003 */
|
|
|
|
/* Prince of Persia: Rival Swords (2007)(PSP)-bank 0x00180005 */
|
|
|
|
/* Rainbow Six Vegas (2007)(PSP)-bank 0x00180006 */
|
|
|
|
/* Star Wars: Lethal Alliance (2006)(PSP)-map 0x00180007 */
|
|
|
|
if ((sb->version == 0x00160002 && sb->platform == UBI_PS2) ||
|
|
|
|
(sb->version == 0x00180003 && sb->platform == UBI_PS2) ||
|
2019-01-07 18:03:47 +01:00
|
|
|
(sb->version == 0x00180003 && sb->platform == UBI_PSP) ||
|
|
|
|
(sb->version == 0x00180005 && sb->platform == UBI_PSP) ||
|
|
|
|
(sb->version == 0x00180006 && sb->platform == UBI_PSP) ||
|
|
|
|
(sb->version == 0x00180007 && sb->platform == UBI_PSP)) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x48, 0x54);
|
2017-11-11 17:46:18 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fb(sb, 0x20, (1 << 2), (1 << 3), (1 << 4));
|
|
|
|
config_sb_audio_he(sb, 0x28, 0x2c, 0x34, 0x3c, 0x44, 0x48);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x10);
|
|
|
|
|
|
|
|
config_sb_layer_he(sb, 0x20, 0x2c, 0x30, 0x38);
|
|
|
|
config_sb_layer_sh(sb, 0x34, 0x00, 0x08, 0x0c, 0x14);
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Splinter Cell: Double Agent (2006)(PC)-map */
|
|
|
|
if (sb->version == 0x00180006 && sb->platform == UBI_PC) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x68, 0x7c);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x2c, 0x34, 0x30);
|
|
|
|
config_sb_audio_he(sb, 0x5c, 0x54, 0x40, 0x48, 0x64, 0x60);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* no sequences */
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x38, 0x3c, 0x44);
|
|
|
|
config_sb_layer_sh(sb, 0x34, 0x00, 0x08, 0x0c, 0x14);
|
2019-01-13 23:27:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Splinter Cell: Double Agent (2006)(X360)-map */
|
|
|
|
if (sb->version == 0x00180006 && sb->platform == UBI_X360) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x68, 0x78);
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x2c, 0x30, 0x34);
|
|
|
|
config_sb_audio_he(sb, 0x5c, 0x54, 0x40, 0x48, 0x64, 0x60);
|
|
|
|
sb->cfga_xma_offset = 0x70;
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* no sequences */
|
2019-01-13 23:27:29 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x38, 0x3c, 0x44);
|
|
|
|
config_sb_layer_sh(sb, 0x34, 0x00, 0x08, 0x0c, 0x14);
|
2017-12-07 23:54:05 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Red Steel (2006)(Wii)-bank 0x00180006 */
|
|
|
|
if (sb->version == 0x00180006 && sb->platform == UBI_WII) {
|
|
|
|
config_sb_entry(sb, 0x68, 0x6c);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x2c, 0x30);
|
|
|
|
config_sb_audio_he(sb, 0x58, 0x50, 0x3c, 0x44, 0x60, 0x5c);
|
2018-12-17 11:20:53 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x14);
|
2017-11-05 17:06:40 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x38, 0x3c, 0x44);
|
|
|
|
config_sb_layer_sh(sb, 0x34, 0x00, 0x08, 0x0c, 0x14);
|
2017-12-03 20:25:50 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* TMNT (2007)(PSP)-map 0x00190001 */
|
|
|
|
/* Surf's Up (2007)(PSP)-map 0x00190005 */
|
|
|
|
if ((sb->version == 0x00190001 && sb->platform == UBI_PSP) ||
|
|
|
|
(sb->version == 0x00190005 && sb->platform == UBI_PSP)) {
|
|
|
|
config_sb_entry(sb, 0x48, 0x58);
|
|
|
|
|
|
|
|
config_sb_audio_fb(sb, 0x20, (1 << 2), (1 << 3), (1 << 4)); /* assumed group_flag */
|
|
|
|
config_sb_audio_he(sb, 0x28, 0x2c, 0x34, 0x3c, 0x44, 0x48);
|
2018-12-17 11:20:53 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x10);
|
2018-12-17 11:20:53 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x2c, 0x30, 0x38);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x04, 0x08, 0x10);
|
2018-12-30 15:38:03 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo one sequence is using type 0x08 (only) with 5.0: maybe type_silence?
|
|
|
|
/* TMNT (2007)(GC)-bank */
|
|
|
|
if (sb->version == 0x00190002 && sb->platform == UBI_GC) {
|
|
|
|
config_sb_entry(sb, 0x68, 0x6c);
|
2018-12-30 15:38:03 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x2c, 0x30); /* assumed groud_id */
|
|
|
|
config_sb_audio_he(sb, 0x3c, 0x40, 0x48, 0x50, 0x58, 0x5c);
|
2018-12-30 15:38:03 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x14);
|
|
|
|
|
|
|
|
config_sb_layer_he(sb, 0x20, 0x34, 0x38, 0x40);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x04, 0x08, 0x10);
|
2018-12-17 11:20:53 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
//todo one sequence is using type 0x08 (only) with 5.0: maybe type_silence?
|
|
|
|
/* TMNT (2007)(PS2)-bank */
|
|
|
|
if (sb->version == 0x00190002 && sb->platform == UBI_PS2) {
|
|
|
|
config_sb_entry(sb, 0x48, 0x5c);
|
|
|
|
|
|
|
|
config_sb_audio_fb(sb, 0x20, (1 << 2), (1 << 3), (1 << 4)); /* assumed group_flag */
|
|
|
|
config_sb_audio_he(sb, 0x28, 0x2c, 0x34, 0x3c, 0x44, 0x48);
|
2018-02-17 02:07:43 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x10);
|
2018-02-17 02:07:43 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x2c, 0x30, 0x38);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x04, 0x08, 0x10);
|
2018-02-17 02:07:43 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* TMNT (2007)(X360)-bank 0x00190002 */
|
|
|
|
/* Prince of Persia: Rival Swords (2007)(Wii)-bank 0x00190003 */
|
|
|
|
/* Rainbow Six Vegas (2007)(PS3)-bank 0x00190005 */
|
|
|
|
/* Surf's Up (2007)(PS3)-bank 0x00190005 */
|
|
|
|
/* Surf's Up (2007)(X360)-bank 0x00190005 */
|
|
|
|
/* Splinter Cell: Double Agent (2007)(PS3)-map 0x00190005 */
|
|
|
|
if ((sb->version == 0x00190002 && sb->platform == UBI_X360) ||
|
|
|
|
(sb->version == 0x00190003 && sb->platform == UBI_WII) ||
|
|
|
|
(sb->version == 0x00190005 && sb->platform == UBI_PS3) ||
|
|
|
|
(sb->version == 0x00190005 && sb->platform == UBI_X360)) {
|
|
|
|
config_sb_entry(sb, 0x68, 0x70);
|
2018-12-17 08:05:45 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x2c, 0x30);
|
|
|
|
config_sb_audio_he(sb, 0x3c, 0x40, 0x48, 0x50, 0x58, 0x5c);
|
|
|
|
sb->cfga_xma_offset = 0x6c;
|
2018-12-22 22:47:24 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x14);
|
2018-12-17 08:05:45 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x34, 0x38, 0x40);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x04, 0x08, 0x10);
|
2018-12-17 08:05:45 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* TMNT (2007)(PC)-bank 0x00190002 */
|
|
|
|
/* Surf's Up (2007)(PC)-bank 0x00190005 */
|
|
|
|
if ((sb->version == 0x00190002 && sb->platform == UBI_PC) ||
|
|
|
|
(sb->version == 0x00190005 && sb->platform == UBI_PC)) {
|
|
|
|
config_sb_entry(sb, 0x68, 0x74);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x2c, 0x30);
|
|
|
|
config_sb_audio_he(sb, 0x3c, 0x40, 0x48, 0x50, 0x58, 0x5c);
|
2018-12-17 08:05:45 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_sequence(sb, 0x2c, 0x14);
|
|
|
|
|
|
|
|
config_sb_layer_he(sb, 0x20, 0x34, 0x38, 0x40);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x04, 0x08, 0x10);
|
2018-12-30 15:38:03 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* Rainbow Six Vegas 2 (2008)(PS3)-map */
|
|
|
|
if (sb->version == 0x001c0000 && sb->platform == UBI_PS3) {
|
|
|
|
config_sb_entry(sb, 0x64, 0x7c);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_audio_fs(sb, 0x28, 0x30, 0x34);
|
|
|
|
config_sb_audio_he(sb, 0x44, 0x48, 0x50, 0x58, 0x60, 0x64);
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
/* no sequences */
|
2019-01-05 04:02:14 +01:00
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_layer_he(sb, 0x20, 0x44, 0x48, 0x54);
|
|
|
|
config_sb_layer_sh(sb, 0x30, 0x00, 0x04, 0x08, 0x10);
|
2019-01-05 04:02:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Michael Jackson: The Experience (2010)(PSP)-map */
|
|
|
|
if (sb->version == 0x001d0000 && sb->platform == UBI_PSP) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x40, 0x60);
|
|
|
|
|
|
|
|
config_sb_audio_fb(sb, 0x20, (1 << 2), (1 << 3), (1 << 5)); /* assumed group_flag */
|
|
|
|
config_sb_audio_he(sb, 0x28, 0x30, 0x38, 0x40, 0x48, 0x4c);
|
|
|
|
|
|
|
|
/* no sequences */
|
|
|
|
|
|
|
|
/* no layers */
|
2018-12-17 08:05:45 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-12-24 12:29:55 +01:00
|
|
|
/* Splinter Cell Classic Trilogy HD (2011)(PS3)-map */
|
|
|
|
if (sb->version == 0x001d0000 && sb->platform == UBI_PS3) {
|
2019-01-19 20:03:48 +01:00
|
|
|
config_sb_entry(sb, 0x5c, 0x80);
|
|
|
|
|
|
|
|
config_sb_audio_fs(sb, 0x28, 0x30, 0x34);
|
|
|
|
config_sb_audio_he(sb, 0x44, 0x4c, 0x54, 0x5c, 0x64, 0x68);
|
|
|
|
|
|
|
|
config_sb_sequence(sb, 0x2c, 0x14);
|
|
|
|
|
|
|
|
config_sb_layer_he(sb, 0x20, 0x44, 0x48, 0x54);
|
|
|
|
config_sb_layer_sh(sb, 0x38, 0x00, 0x04, 0x08, 0x10);
|
|
|
|
|
|
|
|
|
2018-12-24 12:29:55 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-01-19 20:03:48 +01:00
|
|
|
VGM_LOG("UBI SB: unknown SB/SM version+platform %08x\n", sb->version);
|
2017-11-05 17:06:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|