mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-03 20:33:23 +02:00
Compare commits
3 Commits
efb27a0a92
...
f2bc255a8a
Author | SHA1 | Date | |
---|---|---|---|
f2bc255a8a | |||
63618996e6 | |||
1d87e580b4 |
@ -5,42 +5,71 @@ import src.level as level
|
|||||||
import src.snake as snake
|
import src.snake as snake
|
||||||
import src.window as window
|
import src.window as window
|
||||||
|
|
||||||
LEVEL = 1
|
HEIGH = 20
|
||||||
HEIGH = 10
|
WIDTH = 40
|
||||||
WIDTH = 20
|
|
||||||
MATRIX = level.init_level(HEIGH, WIDTH)
|
|
||||||
|
|
||||||
def main():
|
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((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)
|
||||||
level.spawn_apple(MATRIX, HEIGH, WIDTH)
|
|
||||||
print(MATRIX)
|
|
||||||
|
|
||||||
try:
|
while Running:
|
||||||
L_snake, MATRIX = snake.Snake_move(MATRIX, L_snake, "up")
|
clock.tick(60)
|
||||||
except ValueError as Error:
|
|
||||||
if Error.args[0] == 1:
|
for event in pygame.event.get():
|
||||||
print("You take a wall !")
|
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
|
||||||
elif Error.args[0] == 2:
|
Running = False
|
||||||
print("You ate your tale !")
|
if event.type == pygame.KEYDOWN and event.key == pygame.K_RIGHT:
|
||||||
|
Direction = 'right'
|
||||||
exit()
|
if event.type == pygame.KEYDOWN and event.key == pygame.K_LEFT:
|
||||||
|
Direction = 'left'
|
||||||
|
if event.type == pygame.KEYDOWN and event.key == pygame.K_UP:
|
||||||
print(L_snake)
|
Direction = 'up'
|
||||||
print(MATRIX)
|
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__":
|
if __name__ == "__main__":
|
||||||
|
@ -74,4 +74,4 @@ def Snake_move(M, L, dir, heigh, width):
|
|||||||
else:
|
else:
|
||||||
M[Save_Value[0]][Save_Value[1]] = 0
|
M[Save_Value[0]][Save_Value[1]] = 0
|
||||||
|
|
||||||
return List_save, M
|
return List_save, M, Fruit
|
@ -3,7 +3,30 @@ from pygame.locals import *
|
|||||||
|
|
||||||
def init_game():
|
def init_game():
|
||||||
pygame.init()
|
pygame.init()
|
||||||
screen = pygame.display.set_mode((1280, 720), pygame.SCALED)
|
screen = pygame.display.set_mode((1000, 525), pygame.SCALED)
|
||||||
pygame.display.set_caption("Test Window")
|
pygame.display.set_caption("Snake")
|
||||||
|
|
||||||
return screen
|
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
|
Loading…
x
Reference in New Issue
Block a user