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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238 | /*
* Copyright © 2012 Red Hat Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Authors: Benjamin Otte <otte@gnome.org>
*/
#include "config.h"
#include "ctkcssanimationprivate.h"
#include "ctkcsseasevalueprivate.h"
#include "ctkprogresstrackerprivate.h"
#include <math.h>
G_DEFINE_TYPE (CtkCssAnimation, _ctk_css_animation, CTK_TYPE_STYLE_ANIMATION)
static gboolean
ctk_css_animation_is_executing (CtkCssAnimation *animation)
{
CtkProgressState state = ctk_progress_tracker_get_state (&animation->tracker);
switch (animation->fill_mode)
{
case CTK_CSS_FILL_NONE:
return state == CTK_PROGRESS_STATE_DURING;
case CTK_CSS_FILL_FORWARDS:
return state != CTK_PROGRESS_STATE_BEFORE;
case CTK_CSS_FILL_BACKWARDS:
return state != CTK_PROGRESS_STATE_AFTER;
case CTK_CSS_FILL_BOTH:
return TRUE;
default:
g_return_val_if_reached (FALSE);
}
}
static double
ctk_css_animation_get_progress (CtkCssAnimation *animation)
{
gboolean reverse, odd_iteration;
gint cycle = ctk_progress_tracker_get_iteration_cycle (&animation->tracker);
odd_iteration = cycle % 2 > 0;
switch (animation->direction)
{
case CTK_CSS_DIRECTION_NORMAL:
reverse = FALSE;
break;
case CTK_CSS_DIRECTION_REVERSE:
reverse = TRUE;
break;
case CTK_CSS_DIRECTION_ALTERNATE:
reverse = odd_iteration;
break;
case CTK_CSS_DIRECTION_ALTERNATE_REVERSE:
reverse = !odd_iteration;
break;
default:
g_return_val_if_reached (0.0);
}
return ctk_progress_tracker_get_progress (&animation->tracker, reverse);
}
CtkStyleAnimation *
ctk_css_animation_advance (CtkStyleAnimation *style_animation,<--- The function 'ctk_css_animation_advance' should have static linkage since it is not used outside of its translation unit.
gint64 timestamp)
{
CtkCssAnimation *animation = CTK_CSS_ANIMATION (style_animation);
return _ctk_css_animation_advance_with_play_state (animation,
timestamp,
animation->play_state);
}
static void
ctk_css_animation_apply_values (CtkStyleAnimation *style_animation,
CtkCssAnimatedStyle *style)
{
CtkCssAnimation *animation = CTK_CSS_ANIMATION (style_animation);
double progress;
guint i;
if (!ctk_css_animation_is_executing (animation))
return;
progress = ctk_css_animation_get_progress (animation);
progress = _ctk_css_ease_value_transform (animation->ease, progress);
for (i = 0; i < _ctk_css_keyframes_get_n_properties (animation->keyframes); i++)
{
CtkCssValue *value;
guint property_id;
property_id = _ctk_css_keyframes_get_property_id (animation->keyframes, i);
value = _ctk_css_keyframes_get_value (animation->keyframes,
i,
progress,
ctk_css_animated_style_get_intrinsic_value (style, property_id));
ctk_css_animated_style_set_animated_value (style, property_id, value);
_ctk_css_value_unref (value);
}
}
static gboolean
ctk_css_animation_is_finished (CtkStyleAnimation *style_animation G_GNUC_UNUSED)
{
return FALSE;
}
static gboolean
ctk_css_animation_is_static (CtkStyleAnimation *style_animation)
{
CtkCssAnimation *animation = CTK_CSS_ANIMATION (style_animation);
if (animation->play_state == CTK_CSS_PLAY_STATE_PAUSED)
return TRUE;
return ctk_progress_tracker_get_state (&animation->tracker) == CTK_PROGRESS_STATE_AFTER;
}
static void
ctk_css_animation_finalize (GObject *object)
{
CtkCssAnimation *animation = CTK_CSS_ANIMATION (object);
g_free (animation->name);
_ctk_css_keyframes_unref (animation->keyframes);
_ctk_css_value_unref (animation->ease);
G_OBJECT_CLASS (_ctk_css_animation_parent_class)->finalize (object);
}
static void
_ctk_css_animation_class_init (CtkCssAnimationClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
CtkStyleAnimationClass *animation_class = CTK_STYLE_ANIMATION_CLASS (klass);
object_class->finalize = ctk_css_animation_finalize;
animation_class->advance = ctk_css_animation_advance;
animation_class->apply_values = ctk_css_animation_apply_values;
animation_class->is_finished = ctk_css_animation_is_finished;
animation_class->is_static = ctk_css_animation_is_static;
}
static void
_ctk_css_animation_init (CtkCssAnimation *animation G_GNUC_UNUSED)
{
}
CtkStyleAnimation *
_ctk_css_animation_new (const char *name,
CtkCssKeyframes *keyframes,
gint64 timestamp,
gint64 delay_us,
gint64 duration_us,
CtkCssValue *ease,
CtkCssDirection direction,
CtkCssPlayState play_state,
CtkCssFillMode fill_mode,
double iteration_count)
{
CtkCssAnimation *animation;
g_return_val_if_fail (name != NULL, NULL);
g_return_val_if_fail (keyframes != NULL, NULL);
g_return_val_if_fail (ease != NULL, NULL);
g_return_val_if_fail (iteration_count >= 0, NULL);
animation = g_object_new (CTK_TYPE_CSS_ANIMATION, NULL);
animation->name = g_strdup (name);
animation->keyframes = _ctk_css_keyframes_ref (keyframes);
animation->ease = _ctk_css_value_ref (ease);
animation->direction = direction;
animation->play_state = play_state;
animation->fill_mode = fill_mode;
ctk_progress_tracker_start (&animation->tracker, duration_us, delay_us, iteration_count);
if (animation->play_state == CTK_CSS_PLAY_STATE_PAUSED)
ctk_progress_tracker_skip_frame (&animation->tracker, timestamp);
else
ctk_progress_tracker_advance_frame (&animation->tracker, timestamp);
return CTK_STYLE_ANIMATION (animation);
}
const char *
_ctk_css_animation_get_name (CtkCssAnimation *animation)
{
g_return_val_if_fail (CTK_IS_CSS_ANIMATION (animation), NULL);
return animation->name;
}
CtkStyleAnimation *
_ctk_css_animation_advance_with_play_state (CtkCssAnimation *source,<--- The function '_ctk_css_animation_advance_with_play_state' should have static linkage since it is not used outside of its translation unit.
gint64 timestamp,
CtkCssPlayState play_state)
{
CtkCssAnimation *animation;
g_return_val_if_fail (CTK_IS_CSS_ANIMATION (source), NULL);
animation = g_object_new (CTK_TYPE_CSS_ANIMATION, NULL);
animation->name = g_strdup (source->name);
animation->keyframes = _ctk_css_keyframes_ref (source->keyframes);
animation->ease = _ctk_css_value_ref (source->ease);
animation->direction = source->direction;
animation->play_state = play_state;
animation->fill_mode = source->fill_mode;
ctk_progress_tracker_init_copy (&source->tracker, &animation->tracker);
if (animation->play_state == CTK_CSS_PLAY_STATE_PAUSED)
ctk_progress_tracker_skip_frame (&animation->tracker, timestamp);
else
ctk_progress_tracker_advance_frame (&animation->tracker, timestamp);
return CTK_STYLE_ANIMATION (animation);
}
|