Updated README and run script

This commit is contained in:
Dan Ballard 2011-09-06 14:05:11 -07:00
parent 9194b43b13
commit a66a2fc879
2 changed files with 19 additions and 1 deletions

View File

@ -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

4
run.sh Executable file
View File

@ -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)"