Difference between revisions of "Urban Warfare: The Escape"
(do it) |
m (new date standard) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
|theme = [[stealth]], [[:Category:Coffeebreak roguelikes|coffee break]] | |theme = [[stealth]], [[:Category:Coffeebreak roguelikes|coffee break]] | ||
|influences = [http://en.wikipedia.org/wiki/Commandos_%28computer_game_series%29 Commandos] | |influences = [http://en.wikipedia.org/wiki/Commandos_%28computer_game_series%29 Commandos] | ||
|released = | |released = 2007 Mar 19 | ||
|updated = | |updated = 2007 Apr 20 | ||
|licensing = [[BSD]] | |licensing = [[BSD]] | ||
|language = [[Common Lisp]] | |language = [[Common Lisp]] | ||
Line 13: | Line 13: | ||
}} | }} | ||
'''''Urban Warfare: The Escape''''' is a [[seven day roguelike]], created in March, 2007. | '''''Urban Warfare: The Escape''''' is a [[seven day roguelike]], created in March, 2007. The current version is 0.8. | ||
===Features=== | ===Features=== | ||
Line 27: | Line 27: | ||
#ASDF: save this file somewhere: http://cclan.cvs.sourceforge.net/*checkout*/cclan/asdf/asdf.lisp | #ASDF: save this file somewhere: http://cclan.cvs.sourceforge.net/*checkout*/cclan/asdf/asdf.lisp | ||
#CFFI: http://common-lisp.net/project/cffi/ | #CFFI: http://common-lisp.net/project/cffi/ | ||
#MD5: http://www.cliki.net/CL-MD5 | |||
#TRIVIAL-GRAY-STREAMS: http://www.cliki.net/trivial-gray-streams | #TRIVIAL-GRAY-STREAMS: http://www.cliki.net/trivial-gray-streams | ||
Edit ~/.clisprc to include these commands: | |||
(load "/path/to/asdf.lisp") | |||
(push "~/lisp/" asdf:*central-registry*) | |||
Go to ~/lisp and make a symbolic link to every lib, for example | |||
ln -s ~/lisp/cffi/cffi.asd cffi.asd | |||
for CFFI. Alternatively install [http://www.cliki.net/ASDF-Install ASDF-INSTALL], and use it to install all libraries. It's not a rocket science. Also, add symbolic link to uwar.asd in the same way. | |||
Then, start clisp | Then, start clisp | ||
Line 35: | Line 47: | ||
And enter these commands: | And enter these commands: | ||
(asdf:operate 'asdf:load-op :uwar) | (asdf:operate 'asdf:load-op :uwar) | ||
(ext:cd "/path/to/uwar/") | |||
( | |||
(r3::make-exec) | (r3::make-exec) | ||
Latest revision as of 16:19, 24 July 2008
Urban Warfare: The Escape | |
---|---|
7DRL | |
Developer | Timofei Shatrov |
Theme | stealth, coffee break |
Influences | Commandos |
Released | 2007 Mar 19 |
Updated | 2007 Apr 20 |
Licensing | BSD |
P. Language | Common Lisp |
Platforms | Windows, Linux |
Interface | ASCII |
Game Length | short |
Official site of Urban Warfare: The Escape |
Urban Warfare: The Escape is a seven day roguelike, created in March, 2007. The current version is 0.8.
Features
The game features innovative... well a lot of innovative stuff, including a huge randomly generated city, possibility to move in any direction and stealth-oriented gameplay.
How to compile
If you want to compile this game on Linux (and perhaps, save others the trouble), do the following.
You need:
- CLISP (http://clisp.cons.org) - probably you can get it with apt-get or something like that. You need CLISP 0.38 or later.
- ASDF: save this file somewhere: http://cclan.cvs.sourceforge.net/*checkout*/cclan/asdf/asdf.lisp
- CFFI: http://common-lisp.net/project/cffi/
- MD5: http://www.cliki.net/CL-MD5
- TRIVIAL-GRAY-STREAMS: http://www.cliki.net/trivial-gray-streams
Edit ~/.clisprc to include these commands:
(load "/path/to/asdf.lisp") (push "~/lisp/" asdf:*central-registry*)
Go to ~/lisp and make a symbolic link to every lib, for example
ln -s ~/lisp/cffi/cffi.asd cffi.asd
for CFFI. Alternatively install ASDF-INSTALL, and use it to install all libraries. It's not a rocket science. Also, add symbolic link to uwar.asd in the same way.
Then, start clisp
>clisp
And enter these commands:
(asdf:operate 'asdf:load-op :uwar) (ext:cd "/path/to/uwar/") (r3::make-exec)
It should produce a file called "uwar.exe". Rename this file appropriately for your operating system. The directory should also contain "controls.cfg".