RPG Maker 2000/2003 and EasyRPG games interpreter
EasyRPG Player is a game interpreter to play RPG Maker 2000, 2003 and EasyRPG games. It uses the LCF parser library (liblcf) to read RPG Maker game data.
EasyRPG Player is part of the EasyRPG Project. More information is available at the project website: https://easyrpg.org/
Documentation is available at the documentation wiki: https://wiki.easyrpg.org
SDL 1.2 and SDL_mixer 1.2 are still supported, but deprecated.
Up to date binaries for assorted platforms are available at our continuous integration service:
https://ci.easyrpg.org/view/Player/
EasyRPG Player development is hosted by GitHub, project files are available in this git repository:
https://github.com/EasyRPG/Player
Released versions are also available at our Download Archive:
https://easyrpg.org/downloads/player/
If your operating system has a package manager, we recommend installing the dependencies with it.
In case you want to compile the dependencies yourself, you can find them, except for liblcf, in our buildscripts repository.
Building requirements:
Step-by-step instructions:
tar xf easyrpg-player-0.6.2.tar.xz # unpack the tarball cd easyrpg-player-0.6.2 # enter in the package directory ./configure # find libraries, set options make # compile the executable
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/player/autotools
Building requirements:
Step-by-step instructions:
tar xf easyrpg-player-0.6.2.tar.xz # unpack the tarball cd easyrpg-player-0.6.2 # enter in the package directory cmake . -DCMAKE_BUILD_TYPE=Release # configure project cmake --build . # compile the executable sudo cmake --build . --target install # install system-wide
Read more detailed instructions at:
https://wiki.easyrpg.org/development/compiling/player/cmake
CMake is the only supported way to build Player for Windows. All dependencies must be installed with vcpkg.
Building for libretro is based on the CMake method.
Additional commands required before building:
git submodule init # Init submodules git submodule update # Clone libretro-common submodule
Invoke CMake with these additional parameters:
cmake . -DPLAYER_TARGET_PLATFORM=libretro -DBUILD_SHARED_LIBS=ON|OFF
Set shared libs to ON or OFF depending on which type of libraries RetroArch uses on the platform you are targeting.
Building requirements:
Step-by-step instructions:
tar xf easyrpg-player-0.6.2.tar.xz # unpack the tarball cd easyrpg-player-0.6.2/builds/android # enter in the android directory ./gradlew -PtoolchainDirs="DIR1;DIR2" assembleRelease # create the APK
Replace
DIR1etc. with the path to the player dependencies. You can use the scripts in the
androidfolder of our buildscripts to compile them.
To pass additional CMake arguments use
-PcmakeOptions:
-PcmakeOptions="-DSOME_OPTION1=ON -DSOME_OPTION2=OFF"
The unsigned APK is stored in:
app/build/outputs/apk/release/app-release-unsigned.apk
Run the
easyrpg-playerexecutable from a RPG Maker 2000 or 2003 game project folder (same place as
RPG_RT.exe).
Available options:
EasyRPG Player is free software available under the GPLv3 license. See the file COPYING for license conditions.
EasyRPG Player makes use of the following 3rd party software:
FMMidi YM2608 FM synthesizer emulator - Copyright (c) 2003-2006 yuno (Yoshio Uno), provided under the (3-clause) BSD license
PicoJSON JSON parser/serializer - Copyright (c) 2009-2010 Cybozu Labs, Inc. Copyright (c) 2011-2015 Kazuho Oku, provided under the (2-clause) BSD license
Dirent interface for Microsoft Visual Studio - Copyright (c) 2006-2012 Toni Ronkko, provided under the MIT license
Teenyicons - Copyright (c) 2020 Anja van Staden, provided under the MIT license