104 lines
2.4 KiB
Java
104 lines
2.4 KiB
Java
/*
|
|
* opsu! - an open-source osu! client
|
|
* Copyright (C) 2014, 2015 Jeffrey Han
|
|
*
|
|
* opsu! is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* opsu! is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with opsu!. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package itdelatrisu.opsu.objects;
|
|
|
|
import itdelatrisu.opsu.beatmap.HitObject;
|
|
import itdelatrisu.opsu.objects.curves.Vec2f;
|
|
|
|
import org.newdawn.slick.Color;
|
|
import org.newdawn.slick.Graphics;
|
|
|
|
/**
|
|
* Dummy hit object, used when another GameObject class cannot be created.
|
|
*/
|
|
public class DummyObject extends GameObject {
|
|
/** The associated HitObject. */
|
|
private HitObject hitObject;
|
|
|
|
/** The scaled starting x, y coordinates. */
|
|
private float x, y;
|
|
|
|
/**
|
|
* Constructor.
|
|
* @param hitObject the associated HitObject
|
|
*/
|
|
public DummyObject(HitObject hitObject) {
|
|
this.hitObject = hitObject;
|
|
updatePosition();
|
|
}
|
|
|
|
public DummyObject() {
|
|
this.hitObject = new HitObject("0,0,0,1,0,0:0:0:0:");
|
|
updatePosition();
|
|
updateStartEndPositions(0);
|
|
}
|
|
|
|
@Override
|
|
public void draw(Graphics g, int trackPosition, boolean mirror) {}
|
|
|
|
@Override
|
|
public boolean update(boolean overlap, int delta, int mouseX, int mouseY, boolean keyPressed, int trackPosition) {
|
|
return (trackPosition > hitObject.getTime());
|
|
}
|
|
|
|
@Override
|
|
public boolean mousePressed(int x, int y, int trackPosition) { return false; }
|
|
|
|
@Override
|
|
public Vec2f getPointAt(int trackPosition) { return new Vec2f(x, y); }
|
|
|
|
@Override
|
|
public int getEndTime() { return hitObject.getTime(); }
|
|
|
|
@Override
|
|
public void updatePosition() {
|
|
this.x = hitObject.getScaledX();
|
|
this.y = hitObject.getScaledY();
|
|
}
|
|
|
|
@Override
|
|
public void reset() {}
|
|
|
|
@Override
|
|
public boolean isCircle() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean isSlider() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean isSpinner() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public Color getColor() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Color getMirroredColor() {
|
|
return null;
|
|
}
|
|
|
|
}
|