Difference between revisions of "Module/Gun/MouseClickFire"
Jump to navigation
Jump to search
(Module gun MouseClickFire) |
RednaxelaBot (talk | contribs) m (Using <syntaxhighlight>.) |
||
Line 1: | Line 1: | ||
− | < | + | <syntaxhighlight> |
package jab.gun; | package jab.gun; | ||
Line 45: | Line 45: | ||
} | } | ||
− | </ | + | </syntaxhighlight> |
Latest revision as of 09:29, 1 July 2010
package jab.gun;
import java.awt.event.InputEvent;
import java.awt.event.MouseEvent;
import jab.Gun;
import jab.Module;
import robocode.Bullet;
/**
* Credits
* Interactive - a sample robot by Flemming N. Larsen.
* - Button 1: Fire a bullet with power = 1
* - Button 2: Fire a bullet with power = 2
* - Button 3: Fire a bullet with power = 3
*/
public class MouseClickFire extends Gun {
public MouseClickFire(Module bot) {
super(bot);
}
public void fire(){
if (bot.bulletPower>0 && bot.getGunHeat()==0){
Bullet b = bot.setFireBullet(bot.bulletPower);
bot.registerBullet(b);
}
}
public void listenInput(InputEvent e){
if (e instanceof MouseEvent)
if (e.getID()==MouseEvent.MOUSE_PRESSED)
if (((MouseEvent)e).getButton() == MouseEvent.BUTTON3)
bot.bulletPower = 3;
else if (((MouseEvent)e).getButton() == MouseEvent.BUTTON2)
bot.bulletPower = 2;
else
bot.bulletPower = 1;
if (e.getID()==MouseEvent.MOUSE_RELEASED)
bot.bulletPower=0;
}
}