-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathSkeletonAnimationPlayer.h
231 lines (185 loc) · 6.27 KB
/
SkeletonAnimationPlayer.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
/*
* 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-28
* Update : 2019-2-13
* Author : scott.cgi
*/
#ifndef SKELETON_ANIMATION_PLAYER_H
#define SKELETON_ANIMATION_PLAYER_H
#include "Engine/Toolkit/HeaderUtils/Define.h"
#include "Engine/Extension/Spine/Skeleton.h"
#include "Engine/Extension/Spine/SkeletonSlot.h"
typedef struct SkeletonAnimationPlayer SkeletonAnimationPlayer;
/**
* Callback when SkeletonAnimationPlayer current action over.
*/
typedef void (*SkeletonAnimationPlayerOnActionOver)(SkeletonAnimationPlayer* player);
/**
* Drive skeleton animation play by animationData.
*/
struct SkeletonAnimationPlayer
{
Skeleton skeleton[1];
/**
* Action play loops, default -1.
*
* if negative then infinite loop.
* if positive then loop to 0.
* if 0 then stop forever.
*/
int loop;
SkeletonAnimationData* curAnimationData;
SkeletonAnimationData* preAnimationData;
/**
* The curAnimationData current time.
*/
float curTime;
/**
* The preAnimationData current time.
*/
float preTime;
/**
* The preAnimationData current mix time.
*/
float mixTime;
/**
* The preAnimationData mix duration time.
*/
float mixDuration;
/**
* Callback when action over.
*/
SkeletonAnimationPlayerOnActionOver OnActionOver;
};
/**
* Control and mange SkeletonAnimationPlayer.
*/
struct ASkeletonAnimationPlayer
{
/**
* Create SkeletonAnimationPlayer by jsonFilePath.
*
* jsonFilePath:
* Android: assets
* IOS : NSBundle
*/
SkeletonAnimationPlayer* (*Create) (const char* jsonFilePath, const char* animationName);
SkeletonAnimationPlayer* (*CreateWithData) (SkeletonData* skeletonData, const char* animationName);
/**
* Init SkeletonAnimationPlayer by jsonFilePath.
*
* jsonFilePath:
* Android: assets
* IOS : NSBundle
*/
void (*Init) (
const char* jsonFilePath,
const char* animationName,
SkeletonAnimationPlayer* outPlayer
);
void (*Release) (SkeletonAnimationPlayer* player);
/**
* Apply and draw skeleton.
*/
void (*Update) (SkeletonAnimationPlayer* player, float deltaSeconds);
/**
* Set player's animationData in Skeleton by animationName.
*/
void (*SetAnimation) (SkeletonAnimationPlayer* player, const char* animationName);
/**
* Set player's animationData in Skeleton by animationName.
* the skeleton will from preAnimation mix to this animation.
* the mixDuration is cross fade time in seconds.
*/
void (*SetAnimationMix)(
SkeletonAnimationPlayer* player,
const char* animationName,
float mixDuration
);
/**
* Init Drawable that can render slot bounding box with primitive call.
*/
void (*InitSlotBoundingBoxDrawable)(
SkeletonAnimationPlayer* player,
const char* slotName,
Drawable* outDrawable
);
};
extern struct ASkeletonAnimationPlayer ASkeletonAnimationPlayer[1];
/**
* Get bone from player by boneName.
*/
static inline SkeletonBone* ASkeletonAnimationPlayer_GetBone(SkeletonAnimationPlayer* player, const char* boneName)
{
return AArrayStrMap_Get(player->skeleton->boneMap, boneName, SkeletonBone*);
}
/**
* Get slot from player by slotName.
*/
static inline SkeletonSlot* ASkeletonAnimationPlayer_GetSlot(SkeletonAnimationPlayer* player, const char* slotName)
{
return AArrayStrMap_Get(player->skeleton->slotMap, slotName, SkeletonSlot*);
}
/**
* Get drawable from player.
*/
static inline Drawable* ASkeletonAnimationPlayer_GetDrawable(SkeletonAnimationPlayer* player)
{
return player->skeleton->drawable;
}
/**
* Call player update method.
*/
static inline void ASkeletonAnimationPlayer_Update(SkeletonAnimationPlayer* player, float deltaSeconds)
{
ASkeletonAnimationPlayer->Update(player, deltaSeconds);
}
/**
* Get skeletonData from player.
*/
static inline SkeletonData* ASkeletonAnimationPlayer_GetSkeletonData(SkeletonAnimationPlayer* player)
{
return player->skeleton->skeletonData;
}
/**
* Get the player loading path.
*/
static inline const char* ASkeletonAnimationPlayer_GetPath(SkeletonAnimationPlayer* player)
{
return player->skeleton->skeletonData->filePath;
}
/**
* Get the SubMesh from player by slotName and attachmentName.
*/
static inline SubMesh* ASkeletonAnimationPlayer_GetSubMesh
(
SkeletonAnimationPlayer* player,
const char* slotName,
const char* attachmentName
)
{
return ASkeleton_GetSubMesh(player->skeleton, slotName, attachmentName);
}
/**
* Get the player width.
*/
static inline float ASkeletonAnimationPlayer_GetWidth(SkeletonAnimationPlayer* player)
{
return ASkeleton_GetWidth(player->skeleton);
}
/**
* Get the player height.
*/
static inline float ASkeletonAnimationPlayer_GetHeight(SkeletonAnimationPlayer* player)
{
return ASkeleton_GetHeight(player->skeleton);
}
#endif