-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFaceAnimation.hs
39 lines (34 loc) · 1.34 KB
/
FaceAnimation.hs
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
{-# LANGUAGE RecordWildCards #-}
module FaceAnimation where
import Rubik
data FaceAnimation = FaceAnimation {
rotatingFace :: Direction,
rotation :: Rotation,
startAngle :: Float,
actualAngle :: Float,
elapsedTime :: Float,
endAngle :: Float,
period :: Float
}
easing :: Float -> Float -> Float -> Float -> Float -> Float
-- easing start actual end elapsed period = start + end*elapsed/period
-- quadratic easing out
-- easing start actual end elapsed period = start - end*perc*(perc-2)
-- quadratic easing in/out
easing start actual end elapsed period = if perc < 1
then start + end / 2 * perc * perc
else let t = perc - 1 in start - end / 2 * (t * (t - 2) - 1)
where perc = elapsed / (period / 2)
stepAnimation :: Float -> Float -> FaceAnimation -> FaceAnimation
stepAnimation t1 t2 animation@FaceAnimation {..}
| elapsedTime >= period = animation
| otherwise = animation { actualAngle = newAngle, elapsedTime = elapsedTime' }
where
elapsedTime' = elapsedTime + (t2 - t1)
newAngle = easing startAngle actualAngle endAngle elapsedTime period
isAnimationOver :: FaceAnimation -> Bool
isAnimationOver FaceAnimation {..} = elapsedTime >= period
repeatAnimation :: FaceAnimation -> FaceAnimation
repeatAnimation animation
| isAnimationOver animation = animation { elapsedTime = 0.0 }
| otherwise = animation