A game about collecting flowers. https://jamgaroo.xyz/games/3
Iri al dosiero
Jaidyn Ann ad3980a538 Add city, casino, & library to outdoors map 2023-07-06 22:44:46 -05:00
res Add city, casino, & library to outdoors map 2023-07-06 22:44:46 -05:00
.gitignore Split package definitions into packages.lisp 2023-06-28 10:15:23 -05:00
COPYING Remove source-file copyright header 2023-06-03 22:13:45 -05:00
Makefile Write install instructions (README.md) 2023-07-02 14:40:07 -05:00
README.md Write install instructions (README.md) 2023-07-02 14:40:07 -05:00
dialogue.lisp Fix dialogue linebreaks; surround text with spaces 2023-07-02 12:00:35 -05:00
display.lisp Fix dialogue linebreaks; surround text with spaces 2023-07-02 12:00:35 -05:00
engine.lisp Split package definitions into packages.lisp 2023-06-28 10:15:23 -05:00
figlet.lisp _Actually_ finish FIGlet support 2023-06-30 12:50:43 -05:00
flora-search-aurora.asd Add casino prologue! 2023-07-03 22:12:42 -05:00
flora-search-aurora.lisp Progress on outdoors map — add Kvincent 2023-07-06 16:27:55 -05:00
input.lisp Support for numpad-movement, diagonal movement 2023-07-02 09:57:32 -05:00
intermission.lisp Begin “intermission” screens 2023-06-30 13:48:17 -05:00
inventory.lisp Print a desc. of the selected item in inventory 2023-07-03 11:55:09 -05:00
menu.lisp Print a desc. of the selected item in inventory 2023-07-03 11:55:09 -05:00
overworld.lisp Support for numpad-movement, diagonal movement 2023-07-02 09:57:32 -05:00
overworld.tiled.lisp Create and ASDF system for the game 2023-06-26 21:49:34 -05:00
overworld.util.lisp Split package definitions into packages.lisp 2023-06-28 10:15:23 -05:00
packages.lisp Print a desc. of the selected item in inventory 2023-07-03 11:55:09 -05:00
util.lisp Fix dialogue linebreaks; surround text with spaces 2023-07-02 12:00:35 -05:00

Flora Search Aurora

Installation

You can run the game through a pre-built binary, available under Releases of this repository.

If youd rather (or have to) run the game from source, you can set up the game like so:

  1. Install a Common Lisp implementation. Id recommend Steel Bank Common Lisp, which is robust and available on many *nixes under the package-name sbcl.
  2. Set up Quicklisp, which is a “package-manager” for Common Lisp libraries.
  3. Clone this repo into your Quicklisp projects path.
  4. Run or build the game with make run or make build.

To do so, you can run the following commands, replacing guix with your package-manager of choice:

$ guix install sbcl
$ wget https://beta.quicklisp.org/quicklisp.lisp
$ sbcl --load quicklisp.lisp \
	--eval '(quicklisp-quickstart:install :path "~/.local/share/quicklisp/)' \
	--eval '(ql:add-to-init-file)'
$ rm quicklisp.lisp
$ cd ~/.local/share/quicklisp/local-projects/
$ git clone https://notabug.org/jadedctrl/flora-search-aurora
$ cd flora-search-aurora/
$ make build
$ ./flora-search-aurora

For development, so that you can connect to the games REPL with (i.e.) SLIME, you might want to run the game like so:

$ USE_SWANK=yes SWANK=… make run

… where SWANK is the path to SLIMEs swank-loader.lisp file, probably at ~/.config/emacs/elpa/slime-*/swank-loader.lisp.

The game has been tested with both Embeddable Common Lisp and SBCL. It runs perfectly on both, but building a binary isnt working on ECL at the moment.