Skip to content

Commit bf6943f

Browse files
committed
Refactor: migrated Effect functions to be method-based
1 parent 4572241 commit bf6943f

File tree

5 files changed

+58
-52
lines changed

5 files changed

+58
-52
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This is a near exact **Zig port** of the [original DungeonRush `C-based`](https:
5151
* Migrate to a Zig-based SDL wrapper, for a nicer SDL experience.
5252
* Ensure all errors are accounted for, utilize `try`
5353
* Use build.zig.zon
54-
* Setup Github to build the project regularly
54+
* Setup Github to build the project regularly
5555
3. Phase 3: Code Clean-up/Refactor
5656
* Remove duplicate code
5757
* Make code even more idiomatic for Zig

zsrc/game.zig

+6-3
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,8 @@ fn freezeSnake(snake: *pl.Snake, duration: c_int) void {
799799
var effect: ?*tps.Effect = null;
800800
if (snake.buffs[tps.BUFF_DEFENCE] > 0) {
801801
effect = gAllocator.create(tps.Effect) catch unreachable;
802-
tps.copyEffect(&res.effects[res.EFFECT_VANISH30], effect.?);
802+
res.effects[res.EFFECT_VANISH30].copyInto(effect.?);
803+
//tps.copyEffect(&res.effects[res.EFFECT_VANISH30], effect.?);
803804
dur = 30;
804805
}
805806

@@ -849,7 +850,8 @@ fn slowDownSnake(snake: *pl.Snake, duration: c_int) void {
849850
var effect: ?*tps.Effect = null;
850851
if (snake.buffs[tps.BUFF_DEFENCE] > 0) {
851852
effect = gAllocator.create(tps.Effect) catch unreachable;
852-
tps.copyEffect(&res.effects[res.EFFECT_VANISH30], effect.?);
853+
res.effects[res.EFFECT_VANISH30].copyInto(effect.?);
854+
//tps.copyEffect(&res.effects[res.EFFECT_VANISH30], effect.?);
853855
dur = 30;
854856
}
855857

@@ -896,7 +898,8 @@ fn shieldSprite(sprite: *spr.Sprite, duration: c_int) void {
896898
// Now it pulsates with transparency.
897899
const effect = gAllocator.create(tps.Effect) catch unreachable;
898900
defer effect.deinit();
899-
tps.copyEffect(&res.effects[res.EFFECT_BLINK], effect);
901+
res.effects[res.EFFECT_BLINK].copyInto(effect);
902+
//tps.copyEffect(&res.effects[res.EFFECT_BLINK], effect);
900903

901904
const ani = ren.createAndPushAnimation(
902905
&ren.animationsList[ren.RENDER_LIST_EFFECT_ID],

zsrc/render.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ pub fn setEffect(texture: *tps.Texture, ef: ?*tps.Effect) void {
316316
progress /= interval;
317317

318318
const prev: c.SDL_Color = effect.keys[@intCast(stage)];
319-
const nxt: c.SDL_Color = effect.keys[@intCast(@min(stage + 1, effect.length - 1))];
319+
const nxt: c.SDL_Color = effect.keys[@intCast(@min(@as(usize, @intCast(stage)) + 1, effect.length - 1))];
320320

321321
var mixed: c.SDL_Color = undefined;
322322
mixed.r = @intFromFloat(@as(f64, @floatFromInt(prev.r)) * (1.0 - progress) + @as(f64, @floatFromInt(nxt.r)) * progress);

zsrc/res.zig

+18-12
Original file line numberDiff line numberDiff line change
@@ -730,38 +730,44 @@ pub fn cleanup() void {
730730
}
731731

732732
pub fn initCommonEffects() void {
733-
tps.initEffect(&effects[0], 30, 4, c.SDL_BLENDMODE_BLEND);
733+
//tps.initEffect(&effects[0], 30, 4, c.SDL_BLENDMODE_BLEND);
734+
const deathEffect = &effects[0];
735+
deathEffect.init(30, 4, c.SDL_BLENDMODE_BLEND);
734736
var death: c.SDL_Color = .{ .r = 255, .g = 255, .b = 255, .a = 255 };
735-
effects[0].keys[0] = death;
737+
deathEffect.keys[0] = death;
736738
death.g = 0;
737739
death.b = 0;
738740
death.r = 168;
739-
effects[0].keys[1] = death;
741+
deathEffect.keys[1] = death;
740742
death.r = 80;
741-
effects[0].keys[2] = death;
743+
deathEffect.keys[2] = death;
742744
death.r = 0;
743745
death.a = 0;
744-
effects[0].keys[3] = death;
746+
deathEffect.keys[3] = death;
745747
std.log.debug("Effect #0: Death (30frames) loaded", .{});
746748

747-
tps.initEffect(&effects[1], 30, 3, c.SDL_BLENDMODE_ADD);
749+
//tps.initEffect(&effects[1], 30, 3, c.SDL_BLENDMODE_ADD);
750+
const blinkEffect = &effects[1];
751+
blinkEffect.init(30, 3, c.SDL_BLENDMODE_ADD);
748752
var blink: c.SDL_Color = .{ .r = 0, .g = 0, .b = 0, .a = 255 };
749-
effects[1].keys[0] = blink;
753+
blinkEffect.keys[0] = blink;
750754
blink.r = 200;
751755
blink.g = 200;
752756
blink.b = 200;
753-
effects[1].keys[1] = blink;
757+
blinkEffect.keys[1] = blink;
754758
blink.r = 0;
755759
blink.g = 0;
756760
blink.b = 0;
757-
effects[1].keys[2] = blink;
761+
blinkEffect.keys[2] = blink;
758762
std.log.debug("Effect #1: Blink (white) (30frames) loaded", .{});
759763

760-
tps.initEffect(&effects[2], 30, 2, c.SDL_BLENDMODE_BLEND);
764+
//tps.initEffect(&effects[2], 30, 2, c.SDL_BLENDMODE_BLEND);
765+
const vanishEffect = &effects[2];
766+
vanishEffect.init(30, 2, c.SDL_BLENDMODE_BLEND);
761767
var vanish: c.SDL_Color = .{ .r = 255, .g = 255, .b = 255, .a = 255 };
762-
effects[2].keys[0] = vanish;
768+
vanishEffect.keys[0] = vanish;
763769
vanish.a = 0;
764-
effects[2].keys[1] = vanish;
770+
vanishEffect.keys[1] = vanish;
765771
std.log.debug("Effect #2: Vanish (30frames) loaded", .{});
766772
}
767773

zsrc/types.zig

+32-35
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,38 @@ pub const Animation = struct {
138138
pub const Effect = struct {
139139
duration: c_int,
140140
currentFrame: c_int,
141-
length: c_int,
142-
//keys: [*]c.SDL_Color,
141+
length: usize,
143142
keys: []c.SDL_Color,
144143
mode: c.SDL_BlendMode,
145144

146-
pub fn deinit(self: *Effect) void {
147-
// TODO: migrate the destroyEffect code INTO this method.
148-
// delete all uses of destroyEffect in favor of effect.deinit()
149-
destroyEffect(self);
145+
pub fn init(self: *Effect, duration: c_int, length: usize, mode: c.SDL_BlendMode) void {
146+
self.keys = gAllocator.alloc(c.SDL_Color, length) catch unreachable;
147+
self.duration = duration;
148+
self.length = length;
149+
self.currentFrame = 0;
150+
self.mode = mode;
151+
}
152+
153+
pub fn deinit(self: ?*Effect) void {
154+
if (self) |ef| {
155+
gAllocator.free(ef.keys);
156+
gAllocator.destroy(ef);
157+
}
158+
}
159+
160+
/// Ensures an exact memberwise replica copy is made of the *Effect
161+
/// while ensuring the effect.keys are deep copied. This function
162+
/// allows the caller to choose how the dest *Effect is allocated (stack or heap).
163+
pub fn copyInto(self: *const Effect, dest: *Effect) void {
164+
// rc: changed from @memcpy to a memberwise copy.
165+
dest.* = self.*;
166+
167+
// With a deep alloc-copy on the keys.
168+
const len: usize = @intCast(self.length);
169+
dest.*.keys = gAllocator.alloc(c.SDL_Color, len) catch unreachable;
170+
for (0..len) |idx| {
171+
dest.keys[idx] = self.keys[idx];
172+
}
150173
}
151174
};
152175

@@ -237,7 +260,8 @@ pub fn initAnimation(
237260
// will deep copy effect
238261
if (effect) |ef| {
239262
self.effect = gAllocator.create(Effect) catch unreachable;
240-
copyEffect(ef, self.effect.?);
263+
//copyEffect(ef, self.effect.?);
264+
ef.copyInto(self.effect.?);
241265
} else {
242266
self.effect = null;
243267
}
@@ -286,7 +310,7 @@ pub fn copyAnimation(src: *const Animation, dest: *Animation) void {
286310
dest.* = src.*;
287311
if (src.effect) |eff| {
288312
dest.effect = gAllocator.create(Effect) catch unreachable;
289-
copyEffect(eff, dest.effect.?);
313+
eff.copyInto(dest.effect.?);
290314
}
291315
}
292316

@@ -338,33 +362,6 @@ pub fn destroyText(self: *Text) void {
338362
gAllocator.destroy(self);
339363
}
340364

341-
pub fn initEffect(self: *Effect, duration: c_int, length: c_int, mode: c.SDL_BlendMode) void {
342-
self.keys = gAllocator.alloc(c.SDL_Color, @as(usize, @intCast(length))) catch unreachable;
343-
self.duration = duration;
344-
self.length = length;
345-
self.currentFrame = 0;
346-
self.mode = mode;
347-
}
348-
349-
// deep copy
350-
pub fn copyEffect(src: *const Effect, dest: *Effect) void {
351-
// rc: change from memcopy to just regular ass copy.
352-
dest.* = src.*;
353-
354-
const len: usize = @intCast(src.length);
355-
dest.*.keys = gAllocator.alloc(c.SDL_Color, len) catch unreachable;
356-
for (0..len) |idx| {
357-
dest.keys[idx] = src.keys[idx];
358-
}
359-
}
360-
361-
pub fn destroyEffect(self: ?*Effect) void {
362-
if (self) |ef| {
363-
gAllocator.free(ef.keys);
364-
gAllocator.destroy(ef);
365-
}
366-
}
367-
368365
pub fn initLinkNode(self: *ll.GenericNode) void {
369366
self.next = null;
370367
self.prev = null;

0 commit comments

Comments
 (0)