void ESMStore::load(ESMReader &esm) { set<string> missing; ESM::Dialogue *dialogue = 0; // Loop through all records while(esm.hasMoreRecs()) { NAME n = esm.getRecName(); esm.getRecHeader(); // Look up the record type. RecListList::iterator it = recLists.find(n.val); if(it == recLists.end()) { if (n.val==ESM::REC_INFO) { if (dialogue) { ESM::DialInfo info; info.load (esm); dialogue->mInfo.push_back (info); } else { std::cerr << "error: info record without dialog" << std::endl; esm.skipRecord(); continue; } } else { // Not found (this would be an error later) esm.skipRecord(); missing.insert(n.toString()); continue; } } else { // Load it std::string id = esm.getHNOString("NAME"); it->second->load(esm, id); if (n.val==ESM::REC_DIAL) { RecListT<Dialogue>& recList = static_cast<RecListT<Dialogue>& > (*it->second); id = recList.toLower (id); RecListT<Dialogue>::MapType::iterator iter = recList.list.find (id); assert (iter!=recList.list.end()); dialogue = &iter->second; } else dialogue = 0; // Insert the reference into the global lookup if(!id.empty()) all[id] = n.val; } } /* This information isn't needed on screen. But keep the code around for debugging purposes later. cout << "\n" << recLists.size() << " record types:\n"; for(RecListList::iterator it = recLists.begin(); it != recLists.end(); it++) cout << " " << toStr(it->first) << ": " << it->second->getSize() << endl; cout << "\nNot implemented yet: "; for(set<string>::iterator it = missing.begin(); it != missing.end(); it++ ) cout << *it << " "; cout << endl; */ }
void CSMDoc::WriteDialogueCollectionStage::perform (int stage, Messages& messages) { const CSMWorld::Record<ESM::Dialogue>& topic = mTopics.getRecord (stage); CSMWorld::RecordBase::State state = topic.mState; if (state==CSMWorld::RecordBase::State_Deleted) { // if the topic is deleted, we do not need to bother with INFO records. /// \todo wrote record with delete flag return; } // Test, if we need to save anything associated info records. bool infoModified = false; CSMWorld::InfoCollection::Range range = mInfos.getTopicRange (topic.get().mId); for (CSMWorld::InfoCollection::RecordConstIterator iter (range.first); iter!=range.second; ++iter) { CSMWorld::RecordBase::State state = iter->mState; if (state==CSMWorld::RecordBase::State_Modified || state==CSMWorld::RecordBase::State_ModifiedOnly || state==CSMWorld::RecordBase::State_Deleted) { infoModified = true; break; } } if (state==CSMWorld::RecordBase::State_Modified || state==CSMWorld::RecordBase::State_ModifiedOnly || infoModified) { mState.getWriter().startRecord (topic.mModified.sRecordId); mState.getWriter().writeHNCString ("NAME", topic.mModified.mId); topic.mModified.save (mState.getWriter()); mState.getWriter().endRecord (topic.mModified.sRecordId); // write modified selected info records for (CSMWorld::InfoCollection::RecordConstIterator iter (range.first); iter!=range.second; ++iter) { CSMWorld::RecordBase::State state = iter->mState; if (state==CSMWorld::RecordBase::State_Deleted) { /// \todo wrote record with delete flag } else if (state==CSMWorld::RecordBase::State_Modified || state==CSMWorld::RecordBase::State_ModifiedOnly) { ESM::DialInfo info = iter->get(); info.mId = info.mId.substr (info.mId.find_last_of ('#')+1); if (iter!=range.first) { CSMWorld::InfoCollection::RecordConstIterator prev = iter; --prev; info.mPrev = prev->mModified.mId.substr (prev->mModified.mId.find_last_of ('#')+1); } CSMWorld::InfoCollection::RecordConstIterator next = iter; ++next; if (next!=range.second) { info.mNext = next->mModified.mId.substr (next->mModified.mId.find_last_of ('#')+1); } mState.getWriter().startRecord (info.sRecordId); mState.getWriter().writeHNCString ("INAM", info.mId); info.save (mState.getWriter()); mState.getWriter().endRecord (info.sRecordId); } } } }
void ESMStore::load(ESMReader &esm) { set<string> missing; ESM::Dialogue *dialogue = 0; // Loop through all records while(esm.hasMoreRecs()) { NAME n = esm.getRecName(); esm.getRecHeader(); // Look up the record type. RecListList::iterator it = recLists.find(n.val); if(it == recLists.end()) { if (n.val==ESM::REC_INFO) { if (dialogue) { ESM::DialInfo info; info.load (esm); dialogue->mInfo.push_back (info); } else { std::cerr << "error: info record without dialog" << std::endl; esm.skipRecord(); } } else if (n.val==ESM::REC_MGEF) { magicEffects.load (esm); } else if (n.val==ESM::REC_SKIL) { skills.load (esm); } else { // Not found (this would be an error later) esm.skipRecord(); missing.insert(n.toString()); } } else { // Load it std::string id = esm.getHNOString("NAME"); it->second->load(esm, id); if (n.val==ESM::REC_DIAL) { RecListT<Dialogue>& recList = static_cast<RecListT<Dialogue>& > (*it->second); id = recList.toLower (id); RecListT<Dialogue>::MapType::iterator iter = recList.list.find (id); assert (iter!=recList.list.end()); dialogue = &iter->second; } else dialogue = 0; // Insert the reference into the global lookup if(!id.empty() && (n.val==REC_ACTI || n.val==REC_ALCH || n.val==REC_APPA || n.val==REC_ARMO || n.val==REC_BOOK || n.val==REC_CLOT || n.val==REC_CONT || n.val==REC_CREA || n.val==REC_DOOR || n.val==REC_INGR || n.val==REC_LEVC || n.val==REC_LEVI || n.val==REC_LIGH || n.val==REC_LOCK || n.val==REC_MISC || n.val==REC_NPC_ || n.val==REC_PROB || n.val==REC_REPA || n.val==REC_STAT || n.val==REC_WEAP) ) all[id] = n.val; } } for (int i = 0; i < Attribute::Length; ++i) { Attribute::AttributeID id = Attribute::attributeIds[i]; attributes.list.insert(std::make_pair(id, Attribute(id, Attribute::gmstAttributeIds[i], Attribute::gmstAttributeDescIds[i]))); } /* This information isn't needed on screen. But keep the code around for debugging purposes later. cout << "\n" << recLists.size() << " record types:\n"; for(RecListList::iterator it = recLists.begin(); it != recLists.end(); it++) cout << " " << toStr(it->first) << ": " << it->second->getSize() << endl; cout << "\nNot implemented yet: "; for(set<string>::iterator it = missing.begin(); it != missing.end(); it++ ) cout << *it << " "; cout << endl; */ }