SIEdit/lib/sitypes.h
2022-07-03 22:45:32 -05:00

194 lines
6.1 KiB
C++

#ifndef SI_H
#define SI_H
#include <fstream>
#include "common.h"
#include "types.h"
namespace si {
/**
* @brief RIFF chunk type
*
* Name | Size | Type | Description
* -------- | -------- | -------- | -----------
* Format | 4 | u32 | 4-byte ASCII identifier for what type of RIFF this is (usually 'OMNI' in the case of LEGO Island)
*/
class RIFF
{
public:
virtual ~RIFF(){}
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
/**
* @brief LIST chunk type
*
* Name | Size | Type | Description
* -------- | -------- | -------- | -----------
* Format | 4 | u32 | 4-byte ASCII identifier for what type of LIST this is.
* Count | 4 | u32 | (Optional) for 'MxCh' type LISTs, the number of elements in this list.
*/
class LIST : public RIFF
{
public:
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
/**
* @brief MxHd chunk type
*
* Name | Size | Type | Description
* ----------- | -------- | -------- | -----------
* Version | 4 | u32 | Version of this SI file stored as two packed 16-bit words, the high word being the major version and the low word being the minor version.
* BufferSize | 4 | u32 | The amount of data to read from disk at a time.
* BufferCount | 4 | u32 | FIXME: Currently not understood what this field does.
*/
class MxHd : public RIFF
{
public:
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
/**
* @brief MxSt chunk type
*
* MxSt is a container type only, it has none of its own members.
*/
class MxSt : public RIFF
{
public:
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
/**
* @brief MxCh chunk type
*
* Name | Size | Type | Description
* ---------- | -------- | --------- | -----------
* Flags | 2 | u16 | Flags determining the behavior of this chunk.
* Object | 4 | u32 | ID of the MxOb that this chunk belongs to.
* Time | 4 | u32 | Time in milliseconds that this chunk's data should be presented at.
* DataSize | 4 | u32 | Size of the data in this chunk.
* Data | DataSize | bytearray | Actual data in chunk.
*/
class MxCh : public RIFF
{
public:
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
/**
* @brief MxOf chunk type
*
* Name | Size | Type | Description
* ---------- | -------- | ---------------- | -----------
* Count | 4 | u32 | Number of objects in this list. Not necessarily the number of offsets, as one offset may point to an object with multiple sub-objects.
* Offsets | Variable | bytearray/u32[] | List of 4-byte file offsets where objects begin.
*/
class MxOf : public RIFF
{
public:
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
/**
* @brief pad_ chunk type
*
* Denotes padding to optimize disc reads. Contains no useful information,
* customarily filled with the byte 0xCD.
*/
class pad_ : public RIFF
{
public:
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
/**
* @brief MxOb chunk type
*
* Name | Size | Type | Description
* ----------- | -------- | ---------------- | -----------
* Type | 2 | u16 | Type of object (member of MxOb::Type enum)
* Presenter | Variable | string | Null-terminated string identifying the presenter to use (if type is set to `Presenter`)
* Unknown1 | 4 | u32 |
* Name | Variable | string | Null-terminated string identifying object's name
* ID | 4 | u32 | Unique object identifier within file (used to differentiate interleaved MxChs)
* Unknown3 | 4 | u32 |
* Unknown4 | 4 | u32 |
* Unknown5 | 4 | u32 |
* Unknown6 | 4 | u32 |
* Unknown7 | 4 | u32 |
* Unknown8 | 4 | u32 |
* Unknown9 | 4 | u32 |
* Unknown10 | 4 | u32 |
* Unknown11 | 4 | u32 |
* Unknown12 | 4 | u32 |
* Unknown13 | 4 | u32 |
* Unknown14 | 4 | u32 |
* Unknown15 | 4 | u32 |
* Unknown16 | 4 | u32 |
* Unknown17 | 4 | u32 |
* Unknown18 | 4 | u32 |
* Unknown19 | 4 | u32 |
* Unknown20 | 4 | u32 |
* Unknown21 | 4 | u32 |
* Unknown22 | 4 | u32 |
* Unknown23 | 4 | u32 |
* Unknown24 | 4 | u32 |
* ExtraLength | 2 | u16 |
* ExtraData | ExtraLength | bytearray |
* FileName | Variable | string | Original filename of the file represented by this object.
* Unknown26 | 4 | u32 |
* Unknown27 | 4 | u32 |
* Unknown28 | 4 | u32 |
* FileType | 4 | u32 | 4-byte ASCII ID for the file type
* Unknown29 | 4 | u32 |
* Unknown30 | 4 | u32 |
* Unknown31 | 4 | u32 | (Optional) only populated for WAV files
*/
class MxOb : public RIFF
{
public:
enum Type
{
/// Smacker video
SMK = 0x03,
/// WAVE audio
WAV = 0x04,
/// World object for LegoWorldPresenter
World = 0x06,
/// Custom MxPresenter
Presenter = 0x07,
/// Event
Event = 0x08,
/// Animation
Animation = 0x09,
/// Bitmap image
BMP = 0x0A,
/// 3D Object
OBJ = 0x0B,
/// Total number of types (not a real type)
TYPE_COUNT
};
// FIXME: sitypes.h probably won't be part of the public API, so this should
// probably be moved
LIBWEAVER_EXPORT static const char *GetTypeName(Type type);
virtual void Read(std::ifstream &is, DataMap &data, u32 version, u32 size);
};
}
#endif // SI_H