-
Notifications
You must be signed in to change notification settings - Fork 4
Routines
Double jumps then boosts up into the air on a flight path towards ball_intercept
at intercept_time
.
Can hit the ball above 300uus.
Uses a lot of boost. Depending on the situation, it can hit the ball very hard. Fairly accurate, but it might hit the ball a little higher than expected.
-
ball_intercept
- AVector
. -
intercept_time
- A number.
Uses both the initial jump and the dodge to gain height, then hits the ball.
Can hit the ball when it's between 250uus and 551uus.
Uses a modest amount of boost, but boost isn't required. When available, it will use it to get to the ball faster and hit it harder. Can't hit the ball very hard. Isn't very accurate.
-
ball_location
- AVector
. -
intercept_time
- A number. -
shot_vector
- AVector
. This describes the direction that the bot should hit the ball in in order for it to go towards the target. -
best_shot_value
- A number. The offset from the center of the ball that the bot can still hit the ball from. Seebest_shot_value
underVirxERLU
inutil/agent.py
.
Uses the initial jump to gain height (if needed) then uses it's dodge to hit the ball with power in a certain direction.
Can hit the ball from the ground up to 300uus, and can hit the ball while driving backwards.
Uses a modest amount of boost, but boost isn't required. When available, it will use it to get to the ball faster. Will hit the ball very hard, if given the opportunity. Extremely accurate, when given enough time.
-
ball_location
- AVector
. -
intercept_time
- A number. -
shot_vector
- AVector
. This describes the direction that the bot should hit the ball in in order for it to go towards the target. -
best_shot_value
- A number. The offset from the center of the ball that the bot can still hit the ball from. Seebest_shot_value
underVirxERLU
inutil/agent.py
.
Uses flips, boost and throttle to driving at the ball and hit it. Estimates a intercept location on it's own, and it will climb walls to reach the ball.
It can only hit the ball when it's very close to the ground.
Uses a modest amount of boost, but boost isn't required. When available, it will use it to get to the ball faster. Will hit the ball semi-hard if it's lucky. If it's on the right side of the ball, it's kind of accurate.
-
target
- AVector
that this routine will try to put the ball between.
Uses flips, boost and throttle to driving at the ball and hit it.
It can only hit the ball when it's very close to the ground.
Uses a modest amount of boost, but boost isn't required. When available, it will use it to get to the ball faster. Will hit the ball semi-hard if it's lucky. Doesn't consider where it's hitting the ball.
-
exit_distance
- Distance from the ball that the bot will exit the routine at. Default is 500. -
exit_flip
- IfTrue
, then when the bot exits the routine it will flip at the ball. Default isTrue
.
Goes towards the stationary target
, and tries to face vector
. Brakes to slow down the bot right on the location, if brake
is True
.
-
target
- AVector
. -
vector
- AVector
. IfNone
, then the bot will just go towardstarget
. -
brake
- A boolean. IfTrue
, it will do a bit of math to determine the exact point to start braking that will have the bot stop extremely close totarget
.
Brings the bot back to it's goal. If there's more than 1 bot on it's team, it will compensate.
If used in the offensive zone, it puts the bot in the ideal position to put the ball into the goal.
If used in the defensive zone, it puts the bot in the ideal position to prevent the ball from going into the goal.
Uses goto
's pathfinding, but has a few extra triggers related to boost pads.
Drives at the ball with a full throttle while boosting. Flips into it when it gets close.
Does a wave dash forwards.
Flips towards vector
.
-
vector
- AVector
in local coordinates to flip towards. Seelocal_location
undercar_object
inutil/agent.py
. -
cancel
- Causes the flip to cancel halfway through. This can be used to do a half-flip. Default isFalse
.
Has the bot jump and face target
, or the ball if ball
is True
.
You only need to define target
or set ball
to True
.
-
target
- AVector
. -
ball
- A boolean.
Uses recovery, but has it face the ball instead of a static target.
Orients the bot for a clean landing on the ground or the ceiling, and facing target
.
-
target
- AVector
. If not defined, then the bot will simply right itself. Default isNone
.
Applies the brakes to slow down the car.