summaryrefslogtreecommitdiff
path: root/src/chat-server/chatchannel.cpp
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2006-12-29 13:43:24 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2006-12-29 13:43:24 +0000
commit291ad04d5b5c4ab08d85eadde116f968cd579b77 (patch)
treee4dced5715a5d9792cfdc0455a6b3ee6d3116079 /src/chat-server/chatchannel.cpp
parent3d404e743105bb9168c89e3451cf35d7d59120b1 (diff)
downloadmanaserv-291ad04d5b5c4ab08d85eadde116f968cd579b77.tar.gz
manaserv-291ad04d5b5c4ab08d85eadde116f968cd579b77.tar.bz2
manaserv-291ad04d5b5c4ab08d85eadde116f968cd579b77.tar.xz
manaserv-291ad04d5b5c4ab08d85eadde116f968cd579b77.zip
Physically split the server into one tmwserv-acount program (account +
chat + database) and multiple tmwserv-game programs (selected with respect to the maps). Cleaned the repository by moving server-specific source files into dedicated directories.
Diffstat (limited to 'src/chat-server/chatchannel.cpp')
-rw-r--r--src/chat-server/chatchannel.cpp117
1 files changed, 117 insertions, 0 deletions
diff --git a/src/chat-server/chatchannel.cpp b/src/chat-server/chatchannel.cpp
new file mode 100644
index 00000000..9f2bd607
--- /dev/null
+++ b/src/chat-server/chatchannel.cpp
@@ -0,0 +1,117 @@
+/*
+ * The Mana World Server
+ * Copyright 2004 The Mana World Development Team
+ *
+ * This file is part of The Mana World.
+ *
+ * The Mana World 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.
+ *
+ * The Mana World 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 The Mana World; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
+ */
+
+#include "chat-server/chatchannel.hpp"
+
+ChatChannel::ChatChannel(const std::string &channelName,
+ const std::string &channelAnnouncement = "None",
+ const std::string &channelPassword = "None"):
+ mChannelName(channelName),
+ mChannelAnnouncement(channelAnnouncement),
+ mChannelPassword(channelPassword)
+{
+ if (channelAnnouncement == "")
+ mChannelAnnouncement = "None";
+ if (channelPassword == "")
+ mChannelPassword = "None";
+ mRegisteredUsers.clear();
+}
+
+ChatChannel::~ChatChannel()
+{
+ mRegisteredUsers.clear();
+}
+
+
+const std::string&
+ChatChannel::getName() const
+{
+ return mChannelName;
+}
+
+const std::string&
+ChatChannel::getAnnouncement() const
+{
+ return mChannelAnnouncement;
+}
+
+const std::string&
+ChatChannel::getPassword() const
+{
+ return mChannelPassword;
+}
+
+void
+ChatChannel::setName(const std::string &channelName)
+{
+ mChannelName = channelName;
+}
+
+void
+ChatChannel::setAnnouncement(const std::string &channelAnnouncement)
+{
+ if (channelAnnouncement == "")
+ mChannelAnnouncement = "None";
+ else
+ mChannelAnnouncement = channelAnnouncement;
+}
+
+void
+ChatChannel::setPassword(const std::string &channelPassword)
+{
+ if (channelPassword == "")
+ mChannelPassword = "None";
+ else
+ mChannelPassword = channelPassword;
+}
+
+ChatChannel::ChannelUsers const &ChatChannel::getUserList() const
+{
+ return mRegisteredUsers;
+}
+
+
+bool ChatChannel::addUserInChannel(std::string const &user)
+{
+ // Check if the user already exists in the channel
+ ChannelUsers::const_iterator i = mRegisteredUsers.begin(),
+ i_end = mRegisteredUsers.end();
+ if (std::find(i, i_end, user) == i_end) return false;
+ mRegisteredUsers.push_back(user);
+ return true;
+}
+
+
+bool ChatChannel::removeUserFromChannel(std::string const &user)
+{
+ ChannelUsers::iterator i_end = mRegisteredUsers.end(),
+ i = std::find(mRegisteredUsers.begin(), i_end, user);
+ if (i == i_end) return false;
+ mRegisteredUsers.erase(i);
+ return true;
+}
+
+void ChatChannel::removeEveryUsersFromChannel()
+{
+ mRegisteredUsers.clear();
+}