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
laurynasl (author)
Mon Dec 15 10:55:47 -0800 2008
commit  3fa432309dc07d4b5e1a5d826dfff20ac25e43f1
tree    7ee05225f09ebebf50dd92d5c0f388f14ee79108
parent  cc0dfa23c018567517a16205001846149573b854
name age message
file .autotest Sat Dec 13 01:39:23 -0800 2008 Completed #192 generate monsters depending on m... [laurynasl]
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 Sat Dec 13 01:39:23 -0800 2008 Completed #192 generate monsters depending on m... [laurynasl]
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/ Mon Dec 15 10:55:47 -0800 2008 Fixed #299 monster moves to the same square as ... [laurynasl]
file boot.rb Sun Dec 14 06:06:20 -0800 2008 Almost completed #294 'walk' command walk comma... [laurynasl]
directory data/ Sun Dec 14 15:48:32 -0800 2008 Completed #297 generate ammunition in stacks [laurynasl]
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/ Mon Nov 03 15:14:56 -0800 2008 Continuing #192 generate monsters depending on ... [laurynasl]
file launch.rb Sun Nov 02 14:41:40 -0800 2008 restored normal 'puts' behavior [laurynasl]
directory lib/ Sun Dec 14 06:06:20 -0800 2008 Almost completed #294 'walk' command walk comma... [laurynasl]
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/ Mon Dec 15 10:55:47 -0800 2008 Fixed #299 monster moves to the same square as ... [laurynasl]
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.