-
Notifications
You must be signed in to change notification settings - Fork 0
/
juegoserpiente.py
136 lines (107 loc) · 2.97 KB
/
juegoserpiente.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import turtle
import time
import msvcrt
import random
posponer = 0.1
#marcador
Score = 0
High_Score = 0
#configuracion de la ventana
wn = turtle.Screen()
wn.title('juego de snake')
wn.bgcolor('black')
wn.setup(width = 600, height = 600)
wn.tracer(0)
#cabexa serpiente
cabeza = turtle.Turtle()
cabeza.speed(0)
cabeza.shape("square")
cabeza.color("green")
cabeza.penup()
cabeza.goto(0,0)
cabeza.direccion = "stop"
#comida
comida = turtle.Turtle()
comida.speed(0)
comida.shape("circle")
comida.color("red")
comida.penup()
comida.goto(0,100)
#cuerpo serpiente
segmentos = []
#texto
texto = turtle.Turtle()
texto.speed(0)
texto.color("white")
texto.penup()
texto.hideturtle()
texto.goto(0,260)
texto.write("Score: 0 High Score: 0", align = "center", font = ("Courier", 24, "normal"))
#funciones
def arriba():
cabeza.direccion = "up"
def abajo():
cabeza.direccion = "down"
def izquierda():
cabeza.direccion = "left"
def derecha():
cabeza.direccion = "right"
def mov():
if cabeza.direccion == "up":
y = cabeza.ycor()
cabeza.sety(y + 20)
if cabeza.direccion == "down":
y = cabeza.ycor()
cabeza.sety(y - 20)
if cabeza.direccion == "left":
x = cabeza.xcor()
cabeza.setx(x - 20)
if cabeza.direccion == "right":
x = cabeza.xcor()
cabeza.setx(x + 20)
#teclado
wn.listen()
wn.onkeypress(arriba, "Up")
wn.onkeypress(abajo, "Down")
wn.onkeypress(izquierda, "Left")
wn.onkeypress(derecha, "Right")
while True:
wn.update()
#colisiones bordes
if cabeza.xcor() > 280 or cabeza.xcor() < -290 or cabeza.ycor() > 290 or cabeza.ycor() < -290:
time.sleep(1)
cabeza.goto(0,0)
cabeza.direccion = "stop"
#esconder los segmentos
for segmento in segmentos:
segmento.goto(1000,1000)
#colisiones comida
if cabeza.distance(comida) < 20:
x = random.randint(-280,280)
y = random.randint(-280,280)
comida.goto(x,y)
nuevo_segmento = turtle.Turtle()
nuevo_segmento.speed(0)
nuevo_segmento.shape("square")
nuevo_segmento.color("light green")
nuevo_segmento.penup()
segmentos.append(nuevo_segmento)
#aumentar el marcador
Score += 10
if Score > High_Score:
High_Score = Score
texto.clear()
texto.write("Score: {} High Score: {}".format(Score, High_Score), align = "center", font = ("Courier", 24, "normal"))
#mover el cuerpo de la serpiente
totalSeg = len(segmentos)
for index in range(totalSeg - 1, 0, -1):
x = segmentos[index - 1].xcor()
y = segmentos[index -1].ycor()
segmentos[index].goto(x,y)
if totalSeg > 0:
x = cabeza.xcor()
y = cabeza.ycor()
segmentos[0].goto(x,y)
mov()
time.sleep(posponer)
msvcrt.getch()