-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbase-animation.c
149 lines (130 loc) · 3.58 KB
/
base-animation.c
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
/*
* SPDX-FileCopyrightText: 2021 Samuel Cuella <[email protected]>
*
* This file is part of SoFIS - an open source EFIS
*
* SPDX-License-Identifier: GPL-2.0-only
*/
#include <stdio.h>
#include <stdlib.h>
#include "base-animation.h"
static inline void base_animation_process_floats(BaseAnimation *self, float increment);
BaseAnimation *base_animation_new(ValueType type, size_t ntargets, ...)
{
va_list args;
BaseAnimation *self, *rv;
self = calloc(1, sizeof(BaseAnimation));
if(self){
va_start(args, ntargets);
rv = base_animation_vainit(self, type, ntargets, args);
va_end(args);
if(!rv){
free(self);
return NULL;
}
}
// printf("BaseAnimation %p: allocated\n", self);
return self;
}
/**
* @brief Inits a BaseAnimation to animate a set of targets
*
* Targets are pointers to the value(s) to animate
*
*
*
*
*/
BaseAnimation *base_animation_init(BaseAnimation *self, ValueType type, size_t ntargets, ...)
{
BaseAnimation *rv;
va_list args;
va_start(args, ntargets);
rv = base_animation_vainit(self, type, ntargets, args);
va_end(args);
return self;
}
BaseAnimation *base_animation_vainit(BaseAnimation *self, ValueType type, size_t ntargets, va_list ap)
{
self->ntargets = ntargets;
self->targets_type = type;
self->targets = calloc(self->ntargets, sizeof(void*));
if(!self->targets)
return NULL;
for(int i = 0; i < ntargets; i++){
self->targets[i] = va_arg(ap, void*);
}
return self;
}
BaseAnimation *base_animation_dispose(BaseAnimation *self)
{
if(self->targets)
free(self->targets);
return self;
}
void base_animation_unref(BaseAnimation *self)
{
if(--self->refcount == 0){
// printf("BaseAnimation %p: freeing\n", self);
free(base_animation_dispose(self));
}else{
/*printf("BaseAnimation %p: not freed, refcount is %d (was %d)\n",*/
/*self, self->refcount,*/
/*self->refcount+1*/
/*);*/
}
}
void base_animation_ref(BaseAnimation *self)
{
self->refcount++;
}
void base_animation_start(BaseAnimation *self, float from, float to, float duration)
{
self->start = from;
self->end = to;
self->duration = duration;
self->time_progress = 0.0;
self->finished = false;
self->last_value_reached = false;
}
/**
*
*
* @param dt time elapsed since last call (milliseconds)
* @return value matching the given time
* */
bool base_animation_loop(BaseAnimation *self, uint32_t dt)
{
float progress;
float dv;
float new_value;
/* We don't set finished when setting the last value
* to be called one more time to allow gauges that have
* children to process the last value.
* Otherwise self->finished whould be true in the gauge's
* update_state during the iteration where the last value
* has been reached
*/
if(self->last_value_reached){
self->finished = true;
return false;
}
self->time_progress += dt; //millis
progress = self->time_progress / self->duration; /*percentage*/
if(progress > 1.0f)
progress = 1.0f;
dv = self->end - self->start;
new_value = self->start + dv * progress;
if(self->targets_type == TYPE_FLOAT){
base_animation_process_floats(self, new_value);
}
return true;
}
static inline void base_animation_process_floats(BaseAnimation *self, float new_value)
{
for(int i = 0; i < self->ntargets; i++){
*((float *)self->targets[i]) = new_value;
}
if(new_value == self->end)
self->last_value_reached = true;
}