aboutsummaryrefslogtreecommitdiff
path: root/src/brothers.zig
blob: 3b92de4f406e157e8e4dd7632d0aafd3a65afd80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const std = @import("std");
const utils = @import("utils.zig");
const w4 = @import("wasm4.zig");

pub const Brother = struct {
    side: utils.side,
    score: u8,
    x: u8,
    y: f64,
    pub fn draw(self: Brother) void {
        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);
    }
    pub fn reset(self: *Brother, side: utils.side) void {
        self.side = side;
        self.score = 0;
    }
    pub fn resetRound(self: *Brother) void {
        self.x = utils.startingX[@enumToInt(self.side)];
        self.y = 160;
    }
};

//----- Sprite ----------------------------------------------------------------
const brother_width = 16;
const brother_height = 32;
const brother_flags = 0; // BLIT_1BPP
const brother = [64]u8{ 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xfb, 0xdf, 0xfb, 0xdf, 0xfb, 0xdf, 0xfb, 0xdf, 0xf9, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f, 0xf8, 0x1f };