diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-29 19:32:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-29 19:32:58 +0300 |
commit | e55ed9a138e97f6fba5e3b6858a755f8a50197d2 (patch) | |
tree | 90b5337d62f42b2060328905776748f32c6e4eb6 /src/gui/windows/npcdialog.cpp | |
parent | 88f71d6a8673932d178408e7632a6eea08623294 (diff) | |
download | plus-e55ed9a138e97f6fba5e3b6858a755f8a50197d2.tar.gz plus-e55ed9a138e97f6fba5e3b6858a755f8a50197d2.tar.bz2 plus-e55ed9a138e97f6fba5e3b6858a755f8a50197d2.tar.xz plus-e55ed9a138e97f6fba5e3b6858a755f8a50197d2.zip |
Move from client packets limiter related code into separate file.
Diffstat (limited to 'src/gui/windows/npcdialog.cpp')
-rw-r--r-- | src/gui/windows/npcdialog.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/gui/windows/npcdialog.cpp b/src/gui/windows/npcdialog.cpp index 47ad71f32..11ba96933 100644 --- a/src/gui/windows/npcdialog.cpp +++ b/src/gui/windows/npcdialog.cpp @@ -57,6 +57,7 @@ #include "net/net.h" #include "net/npchandler.h" +#include "net/packetlimiter.h" #include "utils/copynpaste.h" #include "utils/delete2.h" @@ -282,7 +283,7 @@ void NpcDialog::action(const ActionEvent &event) { if (mActionState == NPC_ACTION_NEXT) { - if (!client->limitPackets(PACKET_NPC_NEXT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_NEXT)) return; nextDialog(); @@ -307,7 +308,7 @@ void NpcDialog::action(const ActionEvent &event) if (selectedIndex >= static_cast<int>(mItems.size()) || selectedIndex < 0 - || !client->limitPackets(PACKET_NPC_INPUT)) + || !PacketLimiter::limitPackets(PACKET_NPC_INPUT)) { return; } @@ -320,7 +321,7 @@ void NpcDialog::action(const ActionEvent &event) } case NPC_INPUT_STRING: { - if (!client->limitPackets(PACKET_NPC_INPUT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_INPUT)) return; printText = mTextField->getText(); Net::getNpcHandler()->stringInput(mNpcId, printText); @@ -328,7 +329,7 @@ void NpcDialog::action(const ActionEvent &event) } case NPC_INPUT_INTEGER: { - if (!client->limitPackets(PACKET_NPC_INPUT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_INPUT)) return; printText = strprintf("%d", mIntField->getValue()); Net::getNpcHandler()->integerInput( @@ -337,7 +338,7 @@ void NpcDialog::action(const ActionEvent &event) } case NPC_INPUT_ITEM: { - if (!client->limitPackets(PACKET_NPC_INPUT)) + if (!PacketLimiter::limitPackets(PACKET_NPC_INPUT)) return; std::string str; |