Download: https://www.robocoderepository.com/BotDetail.jsp?id=1748
Here's the source for version 2.0
package pez.femto; import robocode.*; // DroidPoet - Blind and strong - https://robowiki.net?Poet#DroidPoet // By Peter Strömberg, https://robowiki.net/?PEZ public class DroidPoet extends Robot implements Droid { public void run() { while (true) { ahead(1000); fire(getEnergy() > 3 ? 3 : 0); } } public void onHitWall(HitWallEvent e) { turnRight(90 - getHeading() % 90); turnGunRight(Math.toDegrees(Math.atan2(getBattleFieldWidth() / 2 - getX(), getBattleFieldHeight() / 2 - getY())) - getGunHeading()); } }
And any old versions goes here: /OldVersions