Skip to content
Snippets Groups Projects
Commit d41c0448 authored by Davis, Duane T's avatar Davis, Duane T
Browse files

LIB: Added HAIL_BEHAVIOR enumeration to dictionary objects

parent bf9d61f7
No related branches found
No related tags found
No related merge requests found
Pipeline #1050 failed
...@@ -166,7 +166,8 @@ SWARM_BHVRS = { SWARM_STANDBY: 'Standby', \ ...@@ -166,7 +166,8 @@ SWARM_BHVRS = { SWARM_STANDBY: 'Standby', \
DELAYED_ATTACK: 'Delayed Grnd Attack', \ DELAYED_ATTACK: 'Delayed Grnd Attack', \
OVERWATCH_ATTACK: 'Overwatch Grnd Attack', \ OVERWATCH_ATTACK: 'Overwatch Grnd Attack', \
DEFEND_AND_ATTACK: 'Defend and Grnd Attack', \ DEFEND_AND_ATTACK: 'Defend and Grnd Attack', \
FIXED_TURN: 'Fixed Turn' } FIXED_TURN: 'Fixed Turn', \
HAIL_PASSTHROUGH: 'HAIL Behavior' }
SWARM_BHVR_VALUES = { 'Standby': SWARM_STANDBY, \ SWARM_BHVR_VALUES = { 'Standby': SWARM_STANDBY, \
'Line Formation': SWARM_LINEAR_FORMATION, \ 'Line Formation': SWARM_LINEAR_FORMATION, \
...@@ -193,7 +194,8 @@ SWARM_BHVR_VALUES = { 'Standby': SWARM_STANDBY, \ ...@@ -193,7 +194,8 @@ SWARM_BHVR_VALUES = { 'Standby': SWARM_STANDBY, \
'Delayed Grnd Attack': DELAYED_ATTACK, \ 'Delayed Grnd Attack': DELAYED_ATTACK, \
'Overwatch Grnd Attack': OVERWATCH_ATTACK, \ 'Overwatch Grnd Attack': OVERWATCH_ATTACK, \
'Defend and Grnd Attack':DEFEND_AND_ATTACK, \ 'Defend and Grnd Attack':DEFEND_AND_ATTACK, \
'Fixed Turn': FIXED_TURN } 'Fixed Turn': FIXED_TURN, \
'HAIL Behavior': HAIL_PASSTHROUGH }
# Enumeration for swarming states # Enumeration for swarming states
PRE_FLIGHT = 0 # Powered on, going through pre-fllight checks PRE_FLIGHT = 0 # Powered on, going through pre-fllight checks
......
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