我正在尝试在我的应用程序中创建一个可以通过xml文件中的属性加载对象的函数。我想使用TinyXML2,因为我听说游戏非常简单快捷。
目前我有以下xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<Level>
<Pulsator starttime="0" type="0" higherradius="100" lowerradius="10" time="60" y="500" x="300" bpm="60"/>
</Level>
Pulsator的每个属性都是我的Pulsator类中的一个变量。我使用followign函数导入我的Pulsators并将它们添加到对象矢量中。
void Game::LoadLevel(string filename)
{
tinyxml2::XMLDocument level;
level.LoadFile(filename.c_str());
tinyxml2::XMLNode* root = level.FirstChild();
tinyxml2::XMLNode* childNode = root->FirstChild();
while (childNode)
{
Pulsator* tempPulse = new Pulsator();
float bpm;
float type;
std::string::size_type sz;
tinyxml2::XMLElement* data = childNode->ToElement();
string inputdata = data->Attribute("bpm");
bpm = std::stof(inputdata, &sz);
if (type == 0)
{
tempPulse->type = Obstacle;
tempPulse->SetColor(D2D1::ColorF(D2D1::ColorF::Black));
}
if (type == 1)
{
tempPulse->type = Enemy;
tempPulse->SetColor(D2D1::ColorF(D2D1::ColorF::Red));
}
if (type == 2)
{
tempPulse->type = Score;
tempPulse->SetColor(D2D1::ColorF(D2D1::ColorF::Green));
}
else
{
tempPulse->type = No_Type;
}
objects.push_back(tempPulse);
}
}
每次到达根节点时,它都会错误地加载,而childnode变为null。 我使用不正确或者我的XML文件有问题吗?
答案 0 :(得分:0)
代码没有正确指定它想要的孩子。你想要第一个XMLElement,而不是第一个孩子。为此,请在获取childNode时使用此代码:
tinyxml2::XMLElement* childNode = root->FirstChildElement();
这样可以节省你的演员阵容。 (你不需要,也不应该使用ToElement())。