diff options
author | David Athay <ko2fan@gmail.com> | 2009-01-18 19:41:16 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2009-01-18 19:41:16 +0000 |
commit | 93f60007c1b5c203b71d32551278351385ea2bee (patch) | |
tree | 1983f0da9de01b94e7c616e1efd530360c650729 /src/net/npchandler.cpp | |
parent | 224da21ea258450fcc78dd7635de84aba1d1df5e (diff) | |
parent | ccef6c4284a9cc250da72c5835501ae03c2c513f (diff) | |
download | mana-93f60007c1b5c203b71d32551278351385ea2bee.tar.gz mana-93f60007c1b5c203b71d32551278351385ea2bee.tar.bz2 mana-93f60007c1b5c203b71d32551278351385ea2bee.tar.xz mana-93f60007c1b5c203b71d32551278351385ea2bee.zip |
Merge branch 'master' of git://gitorious.org/tmw/eathena
Diffstat (limited to 'src/net/npchandler.cpp')
-rw-r--r-- | src/net/npchandler.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/net/npchandler.cpp b/src/net/npchandler.cpp index b633835c..d8763f43 100644 --- a/src/net/npchandler.cpp +++ b/src/net/npchandler.cpp @@ -27,11 +27,15 @@ #include "../beingmanager.h" #include "../npc.h" +#include "../gui/npcintegerdialog.h" #include "../gui/npclistdialog.h" +#include "../gui/npcstringdialog.h" #include "../gui/npc_text.h" +extern NpcIntegerDialog *npcIntegerDialog; extern NpcListDialog *npcListDialog; extern NpcTextDialog *npcTextDialog; +extern NpcStringDialog *npcStringDialog; NPCHandler::NPCHandler() { @@ -40,6 +44,8 @@ NPCHandler::NPCHandler() SMSG_NPC_MESSAGE, SMSG_NPC_NEXT, SMSG_NPC_CLOSE, + SMSG_NPC_INT_INPUT, + SMSG_NPC_STR_INPUT, 0 }; handledMessages = _messages; @@ -78,5 +84,21 @@ void NPCHandler::handleMessage(MessageIn *msg) case SMSG_NPC_NEXT: // Next button in NPC dialog, currently unused break; + + case SMSG_NPC_INT_INPUT: + // Request for an integer + id = msg->readInt32(); + current_npc = dynamic_cast<NPC*>(beingManager->findBeing(id)); + npcIntegerDialog->prepDialog(0, 0, 2147483647); + npcIntegerDialog->setVisible(true); + break; + + case SMSG_NPC_STR_INPUT: + // Request for a string + id = msg->readInt32(); + current_npc = dynamic_cast<NPC*>(beingManager->findBeing(id)); + npcStringDialog->setValue(""); + npcStringDialog->setVisible(true); + break; } } |