summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/popups/popupmenu.cpp6
-rw-r--r--src/gui/viewport.cpp9
-rw-r--r--src/gui/windows/chatwindow.cpp98
-rw-r--r--src/gui/windows/chatwindow.h15
-rw-r--r--src/gui/windows/minimap.cpp3
5 files changed, 5 insertions, 126 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp
index 28034b9be..16886bb70 100644
--- a/src/gui/popups/popupmenu.cpp
+++ b/src/gui/popups/popupmenu.cpp
@@ -432,9 +432,6 @@ void PopupMenu::showPopup(const int x, const int y, const Being *const being)
case ActorType::FloorItem:
case ActorType::Portal:
case ActorType::Elemental:
-#ifdef TMWA_SUPPORT
- case ActorType::LocalPet:
-#endif
default:
break;
}
@@ -3313,9 +3310,6 @@ void PopupMenu::showGMPopup(const std::string &name)
showItemGMCommands();
break;
case ActorType::Portal:
-#ifdef TMWA_SUPPORT
- case ActorType::LocalPet:
-#endif
case ActorType::Avatar:
case ActorType::Elemental:
break;
diff --git a/src/gui/viewport.cpp b/src/gui/viewport.cpp
index d4b160068..ba42ee2a2 100644
--- a/src/gui/viewport.cpp
+++ b/src/gui/viewport.cpp
@@ -488,9 +488,6 @@ bool Viewport::leftMouseAction()
case ActorType::Elemental:
break;
case ActorType::Unknown:
-#ifdef TMWA_SUPPORT
- case ActorType::LocalPet:
-#endif
case ActorType::Avatar:
default:
reportAlways("Left click on unknown actor type: %d",
@@ -919,9 +916,6 @@ void Viewport::mouseMoved(MouseEvent &event)
|| type == ActorType::Npc
|| type == ActorType::Homunculus
|| type == ActorType::Mercenary
-#ifdef TMWA_SUPPORT
- || type == ActorType::LocalPet
-#endif
|| type == ActorType::Pet))
{
popupManager->hideTextPopup();
@@ -978,9 +972,6 @@ void Viewport::mouseMoved(MouseEvent &event)
case ActorType::Npc:
case ActorType::Monster:
case ActorType::Portal:
-#ifdef TMWA_SUPPORT
- case ActorType::LocalPet:
-#endif
case ActorType::Pet:
case ActorType::Mercenary:
case ActorType::Homunculus:
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp
index 6685852fb..85284d4a2 100644
--- a/src/gui/windows/chatwindow.cpp
+++ b/src/gui/windows/chatwindow.cpp
@@ -1611,32 +1611,19 @@ bool ChatWindow::resortChatLog(std::string line,
{
if (line.find(": \302\202\302e") != std::string::npos)
{
- const std::string nick = line.substr(0, idx2 - 1);
- line = line.substr(idx2 + 6);
- localPetEmote(nick, CAST_U8(
- atoi(line.c_str())));
+ // Do nothing. Before was local pet emote
}
else if (line.find(": \302\202\302m") != std::string::npos)
{
- const std::string nick = line.substr(0, idx2 - 1);
- line = line.substr(idx2 + 6);
- int x = 0;
- int y = 0;
- if (parse2Int(line, x, y))
- localPetMove(nick, x, y);
+ // Do nothing. Before was local pet move
}
else if (line.find(": \302\202\302d") != std::string::npos)
{
- const std::string nick = line.substr(0, idx2 - 1);
- line = line.substr(idx2 + 6);
- localPetDirection(nick, CAST_U8(
- atoi(line.c_str())));
+ // Do nothing. Before was local pet direction
}
else if (line.find(": \302\202\302a") != std::string::npos)
{
- const std::string nick = line.substr(0, idx2 - 1);
- line = line.substr(idx2 + 6);
- localPetAi(nick, atoi(line.c_str()) ? true : false);
+ // Do nothing. Before was local pet ai enable/disable
}
// ignore other special message formats.
return false;
@@ -1645,13 +1632,7 @@ bool ChatWindow::resortChatLog(std::string line,
// pet talk message detected
if (line.find(": \302\202\303 ") != std::string::npos)
{
- if (actorManager && idx2 > 1)
- {
- const std::string nick = line.substr(0, idx2 - 1);
- line = line.substr(idx2 + 6);
- localPetSay(nick, line);
- }
-
+ // Do nothing. Before was local pet talk
return false;
}
@@ -1750,75 +1731,6 @@ void ChatWindow::channelChatLog(const std::string &channel,
tab->chatLog(line, own, ignoreRecord, tryRemoveColors);
}
-static Being *getPetForNick(const std::string &nick)
-{
- Being *const being = actorManager->findBeingByName(
- nick, ActorType::Player);
- if (being)
- return being->getFirstPet();
- return nullptr;
-}
-
-void ChatWindow::localPetSay(const std::string &nick, const std::string &text)
-{
- Being *const pet = getPetForNick(nick);
- if (pet)
- pet->setSpeech(text, GENERAL_CHANNEL);
-
- if (!localChatTab)
- return;
- if (pet)
- {
- // TRANSLATORS: owners pet name. For example: 4144's pet
- localChatTab->chatLog(strprintf(_("%s's pet"), nick.c_str()), text);
- }
- else
- {
- localChatTab->chatLog(nick, text);
- }
-}
-
-void ChatWindow::localPetEmote(const std::string &nick, const uint8_t emoteId)
-{
- Being *const pet = getPetForNick(nick);
- if (pet)
- pet->setEmote(emoteId, 0);
-}
-
-void ChatWindow::localPetAi(const std::string &nick, const bool start)
-{
- Being *const pet = getPetForNick(nick);
- if (pet)
- {
- if (start)
- pet->enablePetAi();
- else
- pet->disablePetAi();
- }
-}
-
-void ChatWindow::localPetMove(const std::string &nick,
- const int x, const int y)
-{
- Being *const pet = getPetForNick(nick);
- if (pet)
- {
- pet->setDestination(x, y);
- pet->disablePetAi();
- }
-}
-
-void ChatWindow::localPetDirection(const std::string &nick,
- uint8_t dir)
-{
- Being *const pet = getPetForNick(nick);
- if (pet)
- {
- pet->setDirection(dir);
- pet->disablePetAi();
- }
-}
-
void ChatWindow::initTradeFilter()
{
const std::string tradeListName = settings.serverConfigDir
diff --git a/src/gui/windows/chatwindow.h b/src/gui/windows/chatwindow.h
index 5032d337a..78d87eb6d 100644
--- a/src/gui/windows/chatwindow.h
+++ b/src/gui/windows/chatwindow.h
@@ -302,21 +302,6 @@ class ChatWindow final : public Window,
const int oldVal1,
const int oldVal2) override final;
- static void localPetSay(const std::string &nick,
- const std::string &text);
-
- static void localPetEmote(const std::string &nick,
- const uint8_t emoteId);
-
- static void localPetMove(const std::string &nick,
- const int x, const int y);
-
- static void localPetDirection(const std::string &nick,
- uint8_t dir);
-
- static void localPetAi(const std::string &nick,
- const bool start);
-
void postConnection();
void showGMTab();
diff --git a/src/gui/windows/minimap.cpp b/src/gui/windows/minimap.cpp
index d21700455..24cf57743 100644
--- a/src/gui/windows/minimap.cpp
+++ b/src/gui/windows/minimap.cpp
@@ -355,9 +355,6 @@ void Minimap::draw2(Graphics *const graphics)
type = UserColorId::PORTAL_HIGHLIGHT;
break;
-#ifdef TMWA_SUPPORT
- case ActorType::LocalPet:
-#endif
case ActorType::Pet:
type = UserColorId::PET;
break;