summaryrefslogtreecommitdiff
path: root/src/gui/register.cpp
blob: 71d1a7408cd7e35604c3a4331136774eb904fadb (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
/*
 *  The Mana World
 *  Copyright 2004 The Mana World Development Team
 *
 *  This file is part of The Mana World.
 *
 *  The Mana World 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.
 *
 *  The Mana World 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 The Mana World; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  $Id$
 */

#include "register.h"

#include <string>
#include <sstream>
#include <SDL.h>

#include <guichan/widgets/label.hpp>

#include "../main.h"
#include "../configuration.h"
#include "../graphics.h"
#include "../log.h"
#include "../serverinfo.h"

#include "button.h"
#include "checkbox.h"
#include "passwordfield.h"
#include "radiobutton.h"
#include "textfield.h"
#include "ok_dialog.h"

#include "../net/messagein.h"
#include "../net/messageout.h"
#include "../net/network.h"

//OkDialog *wrongLoginNotice = NULL;
extern SERVER_INFO **server_info;

RegisterDialog::RegisterDialog():
    Window("Register"), mStatus(NET_IDLE)
{
    userLabel = new gcn::Label("Name:");
    passwordLabel = new gcn::Label("Password:");
    confirmLabel = new gcn::Label("Confirm:");
    serverLabel = new gcn::Label("Server:");
    userField = new TextField("player");
    passwordField = new PasswordField();
    confirmField = new PasswordField();
    serverField = new TextField();
    maleButton = new RadioButton("Male", "sex", true);
    maleButton->setEnabled(false);
    femaleButton = new RadioButton("Female", "sex", false);
    femaleButton->setEnabled(false);
    registerButton = new Button("Register");
    cancelButton = new Button("Cancel");
    
    int width = 200;
    int height = 150;
    setContentSize(width, height);
    
    userField->setPosition(65, 5);
    userField->setWidth(130);
    passwordField->setPosition(
            65, userField->getY() + userField->getHeight() + 7);
    passwordField->setWidth(130);
    confirmField->setPosition(
            65, passwordField->getY() + passwordField->getHeight() + 7);
    confirmField->setWidth(130);
    serverField->setPosition(
            65, 23 + confirmField->getY() + confirmField->getHeight() + 7);
    serverField->setWidth(130);

    userLabel->setPosition(5, userField->getY() + 1);
    passwordLabel->setPosition(5, passwordField->getY() + 1);
    confirmLabel->setPosition(5, confirmField->getY() + 1);
    serverLabel->setPosition(5, serverField->getY() + 1);
    
    femaleButton->setPosition(width - femaleButton->getWidth() - 10,
                              confirmField->getY() + confirmField->getHeight() + 7);
    maleButton->setPosition(femaleButton->getX() - maleButton->getWidth() - 5,
                            femaleButton->getY());
                            
    registerButton->setPosition(5, height - registerButton->getHeight() - 5);
    cancelButton->setPosition(10 + registerButton->getWidth(),
                              registerButton->getY());


    /*userField->setEventId("register");
    passwordField->setEventId("register");
    confirmField->setEventId("register");
    serverField->setEventId("register");*/
    registerButton->setEventId("register");
    cancelButton->setEventId("cancel");


    /*userField->addActionListener(this);
    passwordField->addActionListener(this);
    confirmField->addActionListener(this);
    serverField->addActionListener(this);*/
    registerButton->addActionListener(this);
    cancelButton->addActionListener(this);

    add(userLabel);
    add(passwordLabel);
    add(serverLabel);
    add(confirmLabel);
    add(userField);
    add(passwordField);
    add(confirmField);
    add(serverField);
    add(maleButton);
    add(femaleButton);
    add(registerButton);
    add(cancelButton);

    setLocationRelativeTo(getParent());
    userField->requestFocus();
    userField->setCaretPosition(userField->getText().length());

    serverField->setText(config.getValue("host", ""));
    
    wrongDataNoticeListener = NULL;
    wrongRegisterNotice = NULL;
}

void
RegisterDialog::action(const std::string& eventId)
{
    if (eventId == "cancel")
    {
        state = EXIT_STATE;
    }
    else if (eventId == "register")
    {
        const std::string user = userField->getText();
        logger->log("RegisterDialog::register Username is %s", user.c_str());

        std::stringstream errorMsg;
        int error = 0;

        // Check login
        if (user.length() == 0)
        {
            // No username
            errorMsg << "Enter your username first.";
            error = 1;
        }
        else if (user.length() < LEN_MIN_USERNAME)
        {
            // Name too short
            errorMsg << "The username needs to be at least "
                     << LEN_MIN_USERNAME
                     << " characters long.";
            error = 1;
        }
        else if (user.length() > LEN_MAX_USERNAME - 1 )
        {
            // Name too long
            errorMsg << "The username needs to be less than "
                     << LEN_MAX_USERNAME
                     << " characters long.";
            error = 1;
        }
        else if (passwordField->getText().length() < LEN_MIN_PASSWORD)
        {
            // Pass too short
            errorMsg << "The password needs to be at least "
                     << LEN_MIN_PASSWORD
                     << " characters long.";
            error = 2;
        }
        else if (passwordField->getText().length() > LEN_MAX_PASSWORD - 1 )
        {
            // Pass too long
            errorMsg << "The password needs to be less than "
                     << LEN_MAX_PASSWORD
                     << " characters long.";
            error = 2;
        }
        else if (passwordField->getText() != confirmField->getText())
        {
            // Password does not match with the confirmation one
            errorMsg << "Passwords do not match.";
            error = 2;
        }
        
        if (error > 0)
        {
            wrongDataNoticeListener = new WrongDataNoticeListener();
            if (error == 1)
            {
                wrongDataNoticeListener->setTarget(this->userField);
            }
            else if (error == 2)
            {
                wrongDataNoticeListener->setTarget(this->passwordField);
                // Reset password confirmation
                confirmField->setText("");
            }

            if (wrongRegisterNotice)
            {
                delete wrongRegisterNotice;
            }
            wrongRegisterNotice = new OkDialog("Error", errorMsg.str(),
                                            wrongDataNoticeListener);
        }
        else
        {
            // No errors detected, register the new user.
            const std::string host(config.getValue("host", "animesites.de"));
            short port = (short)config.getValue("port", 0);
            // Attempt to connect to login server
            openConnection(host.c_str(), port);
            registerButton->setEnabled(false);
            mStatus = NET_CONNECTING;
        }
    }
}

void
RegisterDialog::logic()
{
    switch (mStatus)
    {
        case NET_CONNECTING:
            mStatus = pollConnection();
            break;
        case NET_ERROR:
            logger->log("Register::Unable to connect");
            errorMessage = "Unable to connect to login server";
            state = ERROR_STATE;
            closeConnection();
            logger->log("Connection closed");
            break;
        case NET_DATA:
            if (packetReady())
            {
                checkRegistration();
                closeConnection();
            }
            else
            {
                flush();
            }
            break;
        case NET_CONNECTED:
            logger->log("Connected...");
            std::string user = userField->getText();
            const std::string password = passwordField->getText();
            if (femaleButton->isMarked())
            {
                user += "_F";
            }
            else
            {
                user += "_M";
            }
            attemptRegistration(user, password);
            mStatus = NET_DATA;
            break;
    }
}

void
RegisterDialog::attemptRegistration(const std::string& user,
                                    const std::string& pass)
{
    // Send login infos
    MessageOut outMsg;
    outMsg.writeInt16(0x0064);
    outMsg.writeInt32(0); // client version
    outMsg.writeString(user, 24);
    outMsg.writeString(pass, 24);
    outMsg.writeInt8(0); // unknown
}

void
RegisterDialog::checkRegistration()
{
    // Receive reply
    MessageIn msg = get_next_message();
    if (state == ERROR_STATE)
    {
        return;
    }

    // Login ok
    if (msg.getId() == 0x0069)
    {
        // Skip the length word
        msg.skip(2);

        n_server = (msg.getLength() - 47) / 32;
        server_info = (SERVER_INFO**)malloc(sizeof(SERVER_INFO*) * n_server);

        session_ID1 = msg.readInt32();
        account_ID = msg.readInt32();
        session_ID2 = msg.readInt32();
        msg.skip(30);                           // unknown
        sex = msg.readInt8();

        for (int i = 0; i < n_server; i++)
        {
            server_info[i] = new SERVER_INFO;

            server_info[i]->address = msg.readInt32();
            server_info[i]->port = msg.readInt16();
            server_info[i]->name = msg.readString(20);
            server_info[i]->online_users = msg.readInt32();
            msg.skip(2);                        // unknown

            logger->log("Network: Server: %s (%s:%d)",
                        server_info[i]->name.c_str(),
                        iptostring(server_info[i]->address),
                        server_info[i]->port);
        }
        skip(msg.getLength());

        state = CHAR_SERVER_STATE;
    }
    else if (msg.getId() == 0x006a)
    {
        int loginError = msg.readInt8();
        logger->log("Login::error code: %i", loginError);

        switch (loginError) {
            case 0:
                errorMessage = "Unregistered ID";
                break;
            case 1:
                errorMessage = "Wrong password";
                break;
            case 2:
                errorMessage = "Account expired";
                break;
            case 3:
                errorMessage = "Rejected from server";
                break;
            case 4:
                errorMessage = "You have been blocked by the GM Team";
                break;
            case 9:
                errorMessage = "This account is already logged in";
                break;
        }
        skip(msg.getLength());
        state = ERROR_STATE;
    }
    else {
        skip(msg.getLength());
        logger->log("Login::Unknown error");
        errorMessage = "Unknown error";
        state = ERROR_STATE;
    }
    // Todo: add other packets, also encrypted
}

void
registerInputHandler(SDL_KeyboardEvent *keyEvent)
{
    if (keyEvent->keysym.sym == SDLK_ESCAPE)
    {
        state = EXIT_STATE;
    }
}