@@ -394,7 +394,11 @@ const platformGenerator = (config = {}, random) => {
394
394
}
395
395
396
396
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...');
398
402
return false ;
399
403
}
400
404
@@ -586,20 +590,25 @@ function initialize(width, height) {
586
590
}
587
591
588
592
export default function ALGORITHM_PLATFORM_ZONES ( tileMap , options ) {
589
- tileMap . fill ( 1 ) ; // Fill with walls
593
+ tileMap . fill ( 0 ) ; // Fill with walls
590
594
const maxDimension = Math . max ( tileMap . width , tileMap . height ) ;
595
+ if ( maxDimension <= 5 ) {
596
+ return ;
597
+ }
591
598
let fractional = Math . sqrt ( maxDimension ) ;
592
599
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 ) ;
595
604
const numRoomsWide = Math . floor ( tileMap . width / roomSizeHeight ) ;
596
605
const numRoomsHigh = Math . floor ( tileMap . height / roomSizeWidth ) ;
597
606
const maxCount = Math . floor ( numRoomsWide * numRoomsHigh * 0.8 ) ;
598
607
const minCount = Math . floor ( maxCount / 4 ) ;
599
608
const generator = new PlatformZones ( {
600
609
roomWidth : roomSizeWidth ,
601
610
roomHeight : roomSizeHeight ,
602
- // maxFails: 200 ,
611
+ maxFails : 8000 ,
603
612
width : numRoomsWide , // Max number of zones wide
604
613
height : numRoomsWide , // Max number of zones tall
605
614
gridHeight : tileMap . height ,
@@ -608,21 +617,14 @@ export default function ALGORITHM_PLATFORM_ZONES(tileMap, options) {
608
617
maxZonesPerRoom : 3 , // Maximum number of zones per room
609
618
minRoomsPerMap : minCount , // Minimum number of rooms per map
610
619
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
613
622
roomDiffOdds : 1 / 2 // Odds of inserting a new door on opportunity
614
-
615
623
} ) ;
616
-
617
624
const built = generator . build ( ( ) => {
618
625
return tileMap . random ( ) ;
619
626
} ) ;
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 ) ) , [ ] ) ;
626
628
built . world = null ;
627
629
tileMap . world = built ;
628
630
for ( let lcv = 0 ; lcv < tileMap . data . length ; lcv ++ ) {
0 commit comments