kichikuou 34e2d60ab4 Refactor s39ain_init()
Now strings in S39AIN struct are not copied with strdup(), but just
point inside the buffer where System39.ain is read.
2021-01-03 16:43:59 +09:00
2021-01-01 12:34:37 +09:00
2017-02-11 19:03:05 +09:00
2020-12-13 13:27:42 +09:00
2021-01-01 12:34:37 +09:00
2017-02-11 19:03:05 +09:00
2021-01-03 16:43:59 +09:00
2020-09-21 18:02:32 +09:00
2019-12-31 15:16:49 +09:00
2020-12-13 14:28:59 +09:00
2020-10-04 15:35:51 +09:00
2014-04-26 18:40:24 +09:00
2017-02-10 22:39:52 +09:00
2020-10-03 14:54:48 +09:00
2017-02-11 19:03:05 +09:00
2017-02-11 19:03:05 +09:00

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.

S
Description
No description provided
Readme
18 MiB
Languages
C 83.2%
Java 10.6%
Kotlin 5%
CMake 1.1%