- Notifications
You must be signed in to change notification settings - Fork0
BSP based procedural dungeon generation package.
License
obsfx/dungrain
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
dungrain is a procedural dungeon generation library that was built on binary space partitioning method. It takes some arguments as an object and creates 2D number array that contains types of tiles that placed based onindexMap (Wall,Path,Room,Empty) values.
You can directly usedungrain.js ordungrain.min.js file with script tag. They can be found in build folder at github repo.
<scriptsrc="./build/dungrain.min.js"></script><script>letdungeon=newdungrain({iterationCount:20,column:100,row:40,indexMap:{Wall:3,Path:2,Room:1,Empty:0}});</script>
or you can install with npm.
npm install dungrainconstdungrain=require('dungrain');letdungeon=newdungrain({iterationCount:20,column:100,row:40,indexMap:{Wall:3,Path:2,Room:1,Empty:0}});
All arguments have to be passed into class as an object.
{ iterationCount: number, column: number, row: number, indexMap: { Wall: number, Path: number, Room: number, Empty: number }seed: string (optional) (default: it will be generated randomly),minimumWHRatio: number (optional) (default: 0.5),maximumWHRatio: number (optional) (default: 2.0),minimumChunkWidth: number (optional) (default: 8),minimumChunkHeight: number (optional) (default: 8)}getMap()// (returns generated dungeon that formed into 2D number array)getAllFloors()// (returns all available floors included rooms and paths)getRooms()// (returns all room objects that contains their topleftcorner point and all available floors array)getPaths()// (returns all path objects that contains their start point, all available floors array data, direction data (0: VERTICAL, 1: HORIZONTAL) and width value (represents the length of the path))getSeed()// (returns the seed of the generated dungeon)
<canvasclass="canvas"width="1000"height="500"></canvas><scriptsrc="./build/dungrain.min.js"></script><script>letcanvas=document.querySelector('.canvas');letctx=canvas.getContext('2d');letdungeon=newdungrain({seed:'example',iterationCount:6,column:100,row:50,indexMap:{Wall:3,Path:2,Room:1,Empty:0},minimumWHRatio:0.8,maximumWHRatio:1.6,minimumChunkWidth:2,minimumChunkHeight:2});letmap=dungeon.getMap();for(leti=0;i<map.length;i++){for(letj=0;j<map[i].length;j++){lettile=map[i][j];if(tile==dungeon.indexMap.Wall){ctx.fillStyle='black';}elseif(tile==dungeon.indexMap.Path){ctx.fillStyle='blue';}elseif(tile==dungeon.indexMap.Room){ctx.fillStyle='green';}else{ctx.fillStyle='white';}ctx.fillRect(j*10,i*10,10,10);}}</script>
i made a codepen visualization demo with early version of this. You can play with that from here:https://codepen.io/omercanbalandi/pen/JjoeKrQ
About
BSP based procedural dungeon generation package.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.


