
"logFactionCreate": true, - log faction creation "logFactionDisband": true, - log factions being disbanded, by command or by circumstance "logFactionJoin": true, - log player joining a faction "logFactionKick": true, - log player being kicked from a faction "logFactionLeave": true, - log player leaving a faction "logLandClaims": true, - log land being claimed (including safe zone and war zone) "logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone) "logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
325 lines
8.4 KiB
Java
325 lines
8.4 KiB
Java
package com.massivecraft.factions.integration;
|
|
|
|
import java.util.Set;
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
import com.massivecraft.factions.FPlayer;
|
|
import com.massivecraft.factions.FPlayers;
|
|
import com.massivecraft.factions.Faction;
|
|
import com.massivecraft.factions.FLocation;
|
|
import com.massivecraft.factions.P;
|
|
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.Event;
|
|
|
|
import com.massivecraft.factions.struct.Relation;
|
|
import com.massivecraft.factions.struct.Role;
|
|
|
|
import org.getspout.spoutapi.gui.Color;
|
|
import org.getspout.spoutapi.player.AppearanceManager;
|
|
import org.getspout.spoutapi.player.SpoutPlayer;
|
|
import org.getspout.spoutapi.SpoutManager;
|
|
|
|
|
|
public class SpoutFeatures
|
|
{
|
|
private transient static AppearanceManager spoutApp;
|
|
private transient static boolean spoutMe = false;
|
|
private transient static SpoutMainListener mainListener;
|
|
private transient static boolean listenersHooked;
|
|
|
|
// set integration availability
|
|
public static void setAvailable(boolean enable, String pluginName)
|
|
{
|
|
spoutMe = enable;
|
|
if (spoutMe)
|
|
{
|
|
spoutApp = SpoutManager.getAppearanceManager();
|
|
P.p.log("Found and will use features of "+pluginName);
|
|
|
|
if (!listenersHooked)
|
|
{
|
|
listenersHooked = true;
|
|
mainListener = new SpoutMainListener();
|
|
P.p.registerEvent(Event.Type.CUSTOM_EVENT, mainListener, Event.Priority.Normal);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
spoutApp = null;
|
|
}
|
|
}
|
|
|
|
// If we're successfully hooked into Spout
|
|
public static boolean enabled()
|
|
{
|
|
return spoutMe;
|
|
}
|
|
|
|
// If Spout is available and the specified Player is running the Spoutcraft client
|
|
public static boolean availableFor(Player player)
|
|
{
|
|
return spoutMe && SpoutManager.getPlayer(player).isSpoutCraftEnabled();
|
|
}
|
|
|
|
|
|
// update displayed current territory for all players inside a specified chunk; if specified chunk is null, then simply update everyone online
|
|
public static void updateTerritoryDisplayLoc(FLocation fLoc)
|
|
{
|
|
if (!enabled())
|
|
return;
|
|
|
|
Set<FPlayer> players = FPlayers.i.getOnline();
|
|
|
|
for (FPlayer player : players)
|
|
{
|
|
if (fLoc == null)
|
|
mainListener.updateTerritoryDisplay(player, false);
|
|
else if (player.getLastStoodAt().equals(fLoc))
|
|
mainListener.updateTerritoryDisplay(player, true);
|
|
}
|
|
}
|
|
|
|
// update displayed current territory for specified player; returns false if unsuccessful
|
|
public static boolean updateTerritoryDisplay(FPlayer player)
|
|
{
|
|
if (!enabled())
|
|
return false;
|
|
|
|
return mainListener.updateTerritoryDisplay(player, true);
|
|
}
|
|
|
|
// update owner list for all players inside a specified chunk; if specified chunk is null, then simply update everyone online
|
|
public static void updateOwnerListLoc(FLocation fLoc)
|
|
{
|
|
if (!enabled())
|
|
return;
|
|
|
|
Set<FPlayer> players = FPlayers.i.getOnline();
|
|
|
|
for (FPlayer player : players)
|
|
{
|
|
if (fLoc == null || player.getLastStoodAt().equals(fLoc))
|
|
mainListener.updateOwnerList(player);
|
|
}
|
|
}
|
|
|
|
// update owner list for specified player
|
|
public static void updateOwnerList(FPlayer player)
|
|
{
|
|
if (!enabled())
|
|
return;
|
|
|
|
mainListener.updateOwnerList(player);
|
|
}
|
|
|
|
public static void playerDisconnect(FPlayer player)
|
|
{
|
|
if (!enabled())
|
|
return;
|
|
|
|
mainListener.removeTerritoryLabels(player.getName());
|
|
}
|
|
|
|
|
|
// update all appearances between every player
|
|
public static void updateAppearances()
|
|
{
|
|
if (!enabled())
|
|
return;
|
|
|
|
Set<FPlayer> players = FPlayers.i.getOnline();
|
|
|
|
for (FPlayer playerA : players)
|
|
{
|
|
for (FPlayer playerB : players)
|
|
{
|
|
updateSingle(playerB, playerA);
|
|
}
|
|
}
|
|
}
|
|
|
|
// update all appearances related to a specific player
|
|
public static void updateAppearances(Player player)
|
|
{
|
|
if (!enabled() || player == null)
|
|
return;
|
|
|
|
Set<FPlayer> players = FPlayers.i.getOnline();
|
|
FPlayer playerA = FPlayers.i.get(player);
|
|
|
|
for (FPlayer playerB : players)
|
|
{
|
|
updateSingle(playerB, playerA);
|
|
updateSingle(playerA, playerB);
|
|
}
|
|
}
|
|
|
|
// as above method, but with a delay added; useful for after-login update which doesn't always propagate if done immediately
|
|
public static void updateAppearancesShortly(final Player player)
|
|
{
|
|
P.p.getServer().getScheduler().scheduleSyncDelayedTask(P.p, new Runnable()
|
|
{
|
|
@Override
|
|
public void run()
|
|
{
|
|
updateAppearances(player);
|
|
}
|
|
}, 100);
|
|
}
|
|
|
|
// update all appearances related to a single faction
|
|
public static void updateAppearances(Faction faction)
|
|
{
|
|
if (!enabled() || faction == null)
|
|
return;
|
|
|
|
Set<FPlayer> players = FPlayers.i.getOnline();
|
|
Faction factionA;
|
|
|
|
for (FPlayer playerA : players)
|
|
{
|
|
factionA = playerA.getFaction();
|
|
|
|
for (FPlayer playerB : players)
|
|
{
|
|
if (factionA != faction && playerB.getFaction() != faction)
|
|
continue;
|
|
|
|
updateSingle(playerB, playerA);
|
|
}
|
|
}
|
|
}
|
|
|
|
// update all appearances between two factions
|
|
public static void updateAppearances(Faction factionA, Faction factionB)
|
|
{
|
|
if (!enabled() || factionA == null || factionB == null)
|
|
return;
|
|
|
|
for (FPlayer playerA : factionA.getFPlayersWhereOnline(true))
|
|
{
|
|
for (FPlayer playerB : factionB.getFPlayersWhereOnline(true))
|
|
{
|
|
updateSingle(playerB, playerA);
|
|
updateSingle(playerA, playerB);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// update a single appearance; internal use only by above public methods
|
|
private static void updateSingle(FPlayer viewer, FPlayer viewed)
|
|
{
|
|
if (viewer == null || viewed == null)
|
|
return;
|
|
|
|
Faction viewedFaction = viewed.getFaction();
|
|
if (viewedFaction == null)
|
|
return;
|
|
|
|
SpoutPlayer sPlayer = SpoutManager.getPlayer(viewer.getPlayer());
|
|
Player pViewed = viewed.getPlayer();
|
|
if (pViewed == null || viewer.getPlayer() == null)
|
|
return;
|
|
|
|
String viewedTitle = viewed.getTitle();
|
|
Role viewedRole = viewed.getRole();
|
|
|
|
if ((Conf.spoutFactionTagsOverNames || Conf.spoutFactionTitlesOverNames) && viewer != viewed)
|
|
{
|
|
if (viewedFaction.isNormal())
|
|
{
|
|
String addTag = "";
|
|
if (Conf.spoutFactionTagsOverNames)
|
|
addTag += viewedFaction.getTag(viewed.getColorTo(viewer).toString() + "[") + "]";
|
|
|
|
String rolePrefix = viewedRole.getPrefix();
|
|
if (Conf.spoutFactionTitlesOverNames && (!viewedTitle.isEmpty() || !rolePrefix.isEmpty()))
|
|
addTag += (addTag.isEmpty() ? "" : " ") + viewedRole.getPrefix() + viewedTitle;
|
|
|
|
spoutApp.setPlayerTitle(sPlayer, pViewed, addTag + "\n" + pViewed.getDisplayName());
|
|
}
|
|
else
|
|
{
|
|
spoutApp.setPlayerTitle(sPlayer, pViewed, pViewed.getDisplayName());
|
|
}
|
|
}
|
|
|
|
if
|
|
(
|
|
(
|
|
Conf.spoutFactionAdminCapes
|
|
&&
|
|
viewedRole.equals(Role.ADMIN)
|
|
)
|
|
||
|
|
(
|
|
Conf.spoutFactionModeratorCapes
|
|
&&
|
|
viewedRole.equals(Role.MODERATOR)
|
|
)
|
|
)
|
|
{
|
|
Relation relation = viewer.getRelationTo(viewed);
|
|
String cape = "";
|
|
if (!viewedFaction.isNormal())
|
|
{
|
|
// yeah, no cape if no faction
|
|
}
|
|
else if (viewedFaction.isPeaceful())
|
|
cape = Conf.capePeaceful;
|
|
else if (relation.isNeutral())
|
|
cape = Conf.capeNeutral;
|
|
else if (relation.isMember())
|
|
cape = Conf.capeMember;
|
|
else if (relation.isEnemy())
|
|
cape = Conf.capeEnemy;
|
|
else if (relation.isAlly())
|
|
cape = Conf.capeAlly;
|
|
|
|
if (cape.isEmpty())
|
|
spoutApp.resetPlayerCloak(sPlayer, pViewed);
|
|
else
|
|
spoutApp.setPlayerCloak(sPlayer, pViewed, cape);
|
|
}
|
|
else if (Conf.spoutFactionAdminCapes || Conf.spoutFactionModeratorCapes)
|
|
{
|
|
spoutApp.resetPlayerCloak(sPlayer, pViewed);
|
|
}
|
|
}
|
|
|
|
|
|
// method to convert a Bukkit ChatColor to a Spout Color
|
|
protected static Color getSpoutColor(ChatColor inColor, int alpha)
|
|
{
|
|
if (inColor == null)
|
|
return SpoutFixedColor(191, 191, 191, alpha);
|
|
|
|
switch (inColor.getCode())
|
|
{
|
|
case 0x1: return SpoutFixedColor(0, 0, 191, alpha);
|
|
case 0x2: return SpoutFixedColor(0, 191, 0, alpha);
|
|
case 0x3: return SpoutFixedColor(0, 191, 191, alpha);
|
|
case 0x4: return SpoutFixedColor(191, 0, 0, alpha);
|
|
case 0x5: return SpoutFixedColor(191, 0, 191, alpha);
|
|
case 0x6: return SpoutFixedColor(191, 191, 0, alpha);
|
|
case 0x7: return SpoutFixedColor(191, 191, 191, alpha);
|
|
case 0x8: return SpoutFixedColor(64, 64, 64, alpha);
|
|
case 0x9: return SpoutFixedColor(64, 64, 255, alpha);
|
|
case 0xA: return SpoutFixedColor(64, 255, 64, alpha);
|
|
case 0xB: return SpoutFixedColor(64, 255, 255, alpha);
|
|
case 0xC: return SpoutFixedColor(255, 64, 64, alpha);
|
|
case 0xD: return SpoutFixedColor(255, 64, 255, alpha);
|
|
case 0xE: return SpoutFixedColor(255, 255, 64, alpha);
|
|
case 0xF: return SpoutFixedColor(255, 255, 255, alpha);
|
|
default: return SpoutFixedColor(0, 0, 0, alpha);
|
|
}
|
|
}
|
|
private static Color SpoutFixedColor(int r, int g, int b, int a)
|
|
{
|
|
return new Color(r/255.0f, g/255.0f, b/255.0f, a/255.0f);
|
|
}
|
|
}
|