summaryrefslogtreecommitdiff
path: root/src/party.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2010-02-08 14:40:04 -0700
committerJared Adams <jaxad0127@gmail.com>2010-02-08 14:43:51 -0700
commit8a31e96d8534d402db9cd48183c0b15732f7d95e (patch)
tree885d83febf301c1289c3bf7f83bf9dca89e0347c /src/party.h
parentbc5c031e43eff506c925682349dd2a52b89d6565 (diff)
downloadmana-client-8a31e96d8534d402db9cd48183c0b15732f7d95e.tar.gz
mana-client-8a31e96d8534d402db9cd48183c0b15732f7d95e.tar.bz2
mana-client-8a31e96d8534d402db9cd48183c0b15732f7d95e.tar.xz
mana-client-8a31e96d8534d402db9cd48183c0b15732f7d95e.zip
Merge PartyWindow and GuildWindow into SocialWindow
Diffstat (limited to 'src/party.h')
-rw-r--r--src/party.h175
1 files changed, 175 insertions, 0 deletions
diff --git a/src/party.h b/src/party.h
new file mode 100644
index 00000000..22a768de
--- /dev/null
+++ b/src/party.h
@@ -0,0 +1,175 @@
+/*
+ * The Mana World
+ * Copyright (C) 2009 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
+ */
+
+#ifndef PARTY_H
+#define PARTY_H
+
+#include "avatar.h"
+
+#include "gui/widgets/avatarlistbox.h"
+
+#include <map>
+#include <string>
+#include <vector>
+
+class Party;
+
+class PartyMember : public Avatar
+{
+public:
+ PartyMember(int partyId, int id, const std::string &name);
+
+ PartyMember(int partyId, int id);
+
+ PartyMember(int partyId, const std::string &name);
+
+ int getID() const { return mId; }
+
+ void setID(int id) { mId = id; }
+
+ Party *getParty() const { return mParty; }
+
+ bool getLeader() const { return mLeader; }
+
+ void setLeader(bool leader) { mLeader = leader; setDisplayBold(leader); }
+
+protected:
+ friend class Party;
+
+ int mId;
+ Party *mParty;
+ bool mLeader;
+};
+
+class Party : public AvatarListModel
+{
+public:
+
+ /**
+ * Set the party's name.
+ */
+ void setName(const std::string &name)
+ {
+ mName = name;
+ }
+
+ /**
+ * Adds member to the list.
+ */
+ void addMember(PartyMember *member);
+
+ /**
+ * Find a member by ID.
+ *
+ * @return the member with the given ID, or NULL if they don't exist.
+ */
+ PartyMember *getMember(int id);
+
+ /**
+ * Find a member by name.
+ *
+ * @return the member with the given name, or NULL if they don't exist.
+ */
+ PartyMember *getMember(std::string name);
+
+ /**
+ * Get the name of the party.
+ * @return returns name of the party
+ */
+ const std::string &getName() const
+ {
+ return mName;
+ }
+
+ /**
+ * Get the id of the party.
+ * @return Returns the id of the party
+ */
+ short getId() const
+ {
+ return mId;
+ }
+
+ /**
+ * Removes a member from the party.
+ */
+ void removeMember(PartyMember *member);
+
+ /**
+ * Removes a member from the party.
+ */
+ void removeMember(int id);
+
+ /**
+ * Removes a member from the party.
+ */
+ void removeMember(const std::string &name);
+
+ void clearMembers() { mMembers.clear(); }
+
+ /**
+ * Get size of members list.
+ * @return Returns the number of members in the party.
+ */
+ int getNumberOfElements() {
+ return mMembers.size();
+ }
+
+ Avatar *getAvatarAt(int i);
+
+ /**
+ * Get whether user can invite users to this party.
+ * @return Returns true if user can invite users
+ */
+ bool getInviteRights() const
+ {
+ return mCanInviteUsers;
+ }
+
+ void setRights(short rights);
+
+ bool isMember(PartyMember *member) const;
+
+ bool isMember(int id) const;
+
+ bool isMember(const std::string &name) const;
+
+ void getNames(std::vector<std::string> &names) const;
+
+ static Party *getParty(int id);
+
+private:
+ typedef std::map<int, Party*> PartyMap;
+ static PartyMap parties;
+
+ /**
+ * Constructor with guild id passed to it.
+ */
+ Party(short id);
+
+ typedef std::vector<PartyMember*> MemberList;
+ MemberList mMembers;
+ std::string mName;
+ short mId;
+ bool mCanInviteUsers;
+};
+
+#endif // PARTY_H