|
| 1 | +#Our favourite Snake game with Basic Graphics. Made this using the turtle module. |
| 2 | +#Random shaped food with colors pop up everytime. |
| 3 | +#Also it keeps a look on your scores, play with friends and enjoy. |
| 4 | + |
| 5 | +import turtle |
| 6 | +import time |
| 7 | +import random |
| 8 | + |
| 9 | +delay = 0.1 |
| 10 | +score = 0 |
| 11 | +high_score = 0 |
| 12 | + |
| 13 | +#Window Screen |
| 14 | +wn = turtle.Screen() |
| 15 | +wn.title("SNAKE GAME") |
| 16 | +wn.bgcolor("black") |
| 17 | + |
| 18 | +wn.setup(width=600,height=600) |
| 19 | +wn.tracer(0) |
| 20 | + |
| 21 | +#Head of Snake |
| 22 | +head = turtle.Turtle() |
| 23 | +head.shape("square") |
| 24 | +head.color("green") |
| 25 | +head.penup() |
| 26 | +head.goto(0, 0) |
| 27 | +head.direction = "stop" |
| 28 | + |
| 29 | +#Food in the game |
| 30 | +food = turtle.Turtle() |
| 31 | +food.speed(0) |
| 32 | +food.shape("circle") |
| 33 | +food.color("red") |
| 34 | +food.penup() |
| 35 | +food.goto(0, 100) |
| 36 | + |
| 37 | +#Score |
| 38 | +pen = turtle.Turtle() |
| 39 | +pen.speed(0) |
| 40 | +pen.shape("turtle") |
| 41 | +pen.color("white") |
| 42 | +pen.penup() |
| 43 | +pen.hideturtle() |
| 44 | +pen.goto(0, 250) |
| 45 | +pen.write("Score : 0 High Score : 0", align="center", |
| 46 | + font=("Times New Roman", 24, "bold")) |
| 47 | + |
| 48 | + |
| 49 | +#Assigning key values |
| 50 | +def goup(): |
| 51 | + if head.direction != "down": |
| 52 | + head.direction = "up" |
| 53 | + |
| 54 | +def godown(): |
| 55 | + if head.direction != "up": |
| 56 | + head.direction = "down" |
| 57 | + |
| 58 | +def goright(): |
| 59 | + if head.direction != "left": |
| 60 | + head.direction = "right" |
| 61 | + |
| 62 | +def goleft(): |
| 63 | + if head.direction != "right": |
| 64 | + head.direction = "left" |
| 65 | + |
| 66 | +def move(): |
| 67 | + if head.direction == "up": |
| 68 | + y = head.ycor() |
| 69 | + head.sety(y+20) |
| 70 | + |
| 71 | + if head.direction == "down": |
| 72 | + y = head.ycor() |
| 73 | + head.sety(y-20) |
| 74 | + |
| 75 | + if head.direction == "right": |
| 76 | + x = head.xcor() |
| 77 | + head.setx(x+20) |
| 78 | + |
| 79 | + if head.direction == "left": |
| 80 | + x = head.xcor() |
| 81 | + head.setx(x-20) |
| 82 | + |
| 83 | +wn.listen() |
| 84 | +wn.onkeypress(goup, "Up") |
| 85 | +wn.onkeypress(godown, "Down") |
| 86 | +wn.onkeypress(goleft, "Left") |
| 87 | +wn.onkeypress(goright, "Right") |
| 88 | + |
| 89 | + |
| 90 | +#Main Loop |
| 91 | +segments = [] |
| 92 | + |
| 93 | +while True: |
| 94 | + wn.update() |
| 95 | + #for collisions with border |
| 96 | + if head.xcor() > 290 or head.xcor() < -290 or head.ycor() > 290 or head.ycor() < -290: |
| 97 | + time.sleep(1) |
| 98 | + head.goto(0, 0) |
| 99 | + head.direction = "stop" |
| 100 | + |
| 101 | + #hiding segments of snake |
| 102 | + for segment in segments: |
| 103 | + segment.goto(1000,1000) |
| 104 | + #clearing the segments |
| 105 | + segments.clear() |
| 106 | + |
| 107 | + #reset score |
| 108 | + score = 0 |
| 109 | + |
| 110 | + #reset delay |
| 111 | + delay = 0.1 |
| 112 | + |
| 113 | + pen.clear() |
| 114 | + pen.write("Score : {} High Score : {} ".format( |
| 115 | + score, high_score), align="center", font=("Times New Roman", 24, "bold")) |
| 116 | + |
| 117 | + #checking collision with food |
| 118 | + if head.distance(food) < 20: |
| 119 | + x = random.randint(-270, 270) |
| 120 | + y = random.randint(-270, 270) |
| 121 | + food.goto(x, y) |
| 122 | + d = ["red","yellow","blue"] |
| 123 | + colors = random.choice(d) |
| 124 | + food.color(colors) |
| 125 | + e = ["circle","square","triangle"] |
| 126 | + shapes = random.choice(e) |
| 127 | + food.shape(shapes) |
| 128 | + |
| 129 | + |
| 130 | + #adding new segment |
| 131 | + new_segment = turtle.Turtle() |
| 132 | + new_segment.speed(0) |
| 133 | + new_segment.color("green") |
| 134 | + new_segment.shape("square") |
| 135 | + new_segment.penup() |
| 136 | + segments.append(new_segment) |
| 137 | + |
| 138 | + delay -= 0.001 |
| 139 | + score += 10 |
| 140 | + |
| 141 | + if score>high_score: |
| 142 | + high_score = score |
| 143 | + pen.clear() |
| 144 | + pen.write("Score : {} High Score : {} ".format( |
| 145 | + score, high_score), align="center", font=("Times New Roman", 24, "bold")) |
| 146 | + |
| 147 | + #moving segments in reverse order |
| 148 | + for i in range(len(segments)-1,0,-1): |
| 149 | + x = segments[i-1].xcor() |
| 150 | + y = segments[i-1].ycor() |
| 151 | + segments[i].goto(x,y) |
| 152 | + if len(segments) > 0: |
| 153 | + x = head.xcor() |
| 154 | + y = head.ycor() |
| 155 | + segments[0].goto(x, y) |
| 156 | + |
| 157 | + move() |
| 158 | + |
| 159 | + #Checking collisions with body |
| 160 | + for segment in segments: |
| 161 | + if segment.distance(head) < 20: |
| 162 | + time.sleep(1) |
| 163 | + head.goto(0,0) |
| 164 | + head.direction = "stop" |
| 165 | + |
| 166 | + #hide segments |
| 167 | + for segment in segments: |
| 168 | + segment.goto(1000,1000) |
| 169 | + segment.clear() |
| 170 | + |
| 171 | + score = 0 |
| 172 | + delay = 0.1 |
| 173 | + pen.clear() |
| 174 | + pen.write("Score : {} High Score : {} ".format( |
| 175 | + score, high_score), align="center", font=("Times New Roman", 24, "bold")) |
| 176 | + time.sleep(delay) |
| 177 | + |
| 178 | +turtle.done() |
| 179 | + |
0 commit comments