Skip to content

Commit 71460af

Browse files
committed
Migrate create, and init functions to be methods on the Sprite struct itself
1 parent d671c0e commit 71460af

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

zsrc/game.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ pub fn appendSpriteToSnake(
200200
newY += delta;
201201
}
202202
}
203-
const sprite = spr.createSprite(&res.commonSprites[@intCast(spriteId)], newX, newY);
203+
const sprite = spr.Sprite.create(&res.commonSprites[@intCast(spriteId)], newX, newY);
204204
sprite.direction = direction;
205205
if (direction == .LEFT) {
206206
sprite.face = .LEFT;

zsrc/sprite.zig

+21-21
Original file line numberDiff line numberDiff line change
@@ -56,29 +56,29 @@ pub const Sprite = struct {
5656
// Timestamp of the last attack
5757
lastAttack: c_int,
5858
dropRate: f64,
59+
60+
pub fn create(model: *Sprite, x: c_int, y: c_int) *Sprite {
61+
const self = gAllocator.create(Sprite) catch unreachable;
62+
self.init(model, x, y);
63+
return self;
64+
}
65+
66+
pub fn init(self: *Sprite, model: *const Sprite, x: c_int, y: c_int) void {
67+
// r.c.: 1. I made the model a const pointer.
68+
// 2. Original C code used a memcpy, hoping the line below is fine.
69+
self.* = model.*;
70+
71+
self.x = x;
72+
self.y = y;
73+
self.posQueue = PositionBufferQueue.init();
74+
75+
const ani = gAllocator.create(tps.Animation) catch unreachable;
76+
tps.copyAnimation(model.ani, ani);
77+
self.ani = ani;
78+
ren.updateAnimationOfSprite(self);
79+
}
5980
};
6081

6182
pub inline fn pushToPositionBuffer(q: *PositionBufferQueue, slot: PositionBufferSlot) void {
6283
q.enqueue(slot);
6384
}
64-
65-
pub fn initSprite(model: *const Sprite, self: *Sprite, x: c_int, y: c_int) void {
66-
// r.c.: 1. I made the model a const pointer.
67-
// 2. Original C code used a memcpy, hoping the line below is fine.
68-
self.* = model.*;
69-
70-
self.x = x;
71-
self.y = y;
72-
self.posQueue = PositionBufferQueue.init();
73-
74-
const ani = gAllocator.create(tps.Animation) catch unreachable;
75-
tps.copyAnimation(model.ani, ani);
76-
self.ani = ani;
77-
ren.updateAnimationOfSprite(self);
78-
}
79-
80-
pub fn createSprite(model: *Sprite, x: c_int, y: c_int) *Sprite {
81-
const self = gAllocator.create(Sprite) catch unreachable;
82-
initSprite(model, self, x, y);
83-
return self;
84-
}

0 commit comments

Comments
 (0)