Test Application for editing the tiles of a FF8 field. See releases to download the most recent build. Everything is in constant flux. You might want to backup your current build of the program before upgrading as their maybe breaking changes.
Possible Issue: with saving and loading of filters. If you have problems, clear out the .toml
file or the imgui.ini
to reset the settings to defaults. If you want to send me your .toml
in an issue. I might be able to figure out why it was bugging out.
- 2025.JAN.13 - I found a small bug #121. This could cause the Pupu to not be unique enough. It might break your exports. You may need to convert to swizzled in your current version before upgrading.
- 2022.SEP.12 - #80 & #122. I used 2 bits to note if a tile is not aligned with the 16x16 grid, via the X-axis or the Y-axis.
This was formerly the SFML version, but it now uses OpenGL with GLEW, GLFW, and ImGui, just like the Experimental Application. It is the more feature-complete version and is recommended for most users.
It receives regular updates, as it’s the version most people use. New features are developed and tested here first to ensure stability and reliability.
If you notice any missing features or have suggestions, feel free to share your feedback — it directly shapes development.
Note: This version requires the
fonts
folder.
Note: This version also requires the
res
folder, which contains essential shaders and textures.
The Batch Operation Window will let you take input in one format and output in another format. Input formats such as .mim
, swizzle, and deswizzle. Output formats such as swizzle, deswizzle, and swizzle as one file.
This feature needs more work. I did have a working test where I used this to add tiles to the swizzle, loaded in the game. You might still be able to get it to work.
The History Window lets you see opreations performed that you can undo or redo.
The Draw window shows the current rendering of the field. The Control Panel controls the Draw window. You can also access more detailed configuration in the main menu at the top.
The Custom Paths Window lets you configure how the Field Map Editor search for 3rd party textures, or .map
files.
This window lets you see what files are in this field. I plan to make this alittle more useful. You can copy and paste lines of the text.
This was formerly the OpenGL version and now serves as a testing ground for experimental features. Like the Main Application, it also uses OpenGL, GLEW, GLFW, and ImGui.
Experimental features are often trialed here first, then refined and ported to the Main Application if successful. While the Main Application is the recommended choice, the Experimental Application may include features not yet available there.
If you find something in the Experimental version that you'd like to see in the Main Application, let me know — your feedback helps guide future development.
Note: This version requires the
res
folder, which contains essential shaders and textures.
This project is based on the work of the following developers:
I referenced their code or videos in the development of this project.
This guide provides detailed instructions for building the project on Windows using the provided build scripts and dependencies.
Ensure the following tools and software are installed on your system:
- Microsoft Visual Studio 2022 (Community Edition or higher)
- Python 3.8 or newer
- Conan 2.x or newer
- CMake
Run the Visual Studio vcvars64.bat
script to configure the environment variables for 64-bit builds:
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
Ensure Conan 2.x or newer is installed and set up:
python -m venv .\venv
.\venv\Scripts\activate
python -m pip install --user "conan>=2.0" --upgrade
Configure Conan and detect profiles:
conan config home
conan profile detect --name windows_msvc > nul 2> nul & exit 0
conan profile list
Install project dependencies with Conan:
conan install . -pr windows_msvc -pr:b windows_msvc --build=missing -s compiler.cppstd=23 -s build_type=Release -of build/Release
conan install . -pr windows_msvc -pr:b windows_msvc --build=missing -s compiler.cppstd=23 -s build_type=RelWithDebInfo -of build/RelWithDebInfo
conan install . -pr windows_msvc -pr:b windows_msvc --build=missing -s compiler.cppstd=23 -s build_type=Debug -of build/Debug
deactivate
Check the CMake version and list available presets:
cmake --version
cmake --list-presets
Configure and generate build files using the preset: (Conan loves to add default to the preset.)
cmake --preset conan_windows-release-default
Navigate to the build directory and build the solution:
cd build
msbuild Field-Map-Editor.sln /p:Configuration=Release
cd ..
dir /s /b bin\*.exe
- The resulting executables will be located in the
bin
directory. - Ensure all paths and configurations match your local setup.
- For troubleshooting, review the output logs during each step.
- Make sure you have atleast GCC 15.
gcc --version
Ubuntu
sudo apt update
sudo apt install -y python3 python3-venv python3-pip cmake build-essential
```p
Arch
```sh
pacman -Syu sudo
sudo pacman -Syu
sudo pacman -Syu --needed python python-virtualenv python-pip cmake base-devel python-pipx libglvnd libxcb libfontenc libice libsm libxaw libxcomposite libxcursor libxdamage libxtst libxinerama libxkbfile libxrandr libxres libxss libxv xcb-util xcb-util-cursor xcb-util-wm xcb-util-keysyms git
Ubuntu
python3 -m venv venv
source venv/bin/activate
pip install conan
Arch
pipx install conan
pipx ensurepath
source ~/.bashrc
I was getting permission errors in wsl. So I copied my files to my home directory to try again. I donno why it was happening. Below I am making the projects folder and i'm removing existing files and i'm cloning the files. The remove step is optional. I had old files in that directory.
mkdir -p ~/projects
rm -rf ~/projects/Field-Map-Editor
git clone --branch remove_sfml https://github.com/Sebanisu/Field-Map-Editor.git ~/projects/Field-Map-Editor
cd ~/projects/Field-Map-Editor
git status
git pull
conan config home
Ubuntu
conan profile detect --name ubuntu24 > /dev/null 2>&1 || true
Arch
conan profile detect --name arch > /dev/null 2>&1 || true
conan profile list
Ubuntu
conan install . -pr ubuntu24 -pr:b ubuntu24 --build=missing -s compiler.cppstd=23 -of ./linux
Arch
conan install . -pr arch -pr:b arch --build=missing -s compiler.cppstd=23 -of ./archlinux -c tools.system.package_manager:mode=install
deactivate
cmake --list-presets
rm -rf ./archlinux/build/Release/
cmake --preset=conan_linux_release-release
cmake --build ./archlinux/build/Release/
- The compiled binaries can be found in the
./bin/
directory.