Difference between revisions of "Averaged Bearing Offset Targeting"

From Robowiki
Jump to navigation Jump to search
(new Averaged Bearing Offset Targeting page, lean and mean)
(No difference)

Revision as of 05:29, 13 November 2007

An early form of statistical targeting that fires at the average of each recorded bearing offset that would have successfully hit the enemy. This is one of the simplest forms of statistical targeting.

Pseudo-code

  • Each tick or each time you fire a bullet, fire a Wave to gather a bearing offset that would have hit the enemy.
    • A wave consists of: firing bot's position, bearing to enemy at fire time, the wave's velocity (based on velocity of current bullet power), and the wave's distance traveled.
    • Each tick, advance all active waves by their velocity. A wave "hits" when the distance traveled exceeds the distance from the wave source to the enemy's current location.
    • The bearing offset gathered is the bearing from the wave source to the new enemy location minus the original bearing to the enemy.
  • Keep an average of all bearing offsets gathered and use this average as your firing angle.

See also