Creating a Roguelike Game in C#

RogueSharp 1.1 Released

Cave-Like Map Creation Using Cellular Automata

alt text

RogueSharp Version 1.1

Version 1.1 of RogueSharp was just released. It now includes a new map creation strategy for creating cave-like maps based off of an article on RogueBasin with some custom modifications.

Usage

IMapCreationStrategy<Map> mapCreationStrategy =
   new CaveMapCreationStrategy<Map>( 50, 30, 45, 4, 2 );
IMap map = Map.Create( mapCreationStrategy );
Parameters

Parameters