2015-09-05 05:36:25 +02:00
|
|
|
/*
|
|
|
|
* 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.ui;
|
|
|
|
|
|
|
|
import itdelatrisu.opsu.GameImage;
|
|
|
|
import itdelatrisu.opsu.Utils;
|
2016-12-23 06:40:36 +01:00
|
|
|
import itdelatrisu.opsu.objects.curves.Vec2f;
|
2015-09-05 05:36:25 +02:00
|
|
|
import itdelatrisu.opsu.ui.animations.AnimatedValue;
|
|
|
|
import itdelatrisu.opsu.ui.animations.AnimationEquation;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
import org.newdawn.slick.Image;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Horizontal star stream.
|
|
|
|
*/
|
|
|
|
public class StarStream {
|
2016-12-23 06:40:36 +01:00
|
|
|
/** The origin of the star stream. */
|
|
|
|
private Vec2f position;
|
|
|
|
|
|
|
|
/** The direction of the star stream. */
|
|
|
|
private Vec2f direction;
|
|
|
|
|
|
|
|
/** The spread of the stars' starting position. */
|
|
|
|
private float positionSpread;
|
|
|
|
|
|
|
|
/** The spread of the stars' direction. */
|
|
|
|
private float directionSpread;
|
2015-09-05 05:36:25 +02:00
|
|
|
|
|
|
|
/** The star image. */
|
|
|
|
private final Image starImg;
|
|
|
|
|
|
|
|
/** The current list of stars. */
|
|
|
|
private final List<Star> stars;
|
|
|
|
|
|
|
|
/** The maximum number of stars to draw at once. */
|
|
|
|
private static final int MAX_STARS = 20;
|
|
|
|
|
|
|
|
/** Random number generator instance. */
|
|
|
|
private final Random random;
|
|
|
|
|
|
|
|
/** Contains data for a single star. */
|
|
|
|
private class Star {
|
2016-12-23 06:40:36 +01:00
|
|
|
/** The star position offset. */
|
|
|
|
private final Vec2f offset;
|
|
|
|
|
|
|
|
/** The star direction vector. */
|
|
|
|
private final Vec2f dir;
|
|
|
|
|
|
|
|
/** The star image rotation angle. */
|
|
|
|
private final int angle;
|
|
|
|
|
2015-09-05 05:36:25 +02:00
|
|
|
/** The star animation progress. */
|
|
|
|
private final AnimatedValue animatedValue;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a star with the given properties.
|
2016-12-23 06:40:36 +01:00
|
|
|
* @param offset the position offset vector
|
|
|
|
* @param direction the direction vector
|
|
|
|
* @param angle the image rotation angle
|
2015-09-05 05:36:25 +02:00
|
|
|
* @param duration the time, in milliseconds, to show the star
|
|
|
|
* @param eqn the animation equation to use
|
|
|
|
*/
|
2016-12-23 06:40:36 +01:00
|
|
|
public Star(Vec2f offset, Vec2f direction, int angle, int duration, AnimationEquation eqn) {
|
|
|
|
this.offset = offset;
|
|
|
|
this.dir = direction;
|
2015-09-05 05:36:25 +02:00
|
|
|
this.angle = angle;
|
2016-12-23 06:40:36 +01:00
|
|
|
this.animatedValue = new AnimatedValue(duration, 0f, 1f, eqn);
|
2015-09-05 05:36:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draws the star.
|
|
|
|
*/
|
|
|
|
public void draw() {
|
|
|
|
float t = animatedValue.getValue();
|
2015-09-05 16:32:26 +02:00
|
|
|
starImg.setImageColor(1f, 1f, 1f, Math.min((1 - t) * 5f, 1f));
|
|
|
|
starImg.drawEmbedded(
|
2016-12-23 06:40:36 +01:00
|
|
|
offset.x + t * dir.x, offset.y + t * dir.y,
|
|
|
|
starImg.getWidth(), starImg.getHeight(), angle
|
|
|
|
);
|
2015-09-05 05:36:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the animation by a delta interval.
|
|
|
|
* @param delta the delta interval since the last call
|
|
|
|
* @return true if an update was applied, false if the animation was not updated
|
|
|
|
*/
|
|
|
|
public boolean update(int delta) { return animatedValue.update(delta); }
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the star stream.
|
2016-12-23 06:40:36 +01:00
|
|
|
* @param x the x position
|
|
|
|
* @param y the y position
|
|
|
|
* @param dirX the x-axis direction
|
|
|
|
* @param dirY the y-axis direction
|
|
|
|
* @param posSpread the spread of the stars' starting position
|
|
|
|
* @param dirSpread the spread of the stars' direction
|
2015-09-05 05:36:25 +02:00
|
|
|
*/
|
2016-12-23 06:40:36 +01:00
|
|
|
public StarStream(float x, float y, float dirX, float dirY, float posSpread, float dirSpread) {
|
|
|
|
this.position = new Vec2f(x, y);
|
|
|
|
this.direction = new Vec2f(dirX, dirY);
|
|
|
|
this.positionSpread = posSpread;
|
|
|
|
this.directionSpread = dirSpread;
|
|
|
|
|
2015-09-05 05:36:25 +02:00
|
|
|
this.starImg = GameImage.STAR2.getImage().copy();
|
|
|
|
this.stars = new ArrayList<Star>();
|
|
|
|
this.random = new Random();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draws the star stream.
|
|
|
|
*/
|
|
|
|
public void draw() {
|
2015-09-05 16:32:26 +02:00
|
|
|
if (stars.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
starImg.startUse();
|
2015-09-05 05:36:25 +02:00
|
|
|
for (Star star : stars)
|
|
|
|
star.draw();
|
2015-09-05 16:32:26 +02:00
|
|
|
starImg.endUse();
|
2015-09-05 05:36:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the stars in the stream by a delta interval.
|
|
|
|
* @param delta the delta interval since the last call
|
2016-12-23 06:40:36 +01:00
|
|
|
* @param createNew whether to spawn new stars
|
2015-09-05 05:36:25 +02:00
|
|
|
*/
|
2016-12-23 06:40:36 +01:00
|
|
|
public void update(int delta, boolean createNew) {
|
2015-09-05 05:36:25 +02:00
|
|
|
// update current stars
|
|
|
|
Iterator<Star> iter = stars.iterator();
|
|
|
|
while (iter.hasNext()) {
|
|
|
|
Star star = iter.next();
|
|
|
|
if (!star.update(delta))
|
|
|
|
iter.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
// create new stars
|
2016-12-23 06:40:36 +01:00
|
|
|
if (createNew) {
|
|
|
|
for (int i = stars.size(); i < MAX_STARS; i++) {
|
|
|
|
if (Math.random() < ((i < 5) ? 0.25 : 0.66))
|
|
|
|
break;
|
|
|
|
|
|
|
|
stars.add(createStar());
|
|
|
|
}
|
2015-09-05 05:36:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-23 06:40:36 +01:00
|
|
|
/**
|
|
|
|
* Creates a new star with randomized properties.
|
|
|
|
*/
|
|
|
|
private Star createStar() {
|
|
|
|
float distanceRatio = Utils.clamp((float) getGaussian(0.65, 0.25), 0.2f, 0.925f);
|
|
|
|
Vec2f offset = position.cpy().add(direction.cpy().nor().normalize().scale((float) getGaussian(0, positionSpread)));
|
|
|
|
Vec2f dir = direction.cpy().scale(distanceRatio).add((float) getGaussian(0, directionSpread), (float) getGaussian(0, directionSpread));
|
|
|
|
int angle = (int) getGaussian(0, 22.5);
|
|
|
|
int duration = (int) (distanceRatio * getGaussian(1300, 300));
|
|
|
|
AnimationEquation eqn = random.nextBoolean() ? AnimationEquation.IN_OUT_QUAD : AnimationEquation.OUT_QUAD;
|
|
|
|
|
|
|
|
return new Star(offset, dir, angle, duration, eqn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a burst of stars instantly.
|
|
|
|
* @param count the number of stars to create
|
|
|
|
*/
|
|
|
|
public void burst(int count) {
|
|
|
|
for (int i = 0; i < count; i++)
|
|
|
|
stars.add(createStar());
|
|
|
|
}
|
|
|
|
|
2015-09-05 05:36:25 +02:00
|
|
|
/**
|
|
|
|
* Clears the stars currently in the stream.
|
|
|
|
*/
|
|
|
|
public void clear() { stars.clear(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the next pseudorandom, Gaussian ("normally") distributed {@code double} value
|
|
|
|
* with the given mean and standard deviation.
|
|
|
|
* @param mean the mean
|
|
|
|
* @param stdDev the standard deviation
|
|
|
|
*/
|
|
|
|
private double getGaussian(double mean, double stdDev) {
|
|
|
|
return mean + random.nextGaussian() * stdDev;
|
|
|
|
}
|
|
|
|
}
|