From 10b5b99e5e7e5f332c077a2d261df8f02f111c4f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 1 Oct 2014 17:21:42 +0300 Subject: Move INT stat from net enum into attributes. --- src/net/ea/eaprotocol.h | 3 +-- src/net/ea/playerhandler.cpp | 4 ++-- src/net/eathena/attrs.h | 3 +-- src/net/eathena/generalhandler.cpp | 3 ++- src/net/eathena/playerhandler.cpp | 9 +++++++-- src/net/tmwa/attrs.h | 3 +-- src/net/tmwa/generalhandler.cpp | 3 ++- src/net/tmwa/playerhandler.cpp | 9 +++++++-- 8 files changed, 23 insertions(+), 14 deletions(-) (limited to 'src/net') diff --git a/src/net/ea/eaprotocol.h b/src/net/ea/eaprotocol.h index fcd9cd3cf..176dcdebc 100644 --- a/src/net/ea/eaprotocol.h +++ b/src/net/ea/eaprotocol.h @@ -29,8 +29,7 @@ enum EA_STR = 0xd, EA_AGI, - EA_VIT, - EA_INT + EA_VIT }; enum diff --git a/src/net/ea/playerhandler.cpp b/src/net/ea/playerhandler.cpp index 5c631338c..e45dbd1fe 100644 --- a/src/net/ea/playerhandler.cpp +++ b/src/net/ea/playerhandler.cpp @@ -376,7 +376,7 @@ void PlayerHandler::setStat(const int type, setStatComplex(EA_VIT); break; case 0x0010: - setStatComplex(EA_INT); + setStatComplex(Attributes::INT); break; case 0x0011: setStatComplex(Attributes::DEX); @@ -464,7 +464,7 @@ void PlayerHandler::setStat(const int type, statusWindow->setPointsNeeded(EA_VIT, base); break; case 0x0023: - statusWindow->setPointsNeeded(EA_INT, base); + statusWindow->setPointsNeeded(Attributes::INT, base); break; case 0x0024: statusWindow->setPointsNeeded(Attributes::DEX, base); diff --git a/src/net/eathena/attrs.h b/src/net/eathena/attrs.h index e536a1818..b18834c5c 100644 --- a/src/net/eathena/attrs.h +++ b/src/net/eathena/attrs.h @@ -31,8 +31,7 @@ namespace EAthena STR = 0xd, AGI, - VIT, - INT + VIT }; } // namespace EAthena diff --git a/src/net/eathena/generalhandler.cpp b/src/net/eathena/generalhandler.cpp index 53e0636d8..d807654c0 100644 --- a/src/net/eathena/generalhandler.cpp +++ b/src/net/eathena/generalhandler.cpp @@ -349,7 +349,8 @@ void GeneralHandler::gameStarted() const statusWindow->addAttribute(STR, _("Strength"), "str", true); statusWindow->addAttribute(AGI, _("Agility"), "agi", true); statusWindow->addAttribute(VIT, _("Vitality"), "vit", true); - statusWindow->addAttribute(INT, _("Intelligence"), "int", true); + statusWindow->addAttribute(Attributes::INT, + _("Intelligence"), "int", true); statusWindow->addAttribute(Attributes::DEX, _("Dexterity"), "dex", true); statusWindow->addAttribute(Attributes::LUK, _("Luck"), "luk", true); diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 1bdf1a39e..75996016b 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -312,11 +312,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) msg.readUInt8("vit cost"); val = msg.readUInt8("int"); - PlayerInfo::setStatBase(INT, val); + PlayerInfo::setStatBase(Attributes::INT, val); if (statusWindow) - statusWindow->setPointsNeeded(INT, msg.readUInt8("int cost")); + { + statusWindow->setPointsNeeded(Attributes::INT, + msg.readUInt8("int cost")); + } else + { msg.readUInt8("int cost"); + } val = msg.readUInt8("dex"); PlayerInfo::setStatBase(Attributes::DEX, val); diff --git a/src/net/tmwa/attrs.h b/src/net/tmwa/attrs.h index fe2068965..746b05607 100644 --- a/src/net/tmwa/attrs.h +++ b/src/net/tmwa/attrs.h @@ -31,8 +31,7 @@ namespace TmwAthena STR = 0xd, AGI, - VIT, - INT + VIT }; } // namespace TmwAthena diff --git a/src/net/tmwa/generalhandler.cpp b/src/net/tmwa/generalhandler.cpp index c0e341b00..f2ed990fe 100644 --- a/src/net/tmwa/generalhandler.cpp +++ b/src/net/tmwa/generalhandler.cpp @@ -311,7 +311,8 @@ void GeneralHandler::gameStarted() const // TRANSLATORS: player stat statusWindow->addAttribute(VIT, _("Vitality"), "vit", true); // TRANSLATORS: player stat - statusWindow->addAttribute(INT, _("Intelligence"), "int", true); + statusWindow->addAttribute(Attributes::INT, + _("Intelligence"), "int", true); // TRANSLATORS: player stat statusWindow->addAttribute(Attributes::DEX, _("Dexterity"), "dex", true); // TRANSLATORS: player stat diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index 5ef1439fe..78d4876f2 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -380,11 +380,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) msg.readUInt8("vit cost"); val = msg.readUInt8("int"); - PlayerInfo::setStatBase(INT, val); + PlayerInfo::setStatBase(Attributes::INT, val); if (statusWindow) - statusWindow->setPointsNeeded(INT, msg.readUInt8("int cost")); + { + statusWindow->setPointsNeeded(Attributes::INT, + msg.readUInt8("int cost")); + } else + { msg.readUInt8("int cost"); + } val = msg.readUInt8("dex"); PlayerInfo::setStatBase(Attributes::DEX, val); -- cgit v1.2.3-60-g2f50