An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# Makou Reactor

[![CI/CD](https://github.com/myst6re/makoureactor/actions/workflows/build.yml/badge.svg)](https://github.com/myst6re/makoureactor/actions/workflows/build.yml)
[![Coverity Scan Build Status](https://img.shields.io/coverity/scan/8102.svg)](https://scan.coverity.com/projects/myst6re-makoureactor) [![Stable Release](https://img.shields.io/github/downloads/myst6re/makoureactor/total?label=Total%20Downloads)](#)

![Makou Reactor](src/qt/images/logo-shinra.png)

Final Fantasy VII field archive editor ([Forum](http://forums.qhimm.com/index.php?topic=9658.0)).

## Installing

[![Stable Release](https://img.shields.io/github/downloads/myst6re/makoureactor/2.0.0/total?logo=github&label=Download%20Stable%20Release)](https://github.com/myst6re/makoureactor/releases/tag/2.0.0) [![Continious Release](https://img.shields.io/github/downloads/myst6re/makoureactor/continuous/total?logo=github&label=Download%20Continuous%20Release)](https://github.com/myst6re/makoureactor/releases/tag/continuous) [![Get From Flathub](https://img.shields.io/flathub/downloads/io.github.myst6re.makoureactor?logo=flathub&label=Download%20From%20Flathub)](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
```