public
Description: Currently just a growing skeleton for roguelike game being written in ruby (NCurses interface) and tested with RSpec
Homepage:
Clone URL: git://github.com/laurynasl/rubyrogue.git
name age message
file .autotest Loading commit data...
file .gitignore Fri Jun 20 09:07:55 -0700 2008 save game and exit using 'S' [laurynasl]
file .irbrc Sun Jun 01 10:46:51 -0700 2008 irbrc [laurynasl]
file .specwatch
file LICENSE Thu Jul 24 05:14:27 -0700 2008 added GPLv2 license to all .rb files [laurynasl]
file README Thu Jul 24 08:55:54 -0700 2008 added compiling section to README, added licens... [laurynasl]
file Rakefile Thu Jul 24 08:27:51 -0700 2008 completed #184 create makefile or other easy to... [laurynasl]
directory app/
file boot.rb
directory data/
directory examples/ Fri Jul 25 13:04:25 -0700 2008 removed license notices from files at examples ... [laurynasl]
file files Thu Jul 24 05:14:27 -0700 2008 added GPLv2 license to all .rb files [laurynasl]
directory games/
file launch.rb
directory lib/
file license_template Thu Jul 24 05:14:27 -0700 2008 added GPLv2 license to all .rb files [laurynasl]
directory log/ Sat May 17 11:41:29 -0700 2008 added log (for 'puts' method) and passed test [Laurynas Liutkus]
file prepend_license.rb Thu Jul 24 05:14:27 -0700 2008 added GPLv2 license to all .rb files [laurynasl]
file run Thu Jul 24 08:27:51 -0700 2008 completed #184 create makefile or other easy to... [laurynasl]
directory savegames/ Thu Jul 24 08:31:40 -0700 2008 it is now possible to save games (savagames dir... [laurynasl]
directory spec/
README
======== Compiling ========

Yes, there is one part that needs to be compiled. Just run:

rake build

======== Starting ==========

./run

or equivalent:

./launch games/test/game.yaml

=========== Map ============

@ - you
# - wall
. - explored empty space
letter - monster
( - weapon
[ - armor
/ - ammunition
) - launcher (bow, crossbow, pistol etc.)
> - stairs down
< - stairs up

==== Keys and Commands =====

arrows (left, right, top, down) Go to corresponding direction (hit monster if it is in path)

  , pick up items
  i show inventory
  d drop item
  e manage equipped items
  > go downstairs
  < go upstairs
  S save and exit game
  f start shooting (as of 2008 07 24 works just partially; may crash)

====== Loading game =========

currently the only way is:

./launch savegames/Kudlius.yaml

======== Crashes ============

Yes, game is crashing. That is because I commented out all rescue's, because I want to find all exceptions. It is far 
from alpha and non-playable.

======== Tests =============

For testing I use RSpec.