genesis-3d_engine/Engine/buildingtools/idlcompiler/idlprotocol.cc
zhongdaohuan 6e8fbca745 genesis-3d engine version 1.3.
match the genesis editor version 1.3.0.653.
2014-05-05 14:50:33 +08:00

66 lines
1.7 KiB
C++

//------------------------------------------------------------------------------
// idlprotocol.cc
// (C) 2006 Radon Labs GmbH
//------------------------------------------------------------------------------
#include "stdneb.h"
#include "tools/idlcompiler/idlprotocol.h"
namespace Tools
{
__ImplementClass(Tools::IDLProtocol, 'ILPR', Core::RefCounted);
using namespace Util;
using namespace IO;
//------------------------------------------------------------------------------
/**
*/
IDLProtocol::IDLProtocol() :
isMangalore(false)
{
// empty
}
//------------------------------------------------------------------------------
/**
*/
bool
IDLProtocol::Parse(XmlReader* reader)
{
n_assert(0 != reader);
n_assert(reader->GetCurrentNodeName() == "Protocol");
// parse attributes
this->name = reader->GetString("name");
this->nameSpace = reader->GetString("namespace");
this->isMangalore = reader->GetOptBool("mangalore", false);
// parse dependency definitions
if (reader->SetToFirstChild("Dependency")) do
{
Ptr<IDLDependency> dep = IDLDependency::Create();
if (!dep->Parse(reader))
{
this->SetError(dep->GetError());
return false;
}
this->dependencies.Append(dep);
}
while (reader->SetToNextChild("Dependency"));
// parse message definitions
if (reader->SetToFirstChild("Message")) do
{
Ptr<IDLMessage> msg = IDLMessage::Create();
if (!msg->Parse(reader, this->IsMangalore()))
{
this->SetError(msg->GetError());
return false;
}
this->messages.Append(msg);
}
while (reader->SetToNextChild("Message"));
return true;
}
} // namespace Tools