summaryrefslogtreecommitdiff
path: root/src/net/tmwa/charserverhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-13 17:55:47 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-13 17:55:47 +0300
commit6c54eedd18c808cd197cb16301fd08887713037a (patch)
treecb5b14c2b33b6236c18f7c633770a64447773286 /src/net/tmwa/charserverhandler.cpp
parent3931471031744a47fd2eaf7adf52d59eb51d17a4 (diff)
downloadplus-6c54eedd18c808cd197cb16301fd08887713037a.tar.gz
plus-6c54eedd18c808cd197cb16301fd08887713037a.tar.bz2
plus-6c54eedd18c808cd197cb16301fd08887713037a.tar.xz
plus-6c54eedd18c808cd197cb16301fd08887713037a.zip
Move processCharCreate from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/tmwa/charserverhandler.cpp')
-rw-r--r--src/net/tmwa/charserverhandler.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/net/tmwa/charserverhandler.cpp b/src/net/tmwa/charserverhandler.cpp
index 305add158..4167a3620 100644
--- a/src/net/tmwa/charserverhandler.cpp
+++ b/src/net/tmwa/charserverhandler.cpp
@@ -28,6 +28,8 @@
#include "being/attributes.h"
+#include "gui/windows/charcreatedialog.h"
+
#include "net/character.h"
#include "net/logindata.h"
#include "net/net.h"
@@ -429,4 +431,22 @@ void CharServerHandler::processChangeMapServer(Net::MessageIn &msg)
BLOCK_END("CharServerHandler::processChangeMapServer")
}
+void CharServerHandler::processCharCreate(Net::MessageIn &msg)
+{
+ BLOCK_START("CharServerHandler::processCharCreate")
+ Net::Character *const character = new Net::Character;
+ readPlayerData(msg, character, msg.getId() == SMSG_CHAR_CREATE_SUCCEEDED2);
+ mCharacters.push_back(character);
+
+ updateCharSelectDialog();
+
+ // Close the character create dialog
+ if (mCharCreateDialog)
+ {
+ mCharCreateDialog->scheduleDelete();
+ mCharCreateDialog = nullptr;
+ }
+ BLOCK_END("CharServerHandler::processCharCreate")
+}
+
} // namespace TmwAthena