From f03cb2ae232d8349ee95af50d0e2bfd29ceb5491 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Tue, 26 Jul 2022 14:32:03 +0200 Subject: [PATCH 01/30] simple window test --- main.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/main.py b/main.py index e69de29..a639fb4 100644 --- a/main.py +++ b/main.py @@ -0,0 +1,35 @@ +import pygame +from pygame.locals import * + +def main(): + pygame.init() + screen = pygame.display.set_mode((1280, 720), pygame.SCALED) + pygame.display.set_caption("Test Window") + + clock = pygame.time.Clock() + live = True + x = 0 + + while live: + # Set clock tick to 60 fps + clock.tick(60) + + # + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: + live = False + + # Change background color + if x == 255: x = 0 + else: x += 1 + screen.fill((x, 0, 0)) + + # Draw Scene + pygame.display.flip() + + # Display current fps + print(float("{0:.2f}".format(clock.get_fps())), 'fps') + + +if __name__ == "__main__": + main() \ No newline at end of file From ac7c1e4c497346fe5adb16d170f3e2217ef871ff Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Tue, 26 Jul 2022 14:32:03 +0200 Subject: [PATCH 02/30] simple window test --- main.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/main.py b/main.py index e69de29..a639fb4 100644 --- a/main.py +++ b/main.py @@ -0,0 +1,35 @@ +import pygame +from pygame.locals import * + +def main(): + pygame.init() + screen = pygame.display.set_mode((1280, 720), pygame.SCALED) + pygame.display.set_caption("Test Window") + + clock = pygame.time.Clock() + live = True + x = 0 + + while live: + # Set clock tick to 60 fps + clock.tick(60) + + # + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: + live = False + + # Change background color + if x == 255: x = 0 + else: x += 1 + screen.fill((x, 0, 0)) + + # Draw Scene + pygame.display.flip() + + # Display current fps + print(float("{0:.2f}".format(clock.get_fps())), 'fps') + + +if __name__ == "__main__": + main() \ No newline at end of file From 2d144bf907e27d13707255d10a4b95e899f1b03a Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 09:05:16 +0200 Subject: [PATCH 03/30] Color and text test --- main.py | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/main.py b/main.py index a639fb4..29191fc 100644 --- a/main.py +++ b/main.py @@ -1,14 +1,27 @@ import pygame from pygame.locals import * +RESOLUTION = (1280, 720) +DIFFICULTY = 1 + +Color_white = (255, 255, 255) +Color_Black = (0, 0, 0) + + def main(): pygame.init() screen = pygame.display.set_mode((1280, 720), pygame.SCALED) pygame.display.set_caption("Test Window") + width = screen.get_width() + height = screen.get_height() + + font = pygame.font.SysFont('Corbel', 35) + + test = font.render('quit' , True , Color_Black) + clock = pygame.time.Clock() live = True - x = 0 while live: # Set clock tick to 60 fps @@ -18,12 +31,10 @@ def main(): for event in pygame.event.get(): if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: live = False - - # Change background color - if x == 255: x = 0 - else: x += 1 - screen.fill((x, 0, 0)) + screen.fill(Color_white) + screen.blit(test , (width/2,height/2)) + # Draw Scene pygame.display.flip() From 3ece204a832cb8983f1096fa29b92a7bf5f04eb9 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Tue, 26 Jul 2022 14:32:03 +0200 Subject: [PATCH 04/30] simple window test --- Snake/main.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Snake/main.py b/Snake/main.py index e69de29..a639fb4 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -0,0 +1,35 @@ +import pygame +from pygame.locals import * + +def main(): + pygame.init() + screen = pygame.display.set_mode((1280, 720), pygame.SCALED) + pygame.display.set_caption("Test Window") + + clock = pygame.time.Clock() + live = True + x = 0 + + while live: + # Set clock tick to 60 fps + clock.tick(60) + + # + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: + live = False + + # Change background color + if x == 255: x = 0 + else: x += 1 + screen.fill((x, 0, 0)) + + # Draw Scene + pygame.display.flip() + + # Display current fps + print(float("{0:.2f}".format(clock.get_fps())), 'fps') + + +if __name__ == "__main__": + main() \ No newline at end of file From f89aa660b971eb63a5e993e1736ba180bebd4125 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 09:05:16 +0200 Subject: [PATCH 05/30] Color and text test --- Snake/main.py | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index a639fb4..29191fc 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -1,14 +1,27 @@ import pygame from pygame.locals import * +RESOLUTION = (1280, 720) +DIFFICULTY = 1 + +Color_white = (255, 255, 255) +Color_Black = (0, 0, 0) + + def main(): pygame.init() screen = pygame.display.set_mode((1280, 720), pygame.SCALED) pygame.display.set_caption("Test Window") + width = screen.get_width() + height = screen.get_height() + + font = pygame.font.SysFont('Corbel', 35) + + test = font.render('quit' , True , Color_Black) + clock = pygame.time.Clock() live = True - x = 0 while live: # Set clock tick to 60 fps @@ -18,12 +31,10 @@ def main(): for event in pygame.event.get(): if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: live = False - - # Change background color - if x == 255: x = 0 - else: x += 1 - screen.fill((x, 0, 0)) + screen.fill(Color_white) + screen.blit(test , (width/2,height/2)) + # Draw Scene pygame.display.flip() From bcb6661a4c21b949335188aa5e543b1f652c7a67 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 09:16:24 +0200 Subject: [PATCH 06/30] add test code --- Snake/main.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Snake/main.py b/Snake/main.py index e69de29..a639fb4 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -0,0 +1,35 @@ +import pygame +from pygame.locals import * + +def main(): + pygame.init() + screen = pygame.display.set_mode((1280, 720), pygame.SCALED) + pygame.display.set_caption("Test Window") + + clock = pygame.time.Clock() + live = True + x = 0 + + while live: + # Set clock tick to 60 fps + clock.tick(60) + + # + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: + live = False + + # Change background color + if x == 255: x = 0 + else: x += 1 + screen.fill((x, 0, 0)) + + # Draw Scene + pygame.display.flip() + + # Display current fps + print(float("{0:.2f}".format(clock.get_fps())), 'fps') + + +if __name__ == "__main__": + main() \ No newline at end of file From 338f87686c8580ddbb75e0447a0306bdbaab9a95 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 11:22:36 +0200 Subject: [PATCH 07/30] Add snake struct --- Snake/src/snake.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Snake/src/snake.py b/Snake/src/snake.py index e69de29..4ab16d8 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -0,0 +1,28 @@ + +class List: + def __init__(self, val, next): + self.val = val + self.next = next + + def __str__(self): + if self.next == None: + return(f"{self.val} -> None") + else: + return(f"{self.val} -> {str(self.next)}") + + def is_empty(L): + return L is None + + def List_add(L, value): + if L == None: + return List(value, None) + else: + return List(L.val, List.List_add(L.next, value)) + + def List_size(L): + i = 0 + while L is not None: + i += 1 + L = L.next + + return i From 74e746812d2f2996499dd836427dac7585845ea8 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 11:22:58 +0200 Subject: [PATCH 08/30] add level init + rand spawn --- Snake/src/level.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Snake/src/level.py b/Snake/src/level.py index e69de29..b6167a5 100644 --- a/Snake/src/level.py +++ b/Snake/src/level.py @@ -0,0 +1,21 @@ +import numpy as np +import random + +# 0 = AIR +# 1 = SNAKE +# 2 = WALL +# 3 = APPLE + +def init_level(heigh, width): + return np.zeros((heigh, width)) + +def spawn_apple(M, heigh, width): + random.seed() + rand_heigh = random.randrange(0, heigh) + rand_width = random.randrange(0, width) + + if M[rand_heigh][rand_width] == 0: + M[rand_heigh][rand_width] = 3 + else: + spawn_apple(M, heigh, width) + \ No newline at end of file From e8d35f4a106eed80c03dc8d3a450287e7ffc2604 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 11:23:49 +0200 Subject: [PATCH 09/30] test snake and level --- Snake/main.py | 42 +++++++++++++++++------------------------- 1 file changed, 17 insertions(+), 25 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index a639fb4..01454a5 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -1,34 +1,26 @@ import pygame from pygame.locals import * +import src.level as level +import src.snake as snake +import src.window as window + +LEVEL = 1 +HEIGH = 10 +WIDTH = 20 def main(): - pygame.init() - screen = pygame.display.set_mode((1280, 720), pygame.SCALED) - pygame.display.set_caption("Test Window") + test = snake.List((5, 5), None) + test = snake.List.List_add(test, 12) + test = snake.List.List_add(test, 14) + test = snake.List.List_add(test, 16) + print(test) + print("Size : ", snake.List.List_size(test)) - clock = pygame.time.Clock() - live = True - x = 0 + matrix = level.init_level(HEIGH, WIDTH) + matrix[5][5] = 1 + level.spawn_apple(matrix, HEIGH, WIDTH) + print(matrix) - while live: - # Set clock tick to 60 fps - clock.tick(60) - - # - for event in pygame.event.get(): - if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: - live = False - - # Change background color - if x == 255: x = 0 - else: x += 1 - screen.fill((x, 0, 0)) - - # Draw Scene - pygame.display.flip() - - # Display current fps - print(float("{0:.2f}".format(clock.get_fps())), 'fps') if __name__ == "__main__": From c84e0aa41e187d0f1ce814e71bf8d2bbba050d2e Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 11:24:12 +0200 Subject: [PATCH 10/30] add window init function --- Snake/src/window.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Snake/src/window.py b/Snake/src/window.py index e69de29..a08d411 100644 --- a/Snake/src/window.py +++ b/Snake/src/window.py @@ -0,0 +1,9 @@ +import pygame +from pygame.locals import * + +def init_game(): + pygame.init() + screen = pygame.display.set_mode((1280, 720), pygame.SCALED) + pygame.display.set_caption("Test Window") + + return screen \ No newline at end of file From c026dea2d5112a17f863bc30f595426edaaf019e Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 11:24:41 +0200 Subject: [PATCH 11/30] add numpy for matrix manipulation --- Snake/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Snake/requirements.txt b/Snake/requirements.txt index 231dd17..485eb9e 100644 --- a/Snake/requirements.txt +++ b/Snake/requirements.txt @@ -1 +1,2 @@ -pygame \ No newline at end of file +pygame +numpy \ No newline at end of file From 7105b7ef27ad4392e583bb145642de2f5c68bf29 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Wed, 27 Jul 2022 11:26:03 +0200 Subject: [PATCH 12/30] fill .gitignore for python project --- .gitignore | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 153 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f5e96db..06109db 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,153 @@ -venv \ No newline at end of file +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ From c74dfcc1a315189259e9643e10ca6df74ee943f1 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sun, 31 Jul 2022 19:48:16 +0200 Subject: [PATCH 13/30] start of snake movement --- Snake/main.py | 8 +++++--- Snake/src/snake.py | 15 +++++++++++++++ 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index 01454a5..10e65f2 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -10,17 +10,19 @@ WIDTH = 20 def main(): test = snake.List((5, 5), None) - test = snake.List.List_add(test, 12) - test = snake.List.List_add(test, 14) - test = snake.List.List_add(test, 16) + test = snake.List.List_add(test, (6, 6)) + test = snake.List.List_add(test, (7, 7)) + test = snake.List.List_add(test, (8, 8)) print(test) print("Size : ", snake.List.List_size(test)) + matrix = level.init_level(HEIGH, WIDTH) matrix[5][5] = 1 level.spawn_apple(matrix, HEIGH, WIDTH) print(matrix) + snake.Snake_move(matrix, test, "left") if __name__ == "__main__": diff --git a/Snake/src/snake.py b/Snake/src/snake.py index 4ab16d8..ff56ca4 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -1,4 +1,6 @@ +DIRECTION = {'left': (0, -1), 'right': (0, 1), 'up': (-1, 0), 'down': (1, 0)} + class List: def __init__(self, val, next): self.val = val @@ -26,3 +28,16 @@ class List: L = L.next return i + +def Snake_move(M, L, dir): + L_save = L + + L.val = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) + + L = L.next + L_save = L_save.next + + while L is not None: + + + L = L.next \ No newline at end of file From 928aaff2cbe00ec6e9b7b488ed7e19fbda0f24fc Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sun, 31 Jul 2022 20:15:15 +0200 Subject: [PATCH 14/30] Change type ID --- Snake/src/level.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Snake/src/level.py b/Snake/src/level.py index b6167a5..baed2f7 100644 --- a/Snake/src/level.py +++ b/Snake/src/level.py @@ -2,9 +2,8 @@ import numpy as np import random # 0 = AIR -# 1 = SNAKE -# 2 = WALL -# 3 = APPLE +# 1 = WALL +# 2 = APPLE def init_level(heigh, width): return np.zeros((heigh, width)) From aa1638cec4ab67478c9eec1a4bf1ac841b230b33 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sun, 31 Jul 2022 20:15:39 +0200 Subject: [PATCH 15/30] Complete Snake_move function --- Snake/src/snake.py | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/Snake/src/snake.py b/Snake/src/snake.py index ff56ca4..d7991b8 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -30,14 +30,24 @@ class List: return i def Snake_move(M, L, dir): - L_save = L - + Fruit = False + List_save = L + Save_Value = L.val L.val = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) - + + if M[L.val[0]][L.val[1]] == 2: + Fruit = True + M[L.val[0]][L.val[1]] == 0 + L = L.next - L_save = L_save.next while L is not None: - + Save_bis_Value = L.val + L.val = Save_Value + Save_Value = Save_bis_Value + L = L.next + + if Fruit: + List_save = List.List_add(List_save, Save_Value) - L = L.next \ No newline at end of file + return List_save \ No newline at end of file From edf549e67008ec1c16dceaf79cc40a541f4a605e Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sun, 31 Jul 2022 20:15:59 +0200 Subject: [PATCH 16/30] add test for snake_move function --- Snake/main.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index 10e65f2..a4ddfcd 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -9,20 +9,22 @@ HEIGH = 10 WIDTH = 20 def main(): - test = snake.List((5, 5), None) - test = snake.List.List_add(test, (6, 6)) - test = snake.List.List_add(test, (7, 7)) - test = snake.List.List_add(test, (8, 8)) - print(test) - print("Size : ", snake.List.List_size(test)) + L_snake = snake.List((5, 5), None) + L_snake = snake.List.List_add(L_snake, (5, 4)) + L_snake = snake.List.List_add(L_snake, (5, 3)) + L_snake = snake.List.List_add(L_snake, (5, 2)) + print(L_snake) + print("Size : ", snake.List.List_size(L_snake)) matrix = level.init_level(HEIGH, WIDTH) matrix[5][5] = 1 + matrix[5][6] = 2 level.spawn_apple(matrix, HEIGH, WIDTH) - print(matrix) + #print(matrix) - snake.Snake_move(matrix, test, "left") + L_snake = snake.Snake_move(matrix, L_snake, "right") + print(L_snake) if __name__ == "__main__": From 6b0e2098e3eabf9399bb397760e55d45b30feda5 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sun, 31 Jul 2022 22:53:42 +0200 Subject: [PATCH 17/30] reverse ID changes --- Snake/src/level.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Snake/src/level.py b/Snake/src/level.py index baed2f7..b6167a5 100644 --- a/Snake/src/level.py +++ b/Snake/src/level.py @@ -2,8 +2,9 @@ import numpy as np import random # 0 = AIR -# 1 = WALL -# 2 = APPLE +# 1 = SNAKE +# 2 = WALL +# 3 = APPLE def init_level(heigh, width): return np.zeros((heigh, width)) From f3bf334cac89842fe775742e46cd3d72bb49a13f Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sun, 31 Jul 2022 22:53:59 +0200 Subject: [PATCH 18/30] Add error handling --- Snake/main.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index a4ddfcd..fed567f 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -1,3 +1,4 @@ +from ast import Break import pygame from pygame.locals import * import src.level as level @@ -19,11 +20,21 @@ def main(): matrix = level.init_level(HEIGH, WIDTH) matrix[5][5] = 1 - matrix[5][6] = 2 + matrix[5][6] = 1 level.spawn_apple(matrix, HEIGH, WIDTH) #print(matrix) - L_snake = snake.Snake_move(matrix, L_snake, "right") + try: + L_snake = snake.Snake_move(matrix, L_snake, "right") + except ValueError as Error: + if Error.args[0] == 1: + print("You take a wall !") + elif Error.args[0] == 2: + print("You ate your tale !") + + exit() + + print(L_snake) From 245325815ee121ae3ecca309da29f98adcfc42af Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sun, 31 Jul 2022 22:54:39 +0200 Subject: [PATCH 19/30] Add collision detection and error generation --- Snake/src/snake.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Snake/src/snake.py b/Snake/src/snake.py index d7991b8..e8e3166 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -33,12 +33,19 @@ def Snake_move(M, L, dir): Fruit = False List_save = L Save_Value = L.val - L.val = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) + Next_pos = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) - if M[L.val[0]][L.val[1]] == 2: + if M[Next_pos[0]][Next_pos[1]] == 3: Fruit = True - M[L.val[0]][L.val[1]] == 0 + M[Next_pos[0]][Next_pos[1]] == 0 + elif M[Next_pos[0]][Next_pos[1]] == 2: + raise ValueError(1) # Error : You take a wall ! + quit + elif M[Next_pos[0]][Next_pos[1]] == 1: + raise ValueError(2) # Error : You ate your tale ! + quit + L.val = Next_pos L = L.next while L is not None: From 9949379074b4f39588b7a2adcf898394c8f24534 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Mon, 1 Aug 2022 01:26:50 +0200 Subject: [PATCH 20/30] add comment and print snake on the matrix --- Snake/src/snake.py | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/Snake/src/snake.py b/Snake/src/snake.py index e8e3166..9faa516 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -33,28 +33,37 @@ def Snake_move(M, L, dir): Fruit = False List_save = L Save_Value = L.val - Next_pos = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) + + # Calculate new snake head coord + Next_coord = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) - if M[Next_pos[0]][Next_pos[1]] == 3: + # Check nature of the future snake head coord + if M[Next_coord[0]][Next_coord[1]] == 3: Fruit = True - M[Next_pos[0]][Next_pos[1]] == 0 - elif M[Next_pos[0]][Next_pos[1]] == 2: + M[Next_coord[0]][Next_coord[1]] == 0 + elif M[Next_coord[0]][Next_coord[1]] == 2: raise ValueError(1) # Error : You take a wall ! quit - elif M[Next_pos[0]][Next_pos[1]] == 1: + elif M[Next_coord[0]][Next_coord[1]] == 1: raise ValueError(2) # Error : You ate your tale ! quit - L.val = Next_pos + # Update snake head coord and print on matrix + L.val = Next_coord + M[Next_coord[0]][Next_coord[1]] = 1 L = L.next + # Loot to update snake segment coord while L is not None: Save_bis_Value = L.val L.val = Save_Value Save_Value = Save_bis_Value L = L.next + # If snake eat fruit -> spawn new segment at the end of the snake if Fruit: List_save = List.List_add(List_save, Save_Value) + else: + M[Save_Value[0]][Save_Value[1]] = 0 - return List_save \ No newline at end of file + return List_save, M \ No newline at end of file From 27b501e363a07c1f18ac99d56fcd35fc063e9795 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Mon, 1 Aug 2022 01:27:55 +0200 Subject: [PATCH 21/30] add test --- Snake/main.py | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index fed567f..4d24602 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -1,4 +1,4 @@ -from ast import Break +from ast import Break, Global import pygame from pygame.locals import * import src.level as level @@ -8,8 +8,10 @@ import src.window as window LEVEL = 1 HEIGH = 10 WIDTH = 20 +MATRIX = level.init_level(HEIGH, WIDTH) def main(): + global MATRIX L_snake = snake.List((5, 5), None) L_snake = snake.List.List_add(L_snake, (5, 4)) L_snake = snake.List.List_add(L_snake, (5, 3)) @@ -17,15 +19,17 @@ def main(): print(L_snake) print("Size : ", snake.List.List_size(L_snake)) + MATRIX[5][5] = 1 + MATRIX[5][4] = 1 + MATRIX[5][3] = 1 + MATRIX[5][2] = 1 - matrix = level.init_level(HEIGH, WIDTH) - matrix[5][5] = 1 - matrix[5][6] = 1 - level.spawn_apple(matrix, HEIGH, WIDTH) - #print(matrix) + MATRIX[5][6] = 3 + level.spawn_apple(MATRIX, HEIGH, WIDTH) + print(MATRIX) try: - L_snake = snake.Snake_move(matrix, L_snake, "right") + L_snake, MATRIX = snake.Snake_move(MATRIX, L_snake, "up") except ValueError as Error: if Error.args[0] == 1: print("You take a wall !") @@ -36,6 +40,7 @@ def main(): print(L_snake) + print(MATRIX) if __name__ == "__main__": From efb27a0a921c968951e2da6ebbbeeeee7c8dee1b Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Mon, 1 Aug 2022 11:19:01 +0200 Subject: [PATCH 22/30] add level limit check --- Snake/src/snake.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Snake/src/snake.py b/Snake/src/snake.py index 9faa516..3640ff3 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -29,18 +29,26 @@ class List: return i -def Snake_move(M, L, dir): +def Snake_move(M, L, dir, heigh, width): Fruit = False List_save = L Save_Value = L.val # Calculate new snake head coord - Next_coord = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) + if dir == 'left' and L.val[1] == 0: + Next_coord = (L.val[0], width-1) + elif dir == 'right' and L.val[1] == width-1: + Next_coord = (L.val[0], 0) + elif dir == 'up' and L.val[0] == 0: + Next_coord = (heigh-1, L.val[1]) + elif dir == 'down' and L.val[0] == heigh-1: + Next_coord = (0, L.val[1]) + else: + Next_coord = (DIRECTION[dir][0] + L.val[0], DIRECTION[dir][1] + L.val[1]) # Check nature of the future snake head coord if M[Next_coord[0]][Next_coord[1]] == 3: Fruit = True - M[Next_coord[0]][Next_coord[1]] == 0 elif M[Next_coord[0]][Next_coord[1]] == 2: raise ValueError(1) # Error : You take a wall ! quit From 1d87e580b4b7c3b4609fa572f92a25b7ce1ba40f Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Fri, 5 Aug 2022 18:42:30 +0200 Subject: [PATCH 23/30] Add fruit status in return --- Snake/src/snake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snake/src/snake.py b/Snake/src/snake.py index 3640ff3..b729cbc 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -74,4 +74,4 @@ def Snake_move(M, L, dir, heigh, width): else: M[Save_Value[0]][Save_Value[1]] = 0 - return List_save, M \ No newline at end of file + return List_save, M, Fruit \ No newline at end of file From 63618996e6e73f62a29cfde05501c69753e7f089 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Fri, 5 Aug 2022 18:43:45 +0200 Subject: [PATCH 24/30] add draw level function --- Snake/src/window.py | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/Snake/src/window.py b/Snake/src/window.py index a08d411..a38ad8c 100644 --- a/Snake/src/window.py +++ b/Snake/src/window.py @@ -3,7 +3,30 @@ from pygame.locals import * def init_game(): pygame.init() - screen = pygame.display.set_mode((1280, 720), pygame.SCALED) - pygame.display.set_caption("Test Window") + screen = pygame.display.set_mode((1000, 525), pygame.SCALED) + pygame.display.set_caption("Snake") - return screen \ No newline at end of file + return screen + +def draw_level(S, M, difficulty, score, heigh, width): + WHITE = (255, 255, 255) # AIR + GREEN = (0, 255, 0) # SNAKE + BROWN = (255,248,220) # WALL + RED = (255, 0, 0) # APPLE + + Color = WHITE + + for j in range(heigh): + for i in range(width): + if M[j][i] == 0: + Color = WHITE + elif M[j][i] == 1: + Color = GREEN + elif M[j][i] == 2: + Color = BROWN + elif M[j][i] == 3: + Color = RED + + pygame.draw.rect(S, Color, pygame.Rect(i*25, j*25+25, 25, 25)) + + return S \ No newline at end of file From f2bc255a8a059f4fe583a0ba01ac96a7c02c0cef Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Fri, 5 Aug 2022 18:44:14 +0200 Subject: [PATCH 25/30] Remove test command and add Game loop --- Snake/main.py | 91 +++++++++++++++++++++++++++++++++------------------ 1 file changed, 60 insertions(+), 31 deletions(-) diff --git a/Snake/main.py b/Snake/main.py index 4d24602..f8c3ce9 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -5,42 +5,71 @@ import src.level as level import src.snake as snake import src.window as window -LEVEL = 1 -HEIGH = 10 -WIDTH = 20 -MATRIX = level.init_level(HEIGH, WIDTH) +HEIGH = 20 +WIDTH = 40 def main(): - global MATRIX + # Init Matrix/Window + Matrix = level.init_level(HEIGH, WIDTH) + Screen = window.init_game() + + # Init Game Variables + clock = pygame.time.Clock() + Running = True + Direction = 'right' + Direction_prev = 'right' + Move_loop = 30 + Score = 0 + Difficulty = 10 + Fruit = False + + # Spawn snake head L_snake = snake.List((5, 5), None) - L_snake = snake.List.List_add(L_snake, (5, 4)) - L_snake = snake.List.List_add(L_snake, (5, 3)) - L_snake = snake.List.List_add(L_snake, (5, 2)) - print(L_snake) - print("Size : ", snake.List.List_size(L_snake)) - - MATRIX[5][5] = 1 - MATRIX[5][4] = 1 - MATRIX[5][3] = 1 - MATRIX[5][2] = 1 - MATRIX[5][6] = 3 - level.spawn_apple(MATRIX, HEIGH, WIDTH) - print(MATRIX) + level.spawn_apple(Matrix, HEIGH, WIDTH) - try: - L_snake, MATRIX = snake.Snake_move(MATRIX, L_snake, "up") - except ValueError as Error: - if Error.args[0] == 1: - print("You take a wall !") - elif Error.args[0] == 2: - print("You ate your tale !") - - exit() - - - print(L_snake) - print(MATRIX) + while Running: + clock.tick(60) + + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE: + Running = False + if event.type == pygame.KEYDOWN and event.key == pygame.K_RIGHT: + Direction = 'right' + if event.type == pygame.KEYDOWN and event.key == pygame.K_LEFT: + Direction = 'left' + if event.type == pygame.KEYDOWN and event.key == pygame.K_UP: + Direction = 'up' + if event.type == pygame.KEYDOWN and event.key == pygame.K_DOWN: + Direction = 'down' + + if Move_loop == 0: + if Direction == 'left' and Direction_prev == 'right' or Direction == 'right' and Direction_prev == 'left' or Direction == 'up' and Direction_prev == 'down' or Direction == 'down' and Direction_prev == 'up': + Direction = Direction_prev + + try: + L_snake, Matrix, Fruit = snake.Snake_move(Matrix, L_snake, Direction, HEIGH, WIDTH) + except ValueError as Error: + if Error.args[0] == 1: + print("You take a wall !") + elif Error.args[0] == 2: + print("You ate your tale !") + exit() + + if Fruit: + level.spawn_apple(Matrix, HEIGH, WIDTH) + + Direction_prev = Direction + Move_loop = 30 - Difficulty*2 + + Move_loop -= 1 + + # Draw Scene + Screen = window.draw_level(Screen, Matrix, Difficulty, Score, HEIGH, WIDTH) + pygame.display.flip() + + # Print current fps + print(float("{0:.2f}".format(clock.get_fps())), 'fps') if __name__ == "__main__": From fdeff9e17fe35e6a237a7405e91250f99ce25fcd Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:19:26 +0200 Subject: [PATCH 26/30] Add info text on screen --- Snake/src/window.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/Snake/src/window.py b/Snake/src/window.py index a38ad8c..1871b7d 100644 --- a/Snake/src/window.py +++ b/Snake/src/window.py @@ -3,17 +3,35 @@ from pygame.locals import * def init_game(): pygame.init() + pygame.font.init() screen = pygame.display.set_mode((1000, 525), pygame.SCALED) pygame.display.set_caption("Snake") return screen -def draw_level(S, M, difficulty, score, heigh, width): +def draw_level(S, M, difficulty, score, fps, heigh, width): WHITE = (255, 255, 255) # AIR GREEN = (0, 255, 0) # SNAKE BROWN = (255,248,220) # WALL RED = (255, 0, 0) # APPLE + # Reset screen + pygame.draw.rect(S, (0, 0, 0), pygame.Rect(0, 0, 1000, 525)) + + my_font = pygame.font.SysFont('Comic Sans MS', 18) + + # Add FPS counter + text_fps = my_font.render(str(fps) + ' fps', False, (255, 255, 255)) + S.blit(text_fps, (10, 0)) + + # Add Score + text_score = my_font.render('Score : '+ str(score), False, (255, 255, 255)) + S.blit(text_score, (400, 0)) + + # Add Diffucilty + text_difficulty = my_font.render('Difficulty : '+ str(difficulty), False, (255, 255, 255)) + S.blit(text_difficulty, (850, 0)) + Color = WHITE for j in range(heigh): From e46fe34ea0c5125929ccb13b6d0a11f65bd0552d Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:20:38 +0200 Subject: [PATCH 27/30] add FPS to draw_level function --- Snake/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snake/main.py b/Snake/main.py index f8c3ce9..2f53839 100644 --- a/Snake/main.py +++ b/Snake/main.py @@ -65,7 +65,7 @@ def main(): Move_loop -= 1 # Draw Scene - Screen = window.draw_level(Screen, Matrix, Difficulty, Score, HEIGH, WIDTH) + Screen = window.draw_level(Screen, Matrix, Difficulty, Score, int(clock.get_fps()), HEIGH, WIDTH) pygame.display.flip() # Print current fps From bd8d9fc2fbbc089056730d88b55e73f569c99579 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:42:13 +0200 Subject: [PATCH 28/30] Add img --- Snake/img/Snake.png | Bin 0 -> 12062 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Snake/img/Snake.png diff --git a/Snake/img/Snake.png b/Snake/img/Snake.png new file mode 100644 index 0000000000000000000000000000000000000000..8d1181c0030844a504e69b32a6097802a2bf928d GIT binary patch literal 12062 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 RQDeh4zVzyP(YkH#{|8FGysrQN literal 0 HcmV?d00001 From b98cff34e307997478bd735812816e871b7f63bb Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:42:29 +0200 Subject: [PATCH 29/30] Add score --- Snake/src/snake.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Snake/src/snake.py b/Snake/src/snake.py index b729cbc..ed3d64e 100644 --- a/Snake/src/snake.py +++ b/Snake/src/snake.py @@ -29,7 +29,7 @@ class List: return i -def Snake_move(M, L, dir, heigh, width): +def Snake_move(M, L, dir, score, heigh, width): Fruit = False List_save = L Save_Value = L.val @@ -71,7 +71,8 @@ def Snake_move(M, L, dir, heigh, width): # If snake eat fruit -> spawn new segment at the end of the snake if Fruit: List_save = List.List_add(List_save, Save_Value) + score += 50 else: M[Save_Value[0]][Save_Value[1]] = 0 - return List_save, M, Fruit \ No newline at end of file + return List_save, M, Fruit, score \ No newline at end of file From 9a681d76187c6c385875ccde36357a193d8cdb84 Mon Sep 17 00:00:00 2001 From: Nicolas Sudres Date: Sat, 6 Aug 2022 11:42:56 +0200 Subject: [PATCH 30/30] 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