opsu-dance/src/yugecin/opsudance/Dancer.java

179 lines
5.3 KiB
Java
Raw Normal View History

2016-09-27 21:29:03 +02:00
/*
* opsu!dance - fork of opsu! with cursordance auto
* Copyright (C) 2016 yugecin
*
* opsu!dance 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.
*
2016-09-28 13:34:54 +02:00
* opsu!dance is distributed in the hope that it will be useful,
2016-09-27 21:29:03 +02:00
* 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!dance. If not, see <http://www.gnu.org/licenses/>.
*/
package yugecin.opsudance;
import itdelatrisu.opsu.Options;
import itdelatrisu.opsu.Utils;
2016-09-27 22:23:14 +02:00
import itdelatrisu.opsu.objects.Circle;
2016-10-01 11:34:32 +02:00
import itdelatrisu.opsu.objects.DummyObject;
2016-09-27 21:29:03 +02:00
import itdelatrisu.opsu.objects.GameObject;
2016-09-27 22:23:14 +02:00
import itdelatrisu.opsu.objects.Slider;
2016-09-27 21:29:03 +02:00
import itdelatrisu.opsu.objects.curves.Vec2f;
import yugecin.opsudance.movers.Mover;
import yugecin.opsudance.movers.factories.*;
2016-10-01 10:57:05 +02:00
import yugecin.opsudance.spinners.*;
2016-09-27 21:29:03 +02:00
public class Dancer {
public static MoverFactory[] moverFactories = new MoverFactory[] {
new AutoMoverFactory(),
new AutoEllipseMoverFactory(),
new CircleMoverFactory(),
new HalfCircleMoverFactory(),
new HalfEllipseMoverFactory(),
new HalfLowEllipseMoverFactory(),
new JumpMoverFactory(),
new LinearMoverFactory(),
new QuartCircleMoverFactory()
};
public static Spinner[] spinners = new Spinner[] {
2016-10-01 10:50:35 +02:00
new RektSpinner(),
new BeamSpinner(),
2016-10-01 10:52:25 +02:00
new CircleSpinner(),
2016-10-01 11:14:15 +02:00
new DonutSpinner(),
2016-10-01 10:57:05 +02:00
new CubeSpinner(),
2016-10-01 10:58:28 +02:00
new HalfCircleSpinner(),
2016-10-01 10:59:50 +02:00
new IlluminatiSpinner(),
2016-10-01 11:02:00 +02:00
new LessThanThreeSpinner(),
2016-10-01 11:04:45 +02:00
new RektCircleSpinner(),
2016-09-27 21:29:03 +02:00
};
public static Dancer instance = new Dancer();
public static boolean mirror = false; // this should really get its own place somewhere...
public static boolean drawApproach = true; // this should really get its own place somewhere...
public static boolean removebg = true; // this should really get its own place somewhere...
public static boolean hideui = true; // this should really get its own place somewhere...
2016-09-30 19:05:53 +02:00
public static ObjectColorOverrides colorOverride = ObjectColorOverrides.NONE;
public static ObjectColorOverrides colorMirrorOverride = ObjectColorOverrides.NONE;
public static int rgbhueinc = 70; // this should really get its own place somewhere...
public static boolean cursoruselastobjectcolor = false;
2016-09-30 21:40:33 +02:00
public static MoverDirection moverDirection = MoverDirection.RANDOM;
2016-09-30 23:11:43 +02:00
public static boolean hideobjects = false;
2016-09-29 23:29:20 +02:00
2016-09-27 21:29:03 +02:00
private int dir;
2016-10-01 11:34:32 +02:00
private GameObject d = new DummyObject();
2016-09-27 21:29:03 +02:00
private GameObject p;
private MoverFactory moverFactory;
private Mover mover;
private Spinner spinner;
2016-09-27 22:02:49 +02:00
private int moverFactoryIndex;
private int spinnerIndex;
2016-09-27 21:29:03 +02:00
public float x;
public float y;
2016-09-27 22:23:14 +02:00
private boolean isCurrentLazySlider;
public static boolean LAZY_SLIDERS;
2016-09-27 21:29:03 +02:00
public Dancer() {
moverFactory = moverFactories[0];
spinner = spinners[0];
}
2016-09-30 21:40:33 +02:00
public void reset() {
2016-09-27 22:23:14 +02:00
isCurrentLazySlider = false;
2016-10-01 11:34:32 +02:00
p = d;
2016-09-27 21:29:03 +02:00
dir = 1;
for (Spinner s : spinners) {
s.init();
}
}
2016-09-27 22:02:49 +02:00
public int getSpinnerIndex() {
return spinnerIndex;
}
public void setSpinnerIndex(int spinnerIndex) {
2016-09-27 22:04:14 +02:00
if (spinnerIndex < 0 || spinnerIndex >= spinners.length) {
spinnerIndex = 0;
}
2016-09-27 22:02:49 +02:00
this.spinnerIndex = spinnerIndex;
spinner = spinners[spinnerIndex];
}
public int getMoverFactoryIndex() {
return moverFactoryIndex;
}
public void setMoverFactoryIndex(int moverFactoryIndex) {
2016-09-27 22:04:14 +02:00
if (moverFactoryIndex < 0 || moverFactoryIndex >= moverFactories.length) {
moverFactoryIndex = 0;
}
2016-09-27 22:02:49 +02:00
this.moverFactoryIndex = moverFactoryIndex;
moverFactory = moverFactories[moverFactoryIndex];
}
2016-09-27 21:29:03 +02:00
public void update(int time, GameObject p, GameObject c) {
if (this.p != p) {
this.p = p;
2016-10-01 11:34:32 +02:00
if (this.p == null) {
this.p = p = d;
}
2016-09-27 22:23:14 +02:00
isCurrentLazySlider = false;
// detect lazy sliders, should work pretty good
if (c.isSlider() && LAZY_SLIDERS && Utils.distance(c.start.x, c.start.y, c.end.x , c.end.y) <= Circle.diameter * 0.8f) {
Slider s = (Slider) c;
Vec2f mid = s.getCurve().pointAt(1f);
if (s.getRepeats() == 1 || Utils.distance(c.start.x, c.start.y, mid.x, mid.y) <= Circle.diameter * 0.8f) {
mid = s.getCurve().pointAt(0.5f);
if (Utils.distance(c.start.x, c.start.y, mid.x, mid.y) <= Circle.diameter * 0.8f) {
isCurrentLazySlider = true;
}
}
}
2016-09-30 21:40:33 +02:00
dir = moverDirection.getDirection(dir);
2016-09-27 21:29:03 +02:00
if (c.isSpinner()) {
double[] spinnerStartPoint = spinner.getPoint();
c.start = new Vec2f((float) spinnerStartPoint[0], (float) spinnerStartPoint[1]);
}
mover = moverFactory.create(p, c, dir);
}
if (time < c.getTime()) {
if (!p.isSpinner() || !c.isSpinner()) {
double[] point = mover.getPointAt(time);
x = (float) point[0];
y = (float) point[1];
}
} else {
if (c.isSpinner()) {
double[] point = spinner.getPoint();
x = (float) point[0];
y = (float) point[1];
c.end = new Vec2f(x, y);
} else {
Vec2f point = c.getPointAt(time);
2016-09-27 22:23:14 +02:00
if (isCurrentLazySlider) {
point = c.start;
}
2016-09-27 21:29:03 +02:00
x = point.x;
y = point.y;
}
}
2016-09-30 22:57:57 +02:00
Pippi.dance(time, c, isCurrentLazySlider);
x = Utils.clamp(x, 10, Options.width - 10);
y = Utils.clamp(y, 10, Options.height - 10);
2016-09-27 21:29:03 +02:00
}
}