lordmir / landstalker_editor

A tool for extracting, viewing, editing and re-inserting the various data found in the Landstalker ROMs and disassembly.

Home Page:http://lordmir.github.io/landstalker_editor/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Landstalker Editor

A tool for extracting, viewing, editing and re-inserting the various data found in the Landstalker ROMs and disassembly.

This tool can work with any of the six publicly available ROM dumps, as well as with my other project: Landstalker Disassembly

Documentation

Work-in-progress documentation here.

Screenshot

edit

Video Demonstrations

Version 0.3.4 Demo Version 0.2 Demo
Map and Sprite Editing Demo, version 0.3.4 Text, Graphics, Room and Entity Editing Demo, version 0.2

Current State of progress

Asset Viewable Editable Notes
Strings ✔️ ✔️ Custom character sets to be added.
Character Script ROM format reverse engineered.
Shop Script ROM format reverse engineered.
Tiles ✔️ ✔️
2D Maps ✔️ ✔️
Misc Graphics (Fonts, etc.) 90% complete. Still need to understand end credit font.
Palettes ✔️ ✔️
Blocksets ✔️ ✔️
3D Maps ✔️ ✔️ Editor UI could be better optimised.
Heightmaps ✔️ ✔️
Room Entity Placement ✔️ ✔️
Room Warp Placement ✔️ ✔️
Chest Contents ✔️ ✔️
Room Character Scripts ✔️ ✔️
Room Flags ✔️ ✔️
Room Graphic Transitions ✔️ ✔️
Entity Properties ✔️ ✔️
Entity Behaviours ✔️ ✔️
Triggers ROM format reverse engineered.
Room Triggers ROM format reverse engineered.
Cutscenes ROM format reverse engineered.
Sprite Frames ✔️ ✔️
Sprite Animations ✔️ ✔️
Audio Samples
Music

Build

Linux

Packages

In addition to build-essential (compiler and make), the following libraries are required:

It is recommended to have the following installed in addition to the above, in order to build assemblies:

  • git
  • wine
  • kega-fusion

Build and Install wxWidgets (all distributions)

  1. Download the wxWidgets v3.2+ source from the official website. Extract the contents of the tar file to a suitable location.
  2. Install the prerequisites (see the README.md file in the wxWidgets source). For Debian/Ubuntu, you will need to run this command: # apt install libgtk-3-dev libgl1-mesa-dev libglu1-mesa-dev libgstreamer-plugins-base1.0-dev libcurl4-openssl-dev libwebkit2gtk-4.0-dev libpng-dev
  3. Create a build directory:
    $ cd wxWidgets-3.2.2.1
    $ mkdir gtkbuild
    $ cd gtkbuild
  4. Run the configure script as follows:
    $ ../configure --with-gtk --disable-shared
    Add the --enable-debug option for a debug build.
  5. Build the source: (this can take some time)
    $ make -j8
  6. Install the built libraries:
    sudo make install
    sudo ldconfig
    

Build and Install yaml-cpp (all distributions)

  1. Download the yaml-cpp source from GitHub. Extract the contents of the tar file to a suitable location.
  2. Make sure cmake is installed. For Debian/Ubuntu, you will need to run this command: # apt install cmake
  3. Create a build directory:
    $ cd yaml-cpp
    $ mkdir build
    $ cd build
  4. Run cmake as follows:
    $ cmake ..
    Add the -D CMAKE_CXX_FLAGS_DEBUG='-g -D_GLIBCXX_DEBUG' option for a debug build.
  5. Build the source:
    $ make
  6. Install the built libraries:
    sudo make install
    sudo ldconfig
    

Build

build using the Makefile by calling make

$ make

To build with debug symbols, use pass the DEBUG=yes parameter to make

$ make DEBUG=yes

Windows

Visual Studio 2019 (Community)

Prerequisites

WxWidgets

