-
Notifications
You must be signed in to change notification settings - Fork 0
/
snake-game.py
49 lines (36 loc) · 1.07 KB
/
snake-game.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#Writing snake game on python using turtle library
from snake import Snake
from turtle import Turtle,Screen,goto
import time
import turtle
from food import Food
screen=Screen() #initilizing screen
screen.setup(width=600,height=600)#defining screen size
screen.title("Snake Game")
screen.tracer(0)
snake=Snake()
food=Food()
screen.listen()
screen.onkey(snake.up, "Up")
screen.onkey(snake.down, "Down")
screen.onkey(snake.left, "Left")
screen.onkey(snake.right, "Right")
#Creating snake's body
game_is_on=True
score=0
#Animations of snake
while game_is_on:
screen.update()
time.sleep(0.1)
snake.move()
if(snake.header.distance(food))<15:
food.new_location()
snake.add_segment()
if(snake.header.xcor()>280 or snake.header.xcor()<-280 or snake.header.ycor()>280 or snake.header.ycor()<-280):
game_is_on=False
for segment in snake.segments:
if segment==snake.header:
pass
elif snake.header.distance(segment)<15:
game_is_on=False
screen.exitonclick() #Screen will exit on clik on screen