mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-19 09:55:53 +01:00
156 lines
4.6 KiB
C
156 lines
4.6 KiB
C
#include "meta.h"
|
|
#include "../coding/coding.h"
|
|
#include "../util/cri_utf.h"
|
|
|
|
|
|
/* CSB (Cue Sheet Binary?) - CRI container of memory audio, often together with a .cpk wave bank */
|
|
VGMSTREAM* init_vgmstream_csb(STREAMFILE* sf) {
|
|
VGMSTREAM* vgmstream = NULL;
|
|
STREAMFILE* temp_sf = NULL;
|
|
off_t subfile_offset;
|
|
size_t subfile_size;
|
|
utf_context* utf = NULL;
|
|
utf_context* utf_sdl = NULL;
|
|
int total_subsongs, target_subsong = sf->stream_index;
|
|
uint8_t fmt = 0;
|
|
const char* stream_name = NULL;
|
|
|
|
|
|
/* checks */
|
|
if (!check_extensions(sf, "csb"))
|
|
goto fail;
|
|
if (!is_id32be(0x00,sf, "@UTF"))
|
|
goto fail;
|
|
|
|
/* .csb is an early, simpler version of .acb+awk (see acb.c) used until ~2013?
|
|
* Can stream from .cpk but this only loads memory data. */
|
|
{
|
|
int rows, sdl_rows, sdl_row, i;
|
|
const char *name;
|
|
const char *row_name;
|
|
const char *sdl_name;
|
|
uint32_t sdl_offset, sdl_size, offset, size;
|
|
uint32_t table_offset = 0x00;
|
|
uint8_t ttype;
|
|
int found = 0;
|
|
|
|
|
|
utf = utf_open(sf, table_offset, &rows, &name);
|
|
if (!utf) goto fail;
|
|
|
|
if (strcmp(name, "TBLCSB") != 0)
|
|
goto fail;
|
|
|
|
/* each TBLCSB row has a name and subtable with actual things:
|
|
* - INFO (TBL_INFO): table type/version, rarely ommited [Nights: Journey of Dreams (Wii)-some csb]
|
|
* - CUE (TBLCUE): base cues
|
|
* - SYNTH (TBLSYN): cue configs
|
|
* - SOUND_ELEMENT (TBLSDL): audio info/data (usually AAX)
|
|
* - ISAAC (TBLISC): 3D config
|
|
* - VOICE_LIMIT_GROUP (TBLVLG): system info?
|
|
* Subtable can be empty but still appear (0 rows).
|
|
*/
|
|
sdl_row = -1;
|
|
for (i = 0; i < rows; i++) {
|
|
if (!utf_query_string(utf, i, "name", &row_name))
|
|
goto fail;
|
|
if (strcmp(row_name, "SOUND_ELEMENT") == 0) {
|
|
sdl_row = i; /* usually 2 or 3 */
|
|
break;
|
|
}
|
|
}
|
|
if (sdl_row < 0)
|
|
goto fail;
|
|
|
|
|
|
/* read SOUND_ELEMENT table */
|
|
if (!utf_query_u8(utf, sdl_row, "ttype", &ttype) || ttype != 4)
|
|
goto fail;
|
|
if (!utf_query_data(utf, sdl_row, "utf", &sdl_offset, &sdl_size))
|
|
goto fail;
|
|
|
|
utf_sdl = utf_open(sf, sdl_offset, &sdl_rows, &sdl_name);
|
|
if (!utf_sdl) goto fail;
|
|
|
|
if (strcmp(sdl_name, "TBLSDL") != 0)
|
|
goto fail;
|
|
|
|
total_subsongs = 0;
|
|
if (target_subsong == 0) target_subsong = 1;
|
|
|
|
/* get target subsong */
|
|
for (i = 0; i < sdl_rows; i++) {
|
|
uint8_t stream_flag;
|
|
|
|
if (!utf_query_u8(utf_sdl, i, "stmflg", &stream_flag))
|
|
goto fail;
|
|
|
|
/* only internal data for now (when 1 this refers to a .cpk subfile probably using "name", has size 0) */
|
|
if (stream_flag)
|
|
continue;
|
|
|
|
total_subsongs++;
|
|
if (total_subsongs == target_subsong && !found) {
|
|
|
|
if (!utf_query_string(utf_sdl, i, "name", &stream_name))
|
|
goto fail;
|
|
if (!utf_query_data(utf_sdl, i, "data", &offset, &size))
|
|
goto fail;
|
|
if (!utf_query_u8(utf_sdl, i, "fmt", &fmt))
|
|
goto fail;
|
|
/* also nch/sfreq/nsmpl info */
|
|
|
|
found = 1;
|
|
}
|
|
}
|
|
|
|
if (!found) goto fail;
|
|
if (target_subsong < 0 || target_subsong > total_subsongs || total_subsongs < 1) goto fail;
|
|
|
|
subfile_offset = /*sdl_offset +*/ offset;
|
|
subfile_size = size;
|
|
|
|
/* column exists but can be empty */
|
|
if (subfile_size == 0)
|
|
goto fail;
|
|
}
|
|
|
|
//;VGM_LOG("CSB: subfile offset=%lx + %x\n", subfile_offset, subfile_size);
|
|
|
|
|
|
temp_sf = setup_subfile_streamfile(sf, subfile_offset, subfile_size, "aax");
|
|
if (!temp_sf) goto fail;
|
|
|
|
switch(fmt) {
|
|
case 0: /* AAX */
|
|
case 6: /* HCA */
|
|
vgmstream = init_vgmstream_aax(temp_sf);
|
|
if (!vgmstream) goto fail;
|
|
break;
|
|
|
|
case 4: /* ADPCM_WII */
|
|
vgmstream = init_vgmstream_utf_dsp(temp_sf);
|
|
if (!vgmstream) goto fail;
|
|
break;
|
|
|
|
default:
|
|
VGM_LOG("CSB: unknown format %i\n", fmt);
|
|
goto fail;
|
|
}
|
|
|
|
vgmstream->num_streams = total_subsongs;
|
|
strncpy(vgmstream->stream_name, stream_name, STREAM_NAME_SIZE-1);
|
|
|
|
utf_close(utf);
|
|
utf_close(utf_sdl);
|
|
close_streamfile(temp_sf);
|
|
return vgmstream;
|
|
|
|
fail:
|
|
utf_close(utf);
|
|
utf_close(utf_sdl);
|
|
close_streamfile(temp_sf);
|
|
close_vgmstream(vgmstream);
|
|
return NULL;
|
|
}
|