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
|
/*
* The Mana World
* Copyright (C) 2008 Lloyd Bryant <lloyd_bryant@netzero.net>
*
* 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/ea/partyhandler.h"
#include "net/ea/protocol.h"
#include "net/messagein.h"
#include "gui/chat.h"
#include "beingmanager.h"
#include "party.h"
PartyHandler::PartyHandler(Party *party) : mParty(party)
{
static const Uint16 _messages[] = {
SMSG_PARTY_CREATE,
SMSG_PARTY_INFO,
SMSG_PARTY_INVITE,
SMSG_PARTY_INVITED,
SMSG_PARTY_SETTINGS,
SMSG_PARTY_MEMBER_INFO,
SMSG_PARTY_LEAVE,
SMSG_PARTY_UPDATE_HP,
SMSG_PARTY_UPDATE_COORDS,
SMSG_PARTY_MESSAGE,
0
};
handledMessages = _messages;
}
void PartyHandler::handleMessage(MessageIn &msg)
{
switch (msg.getId())
{
case SMSG_PARTY_CREATE:
mParty->createResponse(msg.readInt8());
break;
case SMSG_PARTY_INFO:
break;
case SMSG_PARTY_INVITE:
{
std::string nick = msg.readString(24);
int status = msg.readInt8();
mParty->inviteResponse(nick, status);
break;
}
case SMSG_PARTY_INVITED:
{
int id = msg.readInt32();
Being *being = beingManager->findBeing(id);
if (!being)
{
break;
}
std::string nick;
int gender = 0;
std::string partyName = "";
if (being->getType() != Being::PLAYER)
{
nick = "";
}
else
{
nick = being->getName();
gender = being->getGender();
partyName = msg.readString(24);
}
mParty->invitedAsk(nick, gender, partyName);
break;
}
case SMSG_PARTY_SETTINGS:
break;
case SMSG_PARTY_MEMBER_INFO:
break;
case SMSG_PARTY_LEAVE:
{
/*int id = */msg.readInt32();
std::string nick = msg.readString(24);
/*int fail = */msg.readInt8();
mParty->leftResponse(nick);
break;
}
case SMSG_PARTY_UPDATE_HP:
break;
case SMSG_PARTY_UPDATE_COORDS:
break;
case SMSG_PARTY_MESSAGE:
{ // new block to enable local variables
int msgLength = msg.readInt16() - 8;
if (msgLength <= 0)
{
return;
}
int id = msg.readInt32();
Being *being = beingManager->findBeing(id);
std::string chatMsg = msg.readString(msgLength);
mParty->receiveChat(being, chatMsg);
}
break;
}
}
|