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
|
#include "layout.h"
#include <QtCore/QStack>
#include <QtCore/QVector>
LYTLayout::LYTLayout(LYTPackageBase &package) : rootPane(0), m_package(package) {
this->clear();
}
LYTLayout::LYTLayout(LYTPackageBase &package, QString name) : rootPane(0), m_package(package) {
this->loadLayoutFromPackage(name);
}
LYTLayout::~LYTLayout() {
this->clear();
}
void LYTLayout::clear() {
this->width = 608.0;
this->height = 456.0;
this->m_fontRefs.clear();
this->m_textureRefs.clear();
foreach (LYTMaterial *material, materials.values())
delete material;
this->materials.clear();
if (this->rootPane != 0)
delete this->rootPane;
}
LYTPackageBase &LYTLayout::package() const {
return m_package;
}
bool LYTLayout::loadLayoutFromPackage(QString name) {
qDebug() << "Loading layout: " << name;
qDebug() << "From package: " << m_package.description();
QStack<LYTPane *> paneStack;
LYTPane *lastPane, *newPane;
bool hasGroupContainer = false;
int groupStackID = 0;
QByteArray layoutData = m_package.getLayout(name);
LYTBinaryFile file(layoutData);
this->clear();
foreach (LYTBinaryFileSection section, file.sections) {
// Handle every section in the file
qDebug("Handling %c%c%c%c", section.magic.str[3], section.magic.str[2], section.magic.str[1], section.magic.str[0]);
switch (section.magic.value) {
case 'lyt1':
this->readLyt1(section);
break;
case 'txl1':
this->readTxl1(section);
break;
case 'fnl1':
this->readFnl1(section);
break;
case 'mat1':
this->readMat1(section);
break;
case 'pan1':
case 'txt1':
case 'pic1':
case 'wnd1':
case 'bnd1':
newPane = this->createPaneObj(section);
newPane->dumpToDebug();
if (rootPane == 0)
rootPane = newPane;
if (!paneStack.empty()) {
newPane->parent = paneStack.last();
paneStack.last()->children.append(newPane);
}
lastPane = newPane;
break;
case 'pas1':
paneStack.push(lastPane);
break;
case 'pae1':
lastPane = paneStack.pop();
break;
case 'grp1':
if (!hasGroupContainer) {
// nw4r::lyt::Layout::Build actually creates a GroupContainer
// but we just use a QList so we don't need to do that
hasGroupContainer = true;
} else {
if (groupStackID == 1) {
// create a group and add it to the list
QDataStream in(section.data);
InitDataStream(in);
groups.append(new LYTGroup());
groups.last()->readFromDataStream(in, *this->rootPane);
}
}
break;
case 'grs1':
groupStackID++;
break;
case 'gre1':
groupStackID--;
break;
}
}
// todo: usd1
return true;
}
void LYTLayout::readLyt1(LYTBinaryFileSection §ion) {
// initial info block containing width + height
QDataStream in(section.data);
InitDataStream(in);
in.skipRawData(4); // unused in newer nw4r::lyt versions - TODO: add support
in >> (float&)width;
in >> (float&)height;
qDebug() << "Read lyt1 block: layout size:" << width << "x" << height;
}
void LYTLayout::readTxl1(LYTBinaryFileSection §ion) {
// list of texture references for this layout
QDataStream in(section.data);
InitDataStream(in);
m_textureRefs = ReadStringList(in);
}
void LYTLayout::readFnl1(LYTBinaryFileSection §ion) {
// list of font references for this layout
QDataStream in(section.data);
InitDataStream(in);
m_fontRefs = ReadStringList(in);
}
void LYTLayout::readMat1(LYTBinaryFileSection §ion) {
// the material section for the layout
// not fun.
QDataStream in(section.data);
InitDataStream(in);
quint16 count;
in >> (quint16&)count;
in.skipRawData(2); // padding
// create a list of every offset
// these offsets are from the start of the section, not from
// the first offset entry like StringLists are
QVector<quint32> materialOffsets(count);
for (int i = 0; i < count; i++) {
quint32 offset;
in >> (quint32&)offset;
materialOffsets[i] = offset;
}
// now read each material
for (int i = 0; i < count; i++) {
// subtract 8 from the offset because section.data doesn't contain
// the nw4r::ut::BinaryBlockHeader whereas these offsets do count it
in.device()->seek(materialOffsets[i] - 8);
LYTMaterial *material = new LYTMaterial(*this);
material->readFromDataStream(in);
material->dumpToDebug();
materials.insert(material->name, material);
}
}
LYTPane *LYTLayout::createPaneObj(LYTBinaryFileSection §ion) {
LYTPane *pane;
if (section.magic.value == 'pan1')
pane = new LYTPane(*this);
else if (section.magic.value == 'txt1')
pane = new LYTTextBox(*this);
else if (section.magic.value == 'pic1')
pane = new LYTPicture(*this);
else if (section.magic.value == 'wnd1')
pane = new LYTWindow(*this);
else if (section.magic.value == 'bnd1')
pane = new LYTBounding(*this);
QDataStream in(section.data);
InitDataStream(in);
pane->readFromDataStream(in);
return pane;
}
|