summaryrefslogtreecommitdiff
path: root/src/net/tmwa/itemhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-07-31 00:22:00 +0300
committerAndrei Karas <akaras@inbox.ru>2011-07-31 00:46:41 +0300
commita92b5477c30f6c8de99fa4edb18af1593024dd8b (patch)
tree70aafb5484d00377fa9886bf169109c24154494e /src/net/tmwa/itemhandler.cpp
parente6c5a9106004297abd0c593a752303aa071d6659 (diff)
downloadplus-a92b5477c30f6c8de99fa4edb18af1593024dd8b.tar.gz
plus-a92b5477c30f6c8de99fa4edb18af1593024dd8b.tar.bz2
plus-a92b5477c30f6c8de99fa4edb18af1593024dd8b.tar.xz
plus-a92b5477c30f6c8de99fa4edb18af1593024dd8b.zip
Extract shared logic from itemhandler netcode to ea namespace.
Diffstat (limited to 'src/net/tmwa/itemhandler.cpp')
-rw-r--r--src/net/tmwa/itemhandler.cpp36
1 files changed, 2 insertions, 34 deletions
diff --git a/src/net/tmwa/itemhandler.cpp b/src/net/tmwa/itemhandler.cpp
index d9595c846..ee33cd230 100644
--- a/src/net/tmwa/itemhandler.cpp
+++ b/src/net/tmwa/itemhandler.cpp
@@ -22,8 +22,6 @@
#include "net/tmwa/itemhandler.h"
-#include "actorspritemanager.h"
-
#include "net/messagein.h"
#include "net/tmwa/protocol.h"
@@ -51,41 +49,11 @@ void ItemHandler::handleMessage(Net::MessageIn &msg)
{
case SMSG_ITEM_VISIBLE:
case SMSG_ITEM_DROPPED:
- {
- int id = msg.readInt32();
- int itemId = msg.readInt16();
- unsigned char identify = msg.readInt8(); // identify flag
- int x = msg.readInt16();
- int y = msg.readInt16();
-// msg.skip(4); // amount,subX,subY / subX,subY,amount
- int amount1 = msg.readInt16();
- int amount2 = msg.readInt16();
-
- if (actorSpriteManager)
- {
- if (msg.getId() == SMSG_ITEM_VISIBLE)
- {
- actorSpriteManager->createItem(id, itemId,
- x, y, amount1, identify);
- }
- else
- {
- actorSpriteManager->createItem(id, itemId,
- x, y, amount2, identify);
- }
- }
- }
+ processItemVisible(msg, msg.getId() == SMSG_ITEM_DROPPED);
break;
case SMSG_ITEM_REMOVE:
- if (actorSpriteManager)
- {
- if (FloorItem *item = actorSpriteManager->findItem(
- msg.readInt32()))
- {
- actorSpriteManager->destroy(item);
- }
- }
+ processItemRemove(msg);
break;
default: