Skip to content

Commit 279168b

Browse files
committed
Various changes, make purple fireball scaled, adding various comments and ideas to the README.md
1 parent 883cb3e commit 279168b

File tree

5 files changed

+35
-17
lines changed

5 files changed

+35
-17
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,5 @@ dumb shit like that.
103103
* This would make the game a little more interesting because you can pick up cerrtain heroes
104104
as part of the strategy to help you cope with the certain level.
105105
* Introduce themed levels, like a frost level where most or all baddies are cold-based.
106-
* Introduce upgrades along the way, pick up treason, loot upgrade your heroes.
106+
* Introduce upgrades along the way, pick up treason, loot upgrade your heroes.
107+
* Gamepad support, it might be fun to not always use the damn keyboard.

res/drawable/purple_fire_ball

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
purple_exp 0 0 16 32 15
1+
purple_exp 0 0 16 16 30

zsrc/map.zig

+15-10
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ pub fn clearMapGenerator() void {
5454
hasMap = std.mem.zeroes([MAP_SIZE][MAP_SIZE]bool);
5555
}
5656

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.
5760
fn count(x: c_int, y: c_int) c_int {
5861
var ret: c_int = 0;
5962

@@ -280,24 +283,24 @@ fn initMap() void {
280283
}
281284

282285
fn decorateMap() void {
283-
var i: c_int = 0;
284286
const lim: c_int = @intFromFloat(@as(f64, res.n) * @as(f64, res.m) * MAP_HOW_OLD);
285287
var x: usize = 0;
286288
var y: usize = 0;
287289

290+
var i: c_int = 0;
288291
while (i < lim) : (i += 1) { // Original out for loop.
289292
while (true) {
290293
x = @intCast(hlp.randInt(0, res.n - 2));
291294
y = @intCast(hlp.randInt(0, res.m - 2));
292295

293296
// 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]))) +
295298
@as(c_int, @intFromBool((hasMap[x + 1][y] and !isTrap[x + 1][y]))) +
296299
@as(c_int, @intFromBool((hasMap[x][y + 1] and !isTrap[x][y + 1]))) +
297300
@as(c_int, @intFromBool((hasMap[x + 1][y + 1] and !isTrap[x + 1][y + 1]))) < 4;
298301

299302
// Since we ported a do-while loop, we negate the condition.
300-
if (!condition) break;
303+
if (!cond) break;
301304
}
302305

303306
if (hlp.randDouble() < MAP_HOW_OLD) {
@@ -333,6 +336,9 @@ pub fn initBlankMap(w: c_int, h: c_int) void {
333336
}
334337
}
335338

339+
// r.c. this was added by me, to give the title/menu more visual interest.
340+
decorateMap();
341+
336342
std.log.info("initBlankMap finished...", .{});
337343
}
338344

@@ -354,6 +360,7 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
354360
}
355361
}
356362

363+
// NOTE: This code places spiked traps.
357364
var t: c_int = @intFromFloat(@as(f64, res.n) * @as(f64, res.m) * trapRate);
358365
while (t > 0) : (t -= 1) {
359366
var x: c_int = undefined;
@@ -391,6 +398,7 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
391398
}
392399
}
393400

401+
// NOTE: This finds a single x,y map location for an exit block.
394402
// Converted from do-while nonsense to while w/negated if condition.
395403
while (true) {
396404
exitX = hlp.randInt(0, res.n - 1);
@@ -404,6 +412,9 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
404412
if (!cond) break;
405413
}
406414

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.
407418
initBlock(
408419
&gm.map[@intCast(exitX)][@intCast(exitY)],
409420
.BLOCK_EXIT,
@@ -413,9 +424,7 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
413424
false,
414425
);
415426

416-
// #ifdef DBG
417-
// printf("exit: %d %d\n", exitX, exitY);
418-
// #endif
427+
std.log.debug("exit: {d},{d}", .{ exitX, exitY });
419428

420429
initMap();
421430
decorateMap();
@@ -424,10 +433,6 @@ pub fn initRandomMap(floorPercent: f64, smoothTimes: c_int, trapRate: f64) void
424433
}
425434

