summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/actions/actions.cpp65
-rw-r--r--src/actions/actions.h2
-rw-r--r--src/actions/commands.cpp65
-rw-r--r--src/actions/commands.h2
4 files changed, 67 insertions, 67 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index 64d05f8ab..f86b08a88 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -62,11 +62,13 @@
#endif
#include "net/beinghandler.h"
+#include "net/buysellhandler.h"
#include "net/chathandler.h"
#include "net/download.h"
#include "net/gamehandler.h"
#include "net/ipc.h"
#include "net/mercenaryhandler.h"
+#include "net/npchandler.h"
#include "net/pethandler.h"
#include "net/playerhandler.h"
#include "net/uploadcharinfo.h"
@@ -157,6 +159,31 @@ static void uploadFile(const std::string &str,
upload->start();
}
+static Being *findBeing(const std::string &name)
+{
+ Being *being = nullptr;
+ if (name.empty())
+ {
+ being = localPlayer->getTarget();
+ }
+ else
+ {
+ being = actorManager->findBeingByName(
+ name, ActorType::Unknown);
+ }
+ if (!being)
+ {
+ being = actorManager->findNearestLivingBeing(
+ localPlayer, 1, ActorType::Npc, true);
+ }
+ if (!being)
+ {
+ being = actorManager->findNearestLivingBeing(
+ localPlayer, 1, ActorType::Player, true);
+ }
+ return being;
+}
+
impHandler(emote)
{
const int emotion = 1 + event.action - InputAction::EMOTE_1;
@@ -430,6 +457,44 @@ impHandler0(ignoreInput)
return true;
}
+impHandler(buy)
+{
+ Being *being = findBeing(event.args);
+ if (!being)
+ return false;
+
+ if (being->getType() == ActorType::Npc)
+ {
+ npcHandler->buy(being->getId());
+ return true;
+ }
+ else if (being->getType() == ActorType::Player)
+ {
+ buySellHandler->requestSellList(being->getName());
+ return true;
+ }
+ return false;
+}
+
+impHandler(sell)
+{
+ Being *being = findBeing(event.args);
+ if (!being)
+ return false;
+
+ if (being->getType() == ActorType::Npc)
+ {
+ npcHandler->sell(being->getId());
+ return true;
+ }
+ else if (being->getType() == ActorType::Player)
+ {
+ buySellHandler->requestBuyList(being->getName());
+ return true;
+ }
+ return false;
+}
+
impHandler0(talk)
{
if (localPlayer)
diff --git a/src/actions/actions.h b/src/actions/actions.h
index ed8cf980c..c614f61c7 100644
--- a/src/actions/actions.h
+++ b/src/actions/actions.h
@@ -48,6 +48,8 @@ namespace Actions
decHandler(screenshot);
decHandler(ignoreInput);
decHandler(talk);
+ decHandler(buy);
+ decHandler(sell);
decHandler(stopAttack);
decHandler(untarget);
decHandler(attack);
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp
index eafd0b82b..c8d4f2b21 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -37,11 +37,9 @@
#include "gui/widgets/tabs/chat/whispertab.h"
#include "net/adminhandler.h"
-#include "net/buysellhandler.h"
#include "net/chathandler.h"
#include "net/guildhandler.h"
#include "net/homunculushandler.h"
-#include "net/npchandler.h"
#include "net/pethandler.h"
#include "net/serverfeatures.h"
@@ -713,67 +711,4 @@ impHandler0(fireHomunculus)
return true;
}
-static Being *findBeing(const std::string &name)
-{
- Being *being = nullptr;
- if (name.empty())
- {
- being = localPlayer->getTarget();
- }
- else
- {
- being = actorManager->findBeingByName(
- name, ActorType::Unknown);
- }
- if (!being)
- {
- being = actorManager->findNearestLivingBeing(
- localPlayer, 1, ActorType::Npc, true);
- }
- if (!being)
- {
- being = actorManager->findNearestLivingBeing(
- localPlayer, 1, ActorType::Player, true);
- }
- return being;
-}
-
-impHandler(buy)
-{
- Being *being = findBeing(event.args);
- if (!being)
- return false;
-
- if (being->getType() == ActorType::Npc)
- {
- npcHandler->buy(being->getId());
- return true;
- }
- else if (being->getType() == ActorType::Player)
- {
- buySellHandler->requestSellList(being->getName());
- return true;
- }
- return false;
-}
-
-impHandler(sell)
-{
- Being *being = findBeing(event.args);
- if (!being)
- return false;
-
- if (being->getType() == ActorType::Npc)
- {
- npcHandler->sell(being->getId());
- return true;
- }
- else if (being->getType() == ActorType::Player)
- {
- buySellHandler->requestBuyList(being->getName());
- return true;
- }
- return false;
-}
-
} // namespace Actions
diff --git a/src/actions/commands.h b/src/actions/commands.h
index 8f55b023e..085b89663 100644
--- a/src/actions/commands.h
+++ b/src/actions/commands.h
@@ -76,8 +76,6 @@ namespace Actions
decHandler(setPetName);
decHandler(setHomunculusName);
decHandler(fireHomunculus);
- decHandler(buy);
- decHandler(sell);
} // namespace Actions
#undef decHandler