summaryrefslogtreecommitdiff
path: root/src/net/eathena/charserverhandler.cpp
blob: d8be6e2f3669415b2d7ab3e3f9502c5ccdedcdd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
 *  The ManaPlus Client
 *  Copyright (C) 2004-2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  The Mana Developers
 *  Copyright (C) 2011-2020  The ManaPlus Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "net/eathena/charserverhandler.h"

#include "gui/windows/charcreatedialog.h"

#include "net/character.h"
#include "net/serverfeatures.h"

#include "net/ea/token.h"

#include "net/eathena/charserverrecv.h"
#include "net/eathena/loginhandler.h"
#include "net/eathena/messageout.h"
#include "net/eathena/network.h"
#include "net/eathena/protocolout.h"

#include "debug.h"

extern int packetVersion;
extern int serverVersion;

namespace EAthena
{

extern ServerInfo charServer;
extern ServerInfo mapServer;

CharServerHandler::CharServerHandler() :
    Ea::CharServerHandler()
{
    CharServerRecv::mNewName.clear();
    CharServerRecv::mRenameId = BeingId_zero;

    charServerHandler = this;
}

CharServerHandler::~CharServerHandler()
{
    charServerHandler = nullptr;
}

void CharServerHandler::chooseCharacter(Net::Character *const character) const
{
    if (character == nullptr)
        return;

    mSelectedCharacter = character;
    mCharSelectDialog = nullptr;

    createOutPacket(CMSG_CHAR_SELECT);
    outMsg.writeInt8(CAST_U8(
        mSelectedCharacter->slot), "slot");
}

void CharServerHandler::newCharacter(const std::string &name, const int slot,
                                     const GenderT gender,
                                     const int hairstyle, const int hairColor,
                                     const unsigned char race,
                                     const uint16_t look,
                                     const STD_VECTOR<int> &stats A_UNUSED)
                                     const
{
    createOutPacket(CMSG_CHAR_CREATE);
    outMsg.writeString(name, 24, "login");
    if (serverVersion > 0)
    {
        outMsg.writeInt8(CAST_U8(slot), "slot");
        outMsg.writeInt16(CAST_S16(hairColor), "hair color");
        outMsg.writeInt16(CAST_S16(hairstyle), "hair style");
        if (serverFeatures->haveRaceSelection())
            outMsg.writeInt16(CAST_S16(race), "race");
        if (serverFeatures->haveCreateCharGender())
        {
            uint8_t sex = 0;
            if (gender == Gender::UNSPECIFIED)
                sex = 99;
            else
                sex = Being::genderToInt(gender);
            outMsg.writeInt8(sex, "gender");
        }
        if (serverFeatures->haveLookSelection())
            outMsg.writeInt16(CAST_S16(look), "look");
    }
    else
    {
        if (packetVersion >= 20151001)
        {
            outMsg.writeInt8(CAST_U8(slot), "slot");
            outMsg.writeInt16(CAST_S16(hairColor), "hair color");
            outMsg.writeInt16(CAST_S16(hairstyle), "hair style");
            outMsg.writeInt32(CAST_S16(0), "starting job id");
            uint8_t sex = 0;
            if (gender == Gender::UNSPECIFIED)
                sex = 99;
            else
                sex = Being::genderToInt(gender);
            outMsg.writeInt8(sex, "gender");
        }
        else if (packetVersion >= 20120307)
        {
            outMsg.writeInt8(CAST_U8(slot), "slot");
            outMsg.writeInt16(CAST_S16(hairColor), "hair color");
            outMsg.writeInt16(CAST_S16(hairstyle), "hair style");
        }
        else
        {   // < 20120307
            // +++ here need send stat points
            // sending 5 for each stat for now
            for (int i = 0; i < 6; i++)
                outMsg.writeInt8(CAST_U8(5), "stat");

            outMsg.writeInt8(CAST_U8(slot), "slot");
            outMsg.writeInt16(CAST_S16(hairColor), "hair color");
            outMsg.writeInt16(CAST_S16(hairstyle), "hair style");
        }
    }
}

void CharServerHandler::deleteCharacter(Net::Character *const character,
                                        const std::string &email) const
{
    if (character == nullptr)
        return;

    mSelectedCharacter = character;

    createOutPacket(CMSG_CHAR_DELETE);
    outMsg.writeBeingId(mSelectedCharacter->dummy->getId(), "id?");
    if (email.empty())
        outMsg.writeString("a@a.com", 40, "email");
    else
        outMsg.writeString(email, 40, "email");
}

void CharServerHandler::switchCharacter() const
{
    // This is really a map-server packet
    createOutPacket(CMSG_PLAYER_RESTART);
    outMsg.writeInt8(1, "flag");
}

void CharServerHandler::connect() const
{
    const Token &token =
        static_cast<LoginHandler*>(loginHandler)->getToken();

    if (Network::mInstance == nullptr)
        return;

    Network::mInstance->disconnect();
    Network::mInstance->connect(charServer);
    createOutPacket(CMSG_CHAR_SERVER_CONNECT);
    outMsg.writeBeingId(token.account_ID, "account id");
    outMsg.writeInt32(token.session_ID1, "session id1");
    outMsg.writeInt32(token.session_ID2, "session id2");
    outMsg.writeInt16(CLIENT_PROTOCOL_VERSION, "client protocol version");
    outMsg.writeInt8(Being::genderToInt(token.sex), "gender");

    // We get 4 useless bytes before the real answer comes in (what are these?)
    Network::mInstance->skip(4);
}

void CharServerHandler::setCharCreateDialog(CharCreateDialog *const window)
                                            const
{
    mCharCreateDialog = window;

    if (mCharCreateDialog == nullptr)
        return;

    StringVect attributes;

    const Token &token = static_cast<LoginHandler*>(loginHandler)->getToken();

    mCharCreateDialog->setAttributes(attributes, 0, 0, 0);
    mCharCreateDialog->setDefaultGender(token.sex);
}

void CharServerHandler::setNewPincode(const BeingId accountId,
                                      const std::string &pin) const
{
    createOutPacket(CMSG_CHAR_CREATE_PIN);
    outMsg.writeBeingId(accountId, "account id");
    outMsg.writeString(pin, 4, "encrypted pin");
}

void CharServerHandler::sendCheckPincode(const BeingId accountId,
                                         const std::string &pin) const
{
    createOutPacket(CMSG_CHAR_PIN_CHECK);
    outMsg.writeBeingId(accountId, "account id");
    outMsg.writeString(pin, 4, "encrypted pin");
}

void CharServerHandler::changePincode(const BeingId accountId,
                                      const std::string &oldPin,
                                      const std::string &newPin) const
{
    createOutPacket(CMSG_CHAR_PIN_CHANGE);
    outMsg.writeBeingId(accountId, "account id");
    outMsg.writeString(oldPin, 4, "old encrypted pin");
    outMsg.writeString(newPin, 4, "new encrypted pin");
}

void CharServerHandler::renameCharacter(const BeingId id,
                                        const std::string &newName) const
{
    createOutPacket(CMSG_CHAR_CHECK_RENAME);
    CharServerRecv::mRenameId = id;
    CharServerRecv::mNewName = newName;
    outMsg.writeBeingId(id, "char id");
    outMsg.writeString(newName, 24, "name");
}

void CharServerHandler::changeSlot(const int oldSlot,
                                   const int newSlot) const
{
    createOutPacket(CMSG_CHAR_CHANGE_SLOT);
    outMsg.writeInt16(CAST_S16(oldSlot), "old slot");
    outMsg.writeInt16(CAST_S16(newSlot), "new slot");
    outMsg.writeInt16(0, "unused");
}

void CharServerHandler::ping() const
{
    createOutPacket(CMSG_CHAR_PING);
    outMsg.writeInt32(0, "unused");
}

unsigned int CharServerHandler::hatSprite() const
{
    return 7;
}

}  // namespace EAthena