-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrainRobot_1.0.py
269 lines (225 loc) · 7.24 KB
/
trainRobot_1.0.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
import pygame, pygbutton, sys, math, numpy
from math import pi
from pygame.locals import *
import gradients
FPS = 30
pygame.init()
WIDTH = 700
HEIGHT = 700
size = [WIDTH, HEIGHT]
screen = pygame.display.set_mode(size)
#pygame.display.set_caption('Training')
#Colors
BLACK = ( 0, 0, 0)
WHITE = (255, 255, 255)
BLUE = ( 0, 0, 255)
GREEN = ( 0, 255, 0)
RED = (255, 0, 0)
GREY = (192, 192, 192)
MOVE_SIZE = (500, 500)
#Background
background = pygame.Surface(screen.get_size())
background = background.convert()
background.fill(WHITE)
centerx = background.get_rect().centerx
centery = background.get_rect().centery
#Boxes
boxUp = [centerx-75, centerx+75, centery-100, centery-250]
boxRight = [centerx+75, centerx+255, centery+50, centery-100]
boxDown = [centerx-75, centerx+75, centery+200, centery+50]
boxLeft = [centerx-225, centerx-75, centery+50, centery-100]
#Arrow positions
up = [[centerx, centery-250], [centerx-75, centery-100], [centerx+75, centery-100]]
right = [[centerx+225, centery-25], [centerx+75, centery+50], [centerx+75, centery-100]]
down = [[centerx, centery+200], [centerx-75, centery+50], [centerx+75, centery+50]]
left = [[centerx-225, centery-25], [centerx-75, centery+50], [centerx-75, centery-100]]
#Hands
#hand = pygame.image.load('hand.png')
#handScaled = pygame.transform.scale(hand, (400, 200))
#handRight = handScaled
#handLeft = pygame.transform.flip(handScaled, True, False)
#handDown = pygame.transform.rotate(handScaled, -90)
#handUp = pygame.transform.rotate(handScaled, 90)
handOpen = pygame.transform.scale(pygame.image.load('open.png'), MOVE_SIZE)
handClose = pygame.transform.scale(pygame.image.load('closed.png'), MOVE_SIZE)
feetOpen = pygame.transform.scale(pygame.image.load('feetOne.png'), MOVE_SIZE)
feetClosed = pygame.transform.scale(pygame.image.load('feetTwo.png'), MOVE_SIZE)
leftOpen = pygame.transform.rotate(handOpen, 90)
rightOpen = pygame.transform.flip(pygame.transform.rotate(handOpen, -90), False, True)
leftClose = pygame.transform.rotate(handClose, 90)
rightClose = pygame.transform.flip(pygame.transform.rotate(handClose, -90), False, True)
#Dictionaries
handRight = {'open':rightOpen, 'close':rightClose}
handLeft = {'open':leftOpen, 'close':leftClose}
feet = {'open':feetOpen, 'close':feetClosed}
moves = {'right':handRight, 'left':handLeft, 'up':feet}
colors = {'right':RED, 'left':BLUE, 'up':GREEN}
colorsXY = {'up': (0, 0, WIDTH, 200), 'left': (0, 0, 200, HEIGHT), 'right': (WIDTH-200, 0, 200, HEIGHT)}
#Buttons
buttonTrain = pygbutton.PygButton((centerx-80, 600, 70, 30), 'Train')
buttonPractice = pygbutton.PygButton((centerx+10, 600, 70, 30), 'Practice')
def drawButtons():
buttonPractice.draw(background)
buttonTrain.draw(background)
def drawUp(color):
pygame.draw.polygon(background, color, up)
pygame.draw.polygon(background, BLACK, up, 3)
def drawRight(color):
pygame.draw.polygon(background, color, right)
pygame.draw.polygon(background, BLACK, right, 3)
def drawDown(color):
pygame.draw.polygon(background, color, down)
pygame.draw.polygon(background, BLACK, down, 3)
def drawLeft(color):
pygame.draw.polygon(background, color, left)
pygame.draw.polygon(background, BLACK, left, 3)
def offArrows():
drawUp(GREY)
drawRight(GREY)
#drawDown(GREY)
drawLeft(GREY)
def paintArrow(arrow, color):
pygame.draw.polygon(background, color, arrow)
pygame.draw.polygon(background, BLACK, arrow, 3)
def clickArrow(move, arrow):
paintArrow(arrow, colors[move])
def deactivateArrow():
if active != None:
paintArrow(active, GREY)
def paintMove(move, state, x, y):
move = moves[move][state]
background.blit(move, (x, y))
def paintColor(move):
begin = (0, 0, 255,255)
end = (0, 0, 0, 0)
coor = colorsXY[move]
gradient = getGradient(move, colors[move], (coor[2], coor[3]))
background.blit(gradient, (coor[0], coor[1]))
#pygame.draw.rect(background, colors[move], colorsXY[move])
def getGradient(move, color, coor):
white = (WHITE[0], WHITE[1], WHITE[2], 0)
theColor = (color[0], color[1], color[2], 255)
if move == 'up':
begin = theColor
end = white
return gradients.vertical(coor, begin, end)
elif move == 'left':
begin = theColor
end = white
return gradients.horizontal(coor, begin, end)
elif move == 'right':
begin = white
end = theColor
return gradients.horizontal(coor, begin, end)
def resetTraining():
offArrows()
drawButtons()
updateScreen()
def animateMove(move):
background.fill(WHITE)
moveX = centerx-(MOVE_SIZE[0]/2)
moveY = centery-(MOVE_SIZE[0]/2)
beginTime = pygame.time.get_ticks()
state = False
while(pygame.time.get_ticks()-beginTime < 5000):
background.fill(WHITE)
paintColor(move)
if state:
paintMove(move, 'close', moveX, moveY)
state = False
else:
paintMove(move, 'open', moveX, moveY)
state = True
writeTitle(move)
updateScreen()
pygame.time.delay(200)
background.fill(WHITE)
resetTraining()
#def trainArrow(arrow):
# paintArrow(arrow, GREEN)
# screen.blit(background, (0,0))
# pygame.display.flip()
# pygame.time.delay(5000)
# paintArrow(arrow, GREY)
# active = None
def writeTitle(title):
font = pygame.font.Font(None, 40)
text = font.render(title.upper(), 1, BLACK)
textpos = text.get_rect()
textpos.centerx = centerx
textpos.centery = 50
background.blit(text, textpos)
def getBox(arrow):
if arrow == up:
return boxUp
elif arrow == right:
return boxRight
elif arrow == down:
return boxDown
elif arrow == left:
return boxLeft
def isCollision(arrow, pos):
posX, posY = pos
box = getBox(arrow)
x = [box[0], box[1]]
y = [box[2], box[3]]
minX = min(x)
maxX = max(x)
minY = min(y)
maxY = max(y)
insideX = posX > minX and posX < maxX
insideY = posY > minY and posY < maxY
if insideX and insideY:
return True
else:
return False
def updateScreen():
screen.blit(background, (0,0))
pygame.display.flip()
resetTraining()
updateScreen()
done = False
active = None
while not done:
for event in pygame.event.get():
if event.type == QUIT or (event.type == KEYDOWN and event.key == K_ESCAPE):
pygame.quit()
sys.exit()
done = True
#elif 'click' in buttonTrain.handleEvent(event):
# print("hola")
elif event.type == pygame.MOUSEBUTTONUP:
eventPractice = buttonPractice.handleEvent(event)
eventTrain = buttonTrain.handleEvent(event)
## if mouse is pressed get position of cursor ##
pos = pygame.mouse.get_pos()
## check if cursor is on button ##
if isCollision(up, pos):
deactivateArrow()
clickArrow('up', up)
active = up
elif isCollision(right, pos):
deactivateArrow()
clickArrow('right', right)
active = right
#elif isCollision(down, pos):
# deactivateArrow()
# clickArrow(down)
# active = down
elif isCollision(left, pos):
deactivateArrow()
clickArrow('left', left)
active = left
elif len(eventTrain) > 0 and eventTrain[0] == 'enter' and active != None:
#trainArrow(active)
if active == up:
tempMove = 'up'
elif active == left:
tempMove = 'left'
elif active == right:
tempMove = 'right'
animateMove(tempMove)
elif len(eventPractice) > 0 and eventPractice[0] == 'enter':
print('practice')
updateScreen()
pygame.quit()