mcMMO/src/main/java/com/gmail/nossr50/party/PartyManager.java

431 lines
12 KiB
Java
Raw Normal View History

2012-06-08 23:48:41 +02:00
package com.gmail.nossr50.party;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player;
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.datatypes.PlayerProfile;
import com.gmail.nossr50.locale.LocaleLoader;
import com.gmail.nossr50.util.Users;
public class PartyManager {
private static String partiesFilePath;
private static List<Party> parties = new ArrayList<Party>();
private static mcMMO plugin;
private static PartyManager instance;
private PartyManager() {
plugin = mcMMO.p;
partiesFilePath = plugin.getDataFolder().getPath() + File.separator + "FlatFileStuff" + File.separator + "parties.yml";
loadParties();
}
public static PartyManager getInstance() {
if (instance == null) {
instance = new PartyManager();
}
return instance;
}
/**
* Check if two players are in the same party.
*
* @param firstPlayer The first player
* @param secondPlayer The second player
* @return true if they are in the same party, false otherwise
*/
public boolean inSameParty(Player firstPlayer, Player secondPlayer) {
PlayerProfile firstProfile = Users.getProfile(firstPlayer);
PlayerProfile secondProfile = Users.getProfile(secondPlayer);
if (firstProfile == null || secondProfile == null) {
return false;
}
Party firstParty = firstProfile.getParty();
Party secondParty = secondProfile.getParty();
2012-06-28 14:14:30 +02:00
if (firstParty == null || secondParty == null || firstParty != secondParty) {
2012-06-08 23:48:41 +02:00
return false;
}
return true;
}
/**
* Notify party members when a player joins
*
2012-06-11 07:45:14 +02:00
* @param playerName The name of the player that joins
2012-06-08 23:48:41 +02:00
* @param party The concerned party
*/
2012-06-11 07:45:14 +02:00
private void informPartyMembersJoin(String playerName, Party party) {
2012-06-08 23:48:41 +02:00
for (Player member : party.getOnlineMembers()) {
2012-06-11 07:45:14 +02:00
if (member.getName().equals(playerName)) {
member.sendMessage(LocaleLoader.getString("Party.InformedOnJoin", new Object[] {playerName}));
2012-06-08 23:48:41 +02:00
}
}
}
/**
* Notify party members when a party member quits.
*
2012-06-11 07:45:14 +02:00
* @param playerName The name of the player that quits
2012-06-08 23:48:41 +02:00
* @param party The concerned party
*/
2012-06-11 07:45:14 +02:00
private void informPartyMembersQuit(String playerName, Party party) {
2012-06-08 23:48:41 +02:00
for (Player member : party.getOnlineMembers()) {
2012-06-11 07:45:14 +02:00
if (member.getName().equals(playerName)) {
member.sendMessage(LocaleLoader.getString("Party.InformedOnQuit", new Object[] {playerName}));
2012-06-08 23:48:41 +02:00
}
}
}
/**
* Get a list of all players in this player's party.
*
* @param player The player to check
* @return all the players in the player's party
*/
public List<String> getAllMembers(Player player) {
Party party = Users.getProfile(player).getParty();
if (party == null) {
2012-06-11 07:45:14 +02:00
return null;
2012-06-08 23:48:41 +02:00
}
return party.getMembers();
}
/**
* Get a list of all online players in this party.
*
* @param partyName The party to check
* @return all online players in this party
*/
public List<Player> getOnlineMembers(String partyName) {
Party party = getParty(partyName);
if (party == null) {
return null;
}
return party.getOnlineMembers();
}
/**
* Get a list of all online players in this party.
*
* @param player The player to check
* @return all online players in this party
*/
public List<Player> getOnlineMembers(Player player) {
return getOnlineMembers(player.getName());
}
/**
* Retrieve a party by its name
*
* @param partyName The party name
* @return the existing party, null otherwise
*/
public Party getParty(String partyName) {
for (Party party : parties) {
if (party.getName().equals(partyName)) {
return party;
}
}
return null;
}
/**
* Retrieve a party by a member name
*
* @param playerName The member name
* @return the existing party, null otherwise
*/
public Party getPlayerParty(String playerName) {
for (Party party : parties) {
if (party.getMembers().contains(playerName)) {
return party;
}
}
return null;
}
2012-06-08 23:48:41 +02:00
/**
2012-06-11 08:20:39 +02:00
* Get a list of all current parties.
2012-06-08 23:48:41 +02:00
*
* @return the list of parties.
*/
2012-06-11 08:20:39 +02:00
public List<Party> getParties() {
2012-06-08 23:48:41 +02:00
return parties;
}
/**
* Remove a player from a party.
*
2012-06-11 07:45:14 +02:00
* @param playerName The name of the player to remove
* @param party The party
2012-06-08 23:48:41 +02:00
*/
2012-06-11 07:45:14 +02:00
public void removeFromParty(String playerName, Party party) {
2012-06-08 23:48:41 +02:00
List<String> members = party.getMembers();
2012-06-11 07:45:14 +02:00
members.remove(playerName);
2012-06-08 23:48:41 +02:00
2012-06-11 07:45:14 +02:00
if (members.isEmpty()) {
parties.remove(party);
}
else {
if (party.getLeader().equals(playerName)) {
party.setLocked(false);
2012-06-08 23:48:41 +02:00
}
2012-06-11 07:45:14 +02:00
informPartyMembersQuit(playerName, party);
2012-06-08 23:48:41 +02:00
}
2012-06-11 07:45:14 +02:00
PlayerProfile playerProfile = Users.getProfile(playerName);
if (playerProfile != null) {
playerProfile.removeParty();
}
2012-06-08 23:48:41 +02:00
}
/**
* Add a player to a party.
*
* @param player The player to add to the party
* @param playerProfile The profile of the player to add to the party
* @param partyName The party to add the player to
* @param password the password for this party, null if there was no password
*/
2012-06-11 07:45:14 +02:00
public void joinParty(Player player, PlayerProfile playerProfile, String partyName, String password) {
2012-06-09 20:32:35 +02:00
partyName = partyName.replace(".", "");
2012-06-08 23:48:41 +02:00
Party party = getParty(partyName);
String playerName = player.getName();
if (party == null) {
party = new Party();
party.setName(partyName);
party.setLeader(playerName);
2012-06-09 20:32:35 +02:00
2012-06-08 23:48:41 +02:00
if (password != null) {
party.setPassword(password);
party.setLocked(true);
}
parties.add(party);
}
2013-01-10 05:15:29 +01:00
else if (!checkJoinability(player, party, password)) {
2012-06-11 07:45:14 +02:00
return;
}
player.sendMessage(LocaleLoader.getString("Commands.Party.Join", new Object[]{party.getName()}));
addToParty(player.getName(), playerProfile, party);
}
/**
* Check if a player can join a party
*
* @param player The player trying to join a party
* @param playerProfile The profile of the player
* @param party The party
* @param password The password provided by the player
* @return true if the player can join the party
*/
2013-01-10 05:15:29 +01:00
public boolean checkJoinability(Player player, Party party, String password) {
2012-06-11 07:45:14 +02:00
//Don't care about passwords if it isn't locked
if (party.isLocked()) {
String partyPassword = party.getPassword();
if (partyPassword != null) {
if (password == null) {
player.sendMessage("This party requires a password. Use /party <party> <password> to join it."); //TODO: Needs more locale.
return false;
2012-06-08 23:48:41 +02:00
}
2012-06-11 07:45:14 +02:00
else if (!password.equals(partyPassword)) {
player.sendMessage("Party password incorrect."); //TODO: Needs more locale.
return false;
2012-06-08 23:48:41 +02:00
}
}
2012-06-11 07:45:14 +02:00
else {
player.sendMessage("Party is locked."); //TODO: Needs more locale.
return false;
}
2012-06-08 23:48:41 +02:00
}
2012-06-11 07:45:14 +02:00
return true;
2012-06-08 23:48:41 +02:00
}
/**
* Accept a party invitation
*
* @param player The player to add to the party
* @param playerProfile The profile of the player
*/
2012-06-11 07:45:14 +02:00
public void joinInvitedParty(Player player, PlayerProfile playerProfile) {
Party invite = playerProfile.getInvite();
if (!parties.contains(invite)) {
parties.add(invite);
2012-06-08 23:48:41 +02:00
}
2012-06-11 07:45:14 +02:00
player.sendMessage(LocaleLoader.getString("Commands.Invite.Accepted", new Object[]{invite.getName()}));
2012-06-08 23:48:41 +02:00
playerProfile.removeInvite();
2012-06-11 07:45:14 +02:00
addToParty(player.getName(), playerProfile, invite);
}
/**
* Add a player to a party
*
* @param playerName The name of the player to add to a party
* @param playerProfile The profile of the player
* @param party The party
*/
public void addToParty(String playerName, PlayerProfile playerProfile, Party party) {
informPartyMembersJoin(playerName, party);
2012-06-08 23:48:41 +02:00
playerProfile.setParty(party);
2012-06-11 07:45:14 +02:00
party.getMembers().add(playerName);
2012-06-08 23:48:41 +02:00
}
/**
* Get the leader of a party.
*
* @param partyName The party name
* @return the leader of the party
*/
public String getPartyLeader(String partyName) {
Party party = getParty(partyName);
if (party == null) {
return null;
}
return party.getLeader();
}
/**
* Set the leader of a party.
*
* @param playerName The name of the player to set as leader
2012-06-11 07:45:14 +02:00
* @param party The party
2012-06-08 23:48:41 +02:00
*/
2012-06-11 07:45:14 +02:00
public void setPartyLeader(String playerName, Party party) {
2012-06-08 23:48:41 +02:00
String leaderName = party.getLeader();
for (Player member : party.getOnlineMembers()) {
if (member.getName().equals(playerName)) {
member.sendMessage("You are now the party owner."); //TODO: Needs more locale.
}
else if (member.equals(leaderName)) {
member.sendMessage("You are no longer party owner."); //TODO: Needs more locale.
}
else {
member.sendMessage(playerName + " is the new party owner."); //TODO: Needs more Locale.
}
}
party.setLeader(playerName);
}
/**
* Check if a player can invite others to their party.
*
* @param player The player to check
* @param playerProfile The profile of the given player
2012-06-11 07:45:14 +02:00
* @return true if the player can invite
2012-06-08 23:48:41 +02:00
*/
public boolean canInvite(Player player, PlayerProfile playerProfile) {
Party party = playerProfile.getParty();
if (party == null || (party.isLocked() && !party.getLeader().equals(player.getName()))) {
return false;
}
return true;
}
/**
* Check if a string is a valid party name.
*
* @param partyName The party name to check
* @return true if this is a valid party, false otherwise
*/
public boolean isParty(String partyName) {
for (Party party : parties) {
if (party.getName().equals(partyName)) {
return true;
}
}
return false;
}
/**
2012-06-09 20:11:11 +02:00
* Load party file.
2012-06-08 23:48:41 +02:00
*/
private void loadParties() {
File file = new File(partiesFilePath);
2012-12-24 22:56:25 +01:00
2012-06-08 23:48:41 +02:00
if (!file.exists()) {
return;
}
YamlConfiguration partiesFile = new YamlConfiguration();
try {
partiesFile.load(file);
} catch (Exception e) {
e.printStackTrace();
}
for (String partyName : partiesFile.getConfigurationSection("").getKeys(false)) {
Party party = new Party();
party.setName(partyName);
party.setLeader(partiesFile.getString(partyName + ".Leader"));
party.setPassword(partiesFile.getString(partyName + ".Password"));
party.setLocked(partiesFile.getBoolean(partyName + ".Locked"));
party.getMembers().addAll(partiesFile.getStringList(partyName + ".Members"));
parties.add(party);
}
}
/**
2012-06-09 20:11:11 +02:00
* Save party file.
2012-06-08 23:48:41 +02:00
*/
public void saveParties() {
File file = new File(partiesFilePath);
if (file.exists()) {
file.delete();
}
YamlConfiguration partiesFile = new YamlConfiguration();
for (Party party : parties) {
String partyName = party.getName();
partiesFile.set(partyName + ".Leader", party.getLeader());
partiesFile.set(partyName + ".Password", party.getPassword());
partiesFile.set(partyName + ".Locked", party.isLocked());
partiesFile.set(partyName + ".Members", party.getMembers());
try {
partiesFile.save(new File(partiesFilePath));
} catch (Exception e) {
e.printStackTrace();
}
}
}
}