1
0
Fork 0

Added brothers and ball collisions

This commit is contained in:
Julien Dessaux 2022-09-25 23:01:37 +02:00
parent d265eb691e
commit 2b9c6f8533
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 24 additions and 2 deletions

View file

@ -59,7 +59,7 @@ pub const Ball = struct {
};
//----- Sprite ----------------------------------------------------------------
const ball_width = 8;
const ball_height = 8;
pub const ball_width = 8;
pub const ball_height = 8;
const ball_flags = 1; // BLIT_2BPP
const ball = [16]u8{ 0x1a, 0xa4, 0x6f, 0xf9, 0xbf, 0xae, 0xbf, 0xae, 0xbf, 0xfe, 0xbf, 0xfe, 0x6f, 0xf9, 0x1a, 0xa4 };

View file

@ -1,3 +1,4 @@
const ball = @import("ball.zig");
const inputs = @import("inputs.zig");
const std = @import("std");
const utils = @import("utils.zig");
@ -10,6 +11,25 @@ pub const Brother = struct {
x: u8,
y: f64,
vy: f64,
pub fn collide(self: Brother, b: *ball.Ball) void {
// compute the collision box
const x1: f64 = @intToFloat(f64, self.x) - ball.ball_width;
const x2: f64 = @intToFloat(f64, self.x) + brother_width;
const y1: f64 = self.y - brother_height - ball.ball_height;
const y2: f64 = self.y - brother_height;
if (b.x >= x1 and b.x < x2 and b.y >= y1 and b.y < y2) {
// horizontal adjustement
b.vx += (b.x - @intToFloat(f64, self.x) - 4) * 10;
// vertical adjustment
if (b.vy > 0) {
b.vy = -b.vy * utils.bounce;
if (self.vy < 0)
b.vy *= 2;
}
b.vy -= 22;
b.y = y1;
}
}
pub fn draw(self: Brother) void {
var y = @floatToInt(u8, std.math.round(self.y));
w4.DRAW_COLORS.* = 0x30;

View file

@ -35,5 +35,7 @@ pub const Game = struct {
self.brothers[0].update(self.gamepads[0]);
self.brothers[1].update(self.gamepads[1]);
self.ball.update();
self.brothers[0].collide(&self.ball);
self.brothers[1].collide(&self.ball);
}
};