[ ] Test if goalie performs better with higher acceleration and max velocity
[ ] If per-tactic acceleration and velocity constraints are beneficial, implement a way of setting RobotConstants for robots when they are initialized in SensorFusion
[ ] If per-tactic acceleration and velocity constraints are beneficial, add unit tests to sensor_fusion_test.cpp for the new behaviour introduced for installing new RobotConstants for goalie robots
Description of the task
Currently, all of our robots share acceleration and max velocity constraints (found here).
It may make sense to increase these values for the goalie robot to improve its goalkeeping ability.
Approach:
RobotConstants
with the updated max velocity and acceleration constraints for the goalie.RobotFilter
to keep track of theRobotConstants
to use for each robot. The goalie robot should have the goalieRobotConstants
.RobotConstants
to each robot throughSensorFusion
by updatingfriendly_team_filter
and therobot_filter
.Acceptance criteria
RobotConstants
for robots when they are initialized inSensorFusion
sensor_fusion_test.cpp
for the new behaviour introduced for installing newRobotConstants
for goalie robotsBlocked By