diff --git a/flatland/utils/render_qt.py b/flatland/utils/render_qt.py index 60e147d05aa3761bfe3319b3b315aa2a0f8f73c4..0f3a0f899e106f71e8a4f14a4bafbb7ed7589efd 100644 --- a/flatland/utils/render_qt.py +++ b/flatland/utils/render_qt.py @@ -218,7 +218,6 @@ class QTSVG(GraphicsLayer): self.lwAgents[iAgent] = svgWidget self.agents_prev[iAgent] = EnvAgent((row, col), iDirOut, (0, 0), old_direction=iDirIn) self.layout.addWidget(svgWidget, row, col) - # print("Created ", iAgent, row, col) def show(self, block=False): self.wMain.update() diff --git a/flatland/utils/rendertools.py b/flatland/utils/rendertools.py index a0398f258d6ddff8a879e05192671f1bef9343ac..d17bbef855e1cfcc9c62dea00d043018d8ec237d 100644 --- a/flatland/utils/rendertools.py +++ b/flatland/utils/rendertools.py @@ -764,12 +764,18 @@ class RenderTool(object): iAction = action_dict[iAgent] new_direction, action_isValid = self.env.check_action(agent, iAction) - if action_isValid: - self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction, color=oColor) + + # ** TODO *** + # why should we only update if the action is valid ? + if False: + if action_isValid: + self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction, color=oColor) + else: + pass + # print("invalid action - agent ", iAgent, " bend ", agent.direction, new_direction) + # self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction) else: - pass - # print("invalid action - agent ", iAgent, " bend ", agent.direction, new_direction) - # self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction) + self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction, color=oColor) self.gl.show() for i in range(3):