summaryrefslogtreecommitdiff
path: root/src/net/ea/guildhandler.cpp
blob: 66576da4019ce07e230d48784366277e7862702a (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
/*
 *  The Mana Client
 *  Copyright (C) 2009-2010  The Mana Developers
 *
 *  This file is part of The Mana 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/ea/guildhandler.h"

#include "localplayer.h"
#include "log.h"

#include "gui/widgets/chattab.h"

#include "net/ea/messagein.h"
#include "net/ea/protocol.h"

#include "utils/gettext.h"

extern Net::GuildHandler *guildHandler;

namespace EAthena {

GuildHandler::GuildHandler()
{
    static const Uint16 _messages[] = {
        SMSG_GUILD_CREATE_RESPONSE,
        SMSG_GUILD_INVITE_ACK,
        SMSG_GUILD_INVITE,
        0
    };
    handledMessages = _messages;

    guildHandler = this;
}

void GuildHandler::handleMessage(Net::MessageIn &msg)
{
    switch (msg.getId())
    {
        case SMSG_GUILD_CREATE_RESPONSE:
            {
                int flag = msg.readInt8();

                if (flag == 0)
                {
                    // Success
                }
                else if (flag == 1)
                {
                    // Already in a guild
                }
                else if (flag == 2)
                {
                    // Unable to make (likely name already in use)
                }
                else if (flag == 3)
                {
                    // Emperium check failed
                }
            }
            break;
        case SMSG_GUILD_INVITE_ACK:
            {
                int flag = msg.readInt8();

                if (flag == 0)
                {
                    // Fail (already in guild, busy, etc)
                }
                else if (flag == 1)
                {
                    // Rejected
                }
                else if (flag == 2)
                {
                    // Accepted
                }
                else if (flag == 3)
                {
                    // Guild full
                }
            }
            break;

        case SMSG_GUILD_INVITE:
            {
                int guildId = msg.readInt32();
                std::string guildName = msg.readString(24);

                printf("Guild invite for %d (%s)\n", guildId, guildName.c_str());

                // TODO
            }
            break;

        case SMSG_GUILD_POSITION_INFO:
            {
                int guildId =  msg.readInt32();
                int emblem =  msg.readInt32();
                int posMode =  msg.readInt32();
                msg.readInt32(); // Unused
                msg.readInt8(); // Unused
                std::string guildName = msg.readString(24);

                logger->log("Guild position info: %d %d %d %s\n", guildId,
                            emblem, posMode, guildName.c_str());
            }
            break;
    }
}

void GuildHandler::create(const std::string &name)
{
    localChatTab->chatLog(_("Guild creation isn't supported yet."),
                          BY_SERVER);
    return;

    MessageOut msg(CMSG_GUILD_CREATE);
    msg.writeInt32(0); // Unused
    msg.writeString(name, 24);
}

void GuildHandler::invite(int guildId, const std::string &name)
{
    // TODO
}

void GuildHandler::invite(int guildId, Player *player)
{
    MessageOut msg(CMSG_GUILD_INVITE);
    msg.writeInt32(player->getId());
    msg.writeInt32(0); // Unused
    msg.writeInt32(0); // Unused
}

void GuildHandler::inviteResponse(int guildId, bool response)
{
    MessageOut msg(CMSG_GUILD_INVITE_REPLY);
    msg.writeInt32(guildId);
    msg.writeInt8(response);
    msg.writeInt8(0); // Unused
    msg.writeInt16(0); // Unused
}

void GuildHandler::leave(int guildId)
{
    MessageOut msg(CMSG_GUILD_LEAVE);
    msg.writeInt32(guildId);
    msg.writeInt32(0); // Account ID
    msg.writeInt32(player_node->getId());
    msg.writeString("", 30); // Message
}

void GuildHandler::kick(GuildMember member)
{
    MessageOut msg(CMSG_GUILD_EXPULSION);
    msg.writeInt32(member.getGuild()->getId());
    msg.writeInt32(member.getID()); // Account ID
    msg.writeInt32(0); // Char ID
    msg.writeString("", 40); // Message
}

void GuildHandler::chat(int guildId, const std::string &text)
{
    MessageOut msg(CMSG_GUILD_MESSAGE);
    msg.writeInt16(text.size() + 4);
    msg.writeString(text);
}

void GuildHandler::memberList(int guildId)
{
    // TODO
}

void GuildHandler::changeMemberPostion(GuildMember member, int level)
{
    // TODO
}

void GuildHandler::requestAlliance(int guildId, int otherGuildId)
{
    // TODO
}

void GuildHandler::requestAllianceResponse(int guildId, int otherGuildId,
                             bool response)
{
    // TODO
}

void GuildHandler::endAlliance(int guildId, int otherGuildId)
{
    // TODO
}

}