diff --git a/README.txt b/README.txt index f536112..cd0948f 100644 --- a/README.txt +++ b/README.txt @@ -1 +1,15 @@ -This is the stub README.txt for the "flight-sim" project. +flight-sim is a simple space flight simulator written in Lisp (tested only in SBCL) with cl-opengl and sdl. +Right now it's mostly still in tech demo stage + +So far the controls are simple. + +A - Forward acceleration + +Requires: +ASDF +cl-opengl +cl-glu +lispbuilder-sdl + +To try: +$ sh run.sh diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..35527f0 --- /dev/null +++ b/run.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +sbcl --eval "(progn (format t \"LOADING FLIGHT-SIM AND DEPENDENCIES...~%\") (asdf:operate 'asdf:load-op 'flight-sim))" --eval "(progn (format t \"RUNNING FLIGHT-SIM:MAIN_LOOP...~%\") (flight-sim:main-loop))" --eval "(quit)" +