426435
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-
431436
// Aliases to cutdown on long names.
432437
const cpa = ren.createAndPushAnimation;
433438

zsrc/render.zig

+16-4
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,9 @@ pub fn renderCenteredText(text: *const tps.Text, x: c_int, y: c_int, scale: f64)
249249
return .{ .x = x - @divTrunc(width, 2), .y = y - @divTrunc(height, 1) };
250250
}
251251

252-
fn renderCenteredTextBackground(text: *tps.Text, x: c_int, y: c_int, scale: f64) void {
252+
/// Renders a background centered behind some text object. The intention is to render the background
253+
/// then, followup by rendering the text itself using: renderCenteredText(...).
254+
fn renderCenteredBGForText(text: *const tps.Text, clr: c.SDL_Color, x: c_int, y: c_int, scale: f64) void {
253255
const width: f64 = @as(f64, @floatFromInt(text.width)) * scale + 0.5;
254256
const height: f64 = @as(f64, @floatFromInt(text.height)) * scale + 0.5;
255257
const dst: c.SDL_Rect = .{
@@ -259,18 +261,26 @@ fn renderCenteredTextBackground(text: *tps.Text, x: c_int, y: c_int, scale: f64)
259261
.h = @intFromFloat(height),
260262
};
261263
_ = c.SDL_SetRenderDrawBlendMode(renderer, c.SDL_BLENDMODE_BLEND);
262-
_ = c.SDL_SetRenderDrawColor(renderer, 255, 0, 0, 200);
264+
_ = c.SDL_SetRenderDrawColor(renderer, clr.r, clr.g, clr.b, clr.a);
263265
_ = c.SDL_RenderFillRect(renderer, &dst);
264266
}
265267

266268
fn renderId() void {
267269
const powerful = ai.getPowerfulPlayer();
270+
const clr: c.SDL_Color = .{
271+
.r = 255,
272+
.g = 0,
273+
.b = 0,
274+
.a = 200,
275+
};
276+
268277
for (0..@intCast(gm.playersCount)) |i| {
269278
const snake = gm.spriteSnake[i].?;
270279
if (snake.sprites.first != null) {
271280
const snakeHead: *spr.Sprite = @alignCast(@ptrCast(snake.sprites.first.?.data.?));
281+
272282
if (i == powerful) {
273-
renderCenteredTextBackground(&res.texts[4 + i], snakeHead.x, snakeHead.y, 0.5);
283+
renderCenteredBGForText(&res.texts[4 + i], clr, snakeHead.x, snakeHead.y, 0.5);
274284
}
275285
_ = renderCenteredText(&res.texts[4 + i], snakeHead.x, snakeHead.y, 0.5);
276286
}
@@ -404,6 +414,7 @@ pub fn renderAnimation(a: ?*tps.Animation) void {
404414
const ani = a.?;
405415

406416
updateAnimationFromBind(ani);
417+
407418
var width = ani.origin.width;
408419
var height = ani.origin.height;
409420
var poi: c.SDL_Point = .{
@@ -456,6 +467,7 @@ pub fn renderAnimation(a: ?*tps.Animation) void {
456467
&poi,
457468
ani.flip,
458469
);
470+
459471
if (ani.effect) |_| {
460472
unsetEffect(ani.origin);
461473
}
@@ -621,7 +633,7 @@ fn renderInfo() void {
621633
}
622634

623635
if (gm.playersCount == 1) {
624-
var buf: [1 << 8]u8 = undefined;
636+
var buf: [64]u8 = undefined;
625637

626638
// TODO: try needs to be here.
627639
const strResult = std.fmt.bufPrintZ(

zsrc/weapons.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ pub fn initWeapons() !void {
362362
curWep.bulletSpeed = 7;
363363
curWep.deathAni.?.angle = -1;
364364
curWep.deathAni.?.scaled = false;
365-
curWep.flyAni.?.scaled = false;
365+
curWep.flyAni.?.scaled = true;
366366
curWep.deathAni.?.at = .AT_CENTER;
367367
curWep.birthAudio = res.AUDIO_ICE_SHOOT;
368368
curWep.deathAudio = res.AUDIO_ARROW_HIT;

0 commit comments

Comments
 (0)