本文整理汇总了C++中DataFile::getRootItem方法的典型用法代码示例。如果您正苦于以下问题:C++ DataFile::getRootItem方法的具体用法?C++ DataFile::getRootItem怎么用?C++ DataFile::getRootItem使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataFile
的用法示例。
在下文中一共展示了DataFile::getRootItem方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: rMain
void
MissionSelector::loadMission(string fileName)
{
if(fileName == "") return;
Mission* oldMission = rMain()->getMission();
Orbit* orbitScreen = static_cast<Orbit*>(rMain()->getScreenManager().getState(Main::ORBIT_SCREEN));
orbitScreen->enterReadyState();
DataFile* dataFile = new DataFile(stringToWString(fileName));
if(dataFile->getRootItem() != NULL) {
Mission* mission = dataFile->getRootItem()->castToClass<Mission>();
if(mission != NULL) {
rMain()->setMission(mission);
if(oldMission != NULL) {
if (oldMission == ConfigManager::getPlayer()->getHomeBase()) {
ConfigManager::getSingleton().savePlayer();
}
else {
delete oldMission->getDataFile();
}
}
}
}
}
示例2: wstringFromLuaObject
int
station_load_group(LuaState* state)
{
wstring fileName = wstringFromLuaObject(state->Stack(1));
if(fileName == L"") return 0;
DataFile* groupFile = new DataFile(fileName);
if(NULL == groupFile->getRootItem()) {
logEngineWarn("station_load_group: File not found");
return 0;
}
Group* group = groupFile->getRootItem()->castToClass<Group>();
if(NULL == group) return 0;
Station* station = rMain()->getMission()->getStation();
station->insertGroup(group);
delete groupFile;
return 0;
}