From 5f6dad55d75cbe146ff7fefc899a02ccd39078ba Mon Sep 17 00:00:00 2001 From: Treeki Date: Thu, 7 Oct 2010 15:56:13 +0200 Subject: initial commit -- everything compiles except for material.cpp. the material system still needs quite a bit of work; this will come in due time --- lyt/group.cpp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 lyt/group.cpp (limited to 'lyt/group.cpp') diff --git a/lyt/group.cpp b/lyt/group.cpp new file mode 100644 index 0000000..c3a16fb --- /dev/null +++ b/lyt/group.cpp @@ -0,0 +1,38 @@ +#include "group.h" + +LYTGroup::LYTGroup() { +} + + + + +void LYTGroup::writeToDataStream(QDataStream &out) { + WriteFixedLengthASCII(out, name, 0x10); + + // write the contents + out << (quint16)panes.count(); + out.skipRawData(2); // padding + + foreach (LYTPane *pane, panes) { + WriteFixedLengthASCII(out, pane->name, 0x10); + } +} + + +void LYTGroup::readFromDataStream(QDataStream &in, LYTPane &linkedPane) { + name = ReadFixedLengthASCII(in, 0x10); + qDebug() << "reading group" << name; + + // read the contents + quint16 paneCount; + in >> (quint16&)paneCount; + in.skipRawData(2); // padding + + for (int i = 0; i < paneCount; i++) { + QString paneName = ReadFixedLengthASCII(in, 0x10); + + qDebug() << "found" << paneName << "in group" << this->name; + + this->panes.append(linkedPane.findPaneByName(paneName, true)); + } +} -- cgit v1.2.3