Skip to content

Commit 5df9835

Browse files
committed
Adding additional clarifying comments on linkedlist.zig, fixed a minor effect key bug and added some additional logs to be like the original
1 parent e646018 commit 5df9835

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

zsrc/linkedlist.zig

+2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@ const tps = @import("types.zig");
3333

3434
// Phase 1: Just start off by storing a pointer to a nullable opaque type.
3535
// Original C-style ADT linked list has been deprecated in favor of this!
36+
// This is complete!
3637
pub const GenericLL = std.DoublyLinkedList(?*anyopaque);
3738
pub const GenericNode = GenericLL.Node;
3839

3940
// Phase 2: Break these out into type-safe individual linked lists. (maybe)
41+
// Not started.
4042
// Need one for: *Animation
4143
// Need one for: *Bullet
4244
// Need one for: *Sprite

zsrc/res.zig

+4-1
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,8 @@ pub fn initCommonEffects() void {
694694
effects[0].keys[2] = death;
695695
death.r = 0;
696696
death.a = 0;
697-
effects[0].keys[0] = death;
697+
effects[0].keys[3] = death;
698+
std.log.debug("Effect #0: Death (30frames) loaded", .{});
698699

699700
tps.initEffect(&effects[1], 30, 3, c.SDL_BLENDMODE_ADD);
700701
var blink: c.SDL_Color = .{ .r = 0, .g = 0, .b = 0, .a = 255 };
@@ -707,12 +708,14 @@ pub fn initCommonEffects() void {
707708
blink.g = 0;
708709
blink.b = 0;
709710
effects[1].keys[2] = blink;
711+
std.log.debug("Effect #1: Blink (white) (30frames) loaded", .{});
710712

711713
tps.initEffect(&effects[2], 30, 2, c.SDL_BLENDMODE_BLEND);
712714
var vanish: c.SDL_Color = .{ .r = 255, .g = 255, .b = 255, .a = 255 };
713715
effects[2].keys[0] = vanish;
714716
vanish.a = 0;
715717
effects[2].keys[1] = vanish;
718+
std.log.debug("Effect #2: Vanish (30frames) loaded", .{});
716719
}
717720

718721
fn initCommonSprite(sprite: *spr.Sprite, weapon: *wp.Weapon, res_id: c_int, hp: c_int) void {

0 commit comments

Comments
 (0)