New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cellular-dungeon

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cellular-dungeon

Procedural dungeon generator using a cellular automaton

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

cellular-dungeon

Generate procedural dungeons

How to use:

The example code below will generate a dungeon with default options and output a visualisation like the one from the "Examples" section:

  var Dungeon = require('./dungeon');
  var level = new Dungeon(40, 20);

  // Display the level:
  level.grid.forEach(function(g) {
    console.log(g.map(function(t) {
      return t ? '*' : ' ';
    }).join(''));
  });

You can also use the library in the browser, using browserify.

Configuration

There's a few configuration options:

NameDescriptionOptionalDefault
initialProbabilityProbability of a tile being a wall in the initial (random) placing phasey0.5 (50%)
iterationsIterations of the cellular automaton running on the mapy5
aliveThresholdFor every cell, if there's at least aliveThreshold walls around it, it becomes a wally5

Examples

Check the online version here

20x20 grid:

********************
* ****             *
* *****            *
* *****            *
*******           **
*******           **
* ****           ***
*                ***
*          **    ***
*          ***    **
*           *      *
*                  *
***                *
****               *
****               *
***                *
**        *        *
*        ***       *
*        ***       *
********************

40x20 grid:

****************************************
******     ***         *****************
*******    ********  ****  **     ******
******      *************          *****
****        *************          *****
****       ***************        ******
****      *****************     ********
***************************    *********
**************************    **********
*************************     *******  *
*****  **********  ******      *****   *
****    ********    *****      *****   *
* *     *******     *****      *****   *
*        **         ****       ****    *
*                   ***         **     *
*                   ***                *
*                  *****               *
*            ***  *******   ***     ** *
*           ***** ******************** *
****************************************

Contributing

If you find a bug, have a question, improvement, idea or other suggestion, please feel free to open an issue. Pull requests are always welcome - to submit code please do the following:

  1. Fork this repository
  2. Create a new branch (bonus points for naming it neatly, e.g. "issue-3-adding-examples")
  3. Write the code you have in mind & push to your fork
  4. Create a pull request from your fork and branch into this repository's master branch

Hurray!

License

This repository is licensed under the ISC License

Keywords

FAQs

Package last updated on 19 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc