From 8a31e96d8534d402db9cd48183c0b15732f7d95e Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Mon, 8 Feb 2010 14:40:04 -0700 Subject: Merge PartyWindow and GuildWindow into SocialWindow --- src/party.h | 175 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 src/party.h (limited to 'src/party.h') 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 +#include +#include + +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 &names) const; + + static Party *getParty(int id); + +private: + typedef std::map PartyMap; + static PartyMap parties; + + /** + * Constructor with guild id passed to it. + */ + Party(short id); + + typedef std::vector MemberList; + MemberList mMembers; + std::string mName; + short mId; + bool mCanInviteUsers; +}; + +#endif // PARTY_H -- cgit v1.2.3-70-g09d2