Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Flatland
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
yoogottamk
Flatland
Commits
3fb9336b
Commit
3fb9336b
authored
5 years ago
by
hagrid67
Browse files
Options
Downloads
Patches
Plain Diff
added add_agent function to RailEnv for editor
parent
72ed5063
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
examples/play_model.py
+1
-1
1 addition, 1 deletion
examples/play_model.py
flatland/envs/rail_env.py
+10
-9
10 additions, 9 deletions
flatland/envs/rail_env.py
flatland/utils/editor.py
+5
-10
5 additions, 10 deletions
flatland/utils/editor.py
with
16 additions
and
20 deletions
examples/play_model.py
+
1
−
1
View file @
3fb9336b
...
...
@@ -149,7 +149,7 @@ def main(render=True, delay=0.0):
for
trials
in
range
(
1
,
n_trials
+
1
):
# Reset environment
#
obs = env.reset()
obs
=
env
.
reset
()
for
a
in
range
(
env
.
number_of_agents
):
norm
=
max
(
1
,
max_lt
(
obs
[
a
],
np
.
inf
))
...
...
This diff is collapsed.
Click to expand it.
flatland/envs/rail_env.py
+
10
−
9
View file @
3fb9336b
...
...
@@ -508,6 +508,7 @@ class RailEnv(Environment):
for
move_index
in
range
(
4
):
if
moves
[
move_index
]:
valid_movements
.
append
((
direction
,
move_index
))
# print("pos", rcPos, "targ", rcTarget, "valid movements", valid_movements)
valid_starting_directions
=
[]
for
m
in
valid_movements
:
...
...
@@ -527,15 +528,15 @@ class RailEnv(Environment):
if
rcPos
is
None
:
rcPos
=
np
.
random
.
choice
(
len
(
self
.
valid_positions
))
# iAgent = self.number_of_agents
self
.
number_of_agents
+=
1
self
.
env
.
agents_position
.
append
(
rcPos
)
self
.
env
.
agents_handles
.
append
(
max
(
self
.
env
.
agents_handles
+
[
-
1
])
+
1
)
# max(handles) + 1, starting at 0
self
.
env
.
agents_direction
.
append
(
0
)
self
.
env
.
agents_target
.
append
(
rcPos
)
# set the target to the origin initially
iAgent
=
self
.
number_of_agents
self
.
agents_position
.
append
(
tuple
(
rcPos
))
# ensure it's a tuple not a list
self
.
agents_handles
.
append
(
max
(
self
.
agents_handles
+
[
-
1
])
+
1
)
# max(handles) + 1, starting at 0
self
.
agents_direction
.
append
(
0
)
self
.
agents_target
.
append
(
rcPos
)
# set the target to the origin initially
self
.
number_of_agents
+=
1
self
.
check_agent_lists
()
return
iAgent
def
reset
(
self
,
regen_rail
=
True
,
replace_agents
=
True
):
if
regen_rail
or
self
.
rail
is
None
:
...
...
@@ -572,12 +573,12 @@ class RailEnv(Environment):
re_generate
=
False
for
i
in
range
(
self
.
number_of_agents
):
direction
=
self
.
pick_agent_direction
(
self
.
agents_position
[
i
],
self
.
agents_target
)
direction
=
self
.
pick_agent_direction
(
self
.
agents_position
[
i
],
self
.
agents_target
[
i
]
)
if
direction
is
None
:
re_generate
=
True
break
else
:
self
.
agents_direction
=
direction
self
.
agents_direction
[
i
]
=
direction
# Jeremy extracted this into the method pick_agent_direction
if
False
:
...
...
This diff is collapsed.
Click to expand it.
flatland/utils/editor.py
+
5
−
10
View file @
3fb9336b
...
...
@@ -79,20 +79,15 @@ class JupEditor(object):
rcCell
=
((
array
([
y
,
x
])
-
self
.
yxBase
)
/
self
.
nPixCell
).
astype
(
int
)
if
self
.
drawMode
==
"
Origin
"
:
self
.
env
.
add_agent
(
rcCell
,
rcCell
,
0
)
# self.iAgent = len(self.env.agents_position)
# self.env.agents_position.append(rcCell)
# self.env.agents_handles.append(max(self.env.agents_handles + [-1]) + 1)
# self.env.agents_direction.append(0)
# self.env.agents_target.append(rcCell) # set the target to the origin initially
# self.env.number_of_agents = self.iAgent + 1
self
.
iAgent
=
self
.
env
.
add_agent
(
rcCell
,
rcCell
,
0
)
self
.
drawMode
=
"
Destination
"
self
.
player
=
None
# will need to start a new player
elif
self
.
drawMode
==
"
Destination
"
and
self
.
iAgent
is
not
None
:
self
.
env
.
agents_target
[
self
.
iAgent
]
=
rcCell
self
.
drawMode
=
"
Origin
"
self
.
log
(
"
agent
"
,
self
.
drawMode
,
self
.
iAgent
,
rcCell
)
#
self.log("agent", self.drawMode, self.iAgent, rcCell)
self
.
redraw
()
...
...
@@ -259,7 +254,7 @@ class JupEditor(object):
def
step_event
(
self
,
event
=
None
):
if
self
.
player
is
None
:
self
.
player
=
Player
(
self
.
env
)
self
.
env
.
reset
(
regen_rail
=
False
)
self
.
env
.
reset
(
regen_rail
=
False
,
replace_agents
=
False
)
self
.
player
.
step
()
self
.
redraw
()
...
...
@@ -275,7 +270,7 @@ class JupEditor(object):
def
bg_updater
(
self
):
try
:
for
i
in
range
(
20
):
self
.
log
(
"
step
"
,
i
)
#
self.log("step ", i)
self
.
step_event
()
time
.
sleep
(
0.2
)
finally
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment