-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathTween.h
193 lines (154 loc) · 4.45 KB
/
Tween.h
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
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2016-6-8
* Update : 2019-1-8
* Author : scott.cgi
*/
#ifndef TWEEN_H
#define TWEEN_H
#include <stddef.h>
#include <stdbool.h>
#include "Engine/Toolkit/Math/TweenEase.h"
#include "Engine/Toolkit/Utils/ArrayList.h"
#include "Engine/Toolkit/HeaderUtils/UserData.h"
/**
* Get target value when TweenActionValue need to init.
*/
typedef float (*TweenActionValueOnGet)(void* target);
/**
* Set target value when TweenActionValue already changed value in one frame.
*/
typedef void (*TweenActionValueOnSet)(void* target, float value);
/**
* One value in TweenAction that can tween easing.
*/
typedef struct
{
/**
* The action will reach to this value that depends on isRelative.
*/
float value;
/**
* The action start from this value.
*/
float fromValue;
/**
* The final value action will reach to.
*/
float toValue;
/**
* When TweenAction's target value need to be get.
*/
TweenActionValueOnGet OnGet;
/**
* When TweenAction's target value need to be set.
*/
TweenActionValueOnSet OnSet;
/**
* The value is relative or absolute, default true.
*/
bool isRelative;
/**
* Default TweenEaseType_Smooth.
*/
TweenEaseType easeType;
}
TweenActionValue;
/**
* Can tween easing a list of TweenActionValues.
*/
typedef struct TweenAction TweenAction;
/**
* When TweenAction finished callback.
*/
typedef void (*TweenActionOnComplete)(TweenAction* action);
struct TweenAction
{
UserData userData[1];
/**
* Target execute TweenAction.
*/
void* target;
/**
* The action running duration time.
*/
float duration;
/**
* The action running current position in duration time.
*/
float curTime;
/**
* Means action running in queue or immediately, default true.
*/
bool isQueue;
/**
* TweenActionValue list changing concurrently.
*/
ArrayList(TweenActionValue) actionValueList[1];
/**
* When action complete callback.
*/
TweenActionOnComplete OnComplete;
};
/**
* Manage and control all TweenActions.
*/
struct ATween
{
/**
* Control by ATween when action completed.
*
* userData : NULL
* target : NULL
* isQueue : true
* duration : 0
* OnComplete: NULL
*/
TweenAction* (*GetAction) (void);
/**
* Add TweenActon's TweenActionValue.
*/
TweenActionValue* (*AddTweenActionValue) (TweenAction* action);
/**
* Bind TweenActions to tweenID and running.
* if tweenID is NULL will generate tweenID value.
*
* return tweenID.
*/
void* (*RunActions) (Array(TweenAction*)* actions, void* tweenID);
/**
* Remove tweenID's all actions immediately, return false when tweenID not in use.
* we can or not cleanup tweenID bound data for actions,
* but when tweenID not in use then must cleanup for reuse memory
*/
bool (*TryRemoveAllActions) (void* tweenID);
/**
* Complete tweenID's all actions immediately, return false when tweenID not in use.
* if isFireOnComplete true will fire callback.
*/
bool (*TryCompleteAllActions)(void* tweenID, bool isFireOnComplete);
/**
* Find TweenAction in current or queue, and remove it.
* if tweenID not in use return false.
* if not found TweenAction return false.
*/
bool (*TryRemoveAction) (void* tweenID, TweenAction* action);
/**
* Whether the tweenID has action in current or queue.
*/
bool (*HasAction) (void* tweenID);
/**
* Called every frame by loop.
*/
void (*Update) (float deltaSeconds);
};
extern struct ATween ATween[1];
#endif