Urban Warfare: The Escape

From RogueBasin
Revision as of 20:25, 11 April 2007 by Grue (talk | contribs) (do it)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Urban Warfare: The Escape
7DRL
Developer Timofei Shatrov
Theme stealth, coffee break
Influences Commandos
Released March 19, 2007
Updated
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.

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:

  1. CLISP (http://clisp.cons.org) - probably you can get it with apt-get or something like that. You need CLISP 0.38 or later.
  2. ASDF: save this file somewhere: http://cclan.cvs.sourceforge.net/*checkout*/cclan/asdf/asdf.lisp
  3. CFFI: http://common-lisp.net/project/cffi/
  4. TRIVIAL-GRAY-STREAMS: http://www.cliki.net/trivial-gray-streams

Then, start clisp

>clisp

And enter these commands:

(load "/path/to/asdf.lisp")
(push "/path/to/trivial-gray-streams/" asdf:*central-registry*)
(push "/path/to/cffi/" asdf:*central-registry*)
(push "/path/to/uwar/src/" asdf:*central-registry*)
(asdf:operate 'asdf:load-op :uwar)

After that it would presumably compile without errors or warnings. To produce a binary enter these commands:

(setf *default-pathname-defaults* #P"/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".