summaryrefslogtreecommitdiff
path: root/src/net/logouthandler.cpp
blob: 6dea4c83c896040a847b17dad83f063a5263beab (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
/*
 *  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
 */

#include "logouthandler.h"

#include "messagein.h"
#include "protocol.h"

#include "../main.h"

LogoutHandler::LogoutHandler():
mPassToken(NULL), mScenario(LOGOUT_EXIT),
mLoggedOutAccount(false), mLoggedOutGame(false), mLoggedOutChat(false)
{
    static const Uint16 _messages[] = {
        APMSG_LOGOUT_RESPONSE,
        APMSG_UNREGISTER_RESPONSE,
        GPMSG_DISCONNECT_RESPONSE,
        CPMSG_DISCONNECT_RESPONSE,
        0
    };
    handledMessages = _messages;
}

void LogoutHandler::handleMessage(MessageIn &msg)
{
    switch (msg.getId())
    {
        case APMSG_LOGOUT_RESPONSE:
        {
            int errMsg = msg.readInt8();

            // Successful logout
            if (errMsg == ERRMSG_OK)
            {
                mLoggedOutAccount = true;

                switch (mScenario)
                {
                    case LOGOUT_SWITCH_ACCOUNTSERVER:
                        if (mLoggedOutGame && mLoggedOutChat)
                                           state = STATE_SWITCH_ACCOUNTSERVER;
                        break;

                    case LOGOUT_EXIT:
                    default:
                        if (mLoggedOutGame && mLoggedOutChat)
                                                     state = STATE_FORCE_QUIT;
                        break;
                }
            }
            // Logout failed
            else
            {
                switch (errMsg) {
                    case ERRMSG_NO_LOGIN:
                        errorMessage = "Accountserver: Not logged in";
                        break;
                    default:
                        errorMessage = "Accountserver: Unknown error";
                        break;
                }
                state = STATE_ERROR;
            }
        }
            break;
        case APMSG_UNREGISTER_RESPONSE:
        {
            int errMsg = msg.readInt8();
            // Successful unregistration
            if (errMsg == ERRMSG_OK)
            {
                state = STATE_UNREGISTER;
            }
            // Unregistration failed
            else
            {
                switch (errMsg) {
                    case ERRMSG_INVALID_ARGUMENT:
                        errorMessage =
                                  "Accountserver: Wrong username or password";
                        break;
                    default:
                        errorMessage = "Accountserver: Unknown error";
                        break;
                }
                state = STATE_ACCOUNTCHANGE_ERROR;
            }
        }
            break;
        case GPMSG_DISCONNECT_RESPONSE:
        {
            int errMsg = msg.readInt8();
            // Successful logout
            if (errMsg == ERRMSG_OK)
            {
                mLoggedOutGame = true;

                switch (mScenario)
                {
                    case LOGOUT_SWITCH_CHARACTER:
                        if (mPassToken)
                        {
                            *mPassToken = msg.readString(32);
                            mPassToken = NULL;
                        }
                        if (mLoggedOutChat) state = STATE_RECONNECT_ACCOUNT;
                        break;

                    case LOGOUT_SWITCH_ACCOUNTSERVER:
                        if (mLoggedOutAccount && mLoggedOutChat)
                                           state = STATE_SWITCH_ACCOUNTSERVER;
                        break;

                    case LOGOUT_EXIT:
                    default:
                        if (mLoggedOutAccount && mLoggedOutChat)
                                                     state = STATE_FORCE_QUIT;
                        break;
                }
            }
            // Logout failed
            else
            {
                switch (errMsg) {
                    case ERRMSG_NO_LOGIN:
                        errorMessage = "Gameserver: Not logged in";
                        break;
                    default:
                        errorMessage = "Gameserver: Unknown error";
                        break;
                }
                state = STATE_ERROR;
            }
        }
            break;
        case CPMSG_DISCONNECT_RESPONSE:
        {
            int errMsg = msg.readInt8();
            // Successful logout
            if (errMsg == ERRMSG_OK)
            {
                mLoggedOutChat = true;

                switch (mScenario)
                {
                    case LOGOUT_SWITCH_CHARACTER:
                        if (mLoggedOutGame) state = STATE_RECONNECT_ACCOUNT;
                        break;

                    case LOGOUT_SWITCH_ACCOUNTSERVER:
                        if (mLoggedOutAccount && mLoggedOutGame)
                                          state = STATE_SWITCH_ACCOUNTSERVER;
                        break;

                    case LOGOUT_EXIT:
                    default:
                        if (mLoggedOutAccount && mLoggedOutGame)
                        {
                            state = STATE_FORCE_QUIT;
                        }
                        break;
                }
            }
            else
            {
                switch (errMsg) {
                    case ERRMSG_NO_LOGIN:
                        errorMessage = "Chatserver: Not logged in";
                        break;
                    default:
                        errorMessage = "Chatserver: Unknown error";
                        break;
                }
                state = STATE_ERROR;
            }
        }
            break;
    }
}

void
LogoutHandler::setScenario(unsigned short scenario, std::string* passToken)
{
    mScenario = scenario;
    mPassToken = passToken;
}

void
LogoutHandler::reset()
{
    mPassToken = NULL;
    mScenario = LOGOUT_EXIT;
    mLoggedOutAccount = false;
    mLoggedOutGame = false;
    mLoggedOutChat = false;
}