summaryrefslogtreecommitdiff
path: root/src/gui/guildwindow.cpp
blob: 1868de6a1ca787dab5a036204069b1a23237355c (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
/*
 *  The Mana World
 *  Copyright (C) 2004  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 "gui/guildwindow.h"

#include "gui/confirmdialog.h"
#include "gui/guildlistbox.h"
#include "gui/setup.h"
#include "gui/textdialog.h"

#include "gui/widgets/button.h"
#include "gui/widgets/chattab.h"
#include "gui/widgets/layout.h"
#include "gui/widgets/scrollarea.h"
#include "gui/widgets/tabbedarea.h"
#include "gui/widgets/windowcontainer.h"

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

#include "net/guildhandler.h"
#include "net/net.h"

#include "utils/dtor.h"
#include "utils/gettext.h"
#include "utils/stringutils.h"

#include <algorithm>

#include <guichan/widgets/tab.hpp>

GuildWindow::GuildWindow():
    Window(_("Guild")),
    mFocus(false)
{
    setWindowName("Guild");
    setCaption(_("Guild"));
    setResizable(false);
    setCloseButton(true);
    setSaveVisible(true);
    setMinWidth(200);
    setMinHeight(280);
    setDefaultSize(124, 41, 288, 330);
    setupWindow->registerWindowForReset(this);

    // Set button events Id
    mGuildButton[0] = new Button(_("Create Guild"), "CREATE_GUILD", this);
    mGuildButton[1] = new Button(_("Invite User"), "INVITE_USER", this);
    mGuildButton[2] = new Button(_("Quit Guild"), "QUIT_GUILD", this);
    mGuildButton[1]->setEnabled(false);
    mGuildButton[2]->setEnabled(false);

    mGuildTabs = new TabbedArea;

    place(0, 0, mGuildButton[0]);
    place(1, 0, mGuildButton[1]);
    place(2, 0, mGuildButton[2]);
    place(0, 1, mGuildTabs);
    Layout &layout = getLayout();
    layout.setColWidth(0, 48);
    layout.setColWidth(1, 65);

    loadWindowState();
}

GuildWindow::~GuildWindow()
{
}

void GuildWindow::update()
{
    updateTab();

    if (mGuildButton[2]->isEnabled() && mGuildTabs->getNumberOfTabs() <= 0)
    {
        mGuildButton[2]->setEnabled(false);
        mGuildButton[1]->setEnabled(false);
    }
}

void GuildWindow::draw(gcn::Graphics *g)
{
    update();

    Window::draw(g);
}

void GuildWindow::action(const gcn::ActionEvent &event)
{
    const std::string &eventId = event.getId();

    // Stats Part
    if (eventId == "CREATE_GUILD")
    {
        // Set focus so that guild name to be created can be typed.
        mFocus = true;
        guildDialog = new TextDialog(_("Guild Name"),
                                     _("Choose your guild's name."), this);
        guildDialog->setOKButtonActionId("CREATE_GUILD_OK");
        guildDialog->addActionListener(this);
    }
    else if (eventId == "INVITE_USER")
    {
        // TODO - Give feedback on whether the invite succeeded
        mFocus = true;
        inviteDialog = new TextDialog(_("Member Invite"),
                                      _("Who would you like to invite?"), this);
        inviteDialog->setOKButtonActionId("INVITE_USER_OK");
        inviteDialog->addActionListener(this);
    }
    else if (eventId == "QUIT_GUILD")
    {
        short guild = getSelectedGuild();
        if (guild)
        {
            Net::getGuildHandler()->leave(guild);
            localChatTab->chatLog(strprintf(_("Guild %s quit."),
                    mGuildTabs->getSelectedTab()->getCaption().c_str()), BY_SERVER);
        }
    }
    else if (eventId == "CREATE_GUILD_OK")
    {
        std::string name = guildDialog->getText();
        if(name.size() > 16)
        {
            // TODO : State too many characters in input.
            return;
        }
        // Process guild name to be created, and unfocus.
        Net::getGuildHandler()->create(name);

        // Defocus dialog
        mFocus = false;
        localChatTab->chatLog(strprintf(_("Creating guild called %s."),
                                        name.c_str()), BY_SERVER);
        guildDialog->scheduleDelete();
    }
    else if (eventId == "INVITE_USER_OK")
    {
        std::string name = inviteDialog->getText();
        short selectedGuild = getSelectedGuild();

        // Process invited user to be created and unfocus.
        Net::getGuildHandler()->invite(selectedGuild, name);

        // Defocus dialog
        mFocus = false;
        localChatTab->chatLog(strprintf(_("Invited user %s."), name.c_str()), BY_SERVER);
        inviteDialog->scheduleDelete();
    }
    else if (eventId == "yes")
    {
        logger->log("Sending invitation acceptance.");
        Net::getGuildHandler()->inviteResponse(invitedGuildId, true);
    }
}

void GuildWindow::newGuildTab(const std::string &guildName)
{
    // Create new tab
    GuildListBox *list = new GuildListBox;
    list->setListModel(player_node->getGuild(guildName));
    ScrollArea *sa = new ScrollArea(list);
    sa->setDimension(gcn::Rectangle(5, 5, 135, 250));

    // Add the listbox to the map
    mGuildLists.insert(std::pair<std::string, GuildListBox*>(guildName, list));

    mGuildTabs->addTab(guildName, sa);
    mGuildTabs->setDimension(gcn::Rectangle(28,35,140,250));

    updateTab();
}

void GuildWindow::updateTab()
{
    gcn::Tab *tab = mGuildTabs->getSelectedTab();
    if (tab)
    {
        setTab(tab->getCaption());
    }
    mGuildTabs->logic();
}

void GuildWindow::setTab(const std::string &guildName)
{
    // Only enable invite button if user has rights
    if(player_node->checkInviteRights(guildName))
    {
        mGuildButton[1]->setEnabled(true);
    }
    else
    {
        mGuildButton[1]->setEnabled(false);
    }

    mGuildButton[2]->setEnabled(true);
}

bool GuildWindow::isWindowFocused()
{
    return mFocus;
}

short GuildWindow::getSelectedGuild()
{
    if (mGuildTabs->getNumberOfTabs() > 0)
    {

        Guild *guild = player_node->getGuild(mGuildTabs->getSelectedTab()->getCaption());

        if (guild)
        {
            return guild->getId();
        }
    }

    return 0;
}

void GuildWindow::openAcceptDialog(const std::string &inviterName,
                                   const std::string &guildName,
                                   const int guildId)
{
    std::string msg = strprintf(_("%s has invited you to join the guild %s."),
                                inviterName.c_str(), guildName.c_str());
    localChatTab->chatLog(msg, BY_SERVER);

    acceptDialog = new ConfirmDialog(_("Accept Guild Invite"), msg, this);
    acceptDialog->addActionListener(this);

    invitedGuildId = guildId;
}

void GuildWindow::requestMemberList(short guildId)
{
    // Get the list of members for displaying in the guild window.
    Net::getGuildHandler()->memberList(guildId);
}

void GuildWindow::removeTab(int guildId)
{
    Guild* guild = player_node->getGuild(guildId);
    if (guild)
    {
        Tab *tab = mGuildTabs->getTab(guild->getName());
        if (tab)
        {
            mGuildTabs->removeTab(tab);
        }
        updateTab();
    }
    mGuildTabs->logic();
}

void GuildWindow::setOnline(const std::string &guildName, const std::string &member,
                            bool online)
{
    GuildListMap::iterator itr = mGuildLists.find(guildName);
    if (itr != mGuildLists.end())
    {
        itr->second->setOnlineStatus(member, online);
    }
}