You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.8 KiB
79 lines
1.8 KiB
package sig.engine;
|
|
|
|
import sig.DrawLoop;
|
|
|
|
public abstract class Object implements GameEntity{
|
|
double x,y;
|
|
Sprite spr;
|
|
Panel panel;
|
|
public Panel getPanel() {
|
|
return panel;
|
|
}
|
|
|
|
public void setPanel(Panel panel) {
|
|
this.panel = panel;
|
|
}
|
|
|
|
boolean markedForDeletion;
|
|
|
|
public boolean isMarkedForDeletion() {
|
|
return markedForDeletion;
|
|
}
|
|
|
|
public void setMarkedForDeletion(boolean markedForDeletion) {
|
|
this.markedForDeletion = markedForDeletion;
|
|
}
|
|
|
|
protected Object(Panel panel) {
|
|
this.panel=panel;
|
|
}
|
|
|
|
public double getX() {
|
|
return x;
|
|
}
|
|
public void setX(double x) {
|
|
this.x = x;
|
|
}
|
|
public double getY() {
|
|
return y;
|
|
}
|
|
public void setY(double y) {
|
|
this.y = y;
|
|
}
|
|
public Sprite getSprite() {
|
|
return spr;
|
|
}
|
|
public void setSprite(Sprite spr) {
|
|
this.spr = spr;
|
|
}
|
|
|
|
public void drawOverlay(byte[] p) {
|
|
}
|
|
|
|
protected void Draw_Sprite(double x, double y, Sprite sprite){
|
|
DrawLoop.Draw_Sprite(x,y,sprite);
|
|
}
|
|
|
|
protected void Draw_Sprite_Partial(double x, double y, double xOffset, double yOffset, double w, double h, Sprite sprite){
|
|
DrawLoop.Draw_Sprite_Partial(x,y,xOffset,yOffset,w,h,sprite);
|
|
}
|
|
|
|
protected void Draw_Sprite_Partial_Ext(double x, double y, double xOffset, double yOffset, double w, double h, Sprite sprite, Alpha alpha){
|
|
DrawLoop.Draw_Sprite_Partial_Ext(x,y,xOffset,yOffset,w,h,sprite,alpha);
|
|
}
|
|
|
|
protected boolean KeyHeld(int key) {
|
|
return panel.KEYS.getOrDefault(key,false);
|
|
}
|
|
|
|
protected boolean MouseHeld(int mb) {
|
|
return panel.MOUSE.getOrDefault(mb,false);
|
|
}
|
|
|
|
/**
|
|
* @param scrolled -1 is UP, 1 is DOWN
|
|
* @return
|
|
*/
|
|
protected void MouseScrolled(MouseScrollValue scrolled) {
|
|
}
|
|
}
|
|
|