1
0
Fork 0

Display scores

This commit is contained in:
Julien Dessaux 2022-09-26 21:02:13 +02:00
parent c9539b4cb4
commit d6a8aead1d
Signed by: adyxax
GPG key ID: F92E51B86E07177E

View file

@ -34,6 +34,14 @@ pub const Brother = struct {
var y = @floatToInt(u8, std.math.round(self.y));
w4.DRAW_COLORS.* = 0x30;
w4.blit(&brother, self.x, y - brother_height, brother_width, brother_height, brother_flags);
var buf: [3]u8 = undefined;
w4.DRAW_COLORS.* = 0x32;
_ = std.fmt.formatIntBuf(&buf, self.score, 10, .lower, .{ .width = 3 });
if (self.side == .left) {
w4.text(buf[0..], 0, 0);
} else {
w4.text(buf[0..], 136, 0);
}
}
pub fn reset(self: *Brother, side: utils.side) void {
self.side = side;