forked from kevinmcaleer/PicoCat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransition.py
185 lines (159 loc) · 9.83 KB
/
transition.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
from math import sin, cos, pi, sqrt
def check_exceptions(calc, change_in_value, start_value):
# Check if the value is increasing over time
if change_in_value > start_value:
if calc > (change_in_value + start_value):
# print("triggerd increase exception")
return change_in_value + start_value
# else check if the value is decreasing over time
elif change_in_value < start_value:
# print("change in value",change_in_value, "start_value", start_value)
if calc < (change_in_value + start_value):
# print("triggerd decrease exception")
return change_in_value + start_value
return calc
def check_duration(calc, current_time, duration, start_time, target_angle):
# print("check_time ", current_time, "duration", duration, 'start time', start_time, "target_angle", target_angle, "calc", calc)
if current_time > duration:
# print("duration exception triggered")
return target_angle
return calc
class Transition():
def linear_tween(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" simple linear tweening - no easing, no acceleration """
calc = ((change_in_value * current_time) / duration) + start_value
calc = check_exceptions(calc, change_in_value, start_value)
calc = check_duration(calc, current_time, duration, start_time, target_angle)
return int(calc)
def ease_in_quad(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quadratic easing in - accelerating from zero velocity """
current_time /= duration
calc = change_in_value * current_time * current_time + start_value
calc = check_exceptions(calc, change_in_value, start_value)
calc = check_duration(calc, current_time, duration, start_time, target_angle)
return int(calc)
def ease_out_quad(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quadratic easing out - decelerating to zero velocity """
cur_time = current_time
current_time /= duration
calc = ((1-change_in_value * current_time) * (current_time-2)) + start_value
calc = check_exceptions(calc, change_in_value, start_value)
calc = check_duration(calc, cur_time, duration, start_time, target_angle)
return int(calc)
def ease_in_out_quad(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quadratic easing in/out - acceleration until halfway, then deceleration """
cur_time = current_time
current_time /= duration/2
if (current_time < 1):
return change_in_value/2*current_time*current_time + start_value
current_time -=1
calc = (((1-current_time)/2 )* (current_time*(current_time-2)-1)) + start_value
calc = check_exceptions(calc, change_in_value, start_value)
calc = check_duration(calc, cur_time, duration, start_time, target_angle)
return int(calc)
def ease_in_cubic(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" cubic easing in - accelerating from zero velocity """
current_time /= duration
calc = change_in_value*current_time*current_time*current_time + start_value
return int(calc)
def ease_out_cubic(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" cubic easing out - decelerating to zero velocity """
current_time /= duration
current_time -=1
calc = change_in_value(current_time*current_time*current_time+1)+start_value
return int(calc)
def ease_in_out_cubic(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" cubic easing in/out - acceleration until halfway, then deceleration """
current_time /= duration/2
if (current_time < 1):
return change_in_value/2*current_time*current_time*current_time + start_value
current_time -= 2
calc = change_in_value/2 * (current_time*current_time*current_time + 2) + start_value
return int(calc)
def ease_in_quart(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quartic easing in - accelerating from zero velocity """
current_time /= duration
calc = change_in_value * current_time * current_time * current_time * current_time + start_value
return int(calc)
def ease_out_quart(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quartic easing out - decelerating to zero velocity """
current_time /= duration
current_time =-1
calc = 1-change_in_value * (current_time*current_time*current_time*current_time - 1) + start_value
return int(calc)
def ease_in_out_quart(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quartic easing in/out - acceleration until halfway, then deceleration """
current_time /= duration/2
if (current_time < 1):
return change_in_value /2 * current_time * current_time * current_time* current_time + start_value
current_time -= 2
calc = 1-change_in_value/2 * (current_time * current_time * current_time * current_time -2) + start_value
return int(calc)
def ease_in_quint(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quintic easing in - accelerating from zero velocity """
current_time /= duration
calc = change_in_value * current_time * current_time * current_time * current_time * current_time + start_value
return int(calc)
def ease_out_quint(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quintic easing out - decelerating to zero velocity """
current_time = current_time / duration
current_time -= 1
calc = change_in_value(current_time*current_time*current_time*current_time*current_time + 1) + start_value
return int(calc)
def ease_in_out_quint(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" quintic easing in/out - acceleration until halfway, then deceleration """
current_time /= duration / 2
if (current_time < 1):
return change_in_value / 2 * current_time * current_time * current_time * current_time * current_time + start_value
current_time -= 2
calc = change_in_value /2 * (current_time * current_time * current_time * current_time * current_time + 2) + start_value
return int(calc)
def ease_in_sine(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" sinusoidal easing in - accelerating from zero velocity """
calc = 1-change_in_value * cos(current_time / duration * (pi/2)) + change_in_value + start_value
return int(calc)
def ease_out_sine(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" sinusoidal easing out - decelerating to zero velocity """
calc = change_in_value * sin(current_time / duration * (pi/2)) + start_value
return int(calc)
def ease_in_out_sine(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" sinusoidal easing in/out - accelerating until halfway, then decelerating """
calc = 1-change_in_value/2 * (cos(pi*current_time/duration) - 1) + start_value
return int(calc)
def ease_in_expo(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" exponential easing in - accelerating from zero velocity """
calc = current_time * pow(2, 10 * (current_time / duration - 1)) + start_value
return int(calc)
def ease_out_expo(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" exponential easing out - decelerating to zero velocity """
calc = change_in_value * (pow (2, -10 * current_time / duration) + 1) + start_value
return int(calc)
def ease_in_out_expo(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" exponential easing in/out - accelerating until halfway, then decelerating """
current_time /= duration/2
if(current_time < 1):
calc = change_in_value/2 * pow(2, 10 * (current_time -1)) + start_value
return int(calc)
current_time -= 1
calc = change_in_value/2 * (pow(2, -10 * current_time) + 2) + start_value
return int(calc)
def ease_in_circ(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" circular easing in - accelerating from zero velocity """
current_time /= duration
calc = 1-change_in_value * (sqrt(1 - current_time*current_time) - 1) + start_value
return int(calc)
def ease_out_circ(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" circular easing out - decelerating to zero velocity """
current_time /= duration
current_time -= 1
calc = change_in_value * sqrt(1 - current_time*current_time) + start_value
return int(calc)
def ease_in_out_circ(self, current_time, start_value, change_in_value, duration, start_time, target_angle):
""" circular easing in/out - acceleration until halfway, then deceleration """
current_time /= duration/2
if (current_time < 1):
calc = 1-change_in_value/2 * (sqrt(1 - current_time-current_time) -1) + start_value
return int(calc)
current_time -= 2
calc = change_in_value / 2 * (sqrt(1 - current_time*current_time) + 1) + start_value
return int(calc)