diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-16 21:18:11 +0000 |
commit | d3175115354bb2417f01877a96d0068e2f2c875d (patch) | |
tree | 3fe6dde2b7922eb12bc376687ae18a59971d908e /src/gui/char_server.cpp | |
parent | 43a80fa64acb7f02cf5305b4a3d2ef6040b4b8c9 (diff) | |
download | mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.gz mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.bz2 mana-d3175115354bb2417f01877a96d0068e2f2c875d.tar.xz mana-d3175115354bb2417f01877a96d0068e2f2c875d.zip |
Rename {read,write}{Byte,Short,Long} to {read,write}Int{8,16,32}.
Diffstat (limited to 'src/gui/char_server.cpp')
-rw-r--r-- | src/gui/char_server.cpp | 78 |
1 files changed, 39 insertions, 39 deletions
diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp index 22ac484b..4135d9c5 100644 --- a/src/gui/char_server.cpp +++ b/src/gui/char_server.cpp @@ -160,12 +160,12 @@ void ServerSelectDialog::selectServer(int index) { // Send login infos MessageOut outMsg; - outMsg.writeShort(0x0065); - outMsg.writeLong(account_ID); - outMsg.writeLong(session_ID1); - outMsg.writeLong(session_ID2); - outMsg.writeShort(0); // unknown - outMsg.writeByte(sex); + outMsg.writeInt16(0x0065); + outMsg.writeInt32(account_ID); + outMsg.writeInt32(session_ID1); + outMsg.writeInt32(session_ID2); + outMsg.writeInt16(0); // unknown + outMsg.writeInt8(sex); // Skipping a mysterious 4 bytes while ((in_size < 4) || (out_size > 0)) flush(); @@ -189,41 +189,41 @@ void ServerSelectDialog::selectServer(int index) char_info[i]->totalWeight = 0; char_info[i]->maxWeight = 0; char_info[i]->lastAttackTime = 0; - char_info[i]->id = msg.readLong(); - char_info[i]->xp = msg.readLong(); - char_info[i]->gp = msg.readLong(); - char_info[i]->jobXp = msg.readLong(); - char_info[i]->jobLvl = msg.readLong(); + char_info[i]->id = msg.readInt32(); + char_info[i]->xp = msg.readInt32(); + char_info[i]->gp = msg.readInt32(); + char_info[i]->jobXp = msg.readInt32(); + char_info[i]->jobLvl = msg.readInt32(); msg.skip(8); // unknown - msg.readLong(); // option - msg.readLong(); // karma - msg.readLong(); // manner + msg.readInt32(); // option + msg.readInt32(); // karma + msg.readInt32(); // manner msg.skip(2); // unknown - char_info[i]->hp = msg.readShort(); - char_info[i]->maxHp = msg.readShort(); - char_info[i]->mp = msg.readShort(); - char_info[i]->maxMp = msg.readShort(); - msg.readShort(); // speed - msg.readShort(); // class - char_info[i]->hairStyle = msg.readShort(); - char_info[i]->weapon = msg.readShort(); - char_info[i]->lvl = msg.readShort(); - msg.readShort(); // skill point - msg.readShort(); // head bottom - msg.readShort(); // shield - msg.readShort(); // head option top - msg.readShort(); // head option mid - char_info[i]->hairColor = msg.readShort(); - msg.readShort(); // unknown + char_info[i]->hp = msg.readInt16(); + char_info[i]->maxHp = msg.readInt16(); + char_info[i]->mp = msg.readInt16(); + char_info[i]->maxMp = msg.readInt16(); + msg.readInt16(); // speed + msg.readInt16(); // class + char_info[i]->hairStyle = msg.readInt16(); + char_info[i]->weapon = msg.readInt16(); + char_info[i]->lvl = msg.readInt16(); + msg.readInt16(); // skill point + msg.readInt16(); // head bottom + msg.readInt16(); // shield + msg.readInt16(); // head option top + msg.readInt16(); // head option mid + char_info[i]->hairColor = msg.readInt16(); + msg.readInt16(); // unknown char_info[i]->name = msg.readString(24); - char_info[i]->STR = msg.readByte(); - char_info[i]->AGI = msg.readByte(); - char_info[i]->VIT = msg.readByte(); - char_info[i]->INT = msg.readByte(); - char_info[i]->DEX = msg.readByte(); - char_info[i]->LUK = msg.readByte(); - char_info[i]->characterNumber = msg.readByte(); // character number - msg.readByte(); // unknown + char_info[i]->STR = msg.readInt8(); + char_info[i]->AGI = msg.readInt8(); + char_info[i]->VIT = msg.readInt8(); + char_info[i]->INT = msg.readInt8(); + char_info[i]->DEX = msg.readInt8(); + char_info[i]->LUK = msg.readInt8(); + char_info[i]->characterNumber = msg.readInt8(); // character number + msg.readInt8(); // unknown } state = CHAR_SELECT_STATE; @@ -236,7 +236,7 @@ void ServerSelectDialog::selectServer(int index) else if (msg.getId() == 0x006c) { std::string errorStr; - switch (msg.readByte()) { + switch (msg.readInt8()) { case 0: errorStr = "Access denied"; break; case 1: errorStr = "Cannot use this ID"; break; default: errorStr = "Rejected from server"; break; |