EasyRPG / liblcf

Library to handle RPG Maker 2000/2003 and EasyRPG projects
https://easyrpg.org
MIT License
113 stars 52 forks source link

liblcf

liblcf is a library to handle RPG Maker 2000 and 2003 game data. It can read and write LCF and XML files.

liblcf is part of the EasyRPG Project. More information is available at the project website: https://easyrpg.org/

Documentation

Documentation is available at the documentation wiki: https://wiki.easyrpg.org

Requirements

Source code

liblcf development is hosted by GitHub, project files are available in this git repository:

https://github.com/EasyRPG/liblcf

Released versions are also available at our Download Archive:

https://easyrpg.org/downloads/

Building

Autotools Makefile method:

Building requirements:

Step-by-step instructions:

tar xf liblcf-0.8.tar.xz   # unpack the tarball
cd liblcf-0.8              # enter in the package directory
./configure --prefix /usr  # find libraries, set options
make                       # compile the library
sudo make install          # install system-wide

Additional building requirements when using the source tree (git):

To generate the "configure" script, run before following the above section:

autoreconf -i

Read more detailed instructions at:

https://wiki.easyrpg.org/development/compiling/liblcf/autotools

CMake method:

Building requirements:

Step-by-step instructions:

tar xf liblcf-0.8.tar.xz              # unpack the tarball
cd liblcf-0.8                         # enter in the package directory
cmake . -DCMAKE_BUILD_TYPE=Release    # configure project
cmake --build .                       # compile the library
sudo cmake --build . --target install # install system-wide

Read more detailed instructions at:

https://wiki.easyrpg.org/development/compiling/liblcf/cmake

CMake is the only supported way to build liblcf for Windows. All dependencies must be installed with vcpkg.

Tools

LCF2XML

LCF2XML is a small tool to convert RPG Maker 2000 and 2003 data format (LMU, LMT, LDB, LSD, ...) to XML and vice-versa.

LCFSTRINGS

LCFSTRINGS is a small tool to list the strings used for the text and filenames from LMU, LMT, LDB and LSD files.

Bug reporting

Available options:

License

liblcf is Free/Libre Open Source Software, released under the MIT License. See the file COPYING for copying conditions.

3rd party software

liblcf includes code of the following 3rd party software:

See the source code comment headers for license details.