summaryrefslogtreecommitdiff
path: root/src/gui/partywindow.cpp
blob: d2fd717329b7f88b477e02ac59d8b1fbe12b5b72 (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
/*
 *  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 "gui/partywindow.h"

#include "gui/widgets/chattab.h"

#ifdef TMWSERV_SUPPORT
#include "net/tmwserv/chatserver/party.h"
#else
#include "net/ea/party.h"
#endif

#include "utils/gettext.h"
#include "utils/strprintf.h"

PartyWindow::PartyWindow() : Window(_("Party"))
{
    setWindowName("Party");
    setVisible(false);
    setResizable(false);
    setCaption(_("Party"));
    setCloseButton(true);
    setMinWidth(110);
    setMinHeight(200);
    setDefaultSize(620, 300, 110, 200);

    loadWindowState();
}

PartyWindow::~PartyWindow()
{
    mMembers.clear();
}

void PartyWindow::draw(gcn::Graphics *graphics)
{
    Window::draw(graphics);
}

PartyMember *PartyWindow::findMember2(int id)
{
    PartyMember *member = findMember(id);

    if (!member)
    {
        member = new PartyMember;
        member->avatar = new Avatar("");
        add(member->avatar, 0, (mMembers.size() - 1) * 14);
        mMembers[id] = member;
    }

    return member;
}

int PartyWindow::findMember(const std::string &name)
{
    PartyList::iterator itr = mMembers.begin(),
                        itr_end = mMembers.end();

    while (itr != itr_end)
    {
        if ((*itr).second->name == name)
        {
            return (*itr).first;
        }
        ++itr;
    }

    return -1;
}

void PartyWindow::updateMember(int id, const std::string &memberName,
                                 bool leader, bool online)
{
    // create new party member
    PartyMember *player = findMember2(id);
    player->id = id;
    player->name = memberName;
    player->leader = leader;
    player->online = online;
    player->avatar->setName(memberName);
    player->avatar->setOnline(online);

    // show the window
    if (mMembers.size() > 0)
    {
        setVisible(true);
    }
}

void PartyWindow::removeMember(int id)
{
    mMembers.erase(id);

    // if no-one left, remove the party window
    if (mMembers.size() < 1)
    {
        setVisible(false);
    }
}

void PartyWindow::removeMember(const std::string &name)
{
    removeMember(findMember(name));
}

void PartyWindow::updateOnlne(int id, bool online)
{
    PartyMember *player = findMember(id);

    if (!player)
        return;

    player->online = online;
    player->avatar->setOnline(online);
}

void PartyWindow::showPartyInvite(const std::string &inviter,
                                  const std::string &partyName)
{
    // check there isnt already an invite showing
    if (mPartyInviter != "")
    {
        localChatTab->chatLog("Received party request, but one already exists",
                            BY_SERVER);
        return;
    }

    std::string msg;
    // log invite
    if (partyName.empty())
        msg = strprintf("%s has invited you to join their party",
                                    inviter.c_str());
    else
        msg = strprintf("%s has invited you to join the %s party",
                                    inviter.c_str(), partyName.c_str());

    localChatTab->chatLog(msg, BY_SERVER);

    // show invite
    acceptDialog = new ConfirmDialog("Accept Party Invite", msg, this);
    acceptDialog->addActionListener(this);

    mPartyInviter = inviter;
}

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

    // check if they accepted the invite
    if (eventId == "yes")
    {
        localChatTab->chatLog("Accepted invite from " + mPartyInviter);
#ifdef TMWSERV_SUPPORT
        Net::ChatServer::Party::acceptInvite(mPartyInviter);
#else
        eAthena::Party::respondToInvite(true);
#endif
        mPartyInviter = "";
    }
    else if (eventId == "no")
    {
        localChatTab->chatLog("Rejected invite from " + mPartyInviter);
#ifdef TMWSERV_SUPPORT
        // TODO
#else
        eAthena::Party::respondToInvite(false);
#endif
        mPartyInviter = "";
    }
}