mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
434fd21584
This is vanilla behaviour, and required for the Mehra Milo vivec informants quest.
95 lines
2.8 KiB
C++
95 lines
2.8 KiB
C++
|
|
#include "quest.hpp"
|
|
|
|
#include "../mwworld/esmstore.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/world.hpp"
|
|
|
|
namespace MWDialogue
|
|
{
|
|
Quest::Quest()
|
|
: Topic(), mIndex (0), mFinished (false)
|
|
{}
|
|
|
|
Quest::Quest (const std::string& topic)
|
|
: Topic (topic), mIndex (0), mFinished (false)
|
|
{}
|
|
|
|
const std::string Quest::getName() const
|
|
{
|
|
const ESM::Dialogue *dialogue =
|
|
MWBase::Environment::get().getWorld()->getStore().get<ESM::Dialogue>().find (mTopic);
|
|
|
|
for (std::vector<ESM::DialInfo>::const_iterator iter (dialogue->mInfo.begin());
|
|
iter!=dialogue->mInfo.end(); ++iter)
|
|
if (iter->mQuestStatus==ESM::DialInfo::QS_Name)
|
|
return iter->mResponse;
|
|
|
|
return "";
|
|
}
|
|
|
|
int Quest::getIndex() const
|
|
{
|
|
return mIndex;
|
|
}
|
|
|
|
void Quest::setIndex (int index)
|
|
{
|
|
const ESM::Dialogue *dialogue =
|
|
MWBase::Environment::get().getWorld()->getStore().get<ESM::Dialogue>().find (mTopic);
|
|
|
|
bool found=false;
|
|
for (std::vector<ESM::DialInfo>::const_iterator iter (dialogue->mInfo.begin());
|
|
iter!=dialogue->mInfo.end(); ++iter)
|
|
if (iter->mData.mDisposition==index && iter->mQuestStatus!=ESM::DialInfo::QS_Name)
|
|
{
|
|
if (iter->mQuestStatus==ESM::DialInfo::QS_Finished)
|
|
mFinished = true;
|
|
else if (iter->mQuestStatus==ESM::DialInfo::QS_Restart)
|
|
mFinished = false;
|
|
|
|
found = true;
|
|
// Don't return here. Quest status may actually be in a different info record, since we don't merge these (yet?)
|
|
}
|
|
|
|
if (found)
|
|
mIndex = index;
|
|
else
|
|
throw std::runtime_error ("unknown journal index for topic " + mTopic);
|
|
}
|
|
|
|
bool Quest::isFinished() const
|
|
{
|
|
return mFinished;
|
|
}
|
|
|
|
void Quest::addEntry (const JournalEntry& entry)
|
|
{
|
|
int index = -1;
|
|
|
|
const ESM::Dialogue *dialogue =
|
|
MWBase::Environment::get().getWorld()->getStore().get<ESM::Dialogue>().find (entry.mTopic);
|
|
|
|
for (std::vector<ESM::DialInfo>::const_iterator iter (dialogue->mInfo.begin());
|
|
iter!=dialogue->mInfo.end(); ++iter)
|
|
if (iter->mId == entry.mInfoId)
|
|
{
|
|
index = iter->mData.mDisposition; /// \todo cleanup info structure
|
|
break;
|
|
}
|
|
|
|
if (index==-1)
|
|
throw std::runtime_error ("unknown journal entry for topic " + mTopic);
|
|
|
|
if (index > mIndex)
|
|
setIndex (index);
|
|
|
|
for (TEntryIter iter (mEntries.begin()); iter!=mEntries.end(); ++iter)
|
|
if (*iter==entry.mInfoId)
|
|
return;
|
|
|
|
mEntries.push_back (entry.mInfoId);
|
|
}
|
|
}
|