mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
#ifndef GAME_MMDIALOG_DIALOGUEMANAGER_H
|
|
#define GAME_MWDIALOG_DIALOGUEMANAGER_H
|
|
|
|
#include <components/esm/loadinfo.hpp>
|
|
|
|
#include <components/compiler/streamerrorhandler.hpp>
|
|
#include "../mwscript/compilercontext.hpp"
|
|
#include "../mwscript/interpretercontext.hpp"
|
|
#include <components/compiler/output.hpp>
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
#include <map>
|
|
|
|
namespace MWDialogue
|
|
{
|
|
class DialogueManager
|
|
{
|
|
bool isMatching (const MWWorld::Ptr& actor, const ESM::DialInfo::SelectStruct& select) const;
|
|
|
|
bool isMatching (const MWWorld::Ptr& actor, const ESM::DialInfo& info) const;
|
|
|
|
bool functionFilter(const MWWorld::Ptr& actor, const ESM::DialInfo& info,bool choice);
|
|
|
|
void parseText(std::string text);
|
|
|
|
void updateTopics();
|
|
|
|
std::map<std::string,ESM::Dialogue> mDialogueMap;
|
|
std::map<std::string,bool> knownTopics;// Those are the topics the player knows.
|
|
std::list<std::string> actorKnownTopics;
|
|
|
|
MWScript::CompilerContext mCompilerContext;
|
|
std::ostream mErrorStream;
|
|
Compiler::StreamErrorHandler mErrorHandler;
|
|
|
|
|
|
bool compile (const std::string& cmd,std::vector<Interpreter::Type_Code>& code);
|
|
void executeScript(std::string script);
|
|
MWWorld::Ptr mActor;
|
|
|
|
void printError(std::string error);
|
|
|
|
int mChoice;
|
|
std::map<std::string,int> mChoiceMap;
|
|
std::string mLastTopic;
|
|
ESM::DialInfo mLastDialogue;
|
|
bool mIsInChoice;
|
|
|
|
public:
|
|
|
|
DialogueManager (const Compiler::Extensions& extensions);
|
|
|
|
void startDialogue (const MWWorld::Ptr& actor);
|
|
|
|
void addTopic(std::string topic);
|
|
|
|
void askQuestion(std::string question,int choice);
|
|
|
|
void goodbye();
|
|
|
|
///get the faction of the actor you are talking with
|
|
std::string getFaction();
|
|
|
|
//calbacks for the GUI
|
|
void keywordSelected(std::string keyword);
|
|
void goodbyeSelected();
|
|
void questionAnswered(std::string answere);
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|