@@ -54,6 +54,9 @@ pub fn clearMapGenerator() void {
54
54
hasMap = std .mem .zeroes ([MAP_SIZE ][MAP_SIZE ]bool );
55
55
}
56
56
57
+ /// Iterates the 8 neighboring cells surrounding a central cell at position
58
+ /// (x,y) and returns a count of how many cells are set to true excluding
59
+ /// the cell itself.
57
60
fn count (x : c_int , y : c_int ) c_int {
58
61
var ret : c_int = 0 ;
59
62
@@ -280,24 +283,24 @@ fn initMap() void {
280
283
}
281
284
282
285
fn decorateMap () void {
283
- var i : c_int = 0 ;
284
286
const lim : c_int = @intFromFloat (@as (f64 , res .n ) * @as (f64 , res .m ) * MAP_HOW_OLD );
285
287
var x : usize = 0 ;
286
288
var y : usize = 0 ;
287
289
290
+ var i : c_int = 0 ;
288
291
while (i < lim ) : (i += 1 ) { // Original out for loop.
289
292
while (true ) {
290
293
x = @intCast (hlp .randInt (0 , res .n - 2 ));
291
294
y = @intCast (hlp .randInt (0 , res .m - 2 ));
292
295
293
296
// r.c. - need ints because how many "trues" get counted.
294
- const condition = @as (c_int , @intFromBool ((hasMap [x ][y ] and ! isTrap [x ][y ]))) +
297
+ const cond = @as (c_int , @intFromBool ((hasMap [x ][y ] and ! isTrap [x ][y ]))) +
295
298
@as (c_int , @intFromBool ((hasMap [x + 1 ][y ] and ! isTrap [x + 1 ][y ]))) +
296
299
@as (c_int , @intFromBool ((hasMap [x ][y + 1 ] and ! isTrap [x ][y + 1 ]))) +
297
300
@as (c_int , @intFromBool ((hasMap [x + 1 ][y + 1 ] and ! isTrap [x + 1 ][y + 1 ]))) < 4 ;
298
301
299
302
// Since we ported a do-while loop, we negate the condition.
300
- if (! condition ) break ;
303
+ if (! cond ) break ;
301
304
}
302
305
303
306
if (hlp .randDouble () < MAP_HOW_OLD ) {
@@ -333,6 +336,9 @@ pub fn initBlankMap(w: c_int, h: c_int) void {
333
336
}
334
337
}
335
338
339
+ // r.c. this was added by me, to give the title/menu more visual interest.
340
+ decorateMap ();
341
+
336
342
std .log .info ("initBlankMap finished..." , .{});
337
343
}
338
344
@@ -354,6 +360,7 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
354
360
}
355
361
}
356
362
363
+ // NOTE: This code places spiked traps.
357
364
var t : c_int = @intFromFloat (@as (f64 , res .n ) * @as (f64 , res .m ) * trapRate );
358
365
while (t > 0 ) : (t -= 1 ) {
359
366
var x : c_int = undefined ;
@@ -391,6 +398,7 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
391
398
}
392
399
}
393
400
401
+ // NOTE: This finds a single x,y map location for an exit block.
394
402
// Converted from do-while nonsense to while w/negated if condition.
395
403
while (true ) {
396
404
exitX = hlp .randInt (0 , res .n - 1 );
@@ -404,6 +412,9 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
404
412
if (! cond ) break ;
405
413
}
406
414
415
+ // r.c. - In both the original and this port, i'm not seeing an exit block render.
416
+ // I have confirmed it's because enable is false. Setting it to true shows the block
417
+ // but does nothing as it's not used in the game.
407
418
initBlock (
408
419
& gm .map [@intCast (exitX )][@intCast (exitY )],
409
420
.BLOCK_EXIT ,
@@ -413,9 +424,7 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
413
424
false ,
414
425
);
415
426
416
- // #ifdef DBG
417
- // printf("exit: %d %d\n", exitX, exitY);
418
- // #endif
427
+ std .log .debug ("exit: {d},{d}" , .{ exitX , exitY });
419
428
420
429
initMap ();
421
430
decorateMap ();
@@ -424,10 +433,6 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
424
433
}
425
434
426
435
pub fn pushMapToRender () void {
427
- // BUG: map isn't centered.
428
- // CHECK: map is the correct dimensions.
429
- // BIG FAT TODO: I'm not sure I ported over the if/else if/else nesting properly...fuck c for having optional curly braces.
430
-
431
436
// Aliases to cutdown on long names.
432
437
const cpa = ren .createAndPushAnimation ;
433
438
0 commit comments