@@ -56,29 +56,29 @@ pub const Sprite = struct {
56
56
// Timestamp of the last attack
57
57
lastAttack : c_int ,
58
58
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
+ }
59
80
};
60
81
61
82
pub inline fn pushToPositionBuffer (q : * PositionBufferQueue , slot : PositionBufferSlot ) void {
62
83
q .enqueue (slot );
63
84
}
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