Minor changes
This commit is contained in:
parent
214608ab3a
commit
d2d29f4da3
1 changed files with 5 additions and 1 deletions
|
@ -14,6 +14,7 @@ class Snake:
|
|||
self.direction=3 # Like clock (12=up, 3=right, 6=bottom, 9=left)
|
||||
self.new_apple()
|
||||
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))
|
||||
|
||||
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):
|
||||
rect=pygame.Rect(0, self.margin-thickness, self.grid_width*self.grid_pts, thickness)
|
||||
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):
|
||||
self.apple=(random.randint(0,self.grid_width),random.randint(0,self.grid_height))
|
||||
|
@ -65,6 +67,7 @@ class Snake:
|
|||
clock = pygame.time.Clock()
|
||||
self.direction=6
|
||||
ignore_has_loose=True
|
||||
self.score=0
|
||||
while True:
|
||||
self.screen.fill((0,0,0))
|
||||
self.draw_snake()
|
||||
|
@ -98,6 +101,7 @@ class Snake:
|
|||
if self.apple==self.snake[0]:
|
||||
self.snake.append(self.snake[len(self.snake)-1])
|
||||
self.new_apple()
|
||||
self.score+=1
|
||||
pygame.display.flip()
|
||||
clock.tick(self.fps)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue