-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c14854
commit 84399cf
Showing
10 changed files
with
207 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
version: "1.0" | ||
|
||
# Specify default values | ||
defaults: | ||
terminal: gnome | ||
environment: | ||
some_variable: some_value | ||
|
||
# Processes that are run before entities are launched | ||
processes: | ||
- name: roscore | ||
command: roscore | ||
terminal: none | ||
post_delay: 1.5 | ||
|
||
- name: map_server | ||
command: stdbuf -oL roslaunch scrimmage_ros map_server.launch | ||
terminal: none | ||
|
||
# Processes that are run for each entity type | ||
entity_processes: | ||
- type: car | ||
processes: | ||
- name: 'entity{{ id }}' | ||
command: 'stdbuf -oL roslaunch scrimmage_ros entity_nav_2d.launch team_id:=1 entity_id:={{ id }}' | ||
|
||
# Clean up commands run for each entity | ||
clean_up: | ||
- name: hello | ||
command: 'echo "Goodbye, Entity {{ id }}' | ||
|
||
# Overall clean up commands (run once) | ||
clean_up: |
Oops, something went wrong.