mirror of
https://github.com/kichikuou/xsystem35-sdl2.git
synced 2026-09-22 22:48:08 +03:00
be1f048b33197e2f68aa0e2bd90f96a7baefd0bd
- Any key input detected in skippable wait functions will cancel the skip mode (regardless of skipModeInterruptable value). - Space key (right click) in sys_getInputInfo() will no longer cancel the skip mode. - Add 30ms wait in sys_hit_any_key() (used by the 'A' command) so that users can see what's going on while skipping. - Cancel the skip mode when opening a menu, not when closing it.
xsytem35-sdl2
This is a multi-platform port of xsystem35, a free implementation of AriceSoft's System3.x game engine.
Download
Prebuilt binaries for Windows and Android can be downloaded from the Releases page.
Build
Linux (Debian / Ubuntu)
$ sudo apt install build-essential cmake libgtk2.0-dev libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev
$ mkdir -p out/debug
$ cd out/debug
$ cmake -DCMAKE_BUILD_TYPE=Debug ../../
$ make && make install
MacOS
Homebrew is needed.
$ brew install cmake pkg-config sdl2 sdl2_mixer sdl2_ttf libjpeg
$ mkdir -p out/debug
$ cd out/debug
$ cmake -DCMAKE_BUILD_TYPE=Debug ../../
$ make && make install
Windows
MSYS2 is needed.
$ pacman -S cmake mingw-w64-x86_64-cmake mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_ttf mingw-w64-x86_64-SDL2_mixer mingw-w64-x86_64-libjpeg-turbo
$ mkdir -p out/debug
$ cd out/debug
$ cmake -G"MSYS Makefiles" -DCMAKE_BUILD_TYPE=Debug ../../
$ make
Emscripten
$ mkdir -p out/wasm
$ cd out/wasm
$ emcmake cmake -DCMAKE_BUILD_TYPE=MinSizeRel ../../
$ make
To use the generated binary, checkout Kichikuou on Web and copy out/xsystem35.* into its docs directory.
Android
See android/README.md.
Languages
C
83.2%
Java
10.6%
Kotlin
5%
CMake
1.1%