50 lines
1.0 KiB
Java
Raw Normal View History

2015-05-08 20:35:47 +03:00
package com.iluwatar;
2015-05-09 19:26:35 +03:00
/**
*
* Game objects have coordinates and some
* other status information.
*
*/
2015-05-08 20:35:47 +03:00
public abstract class GameObject extends Rectangle {
2015-05-08 21:01:06 +03:00
private boolean damaged;
private boolean onFire;
2015-05-08 20:35:47 +03:00
public GameObject(int left, int top, int right, int bottom) {
super(left, top, right, bottom);
}
@Override
public String toString() {
2015-05-08 21:01:06 +03:00
return String.format("%s at %s damaged=%b onFire=%b", this.getClass().getSimpleName(),
super.toString(), isDamaged(), isOnFire());
}
public boolean isOnFire() {
return onFire;
}
public void setOnFire(boolean onFire) {
this.onFire = onFire;
}
public boolean isDamaged() {
return damaged;
}
public void setDamaged(boolean damaged) {
this.damaged = damaged;
2015-05-08 20:35:47 +03:00
}
2015-05-08 21:49:04 +03:00
public abstract void collision(GameObject gameObject);
public abstract void collisionResolve(FlamingAsteroid asteroid);
public abstract void collisionResolve(Meteoroid meteoroid);
public abstract void collisionResolve(SpaceStationMir mir);
public abstract void collisionResolve(SpaceStationIss iss);
2015-05-08 20:35:47 +03:00
}