summaryrefslogtreecommitdiff
path: root/src/net/manaserv/charhandler.cpp
blob: e7a99e8d7def71ec626212443ac8238792062982 (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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
/*
 *  The Mana World
 *  Copyright (C) 2004  The Mana World Development Team
 *
 *  This file is part of The Mana World.
 *
 *  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, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include "net/manaserv/charhandler.h"

#include "net/manaserv/connection.h"
#include "net/manaserv/protocol.h"

#include "net/manaserv/accountserver/accountserver.h"
#include "net/manaserv/accountserver/account.h"

#include "net/logindata.h"
#include "net/loginhandler.h"
#include "net/messagein.h"
#include "net/net.h"

#include "game.h"
#include "localplayer.h"
#include "log.h"
#include "main.h"

#include "gui/charcreatedialog.h"
#include "gui/okdialog.h"

#include "resources/colordb.h"

#include "utils/gettext.h"

extern Net::Connection *accountServerConnection;
extern Net::Connection *gameServerConnection;
extern Net::Connection *chatServerConnection;

Net::CharHandler *charHandler;

struct CharInfo {
    unsigned char slot;
    std::string name;
    Gender gender;
    int hs, hc;
    unsigned short level;
    unsigned short charPoints;
    unsigned short corrPoints;
    unsigned int money;
    unsigned char attr[7];
};

typedef std::vector<CharInfo> CharInfos;
CharInfos chars;

namespace ManaServ {

extern std::string netToken;
extern ServerInfo gameServer;
extern ServerInfo chatServer;

CharHandler::CharHandler():
    mCharSelectDialog(0),
    mCharCreateDialog(0)
{
    static const Uint16 _messages[] = {
        APMSG_CHAR_CREATE_RESPONSE,
        APMSG_CHAR_DELETE_RESPONSE,
        APMSG_CHAR_INFO,
        APMSG_CHAR_SELECT_RESPONSE,
        0
    };
    handledMessages = _messages;
    charHandler = this;
}

void CharHandler::handleMessage(MessageIn &msg)
{
    switch (msg.getId())
    {
        case APMSG_CHAR_CREATE_RESPONSE:
            handleCharCreateResponse(msg);
            break;

        case APMSG_CHAR_DELETE_RESPONSE:
        {
            int errMsg = msg.readInt8();
            // Character deletion successful
            if (errMsg == ERRMSG_OK)
            {
                LocalPlayer *tempPlayer = mCharInfo->getEntry();
                mCharInfo->setEntry(0);
                mCharInfo->unlock();
                if (mCharSelectDialog)
                    mCharSelectDialog->update(mCharInfo->getPos());
                new OkDialog(_("Info"), _("Player deleted."));
                delete tempPlayer;
            }
            // Character deletion failed
            else
            {
                std::string errorMessage = "";
                switch (errMsg)
                {
                    case ERRMSG_NO_LOGIN:
                        errorMessage = _("Not logged in.");
                        break;
                    case ERRMSG_INVALID_ARGUMENT:
                        errorMessage = _("Selection out of range.");
                        break;
                    default:
                        errorMessage = _("Unknown error.");
                }
                mCharInfo->unlock();
                new OkDialog(_("Error"), errorMessage);
            }
        }
            break;

        case APMSG_CHAR_INFO:
        {
            CharInfo info;
            info.slot = msg.readInt8(); // character slot
            info.name = msg.readString();
            info.gender = msg.readInt8() == GENDER_MALE ? GENDER_MALE :
                                                          GENDER_FEMALE;
            info.hs = msg.readInt8();
            info.hc = msg.readInt8();
            info.level = msg.readInt16();
            info.charPoints = msg.readInt16();
            info.corrPoints = msg.readInt16();
            info.money = msg.readInt32();

            for (int i = 0; i < 7; i++)
            {
                info.attr[i] = msg.readInt8();
            }

            chars.push_back(info);

            if (mCharSelectDialog)
            {
                mCharInfo->select(info.slot);

                LocalPlayer *tempPlayer = new LocalPlayer();
                tempPlayer->setName(info.name);
                tempPlayer->setGender(info.gender);
                tempPlayer->setSprite(Player::HAIR_SPRITE, info.hs * -1,
                                      ColorDB::get(info.hc));
                tempPlayer->setLevel(info.level);
                tempPlayer->setCharacterPoints(info.charPoints);
                tempPlayer->setCorrectionPoints(info.corrPoints);
                tempPlayer->setMoney(info.money);

                for (int i = 0; i < 7; i++)
                {
                    tempPlayer->setAttributeBase(i, info.attr[i]);
                }

                mCharInfo->setEntry(tempPlayer);

                mCharSelectDialog->update(info.slot);
            }
        }
            break;

        case APMSG_CHAR_SELECT_RESPONSE:
            handleCharSelectResponse(msg);
            break;
    }
}

void CharHandler::handleCharCreateResponse(MessageIn &msg)
{
    int errMsg = msg.readInt8();

    // Character creation failed
    if (errMsg != ERRMSG_OK)
    {
        std::string errorMessage = "";
        switch (errMsg)
        {
            case ERRMSG_NO_LOGIN:
                errorMessage = _("Not logged in.");
                break;
            case CREATE_TOO_MUCH_CHARACTERS:
                errorMessage = _("No empty slot.");
                break;
            case ERRMSG_INVALID_ARGUMENT:
                errorMessage = _("Invalid name.");
                break;
            case CREATE_EXISTS_NAME:
                errorMessage = _("Character's name already exists.");
                break;
            case CREATE_INVALID_HAIRSTYLE:
                errorMessage = _("Invalid hairstyle.");
                break;
            case CREATE_INVALID_HAIRCOLOR:
                errorMessage = _("Invalid hair color.");
                break;
            case CREATE_INVALID_GENDER:
                errorMessage = _("Invalid gender.");
                break;
            case CREATE_RAW_STATS_TOO_HIGH:
                errorMessage = _("Character's stats are too high.");
                break;
            case CREATE_RAW_STATS_TOO_LOW:
                errorMessage = _("Character's stats are too low.");
                break;
            case CREATE_RAW_STATS_EQUAL_TO_ZERO:
                errorMessage = _("One stat is zero.");
                break;
            default:
                errorMessage = _("Unknown error.");
                break;
        }
        new OkDialog(_("Error"), errorMessage);

        if (mCharCreateDialog)
            mCharCreateDialog->unlock();
    }
    else
    {
        if (mCharCreateDialog)
        {
            mCharCreateDialog->success();
            mCharCreateDialog->scheduleDelete();
            mCharCreateDialog = 0;
        }
    }

}

void CharHandler::handleCharSelectResponse(MessageIn &msg)
{
    int errMsg = msg.readInt8();

    if (errMsg == ERRMSG_OK)
    {
        netToken = msg.readString(32);

        gameServer.hostname.assign(msg.readString());
        gameServer.port = msg.readInt16();

        chatServer.hostname.assign(msg.readString());
        chatServer.port = msg.readInt16();

        logger->log("Game server: %s:%d", gameServer.hostname.c_str(),
                    gameServer.port);
        logger->log("Chat server: %s:%d", chatServer.hostname.c_str(),
                    chatServer.port);

        gameServerConnection->connect(gameServer.hostname, gameServer.port);
        chatServerConnection->connect(chatServer.hostname, chatServer.port);

        // Keep the selected character and delete the others
        player_node = mCharInfo->getEntry();
        int slot = mCharInfo->getPos();
        mCharInfo->unlock();
        mCharInfo->select(0);

        do {
            LocalPlayer *tmp = mCharInfo->getEntry();
            if (tmp != player_node)
            {
                delete tmp;
                mCharInfo->setEntry(0);
            }
            mCharInfo->next();
        } while (mCharInfo->getPos());
        mCharInfo->select(slot);

        mCharInfo->clear(); //player_node will be deleted by ~Game

        state = STATE_CONNECT_GAME;
    }
    else if(errMsg == ERRMSG_FAILURE)
    {
        errorMessage = _("No gameservers are available.");
        mCharInfo->clear();
        state = STATE_ERROR;
    }
}

void CharHandler::setCharSelectDialog(CharSelectDialog *window)
{
    mCharSelectDialog = window;
}

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

    if (!mCharCreateDialog) return;

    std::vector<std::string> attributes;
    attributes.push_back(_("Strength:"));
    attributes.push_back(_("Agility:"));
    attributes.push_back(_("Dexterity:"));
    attributes.push_back(_("Vitality:"));
    attributes.push_back(_("Intelligence:"));
    attributes.push_back(_("Willpower:"));

    mCharCreateDialog->setAttributes(attributes, 60, 1, 20);
}

void CharHandler::getCharacters()
{
    if (!accountServerConnection->isConnected())
        Net::getLoginHandler()->connect();
    else
    {
        mCharInfo->unlock();
        LocalPlayer *tempPlayer;
        for (CharInfos::const_iterator it = chars.begin(); it != chars.end(); it++)
        {
            const CharInfo info = (CharInfo) (*it);
            mCharInfo->select(info.slot);

            tempPlayer = new LocalPlayer();
            tempPlayer->setName(info.name);
            tempPlayer->setGender(info.gender);
            tempPlayer->setSprite(Player::HAIR_SPRITE, info.hs * -1,
                                  ColorDB::get(info.hc));
            tempPlayer->setLevel(info.level);
            tempPlayer->setCharacterPoints(info.charPoints);
            tempPlayer->setCorrectionPoints(info.corrPoints);
            tempPlayer->setMoney(info.money);

            for (int i = 0; i < 7; i++)
            {
                tempPlayer->setAttributeBase(i, info.attr[i]);
            }

            mCharInfo->setEntry(tempPlayer);
        }

        // Close the character create dialog
        if (mCharCreateDialog)
        {
            mCharCreateDialog->scheduleDelete();
            mCharCreateDialog = 0;
        }

        state = STATE_CHAR_SELECT;
    }
}

void CharHandler::chooseCharacter(int slot, LocalPlayer* character)
{
    Net::AccountServer::Account::selectCharacter(slot);
}

void CharHandler::newCharacter(const std::string &name, int slot, bool gender,
                  int hairstyle, int hairColor, std::vector<int> stats)
{
    Net::AccountServer::Account::createCharacter(name, hairstyle, hairColor,
                    gender,
                    stats[0],  // STR
                    stats[1],  // AGI
                    stats[2],  // DEX
                    stats[3],  // VIT
                    stats[4],  // INT
                    stats[5]   // WILL
                );
}

void CharHandler::deleteCharacter(int slot, LocalPlayer* character)
{
    Net::AccountServer::Account::deleteCharacter(slot);
}

void CharHandler::switchCharacter()
{
    // TODO
}

} // namespace ManaServ