npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rule-based-map-generator

v0.0.4

Published

Rule based map generator

Downloads

14

Readme

rule-based-map-generator

node framework for real time generation of grid/tiled maps based on a previously defined set of constraints/rules

Philosophy

This project goal is to provide an open framework to ease the generation of game worlds using predefined rules in a semi-automatic approach joining the benefits of procedural generation with manual art work creation. By other words, this framework generates structured maps in real time handling expansions when needed respecting game design rules in order to create additive game worlds.

See a video demonstration here: https://youtu.be/-yyQ-vyKdYw


Installation

$ npm install rule-based-map-generator

Features

Rules

You can design your maps using different rules. They are:

World based

  • Initial map size (mandatory)
  • Horizontal and vertical bounds
  • Map center
  • Evaluation period (not yet implemented)

Block based

  • Blacklist
  • Whitelist
  • Maximum occupation
  • Maximum occupation by percentage
  • Minimum distance between other blocks

Strategies

  • square grid
  • hexagonal grid (not yet implemented)

Usage

World creation

Below is a minimal example of how to configure and create a world.

First require rule-based-map-generator module.

var ruleBasedMapGenerator = require('rule-based-map-generator');

Here we create a strategy of generation. In these case we will choose a strategy for square grid maps.

var strategyName = 'squareGrid';
var worldSeed = 1337;
var strategy = ruleBasedMapGenerator.createStrategy(strategyName, worldSeed);

In order to create blocks, we need to create a block factory for the previously created strategy. Then we create 3 blocks without constraints for the sake of simplicity.

var blockFactory = ruleBasedMapGenerator.createBlockFactory(strategy);
var block1 = blockFactory('B1');
var block2 = blockFactory('B2');
var block3 = blockFactory('B3');

To define how blocks connect between each other in the world we need to create connectors.

var connector1 = ruleBasedMapGenerator.createConnectorInstance('C1', 'whitelist', ['B1', 'B2', 'B3']);
var connector2 = ruleBasedMapGenerator.createConnectorInstance('C1', 'blacklist', ['B2']);

Now we can attach the connector to the desired blocks sides.

block1.setSideConnector('LEFT', connector1);
block1.setSideConnector('RIGHT', connector1);
block1.setSideConnector('UP', connector2);
block1.setSideConnector('BOTTOM', connector2);

block2.setSideConnector('LEFT', connector1);
block2.setSideConnector('RIGHT', connector1);
// and so on...

Before creating the world instance we need to create the world constraints.

var initialMapSize = 4;
var bounds = { horizontal: 10, vertical: 10 };
var mapCenter = 'B2';
var worldConstraints = ruleBasedMapGenerator.createWorldConstraints(initialMapSize, bounds, mapCenter);

Now we are ready to create our world.

var world = ruleBasedMapGenerator.createWorldInstance(
    strategy,
    worldConstraints,
    [block1, block2, block3] // set of blocks
);

But wait! There is more. Instead of setting up the world using all these API methods you can take advantage of the World Parser to create a world based on a single configuration.

var worldParser = require('rule-based-map-generator').parser;
var configuration = require('./path/to/world/configuration.json');
var world = worldParser.parse(configuration);

You can see examples of world configurations here.

World generation

We can retrieve map using the following world methods:

var minX = 0, minY = 0, maxX = 4, maxY = 4;
var partialMap = world.getPartialMap(minX, minY, maxX, maxY);
var map = world.getMap();

Both result in a matrix representing the world. An example can be seen below:

| | 0 | 1 | 2 | | --- | --- | --- | --- | | 0 | { x: 0, y: 2, block: 'B2' } | { x: 1, y: 2, block: 'B1' } | { x: 2, y: 2, block: 'B3' } | | 1 | { x: 0, y: 1, block: 'B1' } | { x: 1, y: 1, block: 'B3' } | { x: 2, y: 1, block: 'B3' } | | 2 | { x: 0, y: 0, block: 'B1' } | { x: 1, y: 0, block: 'B1' } | { x: 2, y: 2, block: 'B2' } |


API

Soon.


Examples

You can see examples here.


Contribute

There is still a lot to be done from adding new rules to adding new generation strategies. If you want to contribute, don't be shy and create a pull request.