diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-02-08 14:40:04 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-02-08 14:43:51 -0700 |
commit | 8a31e96d8534d402db9cd48183c0b15732f7d95e (patch) | |
tree | 885d83febf301c1289c3bf7f83bf9dca89e0347c /src/party.cpp | |
parent | bc5c031e43eff506c925682349dd2a52b89d6565 (diff) | |
download | mana-8a31e96d8534d402db9cd48183c0b15732f7d95e.tar.gz mana-8a31e96d8534d402db9cd48183c0b15732f7d95e.tar.bz2 mana-8a31e96d8534d402db9cd48183c0b15732f7d95e.tar.xz mana-8a31e96d8534d402db9cd48183c0b15732f7d95e.zip |
Merge PartyWindow and GuildWindow into SocialWindow
Diffstat (limited to 'src/party.cpp')
-rw-r--r-- | src/party.cpp | 233 |
1 files changed, 233 insertions, 0 deletions
diff --git a/src/party.cpp b/src/party.cpp new file mode 100644 index 00000000..6bbd0f6b --- /dev/null +++ b/src/party.cpp @@ -0,0 +1,233 @@ +/* + * 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 + */ + +#include "party.h" + +#include "beingmanager.h" +#include "player.h" + +PartyMember::PartyMember(int partyId, int id, const std::string &name): + Avatar(name), mId(id), mLeader(false) +{ + mParty = Party::getParty(partyId); + + Player *player = dynamic_cast<Player*>(beingManager->findBeing(id)); + if (player) + player->setParty(mParty); +} + +PartyMember::PartyMember(int PartyId, int id): + mId(id), mLeader(false) +{ + mParty = Party::getParty(PartyId); + + if (beingManager) + { + Player *player = dynamic_cast<Player*>(beingManager->findBeing(id)); + if (player) + player->setParty(mParty); + } +} + +Party::PartyMap Party::parties; + +Party::Party(short id): + mId(id), + mCanInviteUsers(false) +{ + parties[id] = this; +} + +void Party::addMember(PartyMember *member) +{ + if (member->mParty > 0 && member->mParty != this) + { + throw "Member in another Party!"; + } + + if (!isMember(member)) + { + mMembers.push_back(member); + member->mParty = this; + } +} + +PartyMember *Party::getMember(int id) +{ + MemberList::iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while(itr != itr_end) + { + if((*itr)->mId == id) + { + return (*itr); + } + ++itr; + } + + return NULL; +} + +PartyMember *Party::getMember(std::string name) +{ + MemberList::iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while(itr != itr_end) + { + if((*itr)->getName() == name) + { + return (*itr); + } + ++itr; + } + + return NULL; +} + +void Party::removeMember(PartyMember *member) +{ + MemberList::iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while(itr != itr_end) + { + if((*itr)->mId == member->mId && + (*itr)->getName() == member->getName()) + { + mMembers.erase(itr); + } + ++itr; + } +} + +void Party::removeMember(int id) +{ + MemberList::iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while(itr != itr_end) + { + if((*itr)->mId == id) + { + mMembers.erase(itr); + } + ++itr; + } +} + +void Party::removeMember(const std::string &name) +{ + MemberList::iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while(itr != itr_end) + { + if((*itr)->getName() == name) + { + mMembers.erase(itr); + } + ++itr; + } +} + +Avatar *Party::getAvatarAt(int index) +{ + return mMembers[index]; +} + +void Party::setRights(short rights) +{ + // to invite, rights must be greater than 0 + if (rights > 0) + { + mCanInviteUsers = true; + } +} + +bool Party::isMember(PartyMember *member) const +{ + if (member->mParty > 0 && member->mParty != this) + return false; + + MemberList::const_iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while (itr != itr_end) + { + if ((*itr)->mId == member->mId && + (*itr)->getName() == member->getName()) + { + return true; + } + ++itr; + } + + return false; +} + +bool Party::isMember(int id) const +{ + MemberList::const_iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while (itr != itr_end) + { + if ((*itr)->mId == id) + { + return true; + } + ++itr; + } + + return false; +} + +bool Party::isMember(const std::string &name) const +{ + MemberList::const_iterator itr = mMembers.begin(), + itr_end = mMembers.end(); + while (itr != itr_end) + { + if ((*itr)->getName() == name) + { + return true; + } + ++itr; + } + + return false; +} + +void Party::getNames(std::vector<std::string> &names) const +{ + names.clear(); + MemberList::const_iterator it = mMembers.begin(), + it_end = mMembers.end(); + while (it != it_end) + { + names.push_back((*it)->getName()); + ++it; + } +} + +Party *Party::getParty(int id) +{ + PartyMap::iterator it = parties.find(id); + if (it != parties.end()) + return it->second; + + return new Party(id); +} |