blob: 998632aa434b044b8dae4a4af9fd4f0672609c24 (
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
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
|
#include "animation.h"
#include <QPointF>
#include <QIODevice>
#include <QDataStream>
class Frame
{
public:
Frame() {
}
int nodeCount() const
{
return m_nodePositions.size();
}
void setNodeCount(int nodeCount)
{
while (nodeCount > m_nodePositions.size())
m_nodePositions.append(QPointF());
while (nodeCount < m_nodePositions.size())
m_nodePositions.removeLast();
}
QPointF nodePos(int idx) const
{
return m_nodePositions.at(idx);
}
void setNodePos(int idx, const QPointF &pos)
{
m_nodePositions[idx] = pos;
}
private:
QList<QPointF> m_nodePositions;
};
Animation::Animation()
{
m_currentFrame = 0;
m_frames.append(new Frame);
}
Animation::~Animation()
{
qDeleteAll(m_frames);
}
void Animation::setTotalFrames(int totalFrames)
{
while (m_frames.size() < totalFrames)
m_frames.append(new Frame);
while (totalFrames < m_frames.size())
delete m_frames.takeLast();
}
int Animation::totalFrames() const
{
return m_frames.size();
}
void Animation::setCurrentFrame(int currentFrame)
{
m_currentFrame = qMax(qMin(currentFrame, totalFrames()-1), 0);
}
int Animation::currentFrame() const
{
return m_currentFrame;
}
void Animation::setNodeCount(int nodeCount)
{
Frame *frame = m_frames.at(m_currentFrame);
frame->setNodeCount(nodeCount);
}
int Animation::nodeCount() const
{
Frame *frame = m_frames.at(m_currentFrame);
return frame->nodeCount();
}
void Animation::setNodePos(int idx, const QPointF &pos)
{
Frame *frame = m_frames.at(m_currentFrame);
frame->setNodePos(idx, pos);
}
QPointF Animation::nodePos(int idx) const
{
Frame *frame = m_frames.at(m_currentFrame);
return frame->nodePos(idx);
}
QString Animation::name() const
{
return m_name;
}
void Animation::setName(const QString &name)
{
m_name = name;
}
void Animation::save(QIODevice *device) const
{
QDataStream stream(device);
stream << m_name;
stream << m_frames.size();
foreach (Frame *frame, m_frames) {
stream << frame->nodeCount();
for (int i=0; i<frame->nodeCount(); ++i)
stream << frame->nodePos(i);
}
}
void Animation::load(QIODevice *device)
{
if (!m_frames.isEmpty())
qDeleteAll(m_frames);
m_frames.clear();
QDataStream stream(device);
stream >> m_name;
int frameCount;
stream >> frameCount;
for (int i=0; i<frameCount; ++i) {
int nodeCount;
stream >> nodeCount;
Frame *frame = new Frame;
frame->setNodeCount(nodeCount);
for (int j=0; j<nodeCount; ++j) {
QPointF pos;
stream >> pos;
frame->setNodePos(j, pos);
}
m_frames.append(frame);
}
}
|