Tools for working with SI files.
  • C++ 91.1%
  • CMake 8.9%
Find a file
foxtacles 17c7736a6f
Some checks failed
CI / build (push) Has been cancelled
CI-Linux / build (push) Has been cancelled
Header only read (#46)
* Add ReadObjectData for on-demand loading of individual SI objects

Extract MxCh data-assignment logic from ReadChunk into a shared
ProcessDataChunk helper, and add ReadObjectData which seeks to a
single object's MxSt block and reads only its data chunks. This
enables loading animation/audio data by object ID without reading
the entire interleaved file.

* Add HeaderOnly read mode and slot-based ReadObject

Replace ReadObjectData with a simpler ReadObject(FileBase*, slot) that
seeks to the MxSt at the given slot index and reuses ReadChunk to parse
the full object tree and data chunks.

HeaderOnly mode reads just the RIFF header, MxHd, and MxOf offset table,
then stops - enabling callers to defer per-object reads.
2026-03-15 22:32:52 +01:00
.github/workflows ci: Fix appimage (#39) 2025-11-21 16:37:41 +01:00
app app: presentation tweaks and improvements (#25) 2025-12-09 12:06:14 -05:00
cmake cmake: make libweaver installable (#38) 2025-11-21 19:26:22 -07:00
include/libweaver Header only read (#46) 2026-03-15 22:32:52 +01:00
lib Header only read (#46) 2026-03-15 22:32:52 +01:00
packaging add screenshot 2023-09-14 10:15:03 -07:00
.gitattributes git: add .gitattributes to make line ending rule 2022-07-10 21:15:06 -07:00
.gitignore gitignore: add build dir [skip ci] 2024-01-19 14:35:30 -05:00
CMakeLists.txt cmake: add LIBWEAVER_BUILD_APP option so only the library can be built (#44) 2025-12-18 16:18:57 -05:00
LICENSE Create LICENSE 2023-08-02 14:07:20 -07:00
README.md readme: update building to reflect qt update 2024-01-19 17:43:10 -05:00

SIEdit

SIEdit is a fully graphical viewer and editor of the SI streaming asset pack format used by LEGO Island. It can view, extract, and replace data in all of the game's SI files, allowing textures, sounds, animations, path information, FMVs, and even some game logic/metadata to be modified. It is currently still under development, but should work with all files.

SIEdit Screenshot

libweaver

All of the SI-specific code is contained in a separate C++ library called libweaver, enabling other projects to re-use the discoveries here and work with SI files too. Currently there is no documentation or stable API, however it should be fairly straightforward, and I plan to add those things in the future.

Building

SIEdit and libweaver use the fairly standard CMake build system.

SIEdit requires Qt 6+ and FFmpeg for the UI and media playback respectively.

libweaver uses only standard libraries from C++98, and shouldn't require anything special.

Future

Here's a non-exhaustive list of things I'd like to add in the future:

  • Auto-conversion/conforming when replacing files. Right now, when you replace files, you have to manually convert them into the right format before doing so (e.g. 256-color bitmap with specific paletting, Smacker 2, FLIC, WAV, et al.) It would be nice if SIEdit did this automatically.
  • Stable API for libweaver. The library is fairly usable as-is, but it isn't the cleanest thing in the world right now, and I'd like for other people to be able to use it with as little headache as possible. This is my first time providing a library for use in other projects so I also may have made some mistakes.
  • Ability to create SI files from scratch. Currently any changes made must use an existing SI as a base. It would be interesting to be able to load completely custom SIs into the game. This may require some more reverse engineering, though I think we have most of the work down.
    • As a corollary from this, also the ability to add/delete objects, as opposed to just replacing what already exists.
  • More packaging options. Currently we only provide a Windows build, which is ironic since I'm not even a Windows user. We may add a build for macOS and an AppImage for Linux, and I might try setting up a package on the AUR since I use Arch (btw)