1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/openmw/mwbase/dialoguemanager.hpp

59 lines
1.6 KiB
C++
Raw Normal View History

2012-08-09 10:05:47 +00:00
#ifndef GAME_MWBASE_DIALOGUEMANAGER_H
#define GAME_MWBASE_DIALOGUEMANAGER_H
#include <string>
namespace MWWorld
{
class Ptr;
}
namespace MWBase
{
2012-08-09 10:05:47 +00:00
/// \brief Interface for dialogue manager (implemented in MWDialogue)
class DialogueManager
{
DialogueManager (const DialogueManager&);
///< not implemented
DialogueManager& operator= (const DialogueManager&);
///< not implemented
public:
DialogueManager() {}
2013-05-15 15:54:18 +00:00
virtual void clear() = 0;
virtual ~DialogueManager() {}
2013-03-31 11:13:46 +00:00
virtual bool isInChoice() const = 0;
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;
2012-11-10 13:31:58 +00:00
virtual MWWorld::Ptr getActor() const = 0;
///< Return the actor the player is currently talking to.
virtual void say(const MWWorld::Ptr &actor, const std::string &topic) const = 0;
//calbacks for the GUI
virtual void keywordSelected (const std::string& keyword) = 0;
virtual void goodbyeSelected() = 0;
2013-05-04 12:15:47 +00:00
virtual void questionAnswered (int answer) = 0;
2012-11-09 23:29:36 +00:00
2013-03-16 19:32:21 +00:00
virtual bool checkServiceRefused () = 0;
2012-11-09 23:29:36 +00:00
virtual void persuade (int type) = 0;
virtual int getTemporaryDispositionChange () const = 0;
2012-11-09 23:38:45 +00:00
virtual void applyTemporaryDispositionChange (int delta) = 0;
};
}
#endif