1
0
Fork 0

Added end of round detection and scoring

This commit is contained in:
Julien Dessaux 2022-09-29 22:03:25 +02:00
parent 08d7527237
commit 2f76bca8dc
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 30 additions and 4 deletions

View file

@ -20,7 +20,7 @@ pub const Ball = struct {
self.vx = 0;
self.vy = -250;
}
pub fn update(self: *Ball) void {
pub fn update(self: *Ball) ?utils.side {
self.vy += utils.gravity;
self.x += self.vx * utils.frequency;
self.y += self.vy * utils.frequency;
@ -40,6 +40,11 @@ pub const Ball = struct {
if (self.y >= 160 - ball_height) { // floor
self.vy = 0;
self.y = 160 - ball_height;
if (self.x <= 80) {
return .left;
} else {
return .right;
}
}
// Net collision left
var x1: f64 = 78 - ball_width;
@ -85,6 +90,7 @@ pub const Ball = struct {
self.x = x2;
}
}
return null;
}
};

View file

@ -37,13 +37,22 @@ pub const Game = struct {
self.brothers[0].resetRound();
self.brothers[1].resetRound();
}
pub fn update(self: *Game) void {
pub fn update(self: *Game) bool {
self.gamepads[0].update(w4.GAMEPAD1.*);
self.gamepads[1].update(w4.GAMEPAD2.*);
self.brothers[0].update(self.gamepads[0]);
self.brothers[1].update(self.gamepads[1]);
self.ball.update();
const finished = self.ball.update();
self.brothers[0].collide(&self.ball);
self.brothers[1].collide(&self.ball);
if (finished) |side| {
if (side == .left) {
self.brothers[1].score += 1;
} else {
self.brothers[0].score += 1;
}
return true;
}
return false;
}
};

View file

@ -5,12 +5,23 @@ const w4 = @import("wasm4.zig");
//----- Globals ---------------------------------------------------------------
var Game: game.Game = undefined;
var wait_before_new_round: u8 = 0;
export fn start() void {
Game.reset();
}
export fn update() void {
Game.update();
if (wait_before_new_round == 0) {
const finished = Game.update();
if (finished) {
wait_before_new_round = 60;
}
} else {
wait_before_new_round -= 1;
if (wait_before_new_round == 0) {
Game.resetRound();
}
}
Game.draw();
}