From 27efea7d495fdf755f7e94edb1f39103b6f8f072 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 14 Sep 2014 12:45:55 +0300 Subject: Move setCharCreateDialog from ea namespace into eathena and tmwa. --- src/net/eathena/charserverhandler.cpp | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'src/net/eathena/charserverhandler.cpp') diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp index d7d7be582..e353d970e 100644 --- a/src/net/eathena/charserverhandler.cpp +++ b/src/net/eathena/charserverhandler.cpp @@ -44,9 +44,11 @@ #include "resources/iteminfo.h" +#include "resources/db/chardb.h" #include "resources/db/itemdb.h" #include "utils/dtor.h" +#include "utils/gettext.h" #include "debug.h" @@ -291,6 +293,44 @@ void CharServerHandler::connect() mNetwork->skip(4); } +void CharServerHandler::setCharCreateDialog(CharCreateDialog *const window) +{ + mCharCreateDialog = window; + + if (!mCharCreateDialog) + return; + + StringVect attributes; + // TRANSLATORS: playe stat + attributes.push_back(_("Strength:")); + // TRANSLATORS: playe stat + attributes.push_back(_("Agility:")); + // TRANSLATORS: playe stat + attributes.push_back(_("Vitality:")); + // TRANSLATORS: playe stat + attributes.push_back(_("Intelligence:")); + // TRANSLATORS: playe stat + attributes.push_back(_("Dexterity:")); + // TRANSLATORS: playe stat + attributes.push_back(_("Luck:")); + + const Token &token = + static_cast(Net::getLoginHandler())->getToken(); + + int minStat = CharDB::getMinStat(); + if (!minStat) + minStat = 1; + int maxStat = CharDB::getMaxStat(); + if (!maxStat) + maxStat = 9; + int sumStat = CharDB::getSumStat(); + if (!sumStat) + sumStat = 30; + + mCharCreateDialog->setAttributes(attributes, sumStat, minStat, maxStat); + mCharCreateDialog->setFixedGender(true, token.sex); +} + void CharServerHandler::processCharLogin(Net::MessageIn &msg) { msg.skip(2, "packet len"); -- cgit v1.2.3-70-g09d2