paysages3d/src/definition/BaseDefinition.cpp

126 lines
2.3 KiB
C++
Raw Normal View History

#include "BaseDefinition.h"
2013-11-03 12:00:31 +00:00
#include "PackStream.h"
BaseDefinition::BaseDefinition(BaseDefinition* parent, const std::string &name):
parent(parent), name(name)
{
2013-10-30 14:39:56 +00:00
if (parent)
{
root = parent->root;
parent->addChild(this);
2013-10-30 14:39:56 +00:00
}
else
{
root = this;
}
}
BaseDefinition::~BaseDefinition()
{
if (parent)
{
parent->removeChild(this);
parent = NULL;
}
for (auto child:children)
2013-10-30 14:39:56 +00:00
{
if (child->getParent() == this)
{
delete child;
}
2013-10-30 14:39:56 +00:00
}
}
void BaseDefinition::setName(const std::string &name)
2013-10-30 14:39:56 +00:00
{
2013-10-31 16:59:18 +00:00
this->name = name;
2013-10-30 14:39:56 +00:00
}
Scenery* BaseDefinition::getScenery()
{
if (parent)
{
return parent->getScenery();
}
else
{
return NULL;
}
}
std::string BaseDefinition::toString(int indent) const
{
std::string result;
for (int i = 0; i < indent; i++)
{
result += " ";
}
result += name;
if (not children.empty())
{
for (auto &child: children)
{
result += "\n" + child->toString(indent + 1);
}
}
return result;
}
2013-11-15 23:27:40 +00:00
void BaseDefinition::save(PackStream* stream) const
2013-10-30 14:39:56 +00:00
{
2013-11-15 23:27:40 +00:00
stream->write(name);
for (auto child: children)
2013-10-30 14:39:56 +00:00
{
child->save(stream);
2013-10-30 14:39:56 +00:00
}
}
2013-11-15 23:27:40 +00:00
void BaseDefinition::load(PackStream* stream)
2013-10-30 14:39:56 +00:00
{
2013-11-15 23:27:40 +00:00
name = stream->readString();
for (auto child: children)
2013-10-30 14:39:56 +00:00
{
child->load(stream);
2013-10-30 14:39:56 +00:00
}
}
2013-10-31 16:59:18 +00:00
2013-11-13 19:07:35 +00:00
void BaseDefinition::copy(BaseDefinition* destination) const
2013-10-31 16:59:18 +00:00
{
2013-10-31 23:09:51 +00:00
destination->setName(name);
// can't copy children as we don't know their types...
2013-10-31 16:59:18 +00:00
}
void BaseDefinition::validate()
{
for (auto child: children)
2013-10-31 16:59:18 +00:00
{
child->validate();
2013-10-31 16:59:18 +00:00
}
}
void BaseDefinition::addChild(BaseDefinition* child)
{
if (std::find(children.begin(), children.end(), child) == children.end())
2013-10-31 16:59:18 +00:00
{
children.push_back(child);
2013-10-31 16:59:18 +00:00
child->parent = this;
child->root = this->root;
}
}
void BaseDefinition::removeChild(BaseDefinition* child)
{
std::vector<BaseDefinition*>::iterator it = std::find(children.begin(), children.end(), child);
if (it != children.end())
{
child->parent = NULL;
children.erase(it);
}
else
{
qWarning("Trying to remove not found child '%s' from '%s'", child->name.c_str(), name.c_str());
}
2013-10-31 16:59:18 +00:00
}