mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
|
#ifndef GAME_MWBASE_DIALOGUEMANAGERIMP_H
|
||
|
#define GAME_MWBASE_DIALOGUEMANAGERIMP_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
class Ptr;
|
||
|
}
|
||
|
|
||
|
namespace MWBase
|
||
|
{
|
||
|
class DialogueManager
|
||
|
{
|
||
|
DialogueManager (const DialogueManager&);
|
||
|
///< not implemented
|
||
|
|
||
|
DialogueManager& operator= (const DialogueManager&);
|
||
|
///< not implemented
|
||
|
|
||
|
public:
|
||
|
|
||
|
DialogueManager() {}
|
||
|
|
||
|
virtual ~DialogueManager() {}
|
||
|
|
||
|
virtual void startDialogue (const MWWorld::Ptr& actor) = 0;
|
||
|
|
||
|
virtual void addTopic (const std::string& topic) = 0;
|
||
|
|
||
|
virtual void askQuestion (const std::string& question,int choice) = 0;
|
||
|
|
||
|
virtual void goodbye() = 0;
|
||
|
|
||
|
///get the faction of the actor you are talking with
|
||
|
virtual std::string getFaction() const = 0;
|
||
|
|
||
|
//calbacks for the GUI
|
||
|
virtual void keywordSelected (const std::string& keyword) = 0;
|
||
|
virtual void goodbyeSelected() = 0;
|
||
|
virtual void questionAnswered (const std::string& answer) = 0;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|