summaryrefslogtreecommitdiff
path: root/src/net/eathena/clanrecv.cpp
blob: 9ecb860a9ed04c98a7dec9b1b9cbe810368bb09f (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
/*
 *  The ManaPlus Client
 *  Copyright (C) 2011-2020  The ManaPlus Developers
 *  Copyright (C) 2020-2023  The ManaVerse Developers
 *
 *  This file is part of The ManaPlus 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/eathena/clanrecv.h"

#include "configuration.h"

#include "being/localclan.h"

#include "gui/widgets/tabs/chat/clantab.h"

#include "gui/windows/chatwindow.h"
#include "gui/windows/clanwindow.h"

#include "net/messagein.h"

#include "utils/checkutils.h"
#include "utils/delete2.h"

#include "resources/claninfo.h"

#include "resources/db/clandb.h"

#include "debug.h"

namespace EAthena
{

void ClanRecv::processClanInfo(Net::MessageIn &msg)
{
    msg.readInt16("len");
    localClan.id = msg.readInt32("clan id");
    localClan.name = msg.readString(24, "clan name");
    localClan.masterName = msg.readString(24, "master name");
    localClan.mapName = msg.readString(16, "map name");
    const int allyCount = msg.readUInt8("ally clans count");
    const int antagonistCount = msg.readUInt8("antagonist clans count");
    for (int f = 0; f < allyCount; f ++)
    {
        localClan.allyClans.push_back(
            msg.readString(24, "ally clan name"));
    }
    for (int f = 0; f < antagonistCount; f ++)
    {
        localClan.antagonistClans.push_back(
            msg.readString(24, "antagonist clan name"));
    }
    const ClanInfo *const info = ClanDb::get(localClan.id);
    if (info == nullptr)
    {
        reportAlways("missing clan %d in clandb",
            localClan.id)
    }
    else
    {
        localClan.stats = info->stats;
    }
    createTab();
    clanWindow->updateClan();
}

void ClanRecv::processClanOnlineCount(Net::MessageIn &msg)
{
    localClan.onlineMembers = msg.readInt16("online members count");
    localClan.totalMembers = msg.readInt16("total members count");
    clanWindow->updateClanMembers();
}

void ClanRecv::processClanLeave(Net::MessageIn &msg A_UNUSED)
{
    delete2(clanTab)
    localClan.clear();
    clanWindow->resetClan();
}

void ClanRecv::processClanChat(Net::MessageIn &msg)
{
    const int chatMsgLength = msg.readInt16("len") - 4 - 24;
    if (chatMsgLength <= 0)
        return;
    msg.readString(24, "player name (unused)");
    std::string chatMsg = msg.readString(chatMsgLength, "message");
    if (clanTab == nullptr)
    {
        reportAlways("received clan chat messages without clan.")
        return;
    }
    const size_t pos = chatMsg.find(" : ", 0);
    if (pos != std::string::npos)
    {
        const std::string sender_name = chatMsg.substr(0, pos);
        chatMsg.erase(0, pos + 3);
        trim(chatMsg);
        clanTab->chatLog(sender_name, chatMsg);
    }
    else
    {
        clanTab->chatLog(chatMsg,
            ChatMsgType::BY_SERVER,
            IgnoreRecord_false,
            TryRemoveColors_true);
    }
}

void ClanRecv::createTab()
{
    if (clanTab != nullptr)
        return;
    clanTab = new ClanTab(chatWindow);
    if (config.getBoolValue("showChatHistory"))
        clanTab->loadFromLogFile("#Clan");
}

}  // namespace EAthena