Skip to content

v0.3.2

Latest
Compare
Choose a tag to compare
@Gleefre Gleefre released this 12 Jun 15:32
· 4 commits to master since this release

Installation instructions

Download a matching archive for your operating system (there are versions for Windows 2019, Windows 2022, Ubuntu 20.04 and Ubuntu 22.04).

For linux users:

You need to install SDL2, SDL2_ttf and SDL2_image libraries. Ubuntu users can install these with apt-get:

sudo apt-get install libsdl2-2.0-0 libsdl2-image-2.0-0 libsdl2-ttf-2.0-0

Alternatively you can run windows binaries with wine.

Running game

Extract the archive and run waller/run.sh (linux) or waller/run.bat (windows) script to run the game.

Running with wine

To run windows binaries on linux you can use wine:

# game:
wine start /d waller/bin waller/bin/waller.exe
# level editor:
wine start /d waller/bin waller/bin/waller-editor.exe <level-number>
wine start /d waller/bin waller/bin/waller-editor.exe -W <new-width> -H <new-height> <new-level-number>

Running level editor

You can also run the level editor with waller/run-editor.sh (linux) or waller/run-editor.bat:

./waller/run-editor.sh
Usage:
   ./run-editor.sh [options] <level-number>
     <level-number>           Number of level to edit (must be a positive integer).
     -W, --width <number>     Create new level with given width (must be a positive integer).
                                (-H must be also present)
     -H, --height <number>    Create new level with given height (must be a positive integer).
                                (-W must be also present)
     -h, --help               Display this message