From 67955b6ab8ae464090347c7127618952008490b5 Mon Sep 17 00:00:00 2001 From: TQMatvey Date: Sun, 11 Sep 2022 15:15:03 +0700 Subject: [PATCH] arkanoid: dont allow user to jump after start --- applications/arkanoid/arkanoid_game.c | 29 +++++++++++++++++---------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/applications/arkanoid/arkanoid_game.c b/applications/arkanoid/arkanoid_game.c index 5260a24e4..6cdd606d9 100644 --- a/applications/arkanoid/arkanoid_game.c +++ b/applications/arkanoid/arkanoid_game.c @@ -50,6 +50,7 @@ typedef struct { unsigned int score; //Score for the game unsigned int brickCount; //Amount of bricks hit int tick; //Tick counter + bool gameStarted; // Did the game start? } ArkanoidState; typedef struct { @@ -102,6 +103,7 @@ void move_ball(Canvas* canvas, ArkanoidState* st) { st->ball_state.yb = 60; st->ball_state.released = false; st->lives--; + st->gameStarted = false; if(rand_range(0, 2) == 0) { st->ball_state.dx = 1; @@ -294,6 +296,7 @@ static void arkanoid_state_init(ArkanoidState* arkanoid_state) { // Reset initial state arkanoid_state->initialDraw = false; + arkanoid_state->gameStarted = false; } static void arkanoid_draw_callback(Canvas* const canvas, void* ctx) { @@ -416,19 +419,23 @@ int32_t arkanoid_game_app(void* p) { case InputKeyDown: break; case InputKeyOk: - //Release ball if FIRE pressed - arkanoid_state->ball_state.released = true; + if(arkanoid_state->gameStarted == false) { + //Release ball if FIRE pressed + arkanoid_state->ball_state.released = true; - //Apply random direction to ball on release - if(rand_range(0, 2) == 0) { - arkanoid_state->ball_state.dx = 1; - } else { - arkanoid_state->ball_state.dx = -1; + //Apply random direction to ball on release + if(rand_range(0, 2) == 0) { + arkanoid_state->ball_state.dx = 1; + } else { + arkanoid_state->ball_state.dx = -1; + } + + //Makes sure the ball heads upwards + arkanoid_state->ball_state.dy = -1; + //start the game flag + arkanoid_state->gameStarted = true; + break; } - - //Makes sure the ball heads upwards - arkanoid_state->ball_state.dy = -1; - break; } } }