-
Notifications
You must be signed in to change notification settings - Fork 0
/
Robot.py
285 lines (260 loc) · 7.6 KB
/
Robot.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
from tkinter import *
from tkinter import messagebox
import os
import time
from threading import Thread
import threading
import winsound
import serial
class Robot:
#Inicializa una instancia
#E: nombre, imagen, posición en x, posición en y
#S: instancia del objeto Robot
#R: ---
def __init__(self, nom, img, xpos, ypos):
self.nom = nom
self.img = img + ".gif"
self.xpos = xpos
self.ypos = ypos
#Define la imagen de la instancia de Robot
#E: string
#S: ---
#R: ---
def set_img(self, img):
self.img = img + ".gif"
#Retorna la imagen de la instancia de Robot
#E: ---
#S: imagen
#R: ---
def get_img(self):
return self.img
#Retorna el nombre de la instancia de Robot
#E: ---
#S: nombre
#R: ---
def get_nom(self):
return self.nom
#Define la posición en el eje x de la instancia de Robot
#E: num
#S: ---
#R: ---
def set_xpos(self, xpos):
self.xpos = xpos
#Retorna la posición en el eje x de la instancia de Robot
#E: ---
#S: posición en el eje x
#R: ---
def get_xpos(self):
return self.xpos
#Define la posición en el eje y de la instancia de Robot
#E: num
#S: ---
#R: ---
def set_ypos(self, ypos):
self.ypos = ypos
#Retorna la posición en el eje y de la instancia de Robot
#E: ---
#S: posición en el eje y
#R: ---
def get_ypos(self):
return self.ypos
#Mueve a la izquierda al robot
#E: ---
#S: ---
#R: ---
def izq(self):
try:
robot.set_img("22")
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.01)
self.xpos = self.get_xpos() - 5
lbl.place(x=self.get_xpos(), y=self.get_ypos())
time.sleep(0.01)
robot.set_img("21")
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.01)
self.xpos = self.get_xpos() - 5
lbl.place(x=self.get_xpos(), y=self.get_ypos())
time.sleep(0.01)
except Exception as errtxt:
print("Error en hilo")
#Hilo para la función self.izq()
#E: ---
#S: Inicia un hilo
#R: ---
def ver_izq(self):
a = Thread(target=self.izq, args=())
a.start()
#Mueve a la derecha al robot
#E: ---
#S: ---
#R: ---
def der(self):
try:
robot.set_img("1")
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.01)
self.xpos = self.get_xpos() + 5
lbl.place(x=self.get_xpos(), y=self.get_ypos())
time.sleep(0.01)
robot.set_img("0")
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.01)
self.xpos = self.get_xpos() + 5
lbl.place(x=self.get_xpos(), y=self.get_ypos())
time.sleep(0.01)
except Exception as errtxt:
print("Error en hilo")
#Hilo para la función self.der()
#E: ---
#S: Inicia un hilo
#R: ---
def ver_der(self):
b = Thread(target=self.der, args=())
b.start()
#Pone a bailar al robot
#E: ---
#S: ---
#R: ---
def dance(self):
imgnum = 7
ciclo = 0
try:
while ciclo < 3:
if imgnum == 17:
ciclo += 1
imgnum = 9
robot.set_img(str(imgnum))
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.1)
imgnum += 1
robot.set_img("7")
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.1)
except Exception as errtxt:
print("Error en hilo")
#Hilo para la función self.dance()
#E: ---
#S: Inicia un hilo
#R: ---
def ver_dance(self):
c = Thread(target=self.dance, args=())
c.start()
#Inicia / Detiene la reproducción de música
#E: ---
#S: Reproduce o detiene la música
#R: ---
def music(self):
global musica
musica += 1
if musica % 2 == 1:
winsound.PlaySound('C:\\Users\\este0\\PycharmProjects\\Progra\\Material\\SuperMoon.wav',
winsound.SND_ASYNC | winsound.SND_LOOP)
else:
winsound.PlaySound(None, winsound.SND_PURGE)
#El robot se presenta
#E: ---
#S: Reproduce audio
#R: ---
def presentation(self):
winsound.PlaySound('C:\\Users\\este0\\PycharmProjects\\Progra\\Material\\Sony.wav', winsound.SND_ASYNC)
self.ver_hablar()
#Animación del robot hablando
#E: ---
#S: ---
#R: ---
def hablar(self):
imgnum = 2
ciclo = 0
try:
while ciclo < 7:
if imgnum == 4:
ciclo += 1
imgnum = 2
robot.set_img(str(imgnum))
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.25)
imgnum += 1
robot.set_img("0")
img = cargarImagen(robot.get_img())
lbl.configure(image=img)
lbl.image = img
time.sleep(0.25)
except Exception as errtxt:
print("Error en hilo")
#Hilo para la función self.hablar()
#E: ---
#S: Inicia un hilo
#R: ---
def ver_hablar(self):
d = Thread(target=self.hablar, args=())
d.start()
robot = Robot("Sony", "0", 300, 0)
musica = 0
#Carga una imagen en la carptea 'Material'
#E: string
#S: Una imagen
#R: ---
def cargarImagen(nombre):
ruta = os.path.join('Material', nombre)
imagen = PhotoImage(file=ruta)
return imagen
root = Tk()
root.title('Sony')
root.minsize(1000, 500)
root.resizable(NO, NO)
cont = Canvas(root, width=1000, height=500, bg="#000000")
cont.place(x=0, y=0)
img = cargarImagen(robot.get_img())
lbl = Label(cont, bg="#000000", image=img, width=400, height=500)
lbl.place(x=robot.get_xpos(), y=robot.get_ypos())
lbl.image = img
ser = serial.Serial('COM3', 9600, timeout=0)
#Función con 2 usos: 1) leer los datos entrantes del arduino; 2) Reproducir acciones de acuerdo a los datos entrantes
#E: ---
#S: Reproduce funciones
#R: ---
def leerArduino():
while 1:
try:
entrada = str(ser.readline());
datos = str (entrada)
datos = int(datos[2])
print(datos)
if datos == 1:
robot.ver_izq()
if datos == 2:
robot.ver_dance()
if datos == 3:
robot.presentation()
if datos == 4:
robot.music()
if datos == 5:
robot.ver_der()
time.sleep(0.1)
except:
print('Data could not be read')
time.sleep(0.1)
#Hilo para la función leerArduino()
#E: ---
#S: Inicia un hilo
#R: ---
def verArduino():
e = Thread(target=leerArduino, args=())
e.start()
verArduino()
root.mainloop()