diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-10 14:57:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-10 14:57:39 +0300 |
commit | 3efda43abd11979adfd048fc62fe4f09e702f772 (patch) | |
tree | 80f8d0f65bf7648ae78e12badc11f13b4481b87a /src/net/tmwa/npchandler.h | |
parent | a0c7a0e2d34a13f2c3e86f662e352977ebe2ae73 (diff) | |
download | plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.gz plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.bz2 plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.xz plus-3efda43abd11979adfd048fc62fe4f09e702f772.zip |
improve npchandler class.
Diffstat (limited to 'src/net/tmwa/npchandler.h')
-rw-r--r-- | src/net/tmwa/npchandler.h | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/src/net/tmwa/npchandler.h b/src/net/tmwa/npchandler.h index 1659cfb5c..139f37872 100644 --- a/src/net/tmwa/npchandler.h +++ b/src/net/tmwa/npchandler.h @@ -44,33 +44,39 @@ class NpcHandler final : public MessageHandler, public Ea::NpcHandler A_DELETE_COPY(NpcHandler) - void handleMessage(Net::MessageIn &msg); + void handleMessage(Net::MessageIn &msg) override; - void talk(int npcId); + void talk(const int npcId) const override; - void nextDialog(int npcId); + void nextDialog(const int npcId) const override; - void closeDialog(int npcId); + void closeDialog(const int npcId) override; - void listInput(int npcId, unsigned char value); + void listInput(const int npcId, + const unsigned char value) const override; - void integerInput(int npcId, int value); + void integerInput(const int npcId, const int value) const override; - void stringInput(int npcId, const std::string &value); + void stringInput(const int npcId, + const std::string &value) const override; - void buy(int beingId); + void buy(const int beingId) const override; - void sell(int beingId); + void sell(const int beingId) const override; - void buyItem(int beingId, int itemId, unsigned char color, int amount); + void buyItem(const int beingId, const int itemId, + const unsigned char color, + const int amount) const override; - void sellItem(int beingId, int itemId, int amount); + void sellItem(const int beingId, const int itemId, + const int amount) const override; - int getNpc(Net::MessageIn &msg, bool haveLength) A_WARN_UNUSED; + int getNpc(Net::MessageIn &msg, + const bool haveLength) override A_WARN_UNUSED; - void processNpcCommand(Net::MessageIn &msg, int npcId); + void processNpcCommand(Net::MessageIn &msg, const int npcId); - void processLangReuqest(Net::MessageIn &msg, int npcId); + void processLangReuqest(Net::MessageIn &msg, const int npcId); private: bool mRequestLang; |