aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/gui/animations/Animation.java
blob: 834aeb1f10e2cb6b55aad64314093be60163e634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package cc.polyfrost.oneconfig.gui.animations;

import cc.polyfrost.oneconfig.gui.OneConfigGui;

public abstract class Animation {
    private final int duration;
    private final float start;
    private final float change;
    private long timePassed = 0;

    /**
     * @param duration The duration of the animation
     * @param start    The start of the animation
     * @param end      The end of the animation
     * @param reverse  Reverse the animation
     */
    public Animation(int duration, float start, float end, boolean reverse) {
        this.duration = duration;
        this.start = start;
        if (!reverse) this.change = end - start;
        else this.change = start - end;
    }

    /**
     * @param deltaTime The time since the last frame
     * @return The new value
     */
    public float get(long deltaTime) {
        timePassed += deltaTime;
        if (timePassed >= duration) return start + change;
        float value = animate(timePassed, duration, start, change);
        System.out.println(value);
        return value;
    }

    /**
     * @return The new value
     */
    public float get() {
        return get(OneConfigGui.getDeltaTimeNullSafe());
    }

    /**
     * @return If the animation is finished or not
     */
    public boolean isFinished() {
        return timePassed >= duration;
    }

    protected abstract float animate(long timePassed, int duration, float start, float change);
}