Skip to content
Permalink
4ad74b61e8
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
48 lines (42 sloc) 1.08 KB
package main;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.util.Random;
import entity.EntityTypeA;
import entity.EntityTypeB;
public class EnemyFighter extends GameObject implements EntityTypeB{
private Skins skin;
Random r = new Random();
private Game game;
private Controller controller;
private double speed = 0.3 + 3 * r.nextDouble() ;
public EnemyFighter(double x, double y, Skins skin, Controller c, Game game){
super(x,y);
this.game = game;
this.controller = c;
this.skin = skin;
}
public double getX(){
return x;
}
public void tick(){
x -= speed;
for(int n = 0; n < game.ea.size(); n++){
EntityTypeA tempa = game.ea.get(n);
if(GamePhysics.Collision(this, tempa)){
controller.removeEntity(this);
controller.removeEntity(tempa);
game.setKills(game.getKills()+1);
}
}
}
public void render(Graphics g){
g.drawImage(skin.enemy1, (int)x, (int)y, null);
}
public double getY() {
return y;
}
public Rectangle getBounds(){
return new Rectangle((int)x, (int) y, 64, 64);
}
}