You will need to download and build the WxWidgets 3.2.2+ library (https://www.wxwidgets.org/). Download the Windows ZIP version and extract somewhere convenient (e.g. the root of the C: drive). Note that the final extracted path cannot contain spaces.

Navigate to the extracted WxWidgets sources and go to the build\msw directory. Open the wx_vc16.sln solution file. Go to the "Build" menu and select "Batch Build...". In the batch build window, click the "Select All" button and then click "Build" (note that this will take some time). Once all files have been built, exit out of Visual Studio.

Finally, we need to add an environment variable to tell Visual Studio where to find the WxWidgets files. Open the Start menu, right click on "Computer" and select "Properties". Click on "Advanced System Settings" and then "Environment Variables". Add a new System Environment Variable named WX_WIN, and set its value equal to the full path to the WxWidgets directory (e.g. "C:\libraries\WxWidgets-3.2.2"). Click OK and exit out of the system properties windows.

Make sure that Visual Studio has been restarted so that it picks up the new environment variable.

LibPng and ZLib

You will need to obtain the LibPng 1.6.37 library - this can be found at https://download.sourceforge.net/libpng/lpng1637.zip. You will also need the ZLib source, download this from https://www.zlib.net/zlib-1.2.11.tar.gz.

Extract both archives to a common directory (e.g. C:\libraries). Once extracted, you should have a "lpng1637" folder and a "zlib-1.2.11" folder. Rename the zlib folder to "zlib" (i.e. remove the version from the folder name).

Navigate to lpng1637/projects/vstudio and open the zlib.props file with a text editor. Change the <TreatWarningAsError> value from true to false. Save the file.

Next, open the vstudio.sln file. You will be prompted to upgrade the solution file to the latest version - choose "Yes". Once converted, go to the "Build" menu and select "Batch Build...". In the batch build window, click the "Select All" button and then click "Build". Once all files have been built, exit out of Visual Studio.

Finally, we need to add an environment variable to tell Visual Studio where to find libpng. Open the Start menu, right click on "Computer" and select "Properties". Click on "Advanced System Settings" and then "Environment Variables". Add a new System Environment Variable named LIBPNG_PATH, and set its value equal to the full path to libpng (e.g. "C:\libraries\libpng1637"). Click OK and exit out of the system properties windows.

Make sure that Visual Studio has been restarted so that it picks up the new environment variable.

Yaml-cpp

  1. Download and install CMake from the CMake Website.

  2. Download the yaml-cpp source as a zip file from GitHub.

  3. Extract the contents of the zip file to a suitable location (e.g. C:\libraries). Rename the yaml-cpp folder to yaml-cpp (i.e. remove the version from the folder name).

  4. Open a command prompt window and navigate to the extracted files: cd \libraries\yaml-cpp

  5. Create a build directory:

    mkdir build
    cd build
  6. Run cmake as follows:

    cmake -G "Visual Studio 17 2022" -A Win32 ..
  7. Build the Debug and Release versions of the library:

    cmake --build . --target ALL_BUILD --config Debug --parallel 8
    cmake --build . --target ALL_BUILD --config Release --parallel 8
  8. Go to the "Build" menu and select "Batch Build...". In the batch build window, select the first four ALL_BUILD configurations and then click "Build" (note that this will take some time). Once all files have been built, exit out of Visual Studio.

  9. Finally, we need to add an environment variable to tell Visual Studio where to find the yaml-cpp libraries. Open the Start menu, right click on "Computer" and select "Properties". Click on "Advanced System Settings" and then "Environment Variables". Add a new System Environment Variable named YAMLCPP_PATH, and set its value equal to the full path to yaml-cpp (e.g. "C:\libraries\yaml-cpp"). Click OK and exit out of the system properties windows.

Build

Open the VS2019 solution file in landstalker_gfx\VC2019. Make sure that the appropriate configuration has been set (e.g. "Debug x86") and hit Ctrl+Shift+B to build.

About

A tool for extracting, viewing, editing and re-inserting the various data found in the Landstalker ROMs and disassembly.

http://lordmir.github.io/landstalker_editor/


Languages

Language:C++ 85.7%Language:C 14.2%Language:Makefile 0.0%Language:Python 0.0%