-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathSkeletonTimeline.h
315 lines (259 loc) · 8.65 KB
/
SkeletonTimeline.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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
/*
* 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 : 2013-7-3
* Update : 2019-2-1
* Author : scott.cgi
*/
#ifndef SKELETON_TIMELINE_H
#define SKELETON_TIMELINE_H
#include "Engine/Extension/Spine/Skeleton.h"
#include "Engine/Toolkit/Utils/Array.h"
#include "Engine/Extension/Spine/SkeletonBone.h"
#include "Engine/Extension/Spine/SkeletonSlot.h"
typedef enum
{
SkeletonCurveType_Linear = -1,
SkeletonCurveType_Stepped = -2,
SkeletonCurveType_Bezier = -3,
}
SkeletonCurveType;
typedef struct
{
Array(float)* curveArr;
}
SkeletonCurveTimeline;
typedef struct SkeletonTimeline SkeletonTimeline;
/**
* The abstract skeleton animation timeline.
* the subclass implement the functions.
*/
struct SkeletonTimeline
{
/**
* Set bone slot attachment effect for this animation in this time.
* the mixPercent is percent to set the effect, range in [0, 1].
* the time is seconds
*/
void (*Apply) (SkeletonTimeline* skeletonTimeline, Skeleton* skeleton, float time, float mixPercent);
/**
* Release member memory space.
*/
void (*Release)(SkeletonTimeline* skeletonTimeline);
/**
* Subclass pointer which inheritance SkeletonTimeline.
*/
void* childPtr;
};
/**
* The skeleton animation rotation timeline.
*/
typedef struct
{
SkeletonCurveTimeline curveTimeline [1];
SkeletonTimeline skeletonTimeline[1];
/**
* Each group has time angle, as [time, angle...]
*/
Array(float)* frameArr;
/**
* Index in SkeletonData's boneDataOrderArr.
*/
int boneIndex;
}
SkeletonRotateTimeline;
/**
* The skeleton animation translate timeline.
*/
typedef struct
{
SkeletonCurveTimeline curveTimeline [1];
SkeletonTimeline skeletonTimeline[1];
/**
* Each group has time x y, as [time, x, y...]
*/
Array(float)* frameArr;
/**
* Index in SkeletonData's boneDataOrderArr.
*/
int boneIndex;
}
SkeletonTranslateTimeline;
/**
* The skeleton animation scale timeline.
*/
typedef struct
{
SkeletonTranslateTimeline translateTimeline[1];
}
SkeletonScaleTimeline;
/**
* The skeleton animation color timeline.
*/
typedef struct
{
SkeletonCurveTimeline curveTimeline [1];
SkeletonTimeline skeletonTimeline[1];
/**
* Each group has time r g b a, as [time, r, g, b, a...]
*/
Array(float)* frameArr;
/**
* Index in SkeletonData's slotDataOrderArr.
*/
int slotIndex;
}
SkeletonColorTimeline;
/**
* The skeleton animation attachment timeline.
*/
typedef struct
{
SkeletonTimeline skeletonTimeline[1];
/**
* Each group has time, as [time...].
*/
Array(float)* frameArr;
Array(const char*)* attachmentNameArr;
/**
* Index in SkeletonData's slotDataOrderArr.
*/
int slotIndex;
int preFrameIndex;
}
SkeletonAttachmentTimeline;
/**
* The skeleton animation event timeline.
*/
typedef struct
{
SkeletonTimeline skeletonTimeline[1];
/**
* Each group has time, as [time...].
*/
Array(float)* frameArr;
Array(SkeletonEventData*)* eventArr;
int preFrameIndex;
}
SkeletonEventTimeline;
/**
* The skeleton animation drawOrder timeline.
*/
typedef struct
{
SkeletonTimeline skeletonTimeline[1];
/**
* Each group has time, as [time...].
*/
Array(float)* frameArr;
/**
* Each frame has a new drawOrder array.
*/
Array(Array(int)*)* drawOrderArr;
int preFrameIndex;
}
SkeletonDrawOrderTimeline;
/**
* The skeleton animation deform timeline.
*/
typedef struct
{
SkeletonCurveTimeline curveTimeline [1];
SkeletonTimeline skeletonTimeline[1];
/**
* Each group has time, as [time...].
*/
Array(float)* frameArr;
/**
* Each frame has a new vertex array.
*/
Array(Array(float)*)* vertexArr;
/**
* Index in SkeletonData's slotDataOrderArr.
*/
int slotIndex;
SkeletonAttachmentData* attachmentData;
}
SkeletonDeformTimeline;
/**
* Control and manage SkeletonTimeline.
*/
struct ASkeletonTimeline
{
SkeletonRotateTimeline* (*CreateRotate) (int frameCount, int boneIndex);
SkeletonTranslateTimeline* (*CreateTranslate) (int frameCount, int boneIndex);
SkeletonScaleTimeline* (*CreateScale) (int frameCount, int boneIndex);
SkeletonColorTimeline* (*CreateColor) (int frameCount);
SkeletonAttachmentTimeline* (*CreateAttachment)(int frameCount);
SkeletonEventTimeline* (*CreateEvent) (int frameCount);
SkeletonDrawOrderTimeline* (*CreateDrawOrder) (int frameCount);
SkeletonDeformTimeline* (*CreateDeform) (int frameCount);
void (*SetLinear) (SkeletonCurveTimeline* curveTimeline, int frameIndex);
void (*SetStepped)(SkeletonCurveTimeline* curveTimeline, int frameIndex);
/**
* Sets the control handle positions for an interpolation bezier curve.
* used to transition from this keyframe to the next.
*
* cx1 and cx2 are from 0 to 1, representing the percent of time between the two keyframes.
* cy1 and cy2 are the percent of the difference between the keyframe's values.
*/
void (*SetCurve) (
SkeletonCurveTimeline* curveTimeline,
int frameIndex,
float cx1,
float cy1,
float cx2,
float cy2
);
/**
* Set the time and angle of the specified keyframe.
*/
void (*SetRotateFrame) (SkeletonRotateTimeline* rotateTimeline, int frameIndex, float time, float angle);
/* Set the time and value of the specified keyframe. */
void (*SetTranslateFrame) (
SkeletonTranslateTimeline* translateTimeline,
int frameIndex,
float time,
float x,
float y
);
void (*SetColorFrame) (
SkeletonColorTimeline* colorTimeline,
int frameIndex,
float time,
Color* color
);
void (*SetAttachmentFrame)(
SkeletonAttachmentTimeline* attachmentTimeline,
int frameIndex,
float time,
const char* attachmentName
);
void (*SetEventFrame) (
SkeletonEventTimeline* eventTimeline,
int frameIndex,
float time,
SkeletonEventData* eventData
);
void (*SetDrawOrderFrame) (
SkeletonDrawOrderTimeline* drawOrderTimeline,
int frameIndex,
float time,
Array(int)* drawOrder
);
void (*SetDeformFrame) (
SkeletonDeformTimeline* deformTimeline,
int frameIndex,
float time,
Array(float)* vertexArr
);
};
extern struct ASkeletonTimeline ASkeletonTimeline[1];
#endif