Minor changes

This commit is contained in:
Loic Guegan 2022-10-31 22:12:02 +01:00
parent cee495b600
commit aa38f15005

View file

@ -1,5 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
import sys, pygame import sys, pygame, random
class Snake: class Snake:
@ -18,6 +18,12 @@ class Snake:
rect=pygame.Rect(self.grid_pts*x, self.grid_pts*y, self.grid_pts, self.grid_pts) rect=pygame.Rect(self.grid_pts*x, self.grid_pts*y, self.grid_pts, self.grid_pts)
pygame.draw.rect(self.screen,color,rect, 0) pygame.draw.rect(self.screen,color,rect, 0)
def new_apple(self):
self.apple=(random.randint(0,grid_width),random.randint(0,grid_height))
while self.apple in self.snake:
self.apple=(random.randint(0,grid_width),random.randint(0,grid_height))
def move(self): def move(self):
# Update tail # Update tail
if len(self.snake)>1: if len(self.snake)>1: