[Home]Mer/Code

Robo Home | Mer | Changes | Preferences | AllPages

Difference (from prior major revision) (no other diffs)

Changed: 17c17
* @version 1.0.3
* @version 1.1.0

Changed: 32c32
private static double drive = 500;
private static double drive = 150;

Changed: 42c42
//setColors(java.awt.Color.yellow, java.awt.Color.green, null);
setColors(java.awt.Color.yellow, java.awt.Color.green, null);

Changed: 48c48
if (Math.random() < 0.05) {
if (getDistanceRemaining?() == 0) {

Removed: 67,70d66
public void onHitWall?(HitWallEvent? e) {
setAhead(drive = -drive);
}


package strider;

import robocode.*;
import robocode.util.Utils;

/**
 * This code is released under the RoboWiki Public Code Licence (RWPCL),
 * datailed on: http://robowiki.net/?RWPCL
 *
 * Mer is a NanoBot with a hybrid statistical/random targeting.
 * It adjusts the random distribution based on the success of
 * the bullets it fires.
 * http://robowiki.net/?Mer
 *
 * @author Strider
 * @version 1.1.0
 */
public class Mer extends AdvancedRobot {

    private static final double PI_2 = 1.5707963268;
    
    // Note! This must be true: POWER+(BINS-1)*BIN_ENCODING <= 3.0
    
    private static final double POWER = 2.0;
    private static final double BIN_ENCODING = 1.0/256.0;
    private static final double GF1 = 0.61;	// asin(8/(20-3*POWER))
    private static final int BINS = 21;
    private static final int BIN_INIT = 1;
    private static final int BIN_INC = 5;

    private static double drive = 150;
    private static int stat[] = new int[BINS];
    private static int tot = BINS * BIN_INIT;
    private static int bin;

    static {
	java.util.Arrays.fill(stat, BIN_INIT);
    }
    
    public void run() {
	setColors(java.awt.Color.yellow, java.awt.Color.green, null);
	turnRadarRightRadians(Double.POSITIVE_INFINITY);
    }

    
    public void onScannedRobot(ScannedRobotEvent e) {
	if (getDistanceRemaining() == 0) {
	    setAhead(drive = -drive);
	}
	double dir = e.getBearingRadians() + getHeadingRadians();
	setTurnGunRightRadians(Utils.normalRelativeAngle(dir +
	    (bin * 2 - (BINS-1)) *
	    (e.getVelocity()*Math.sin(e.getHeadingRadians()-dir)>=0
	     ? GF1/(BINS-1)
	     :-GF1/(BINS-1)) - getGunHeadingRadians()));
	if (setFireBullet(POWER + bin * BIN_ENCODING) != null) {
	    int b = -1;
	    int i = (int) (Math.random() * tot);
	    do {
	    } while ((i -= stat[bin = ++b]) >= 0);
	}
	setTurnRadarLeftRadians(getRadarTurnRemainingRadians());
	setTurnRightRadians(e.getBearingRadians() + PI_2);
    }

    public void onBulletHit(BulletHitEvent e) {
	try {
	    stat[(int)((e.getBullet().getPower()-POWER)/BIN_ENCODING)] += BIN_INC;
	    tot += BIN_INC;
	} catch (ArrayIndexOutOfBoundsException ex) {
	}
    }

    // The debug code below weights 100 bytes!
    
//     public void onWin(WinEvent e) {
// 	showStats();
//     }

//     public void onDeath(DeathEvent e) {
// 	showStats();
//     }

//     private void showStats() {
// 	out.println("Total hits: " + tot);
// 	for (int i = 0; i < BINS; i++) {
// 	    StringBuffer sb = new StringBuffer();
// 	    for (int j = 0; j < stat[i]*100/tot; j++) {
// 		sb.append('#');
// 	    }
// 	    out.println(sb);
// 	}
//     }
    
}

Robo Home | Mer | Changes | Preferences | AllPages
Edit text of this page | View other revisions
Last edited September 16, 2004 0:33 EST by Strider (diff)
Search: