Skip to content
Snippets Groups Projects
Commit bbf582e6 authored by hagrid67's avatar hagrid67
Browse files

add remove_deadends flag to set_transition

in Grid4Transition.
Add has_deadend and remove_deadends() in RailEnvTransitions.
(should they be in RailEnv or Grid4...?)
parent 84cd5f10
No related branches found
No related tags found
No related merge requests found
...@@ -253,8 +253,7 @@ class Grid4Transitions(Transitions): ...@@ -253,8 +253,7 @@ class Grid4Transitions(Transitions):
""" """
return ((cell_transition >> ((4 - 1 - orientation) * 4)) >> (4 - 1 - direction)) & 1 return ((cell_transition >> ((4 - 1 - orientation) * 4)) >> (4 - 1 - direction)) & 1
def set_transition(self, cell_transition, orientation, direction, def set_transition(self, cell_transition, orientation, direction, new_transition, remove_deadends=False):
new_transition):
""" """
Set the transition bit (1 value) that determines whether an agent Set the transition bit (1 value) that determines whether an agent
oriented in direction `orientation' and inside a cell with transitions oriented in direction `orientation' and inside a cell with transitions
...@@ -271,7 +270,8 @@ class Grid4Transitions(Transitions): ...@@ -271,7 +270,8 @@ class Grid4Transitions(Transitions):
Direction of movement whose validity is to be tested. Direction of movement whose validity is to be tested.
new_transition : int new_transition : int
Validity of the requested transition: 0/1 allowed/not allowed. Validity of the requested transition: 0/1 allowed/not allowed.
remove_deadends -- boolean, default False
remove all deadend transitions.
Returns Returns
------- -------
int int
...@@ -285,6 +285,9 @@ class Grid4Transitions(Transitions): ...@@ -285,6 +285,9 @@ class Grid4Transitions(Transitions):
else: else:
cell_transition &= ~(1 << ((4 - 1 - orientation) * 4 + (4 - 1 - direction))) cell_transition &= ~(1 << ((4 - 1 - orientation) * 4 + (4 - 1 - direction)))
if remove_deadends:
cell_transition = self.remove_deadends(cell_transition)
return cell_transition return cell_transition
def rotate_transition(self, cell_transition, rotation=0): def rotate_transition(self, cell_transition, rotation=0):
...@@ -548,6 +551,10 @@ class RailEnvTransitions(Grid4Transitions): ...@@ -548,6 +551,10 @@ class RailEnvTransitions(Grid4Transitions):
super(RailEnvTransitions, self).__init__( super(RailEnvTransitions, self).__init__(
transitions=self.transition_list transitions=self.transition_list
) )
# These bits represent all the possible dead ends
self.maskDeadEnds = 0b0010000110000100
# create this to make validation faster # create this to make validation faster
self.transitions_all = [] self.transitions_all = []
for index, trans in enumerate(self.transitions): for index, trans in enumerate(self.transitions):
...@@ -621,11 +628,11 @@ class RailEnvTransitions(Grid4Transitions): ...@@ -621,11 +628,11 @@ class RailEnvTransitions(Grid4Transitions):
return False return False
def has_deadend(self, cell_transition): def has_deadend(self, cell_transition):
binDeadends = 0b0010000110000100 if cell_transition & self.maskDeadEnds > 0:
if cell_transition & binDeadends > 0:
return True return True
else: else:
return False return False
# def remove_deadends(self, cell_transition) def remove_deadends(self, cell_transition):
cell_transition &= cell_transition & (~self.maskDeadEnds) & 0xffff
\ No newline at end of file return cell_transition
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment