summaryrefslogtreecommitdiff
path: root/src/net/tmwa/npchandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-07-31 02:44:53 +0300
committerAndrei Karas <akaras@inbox.ru>2011-07-31 04:55:37 +0300
commit935d70ec604feaac02deb7cc23352706ad6a2f03 (patch)
tree92361309a58a8039bdebba5fee15ce8fa8100729 /src/net/tmwa/npchandler.cpp
parentab2f28cfa2995dffeaf95a3a160654eee363c593 (diff)
downloadplus-935d70ec604feaac02deb7cc23352706ad6a2f03.tar.gz
plus-935d70ec604feaac02deb7cc23352706ad6a2f03.tar.bz2
plus-935d70ec604feaac02deb7cc23352706ad6a2f03.tar.xz
plus-935d70ec604feaac02deb7cc23352706ad6a2f03.zip
Extract shared logic from npchandler and playerhandler netcode to ea namespace.
Diffstat (limited to 'src/net/tmwa/npchandler.cpp')
-rw-r--r--src/net/tmwa/npchandler.cpp126
1 files changed, 42 insertions, 84 deletions
diff --git a/src/net/tmwa/npchandler.cpp b/src/net/tmwa/npchandler.cpp
index 9bcc640a1..d6549e39f 100644
--- a/src/net/tmwa/npchandler.cpp
+++ b/src/net/tmwa/npchandler.cpp
@@ -22,13 +22,11 @@
#include "net/tmwa/npchandler.h"
-#include "actorspritemanager.h"
#include "localplayer.h"
#include "gui/npcdialog.h"
#include "net/messagein.h"
-#include "net/messageout.h"
#include "net/net.h"
#include "net/npchandler.h"
@@ -36,8 +34,6 @@
#include "net/ea/eaprotocol.h"
-#include <SDL_types.h>
-
#include "debug.h"
extern Net::NpcHandler *npcHandler;
@@ -63,82 +59,33 @@ NpcHandler::NpcHandler()
void NpcHandler::handleMessage(Net::MessageIn &msg)
{
- if (msg.getId() == SMSG_NPC_CHOICE || msg.getId() == SMSG_NPC_MESSAGE)
- msg.readInt16(); // length
-
- int npcId = msg.readInt32();
- NpcDialogs::iterator diag = mNpcDialogs.find(npcId);
- NpcDialog *dialog = 0;
-
- if (diag == mNpcDialogs.end())
- {
- // Empty dialogs don't help
- if (msg.getId() == SMSG_NPC_CLOSE)
- {
- closeDialog(npcId);
- return;
- }
- else if (msg.getId() == SMSG_NPC_NEXT)
- {
- nextDialog(npcId);
- return;
- }
- else
- {
- dialog = new NpcDialog(npcId);
- Wrapper wrap;
- wrap.dialog = dialog;
- mNpcDialogs[npcId] = wrap;
- }
- }
- else
- {
- dialog = diag->second.dialog;
- }
+ getNpc(msg, msg.getId() == SMSG_NPC_CHOICE
+ || msg.getId() == SMSG_NPC_MESSAGE);
switch (msg.getId())
{
case SMSG_NPC_CHOICE:
- if (dialog)
- {
- dialog->choiceRequest();
- dialog->parseListItems(msg.readString(msg.getLength() - 8));
- }
- else
- {
- msg.readString(msg.getLength() - 8);
- }
+ processNpcChoice(msg);
break;
case SMSG_NPC_MESSAGE:
- if (dialog)
- dialog->addText(msg.readString(msg.getLength() - 8));
- else
- msg.readString(msg.getLength() - 8);
+ processNpcMessage(msg);
break;
case SMSG_NPC_CLOSE:
- // Show the close button
- if (dialog)
- dialog->showCloseButton();
+ processNpcClose(msg);
break;
case SMSG_NPC_NEXT:
- // Show the next button
- if (dialog)
- dialog->showNextButton();
+ processNpcNext(msg);
break;
case SMSG_NPC_INT_INPUT:
- // Request for an integer
- if (dialog)
- dialog->integerRequest(0);
+ processNpcIntInput(msg);
break;
case SMSG_NPC_STR_INPUT:
- // Request for a string
- if (dialog)
- dialog->textRequest("");
+ processNpcStrInput(msg);
break;
default:
@@ -147,6 +94,8 @@ void NpcHandler::handleMessage(Net::MessageIn &msg)
if (player_node && player_node->getCurrentAction() != Being::SIT)
player_node->setAction(Being::STAND);
+
+ mDialog = 0;
}
void NpcHandler::talk(int npcId)
@@ -199,18 +148,6 @@ void NpcHandler::stringInput(int npcId, const std::string &value)
outMsg.writeInt8(0); // Prevent problems with string reading
}
-void NpcHandler::sendLetter(int npcId A_UNUSED,
- const std::string &recipient A_UNUSED,
- const std::string &text A_UNUSED)
-{
- // TODO
-}
-
-void NpcHandler::startShopping(int beingId A_UNUSED)
-{
- // TODO
-}
-
void NpcHandler::buy(int beingId)
{
MessageOut outMsg(CMSG_NPC_BUY_SELL_REQUEST);
@@ -253,21 +190,42 @@ void NpcHandler::sellItem(int beingId A_UNUSED, int itemId, int amount)
outMsg.writeInt16(static_cast<Sint16>(amount));
}
-void NpcHandler::endShopping(int beingId A_UNUSED)
+int NpcHandler::getNpc(Net::MessageIn &msg, bool haveLength)
{
- // TODO
-}
+ if (haveLength)
+ msg.readInt16(); // length
-void NpcHandler::clearDialogs()
-{
- NpcDialogs::iterator it = mNpcDialogs.begin();
- NpcDialogs::iterator it_end = mNpcDialogs.end();
- while (it != it_end)
+ const int npcId = msg.readInt32();
+
+ NpcDialogs::iterator diag = mNpcDialogs.find(npcId);
+ mDialog = 0;
+
+ if (diag == mNpcDialogs.end())
+ {
+ // Empty dialogs don't help
+ if (msg.getId() == SMSG_NPC_CLOSE)
+ {
+ closeDialog(npcId);
+ return npcId;
+ }
+ else if (msg.getId() == SMSG_NPC_NEXT)
+ {
+ nextDialog(npcId);
+ return npcId;
+ }
+ else
+ {
+ mDialog = new NpcDialog(npcId);
+ Wrapper wrap;
+ wrap.dialog = mDialog;
+ mNpcDialogs[npcId] = wrap;
+ }
+ }
+ else
{
- delete (*it).second.dialog;
- ++ it;
+ mDialog = diag->second.dialog;
}
- mNpcDialogs.clear();
+ return npcId;
}
} // namespace TmwAthena