2019-03-15 11:14:23 +00:00
|
|
|
#include "IRCChannel.h"
|
|
|
|
#include "IRCClient.h"
|
2019-03-15 17:25:51 +00:00
|
|
|
#include "IRCChannelMemberListModel.h"
|
2019-03-15 11:14:23 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
IRCChannel::IRCChannel(IRCClient& client, const String& name)
|
|
|
|
: m_client(client)
|
|
|
|
, m_name(name)
|
|
|
|
, m_log(IRCLogBuffer::create())
|
|
|
|
{
|
2019-03-15 17:25:51 +00:00
|
|
|
m_member_model = new IRCChannelMemberListModel(*this);
|
2019-03-15 11:14:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
IRCChannel::~IRCChannel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Retained<IRCChannel> IRCChannel::create(IRCClient& client, const String& name)
|
|
|
|
{
|
|
|
|
return adopt(*new IRCChannel(client, name));
|
|
|
|
}
|
|
|
|
|
|
|
|
void IRCChannel::add_member(const String& name, char prefix)
|
|
|
|
{
|
|
|
|
for (auto& member : m_members) {
|
|
|
|
if (member.name == name) {
|
|
|
|
member.prefix = prefix;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_members.append({ name, prefix });
|
|
|
|
dump();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IRCChannel::add_message(char prefix, const String& name, const String& text)
|
|
|
|
{
|
|
|
|
log().add_message(prefix, name, text);
|
|
|
|
dump();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IRCChannel::dump() const
|
|
|
|
{
|
|
|
|
printf("IRCChannel{%p}: %s\n", this, m_name.characters());
|
2019-03-15 16:37:13 +00:00
|
|
|
for (auto& member : m_members)
|
2019-03-15 11:14:23 +00:00
|
|
|
printf(" (%c)%s\n", member.prefix ? member.prefix : ' ', member.name.characters());
|
|
|
|
log().dump();
|
|
|
|
}
|
2019-03-15 16:37:13 +00:00
|
|
|
|
|
|
|
void IRCChannel::say(const String& text)
|
|
|
|
{
|
|
|
|
m_client.send_privmsg(m_name, text);
|
|
|
|
add_message(' ', m_client.nickname(), text);
|
|
|
|
}
|