2012-08-09 12:05:47 +02:00
|
|
|
#ifndef GAME_MWBASE_DIALOGUEMANAGER_H
|
|
|
|
#define GAME_MWBASE_DIALOGUEMANAGER_H
|
2012-08-09 10:35:53 +02:00
|
|
|
|
|
|
|
#include <string>
|
2017-09-25 21:38:38 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
2012-08-09 10:35:53 +02:00
|
|
|
|
2014-03-05 17:08:58 +01:00
|
|
|
#include <stdint.h>
|
2014-02-16 12:54:27 +01:00
|
|
|
|
2014-04-28 11:29:57 +02:00
|
|
|
namespace Loading
|
|
|
|
{
|
|
|
|
class Listener;
|
|
|
|
}
|
|
|
|
|
2014-02-16 12:54:27 +01:00
|
|
|
namespace ESM
|
|
|
|
{
|
|
|
|
class ESMReader;
|
|
|
|
class ESMWriter;
|
|
|
|
}
|
|
|
|
|
2012-08-09 10:35:53 +02:00
|
|
|
namespace MWWorld
|
|
|
|
{
|
|
|
|
class Ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace MWBase
|
|
|
|
{
|
2012-08-09 12:05:47 +02:00
|
|
|
/// \brief Interface for dialogue manager (implemented in MWDialogue)
|
2012-08-09 10:35:53 +02:00
|
|
|
class DialogueManager
|
|
|
|
{
|
|
|
|
DialogueManager (const DialogueManager&);
|
|
|
|
///< not implemented
|
|
|
|
|
|
|
|
DialogueManager& operator= (const DialogueManager&);
|
|
|
|
///< not implemented
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2017-10-24 00:25:41 +02:00
|
|
|
class ResponseCallback
|
|
|
|
{
|
|
|
|
public:
|
2018-04-01 21:50:45 +03:00
|
|
|
virtual ~ResponseCallback() = default;
|
2017-10-24 00:25:41 +02:00
|
|
|
virtual void addResponse(const std::string& title, const std::string& text) = 0;
|
|
|
|
};
|
|
|
|
|
2012-08-09 10:35:53 +02:00
|
|
|
DialogueManager() {}
|
|
|
|
|
2013-05-15 17:54:18 +02:00
|
|
|
virtual void clear() = 0;
|
|
|
|
|
2012-08-09 10:35:53 +02:00
|
|
|
virtual ~DialogueManager() {}
|
|
|
|
|
2013-03-31 13:13:46 +02:00
|
|
|
virtual bool isInChoice() const = 0;
|
|
|
|
|
2017-10-24 00:25:41 +02:00
|
|
|
virtual bool startDialogue (const MWWorld::Ptr& actor, ResponseCallback* callback) = 0;
|
2012-08-09 10:35:53 +02:00
|
|
|
|
|
|
|
virtual void addTopic (const std::string& topic) = 0;
|
|
|
|
|
2017-09-25 21:38:38 +02:00
|
|
|
virtual void addChoice (const std::string& text,int choice) = 0;
|
|
|
|
virtual const std::vector<std::pair<std::string, int> >& getChoices() = 0;
|
|
|
|
|
|
|
|
virtual bool isGoodbye() = 0;
|
2012-08-09 10:35:53 +02:00
|
|
|
|
|
|
|
virtual void goodbye() = 0;
|
|
|
|
|
2017-04-21 03:55:28 +09:00
|
|
|
virtual void say(const MWWorld::Ptr &actor, const std::string &topic) = 0;
|
2013-07-24 10:02:50 -07:00
|
|
|
|
2017-10-24 00:25:41 +02:00
|
|
|
virtual void keywordSelected (const std::string& keyword, ResponseCallback* callback) = 0;
|
2012-08-09 10:35:53 +02:00
|
|
|
virtual void goodbyeSelected() = 0;
|
2017-10-24 00:25:41 +02:00
|
|
|
virtual void questionAnswered (int answer, ResponseCallback* callback) = 0;
|
2017-09-25 21:38:38 +02:00
|
|
|
|
|
|
|
virtual std::list<std::string> getAvailableTopics() = 0;
|
2012-11-10 00:29:36 +01:00
|
|
|
|
2017-10-24 00:25:41 +02:00
|
|
|
virtual bool checkServiceRefused (ResponseCallback* callback) = 0;
|
2013-03-16 20:32:21 +01:00
|
|
|
|
2017-10-24 00:25:41 +02:00
|
|
|
virtual void persuade (int type, ResponseCallback* callback) = 0;
|
2012-11-10 00:29:36 +01:00
|
|
|
virtual int getTemporaryDispositionChange () const = 0;
|
2014-05-31 13:57:07 +02:00
|
|
|
|
|
|
|
/// @note This change is temporary and gets discarded when dialogue ends.
|
2014-01-08 01:24:06 +01:00
|
|
|
virtual void applyDispositionChange (int delta) = 0;
|
2014-02-16 12:54:27 +01:00
|
|
|
|
|
|
|
virtual int countSavedGameRecords() const = 0;
|
|
|
|
|
2014-04-28 11:29:57 +02:00
|
|
|
virtual void write (ESM::ESMWriter& writer, Loading::Listener& progress) const = 0;
|
2014-02-16 12:54:27 +01:00
|
|
|
|
2015-01-22 19:04:59 +01:00
|
|
|
virtual void readRecord (ESM::ESMReader& reader, uint32_t type) = 0;
|
2014-05-27 14:54:29 +02:00
|
|
|
|
|
|
|
/// Changes faction1's opinion of faction2 by \a diff.
|
|
|
|
virtual void modFactionReaction (const std::string& faction1, const std::string& faction2, int diff) = 0;
|
|
|
|
|
2015-01-19 23:55:17 +01:00
|
|
|
virtual void setFactionReaction (const std::string& faction1, const std::string& faction2, int absolute) = 0;
|
|
|
|
|
2014-05-27 14:54:29 +02:00
|
|
|
/// @return faction1's opinion of faction2
|
|
|
|
virtual int getFactionReaction (const std::string& faction1, const std::string& faction2) const = 0;
|
2014-06-10 16:36:22 +02:00
|
|
|
|
|
|
|
/// Removes the last added topic response for the given actor from the journal
|
|
|
|
virtual void clearInfoActor (const MWWorld::Ptr& actor) const = 0;
|
2012-08-09 10:35:53 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|