2021-06-11 19:24:52 +02:00
|
|
|
# M.A.S.S. Builder Save Tool
|
|
|
|
|
2022-11-26 11:44:57 +01:00
|
|
|
A save file manager and editor for M.A.S.S. Builder. Based on [wxMASSManager](https://git.williamjcm.ovh/williamjcm/wxMASSManager),
|
|
|
|
this is a fork using Magnum and ImGui for the UI.
|
2021-06-11 19:24:52 +02:00
|
|
|
|
|
|
|
## Installing
|
|
|
|
|
2022-11-26 11:44:57 +01:00
|
|
|
Get the `MassBuilderSaveTool-<version>.zip` file from the [the main website](https://williamjcm.ovh/mbst) or on the
|
|
|
|
[Releases](https://git.williamjcm.ovh/williamjcm/MassBuilderSaveTool/releases) page, and extract it somewhere. Then,
|
|
|
|
launch `MassBuilderSaveTool-<version>.exe`.
|
2021-06-11 19:24:52 +02:00
|
|
|
|
|
|
|
## Building on MSYS2 - IGNORE IF YOU JUST WANT TO USE THE APP!
|
|
|
|
|
2022-11-26 11:44:57 +01:00
|
|
|
1. Install the 64-bit (`x86_64`) version of [MSYS2](https://www.msys2.org/) in its default path (`C:\msys64`), and
|
|
|
|
update it fully.
|
2024-03-28 12:23:25 +01:00
|
|
|
2. Run `pacman -S git mingw-w64-ucrt-x86_64-toolchain mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-ninja mingw-w64-ucrt-x86_64-zlib`.
|
2022-11-26 11:44:57 +01:00
|
|
|
3. In a `URCT64` shell, type `git clone https://github.com/williamjcm/MassBuilderSaveTool`.
|
2021-06-11 19:24:52 +02:00
|
|
|
4. Type `cd MassBuilderSaveTool && git submodule init && git submodule update && mkdir build && cd build`.
|
|
|
|
5. Type `cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..`
|
|
|
|
6. Type `ninja`
|
|
|
|
7. ...
|
|
|
|
8. Profit!
|
|
|
|
|
|
|
|
You'll be able to find the executable in `build/Release/bin`.
|