mirror of
https://github.com/d3vyce/Python-Game.git
synced 2025-04-03 20:33:23 +02:00
Compare commits
2 Commits
f2bc255a8a
...
e46fe34ea0
Author | SHA1 | Date | |
---|---|---|---|
e46fe34ea0 | |||
fdeff9e17f |
@ -65,7 +65,7 @@ def main():
|
|||||||
Move_loop -= 1
|
Move_loop -= 1
|
||||||
|
|
||||||
# Draw Scene
|
# 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()
|
pygame.display.flip()
|
||||||
|
|
||||||
# Print current fps
|
# Print current fps
|
||||||
|
@ -3,17 +3,35 @@ from pygame.locals import *
|
|||||||
|
|
||||||
def init_game():
|
def init_game():
|
||||||
pygame.init()
|
pygame.init()
|
||||||
|
pygame.font.init()
|
||||||
screen = pygame.display.set_mode((1000, 525), pygame.SCALED)
|
screen = pygame.display.set_mode((1000, 525), pygame.SCALED)
|
||||||
pygame.display.set_caption("Snake")
|
pygame.display.set_caption("Snake")
|
||||||
|
|
||||||
return screen
|
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
|
WHITE = (255, 255, 255) # AIR
|
||||||
GREEN = (0, 255, 0) # SNAKE
|
GREEN = (0, 255, 0) # SNAKE
|
||||||
BROWN = (255,248,220) # WALL
|
BROWN = (255,248,220) # WALL
|
||||||
RED = (255, 0, 0) # APPLE
|
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
|
Color = WHITE
|
||||||
|
|
||||||
for j in range(heigh):
|
for j in range(heigh):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user