https://github.com/myst6re/makoureactor
Final Fantasy VII field archive editor
https://github.com/myst6re/makoureactor
c-plus-plus editor ff7 final-fantasy-vii qt
Last synced: about 1 month ago
JSON representation
Final Fantasy VII field archive editor
- Host: GitHub
- URL: https://github.com/myst6re/makoureactor
- Owner: myst6re
- License: gpl-3.0
- Created: 2015-01-24T20:14:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-03-01T21:21:24.000Z (3 months ago)
- Last Synced: 2025-03-17T14:08:13.122Z (2 months ago)
- Topics: c-plus-plus, editor, ff7, final-fantasy-vii, qt
- Language: C++
- Homepage:
- Size: 7.19 MB
- Stars: 60
- Watchers: 5
- Forks: 11
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
- License: COPYING.TXT
Awesome Lists containing this project
README
# Makou Reactor
[](https://github.com/myst6re/makoureactor/actions/workflows/build.yml)
[](https://scan.coverity.com/projects/myst6re-makoureactor) [](#)
Final Fantasy VII field archive editor ([Forum](http://forums.qhimm.com/index.php?topic=9658.0)).
## Installing
[](https://github.com/myst6re/makoureactor/releases/tag/2.0.0) [](https://github.com/myst6re/makoureactor/releases/tag/continuous) [](https://flathub.org/apps/details/io.github.myst6re.makoureactor)
## Contributing
You are welcome to contribute on this project, feel free to open issues and
PR on [GitHub](https://github.com/myst6re/makoureactor).## Building
If you are a developer and you want to build this software, follow the
instructions below.### Requirements
- [zlib](http://www.zlib.net/)
- [ff7tk](https://www.github.com/sithlord48/ff7tk)
- CMake
- Qt 6.2+### Windows
#### Qt + Qt Creator
0. Download the online installer from https://www.qt.io/download-qt-installer
1. Install Qt 6 with these items checked:
- **Qt/Qt 6.x.x (last version):** Check `MSVC 2022 64-bit`, `Qt Creator`, `Qt Shader Tools` and `Qt 5 Compatibility Module`
- **Developer And Designer Tools:** Check `CMake` and `Ninja`
2. Run Qt Creator and open an existing project, select the CMakeLists.txt in the source directory of Makou Reactor#### Visual Studio
> **Please note:**
>
> By default Visual Studio will pick the **x86-Release** build configuration, but you can choose any other profile available.0. **REQUIRED!** Follow the steps to install Qt, if you didn't already
1. Download the the latest [Visual Studio Community](https://visualstudio.microsoft.com/vs/community/) installer
2. Run the installer and import this [.vsconfig](.vsconfig) file in the installer to pick the required components to build this project
3. Make sure you select the English Language pack in the language list before clicking Install
4. Once installed, open this repository **as a folder** in Visual Studio 2022 and click the build button.#### Optional: Visual Studio Code
0. **REQUIRED!** Follow the steps to install Qt, if you didn't already
1. **REQUIRED!** Follow the steps to install Visual Studio, if you didn't already
2. Download and install the latest [Visual Studio Code](https://code.visualstudio.com/) release
3. Install the following extensions:
- https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools
- https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools
4. Open this repository as a folder in Visual Studio code
5. Choose as build profile in the status bar `CMake: [Release]` (or one of the aforementioned profiles)
6. Click the button on the status bar `Build`### macOS
In order to continue please make sure you have `brew` installed. See https://brew.sh/ for instructions.
#### Install dependencies
```sh
$ brew install cmake
$ brew install qt6
```Close and reopen your terminal.
#### Build
> **Please note**: You can choose other build profiles if you want. See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html for more information.
```sh
$ mkdir -p .dist/build .dist/install
$ cmake -S . -B .dist/build -DCMAKE_INSTALL_PREFIX=.dist/install -DCMAKE_BUILD_TYPE=Release
$ cmake --build .dist/build --config Release
```### Linux
#### Install dependencies
##### Debian/Ubuntu
```sh
$ apt-get install build-essential cmake qt6-default qttools6-dev
```##### Arch Linux
```sh
$ pacman -S --needed base-devel cmake qt6
```#### Build
> **Please note**: You can choose other build profiles if you want. See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html for more information.
```sh
$ mkdir -p .dist/build .dist/install
$ cmake -S . -B .dist/build -DCMAKE_INSTALL_PREFIX=.dist/install -DCMAKE_BUILD_TYPE=Release
$ cmake --build .dist/build --config Release
```#### Install
```sh
$ cmake --build .dist/build --target install
```