From 9a681d76187c6c385875ccde36357a193d8cdb84 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:42:56 +0200 Subject: [PATCH] Adjustment of the level difficulty --- Snake/main.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index 2f53839..4e25b69 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -18,14 +18,15 @@ def main(): Running = True Direction = 'right' Direction_prev = 'right' - Move_loop = 30 + Move_loop = 10 Score = 0 - Difficulty = 10 + Difficulty = 1 Fruit = False # Spawn snake head L_snake = snake.List((5, 5), None) + # Spawn first apple level.spawn_apple(Matrix, HEIGH, WIDTH) while Running: @@ -48,7 +49,7 @@ def main(): Direction = Direction_prev try: - L_snake, Matrix, Fruit = snake.Snake_move(Matrix, L_snake, Direction, HEIGH, WIDTH) + L_snake, Matrix, Fruit, Score = snake.Snake_move(Matrix, L_snake, Direction, Score, HEIGH, WIDTH) except ValueError as Error: if Error.args[0] == 1: print("You take a wall !") @@ -60,7 +61,9 @@ def main(): level.spawn_apple(Matrix, HEIGH, WIDTH) Direction_prev = Direction - Move_loop = 30 - Difficulty*2 + if(Score > 1000): + Difficulty = int(Score/1000) + 1 + Move_loop = 11 - Difficulty Move_loop -= 1