Minor changes

This commit is contained in:
Loic Guegan 2022-11-01 08:21:45 +01:00
parent 214608ab3a
commit d2d29f4da3

View file

@ -14,6 +14,7 @@ class Snake:
self.direction=3 # Like clock (12=up, 3=right, 6=bottom, 9=left) self.direction=3 # Like clock (12=up, 3=right, 6=bottom, 9=left)
self.new_apple() self.new_apple()
pygame.init() pygame.init()
self.font=pygame.font.SysFont(pygame.font.get_default_font(), int(self.margin/2))
self.screen=pygame.display.set_mode((grid_width*grid_pts,grid_height*grid_pts+margin)) self.screen=pygame.display.set_mode((grid_width*grid_pts,grid_height*grid_pts+margin))
def draw_pts(self,x,y,color=(255,255,255)): def draw_pts(self,x,y,color=(255,255,255)):
@ -23,7 +24,8 @@ class Snake:
def draw_infos(self,color=(255,255,255),thickness=5): def draw_infos(self,color=(255,255,255),thickness=5):
rect=pygame.Rect(0, self.margin-thickness, self.grid_width*self.grid_pts, thickness) rect=pygame.Rect(0, self.margin-thickness, self.grid_width*self.grid_pts, thickness)
pygame.draw.rect(self.screen,color,rect, 0) pygame.draw.rect(self.screen,color,rect, 0)
text = self.font.render('Score '+str(self.score)+" Length "+str(len(self.snake)), True, color)
self.screen.blit(text, dest=(self.grid_width*self.grid_pts/3.5,self.margin/3.5))
def new_apple(self): def new_apple(self):
self.apple=(random.randint(0,self.grid_width),random.randint(0,self.grid_height)) self.apple=(random.randint(0,self.grid_width),random.randint(0,self.grid_height))
@ -65,6 +67,7 @@ class Snake:
clock = pygame.time.Clock() clock = pygame.time.Clock()
self.direction=6 self.direction=6
ignore_has_loose=True ignore_has_loose=True
self.score=0
while True: while True:
self.screen.fill((0,0,0)) self.screen.fill((0,0,0))
self.draw_snake() self.draw_snake()
@ -98,6 +101,7 @@ class Snake:
if self.apple==self.snake[0]: if self.apple==self.snake[0]:
self.snake.append(self.snake[len(self.snake)-1]) self.snake.append(self.snake[len(self.snake)-1])
self.new_apple() self.new_apple()
self.score+=1
pygame.display.flip() pygame.display.flip()
clock.tick(self.fps) clock.tick(self.fps)