Skip to content

Commit 8e461bd

Browse files
authored
Merge pull request #5 from yantra-core/handle-small-dimensions
small size handling
2 parents 7713316 + 8701e0d commit 8e461bd

File tree

2 files changed

+28
-20
lines changed

2 files changed

+28
-20
lines changed

lib/mazes/PlatformZones.js

+17-15
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,11 @@ const platformGenerator = (config = {}, random) => {
394394
}
395395

396396
if (new_door_count < NEW_DOOR_MIN_THRESHOLD) {
397-
console.log('UNMET DOOR THRESHOLD: ' + new_door_count + ' OF ' + NEW_DOOR_MIN_THRESHOLD + '. Rebuild...');
397+
failCount++;
398+
if(config.maxFails && failCount > config.maxFails) throw new Error(
399+
'Failed too many times to generate this configuration'
400+
);
401+
//console.log('UNMET DOOR THRESHOLD: ' + new_door_count + ' OF ' + //NEW_DOOR_MIN_THRESHOLD + '. Rebuild...');
398402
return false;
399403
}
400404

@@ -586,20 +590,25 @@ function initialize(width, height) {
586590
}
587591

588592
export default function ALGORITHM_PLATFORM_ZONES(tileMap, options) {
589-
tileMap.fill(1); // Fill with walls
593+
tileMap.fill(0); // Fill with walls
590594
const maxDimension = Math.max(tileMap.width, tileMap.height);
595+
if(maxDimension <= 5){
596+
return;
597+
}
591598
let fractional = Math.sqrt(maxDimension);
592599
if(fractional%2 !== 1) fractional++;
593-
const roomSizeHeight = Math.floor(tileMap.width / 10);
594-
const roomSizeWidth = Math.floor(tileMap.height / 10);
600+
const size = maxDimension < 10?Math.floor(maxDimension/2):10;
601+
const doorDiff = maxDimension < 10?1:2;
602+
const roomSizeHeight = Math.floor(tileMap.width / size);
603+
const roomSizeWidth = Math.floor(tileMap.height / size);
595604
const numRoomsWide = Math.floor(tileMap.width/roomSizeHeight);
596605
const numRoomsHigh = Math.floor(tileMap.height/roomSizeWidth);
597606
const maxCount = Math.floor(numRoomsWide*numRoomsHigh*0.8);
598607
const minCount = Math.floor(maxCount/4);
599608
const generator = new PlatformZones({
600609
roomWidth: roomSizeWidth,
601610
roomHeight: roomSizeHeight,
602-
//maxFails: 200,
611+
maxFails: 8000,
603612
width: numRoomsWide, // Max number of zones wide
604613
height: numRoomsWide, // Max number of zones tall
605614
gridHeight: tileMap.height,
@@ -608,21 +617,14 @@ export default function ALGORITHM_PLATFORM_ZONES(tileMap, options) {
608617
maxZonesPerRoom: 3, // Maximum number of zones per room
609618
minRoomsPerMap: minCount, // Minimum number of rooms per map
610619
maxRoomsPerMap: maxCount, // Maximum number of rooms per map
611-
newDoors: 2, // # doors to add to prevent tedious linear mazes
612-
roomDiff: 2, // When adding a new door, room ID distance
620+
newDoors: doorDiff, // # doors to add to prevent tedious linear mazes
621+
roomDiff: doorDiff, // When adding a new door, room ID distance
613622
roomDiffOdds: 1/2 // Odds of inserting a new door on opportunity
614-
615623
});
616-
617624
const built = generator.build(()=>{
618625
return tileMap.random();
619626
});
620-
621-
//console.log('FAILS', built.failCount);
622-
623-
//console.log(built.world.map((line)=>line.join('')).join('\n'));
624-
const flattened = built.world.reduce(((agg, line)=> agg.concat(line)), [])
625-
//console.log('FL', flattened);
627+
const flattened = built.world.reduce(((agg, line)=> agg.concat(line)), []);
626628
built.world = null;
627629
tileMap.world = built;
628630
for(let lcv=0; lcv < tileMap.data.length; lcv++){

lib/mazes/ThomasHunter.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,8 @@ class Roguelike{
477477
var enter_room_id = deadends.pop();
478478

479479
if(typeof enter_room_id === 'undefined'){
480-
throw new Error('Unable to find a dead end room for Enter!');
480+
//throw new Error('Unable to find a dead end room for Enter!');
481+
return;
481482
}
482483

483484
var enter = this.randomNonEdgeInRoom(enter_room_id);
@@ -496,7 +497,8 @@ class Roguelike{
496497
var exit_room_id = deadends.pop();
497498

498499
if (typeof exit_room_id === 'undefined') {
499-
throw new Error('Unable to find a dead end room for Exit!');
500+
//throw new Error('Unable to find a dead end room for Exit!');
501+
return
500502
}
501503

502504
var exit = this.randomNonEdgeInRoom(exit_room_id);
@@ -596,10 +598,14 @@ class Roguelike{
596598

597599
export default function ALGORITHM_THOMAS_HUNTER(tileMap, options) {
598600
tileMap.fill(1); // Fill with walls
599-
let fractional = Math.sqrt(Math.max(tileMap.width, tileMap.height));
601+
const maxDimension = Math.max(tileMap.width, tileMap.height);
602+
if(maxDimension <= 5){
603+
return;
604+
}
605+
let fractional = Math.floor(Math.sqrt(Math.max(tileMap.width, tileMap.height)));
600606
if(fractional%2 !== 1) fractional++;
601-
const roomNumber = (tileMap.width/fractional * tileMap.width/fractional)/2;
602-
const rangius = Math.ceil(fractional/2);
607+
let roomNumber = Math.floor((tileMap.width/fractional * tileMap.width/fractional)/2);
608+
let rangius = Math.ceil(fractional/2);
603609
const generator = new Roguelike({
604610
width: tileMap.width, // Max Width of the world
605611
height: tileMap.height, // Max Height of the world

0 commit comments

Comments
 (0)