Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

labyrinth

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

labyrinth

A JavaScript Maze Generator

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source
    __         __               _       __  __  
   / /  ____ _/ /_  __  _______(_)___  / /_/ /_
  / /  / __ `/ __ \/ / / / ___/ / __ \/ __/ __ \
 / /__/ /_/ / /_/ / /_/ / /  / / / / / /_/ / / /
/_____|__,_/_.___/\__, /_/  /_/_/ /_/\__/_/ /_/
                 /____/                         

AN ES6 JavaScript Maze Generation, Traversal and Rendering Library

Installation

npm install labyrinth

About

This maze generator and the accompanying algorithm was inspired by a slide show by Jamis Buck called ["Algorithm is Not a Four Letter Word"](a href="http://www.jamisbuck.org/presentations/rubyconf2011/index.html). It is a great read that goes over what mazes are, various ways of generating mazes and the importance of working with algorithms. You can learn more about what I learned while making this generator and algorithm over at this blog post: "Maze Generating Algorithms: Fun with HTML and JavaScript".

Usage

Generator

Import the generator class and instantiate it. Call generate() to populate the generator with maze data.

import { Generator } from 'labyrinth';

var generator = new Generator();

generator.generate();
Options

These are the current options that can be passed to either the generate() method or upon construction of the generator:

  • split - a number from 0 - 100, defaulting to 50. This represents the style of the maze. 0 means a lot of long wondering corridors, and 100 means a lot of short dead ends.
  • height - Defaults to 20. The number of cells tall the maze is.
  • width - Defaults to 50. The number of cells wide the maze is.
  • startX - Defaults to a random value. The starting cell's x position.
  • startY - Defaults to a random value. The starting cell's y position.

Traverser

Import the traverser and instantiate it with an instance of a generator. Call traverse() to run the traversal.

import { Generator, Traverser } from 'labyrinth';

var generator = new Generator();

generator.generate();
( new Traverser( { maze: generator } ) ).traverse();

Traverser Types

Traversers can be extended or implemented to output the maze data in various formats.

Div Traverser

Will output the the maze as HTML Div elements

import $ from 'jquery';
import { Generator, DivTraverser } from 'labyrinth';

var generator = new Generator(),
    $maze = $( 'body' ).append( 'div' );

generator.generate();

( new DivTraverser( { maze: generator, $maze: $maze } ) ).traverse();

Other Information

This package is still in development and is more of a experimental product. Please contact with any questions.

Keywords

FAQs

Package last updated on 07 Mar 2016

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