summaryrefslogtreecommitdiff
path: root/src/gui/char_select.cpp
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2006-08-14 08:36:16 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2006-08-14 08:36:16 +0000
commitc79bf8c82f0a38b574b83be2484eb347852cd833 (patch)
treebf13ca5f0ff3f0413bab52f89ba95e705ffce745 /src/gui/char_select.cpp
parent9e6862623370f53d1b78e4bd167152b840e28884 (diff)
downloadmana-client-c79bf8c82f0a38b574b83be2484eb347852cd833.tar.gz
mana-client-c79bf8c82f0a38b574b83be2484eb347852cd833.tar.bz2
mana-client-c79bf8c82f0a38b574b83be2484eb347852cd833.tar.xz
mana-client-c79bf8c82f0a38b574b83be2484eb347852cd833.zip
Completed porting of character creation/deletion, fixed some issues with network code.
Diffstat (limited to 'src/gui/char_select.cpp')
-rw-r--r--src/gui/char_select.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp
index 75887b99..775eea24 100644
--- a/src/gui/char_select.cpp
+++ b/src/gui/char_select.cpp
@@ -38,6 +38,8 @@
#include "../main.h"
#include "../net/messageout.h"
+#include "../net/network.h"
+#include "../net/protocol.h"
#include "../utils/tostring.h"
@@ -83,7 +85,6 @@ CharSelectDialog::CharSelectDialog(Network *network,
mNameLabel = new gcn::Label("Name");
mLevelLabel = new gcn::Label("Level");
- mJobLevelLabel = new gcn::Label("Job Level");
mMoneyLabel = new gcn::Label("Money");
mPlayerBox = new PlayerBox(0);
@@ -93,7 +94,6 @@ CharSelectDialog::CharSelectDialog(Network *network,
mPlayerBox->setDimension(gcn::Rectangle(5, 5, w - 10, 90));
mNameLabel->setDimension(gcn::Rectangle(10, 100, 128, 16));
mLevelLabel->setDimension(gcn::Rectangle(10, 116, 128, 16));
- mJobLevelLabel->setDimension(gcn::Rectangle(10, 132, 128, 16));
mMoneyLabel->setDimension(gcn::Rectangle(10, 148, 128, 16));
mPreviousButton->setPosition(5, 170);
mNextButton->setPosition(mPreviousButton->getWidth() + 10, 170);
@@ -117,7 +117,6 @@ CharSelectDialog::CharSelectDialog(Network *network,
add(mNextButton);
add(mNameLabel);
add(mLevelLabel);
- add(mJobLevelLabel);
add(mMoneyLabel);
mSelectButton->requestFocus();
@@ -177,8 +176,7 @@ void CharSelectDialog::updatePlayerInfo()
if (pi) {
mNameLabel->setCaption(pi->getName());
mLevelLabel->setCaption("Lvl: " + toString(pi->mLevel));
- mJobLevelLabel->setCaption("Job Lvl: " + toString(pi->mJobLevel));
- mMoneyLabel->setCaption("Gold: " + toString(pi->mGp));
+ mMoneyLabel->setCaption("Money: " + toString(pi->mMoney));
if (!mCharSelected)
{
mNewCharButton->setEnabled(false);
@@ -192,7 +190,6 @@ void CharSelectDialog::updatePlayerInfo()
} else {
mNameLabel->setCaption("Name");
mLevelLabel->setCaption("Level");
- mJobLevelLabel->setCaption("Job Level");
mMoneyLabel->setCaption("Money");
mNewCharButton->setEnabled(true);
mDelCharButton->setEnabled(false);
@@ -207,10 +204,11 @@ void CharSelectDialog::updatePlayerInfo()
void CharSelectDialog::attemptCharDelete()
{
// Request character deletion
- MessageOut outMsg;
- outMsg.writeShort(0x0068);
- outMsg.writeLong(mCharInfo->getEntry()->mCharId);
- outMsg.writeString("a@a.com", 40);
+ MessageOut msg;
+ msg.writeShort(PAMSG_CHAR_DELETE);
+ // TODO: Send the selected slot
+ msg.writeByte(0);
+ network->send(msg);
mCharInfo->lock();
}
@@ -326,15 +324,17 @@ void CharCreateDialog::attemptCharCreate()
{
// Send character infos
MessageOut outMsg;
- outMsg.writeShort(0x0067);
- outMsg.writeString(getName(), 24);
- outMsg.writeByte(5);
- outMsg.writeByte(5);
- outMsg.writeByte(5);
- outMsg.writeByte(5);
- outMsg.writeByte(5);
- outMsg.writeByte(5);
- outMsg.writeByte(mSlot);
- outMsg.writeShort(mPlayerBox->mHairColor + 1);
- outMsg.writeShort(mPlayerBox->mHairStyle + 1);
+ outMsg.writeShort(PAMSG_CHAR_CREATE);
+ outMsg.writeString(getName());
+ outMsg.writeByte(mPlayerBox->mHairStyle + 1);
+ outMsg.writeByte(mPlayerBox->mHairColor + 1);
+ // TODO: send selected sex
+ outMsg.writeByte(0); // Player sex
+ outMsg.writeShort(10); // STR
+ outMsg.writeShort(10); // AGI
+ outMsg.writeShort(10); // VIT
+ outMsg.writeShort(10); // INT
+ outMsg.writeShort(10); // DEX
+ outMsg.writeShort(10); // LUK
+ network->send(outMsg);
}