Zoom Radar
Zoom radar is a precise lock radar with a minimum cost feature for melee. Created by Frolicking Zombie.
When the radar's bearing is between the thetaBounding and thetaFinal bearings, this signals the completion of the scan in the corresponding direction. The scan direction should be reversed to (re)cover the target area. When a target has been scanned, the radar must reverse direction to ensure a scan on the next subsequent turn. This enables a precision lock on the target. The variable lastScanDirection should be initialized with the value that corresponds to the direction (1 = CW, -1 = CCW) of the scan used to find all targets. The variable scanDirection should be initialized with 0 to force a new search. When initiating a new search, if it is determined that the CW and CCW scans will be equal, the direction of search should be the one that will scan the most targets along the path to the desired target.
// Bearings are negative in the CCW direction. if(scanDirection == -1) { // Check to see if we have completed our move. if(radarBearing >= -thetaFinal && radarBearing <= -thetaBounding) { // Should have scanned target by now. Resume in opposite direction scanDirection = 1; lastScanDirection = 1; setTurnRadarRightRadians(thetaFinal – radarBearing); } else { // Continue in the CCW direction. scanDirection = -1; lastScanDirection = -1; setTurnRadarRightRadians((-thetaFinal) – radarBearing); } } else if(scanDirection == 1) { // Check to see if we have completed our move. if(radarBearing <= thetaFinal && radarBearing >= thetaBounding) { // Should have scanned target by now. Resume in opposite direction scanDirection = -1; lastScanDirection = -1; setTurnRadarRightRadians((-thetaFinal) – radarBearing); } else { // Continue in the CW direction. scanDirection = 1; lastScanDirection = 1; setTurnRadarRightRadians(thetaFinal – radarBearing); } } // Set scanDirection = 0 if we just scanned the target we were looking for so that we can continue scanning in the most manner. else { // Check to see if we are within bounds. if(radarBearing >= -thetaBounding && radarBearing <= thetaBounding) { // Start scanning in the opposite direction to ensure that we scan the target on this turn. lastScanDirection = lastScanDirection * -1; scanDirection = lastScanDirection; setTurnRadarRightRadians((scanDirection * thetaFinal) – radarBearing); } // Check to see if the CW bound is closer. else if(Math.abs(thetaFinal - radarBearing) < Math.abs((-thetaFinal) - radarBearing)) { // Scan in the CCW direction ending at the CCW bound. scanDirection = -1; lastScanDirection = -1; setTurnRadarRightRadians((-thetaFinal) – radarBearing); } // Check to see if the CCW bound is closer. else if(Math.abs(thetaFinal - radarBearing) > Math.abs((-thetaFinal) - radarBearing)) { // Scan in the CW direction ending at the CW bound. scanDirection = 1; lastScanDirection = 1; setTurnRadarRightRadians(thetaFinal – radarBearing); } // Both bounds are equal. else { // Add code here.... // Just count the number of targets you expect to scan along the CW and CCW directions and start scanning in the most advantageous direction. if(targetsCW >= targetsCCW) { scanDirection = 1; lastScanDirection = 1; setTurnRadarRightRadians(thetaFinal – radarBearing); } else { scanDirection = -1; lastScanDirection = -1; setTurnRadarRightRadians((-thetaFinal) – radarBearing); } } }