Difference between revisions of "GuessFactor"

From Robowiki
Jump to navigation Jump to search
m (Fixing typos)
m (Using <syntaxhighlight>.)
Line 8: Line 8:
 
<div style="clear:right"></div>
 
<div style="clear:right"></div>
 
== Calculation ==
 
== Calculation ==
<pre>
+
<syntaxhighlight>
 
int lateralDirection = ...;
 
int lateralDirection = ...;
 
double bearingOffset = normalRelativeAngle(...);
 
double bearingOffset = normalRelativeAngle(...);
Line 17: Line 17:
 
     maxEscapeAngleCounterclockwise : maxEscapeAngleClockwise;
 
     maxEscapeAngleCounterclockwise : maxEscapeAngleClockwise;
 
double guessFactor = lateralDirection * bearingOffset / maxEscapeAngle;
 
double guessFactor = lateralDirection * bearingOffset / maxEscapeAngle;
</pre>
+
</syntaxhighlight>
  
 
=== How it works ===
 
=== How it works ===

Revision as of 09:28, 1 July 2010

An example of a GuessFactor calculation, in this case using precise predicted maximum escape angles.

A way of measuring a firing angle which, unlike a raw bearing offset, takes into account the enemy's relative direction at fire time and the maximum escape angle for the specific firing situation.

A GuessFactor of 1.0 represents the bearing offset that the enemy would reach if it maximized its escape angle while moving in its current direction relative to the firing bot (i.e., clockwise or counter-clockwise), -1.0 represents the bearing offset that the enemy would reach if it maximized his escape angle after reversing directions, and 0.0 represents the bearing offset that points directly at the enemy (as in head-on targeting).

Calculation

int lateralDirection = ...;
double bearingOffset = normalRelativeAngle(...);
double maxEscapeAngleClockwise = ...;
double maxEscapeAngleCounterclockwise = ...;

double maxEscapeAngle = (bearingOffset < 0) ?
    maxEscapeAngleCounterclockwise : maxEscapeAngleClockwise;
double guessFactor = lateralDirection * bearingOffset / maxEscapeAngle;

How it works

The idea of the GuessFactor calculation is to express the enemy's bearing offset as a fraction of its maximum escape angle, while simultaneously ignoring its lateral direction. lateralDirection can be calculated directly by sign(lateralVelocity), but a more complex equation may be needed for accuracy when lateral velocity is close to 0. bearingOffset can be calculated using waves. maxEscapeAngleClockwise and maxEscapeAngleCounterclockwise can be calculated by any maximum escape angle algorithm.

See also