Version 0.1 You Can Kill The Rat King with the Devil's Fingers

This release is an initial Windows installer of the working game to this point.  It features a few of the enemies, working basic combat system, and two fake boss fights.  Try it and please email help@learncodethehardway.com with anything you ran into.

NOTE: This only works on Windows 10 and maybe Windows 11.  All 3 of you who use Windows 7/8/XP are out of luck.
master version-0.1
Gitea 6 months ago committed by Zed A. Shaw
parent 5c815cf755
commit ffad1a1be5
  1. 3
      Makefile
  2. 2
      main.cpp
  3. 7
      meson.build
  4. BIN
      win_installer.ifp

@ -42,3 +42,6 @@ clean:
debug_test: build
gdb --nx -x .gdbinit --ex run --args builddir/runtests.exe -e
win_installer:
powershell 'start "C:\Program Files (x86)\solicus\InstallForge\bin\ifbuilderenvx86.exe" win_installer.ifp'

@ -6,7 +6,7 @@
int main(int argc, char* argv[]) {
textures::init();
sound::init();
sound::mute(true);
sound::mute(false);
gui::FSM main;
main.event(gui::Event::STARTED);
Autowalker walker(main);

@ -5,6 +5,13 @@ project('raycaster', 'cpp',
'cpp_args=-D_GLIBCXX_DEBUG=1 -D_GLIBCXX_DEBUG_PEDANTIC=1',
])
add_global_link_arguments(
'-static-libgcc',
'-static-libstdc++',
'-static',
language: 'cpp',
)
# use this for common options only for our executables
cpp_args=[]
# these are passed as override_defaults

Binary file not shown.