blob: 2ac14658d56ed0fea95442480498eaf318d7c10b (
plain)
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
|
#include <components/animate.hpp>
void Limb::firstFrame(Frame& duckmyass)
{
// loop through the spritedata of the sprite we wanna change
for (auto &d : duckmyass) {
// if the sprite data is the same limb as this limb
if (d.first.limb == limbID) {
// rotate through (for safety) the first frame to set the limb
for (auto &fa : frame.at(0)) {
if (fa.first.limb == limbID) {
d.first = fa.first;
d.second = fa.second;
}
}
}
}
}
void Limb::nextFrame(Frame& duckmyass, float dt) {
updateCurrent -= dt;
if (updateCurrent <= 0) {
updateCurrent = updateRate;
} else {
return;
}
if (index < frame.size() - 1)
index++;
else
index = 0;
for (auto &d : duckmyass) {
if (d.first.limb == limbID) {
for (auto &fa : frame.at(index)) {
if (fa.first.limb == limbID) {
d.first = fa.first;
d.second = fa.second;
}
}
}
}
}
void Animate::firstFrame(unsigned int updateType, Frame &sprite)
{
unsigned int upid = updateType; //^see todo
for (auto &l : limb) {
if (l.updateType == upid) {
l.firstFrame(sprite);
}
}
}
void Animate::updateAnimation(unsigned int updateType, Frame& sprite, float dt)
{
unsigned int upid = updateType; //^see todo
for (auto &l : limb) {
if (l.updateType == upid) {
l.nextFrame(sprite, dt);
}
}
}
void Animate::fromXML(XMLElement* imp, XMLElement* def)
{
(void)imp;
auto animx = def->FirstChildElement();
unsigned int limbid = 0;
float limbupdate = 0;
unsigned int limbupdatetype = 0;
while (animx != nullptr) {
if (std::string(animx->Name()) == "movement") {
limbupdatetype = 1;
auto limbx = animx->FirstChildElement();
while (limbx != nullptr) {
if (std::string(limbx->Name()) == "limb") {
auto frames = developFrame(limbx);
limb.push_back(Limb());
auto& newLimb = limb.back();
newLimb.updateType = limbupdatetype;
if (limbx->QueryUnsignedAttribute("id", &limbid) == XML_NO_ERROR)
newLimb.limbID = limbid;
if (limbx->QueryFloatAttribute("update", &limbupdate) == XML_NO_ERROR)
newLimb.updateRate = limbupdate;
// place our newly developed frames in the entities animation stack
for (auto &f : frames) {
newLimb.addFrame(f);
for (auto &fr : newLimb.frame) {
for (auto &sd : fr)
sd.first.limb = limbid;
}
}
}
limbx = limbx->NextSiblingElement();
}
}
animx = animx->NextSiblingElement();
}
}
|