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
|
/*
* The Mana World
* Copyright (C) 2008 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 "partytab.h"
#include "net/net.h"
#include "net/ea/partyhandler.h"
#include "resources/iteminfo.h"
#include "resources/itemdb.h"
#include "utils/dtor.h"
#include "utils/gettext.h"
#include "utils/strprintf.h"
#include "utils/stringutils.h"
PartyTab::PartyTab() :
ChatTab(_("Party"))
{
}
PartyTab::~PartyTab()
{
}
void PartyTab::handleInput(const std::string &msg)
{
// Net::getPartyHandler()->chat(msg);
partyHandler->chat(msg);
}
void PartyTab::handleCommand(std::string msg)
{
std::string::size_type pos = msg.find(' ');
std::string type(msg, 0, pos);
std::string args(msg, pos == std::string::npos ? msg.size() : pos + 1);
if (type == "help")
{
if (args == "")
{
partyTab->chatLog(_("-- Help --"));
partyTab->chatLog(_("/help > Display this help."));
partyTab->chatLog(_("/create > Create a new party"));
partyTab->chatLog(_("/new > alias of create"));
partyTab->chatLog(_("/leave > leave the party you are in"));
}
else if (args == "create" || args == "new")
{
partyTab->chatLog(_("Command: /party new <party-name>"));
partyTab->chatLog(_("Command: /party create <party-name>"));
partyTab->chatLog(_("These commands create a new party <party-name."));
}
//else if (msg == "settings")
//else if (msg == "info")
else if (args == "leave")
{
partyTab->chatLog(_("Command: /party leave"));
partyTab->chatLog(_("This command causes the player to leave the party."));
}
else if (args == "help")
{
partyTab->chatLog(_("Command: /help"));
partyTab->chatLog(_("This command displays a list of all commands available."));
partyTab->chatLog(_("Command: /help <command>"));
partyTab->chatLog(_("This command displays help on <command>."));
}
else
{
partyTab->chatLog(_("Unknown command."));
partyTab->chatLog(_("Type /help for a list of commands."));
}
}
else if (type == "create" || type == "new")
{
if (args.empty())
chatLog(_("Party name is missing."), BY_SERVER);
else
// Net::getPartyHandler()->create(args);
partyHandler->create(args);
}
else if (type == "leave")
{
// Net::getPartyHandler()->leave();
partyHandler->leave();
}
else if (type == "settings")
{
partyTab->chatLog(_("The settings command is not yet implemented!"));
/*
MessageOut outMsg(CMSG_PARTY_SETTINGS);
outMsg.writeInt16(0); // Experience
outMsg.writeInt16(0); // Item
*/
}
else
{
partyTab->chatLog("Unknown command");
}
}
|