Testing other envs...
This commit is contained in:
parent
fe6cb991dd
commit
9619ce21a1
@ -7,8 +7,8 @@ from observables import Observable, CnnObservable
|
|||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
#env = ColumbusTest3_1()
|
#env = ColumbusTest3_1(fps=30)
|
||||||
env = ColumbusEasyObstacles(fps=30)
|
env = ColumbusEasierObstacles(fps=30)
|
||||||
env.start_pos = [0.6, 0.3]
|
env.start_pos = [0.6, 0.3]
|
||||||
playEnv(env)
|
playEnv(env)
|
||||||
env.close()
|
env.close()
|
||||||
@ -22,17 +22,6 @@ def playEnv(env):
|
|||||||
t1 = time()
|
t1 = time()
|
||||||
env.render()
|
env.render()
|
||||||
pos = (0.5, 0.5)
|
pos = (0.5, 0.5)
|
||||||
for event in pygame.event.get():
|
|
||||||
pass
|
|
||||||
keys = pygame.key.get_pressed()
|
|
||||||
if to == 0:
|
|
||||||
to = int(env.fps/2)
|
|
||||||
if keys[pygame.K_m]:
|
|
||||||
env.draw_entities = not env.draw_entities
|
|
||||||
else:
|
|
||||||
to = 0
|
|
||||||
else:
|
|
||||||
to -= 1
|
|
||||||
pos = pygame.mouse.get_pos()
|
pos = pygame.mouse.get_pos()
|
||||||
pos = (min(max((pos[0]-env.joystick_offset[0]-20)/60, 0), 1),
|
pos = (min(max((pos[0]-env.joystick_offset[0]-20)/60, 0), 1),
|
||||||
min(max((pos[1]-env.joystick_offset[1]-20)/60, 0), 1))
|
min(max((pos[1]-env.joystick_offset[1]-20)/60, 0), 1))
|
||||||
|
Loading…
Reference in New Issue
Block a user