XPlor/definitions/asura/chunks/tatc_chunk.xscript
njohnson 8f07bf0b72 Update Asura XScript definitions with new syntax
- Migrate from bracket attributes to ui() function calls
- Enhance chunk parsing with improved structure definitions
- Add additional metadata fields to chunk handlers
- Update Xbox 360 texture and archive definitions

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 12:10:29 -05:00

48 lines
1005 B
Plaintext

// TATC - Target Camera Track Chunk
// Contains camera target tracking data
// Found in .cut files
type tatc_chunk [display="TATC Target Camera"] byteorder BE
{
// Standard 16-byte Asura chunk header
chunk_id = ascii(read(4));
u32 chunk_size;
u32 version;
u32 flags;
chunk_id = chunk_id;
ui("chunk_id", "Chunk ID");
chunk_size = chunk_size;
ui("chunk_size", "Chunk Size");
version = version;
ui("version", "Version");
flags = flags;
ui("flags", "Flags");
// Target name (null-terminated)
target_name = cstring();
target_name = target_name;
ui("target_name", "Target Name");
// Use target name for display (clean removes non-printable chars)
set_name(clean(target_name));
// Track entry count
u32 entry_count;
entry_count = entry_count;
ui("entry_count", "Entry Count");
// Keyframe count
u32 keyframe_count;
keyframe_count = keyframe_count;
ui("keyframe_count", "Keyframe Count");
}