Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autonomy-payload
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SASC
autonomy-payload
Commits
c0ca7525
Commit
c0ca7525
authored
7 years ago
by
Davis, Duane T
Browse files
Options
Downloads
Patches
Plain Diff
MISSION_PLANNING: Added delayed attack and overwatch attack behaviors
parent
5f681adb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ap_mission_planning/src/swarm_manager_node.py
+4
-0
4 additions, 0 deletions
ap_mission_planning/src/swarm_manager_node.py
with
4 additions
and
0 deletions
ap_mission_planning/src/swarm_manager_node.py
+
4
−
0
View file @
c0ca7525
...
@@ -25,6 +25,8 @@ import autonomy_itar.pn_interceptor_plugin as pni
...
@@ -25,6 +25,8 @@ import autonomy_itar.pn_interceptor_plugin as pni
import
autonomy_itar.opportunistic_shooter_plugin
as
os
import
autonomy_itar.opportunistic_shooter_plugin
as
os
import
autonomy_itar.swarm_landing_sequencer_plugin
as
sls
import
autonomy_itar.swarm_landing_sequencer_plugin
as
sls
import
autonomy_itar.wave_attack_plugin
as
wa
import
autonomy_itar.wave_attack_plugin
as
wa
import
autonomy_itar.delayed_attack_plugin
as
da
import
autonomy_itar.overwatch_attack_plugin
as
owa
if
__name__
==
'
__main__
'
:
if
__name__
==
'
__main__
'
:
# Parse command line arguments
# Parse command line arguments
...
@@ -43,5 +45,7 @@ if __name__ == '__main__':
...
@@ -43,5 +45,7 @@ if __name__ == '__main__':
manager
.
add_behavior
(
enums
.
SWARM_SEQUENCE_LAND
,
"
swarm_landing_sequencer
"
,
sls
.
SwarmLandingSequencer
)
manager
.
add_behavior
(
enums
.
SWARM_SEQUENCE_LAND
,
"
swarm_landing_sequencer
"
,
sls
.
SwarmLandingSequencer
)
manager
.
add_behavior
(
enums
.
TACTIC_INTERFACE
,
"
tactic_interface
"
,
ti
.
TacticInterface
)
manager
.
add_behavior
(
enums
.
TACTIC_INTERFACE
,
"
tactic_interface
"
,
ti
.
TacticInterface
)
manager
.
add_behavior
(
enums
.
WAVE_ATTACK
,
"
wave_attack
"
,
wa
.
WaveAttack
)
manager
.
add_behavior
(
enums
.
WAVE_ATTACK
,
"
wave_attack
"
,
wa
.
WaveAttack
)
manager
.
add_behavior
(
enums
.
DELAYED_ATTACK
,
"
delayed_attack
"
,
da
.
DelayedAttack
)
manager
.
add_behavior
(
enums
.
OVERWATCH_ATTACK
,
"
overwatch_attack
"
,
owa
.
OverwatchAttack
)
manager
.
runAsNode
(
10.0
)
manager
.
runAsNode
(
10.0
)
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