2a9b475012
Vault: http://dev.bukkit.org/server-mods/vault/ Note: for proper faction bank support, if you're using iCo5 or EssentialsEco, I recommend waiting for Vault 1.2.5 to be released which addresses faction account creation issues related to those.
152 lines
4.3 KiB
Java
152 lines
4.3 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
import com.massivecraft.factions.integration.Econ;
|
|
import com.massivecraft.factions.FPlayer;
|
|
import com.massivecraft.factions.Faction;
|
|
import com.massivecraft.factions.struct.FFlag;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.struct.Rel;
|
|
import com.massivecraft.factions.zcore.util.TextUtil;
|
|
|
|
public class CmdShow extends FCommand
|
|
{
|
|
public CmdShow()
|
|
{
|
|
this.aliases.add("show");
|
|
this.aliases.add("who");
|
|
|
|
//this.requiredArgs.add("");
|
|
this.optionalArgs.put("faction", "your");
|
|
|
|
this.permission = Permission.SHOW.node;
|
|
this.disableOnLock = false;
|
|
|
|
senderMustBePlayer = true;
|
|
senderMustBeMember = false;
|
|
senderMustBeOfficer = false;
|
|
senderMustBeLeader = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform()
|
|
{
|
|
Faction faction = myFaction;
|
|
if (this.argIsSet(0))
|
|
{
|
|
faction = this.argAsFaction(0);
|
|
if (faction == null) return;
|
|
}
|
|
|
|
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
|
|
if ( ! payForCommand(Conf.econCostShow, "to show faction information", "for showing faction information")) return;
|
|
|
|
Collection<FPlayer> admins = faction.getFPlayersWhereRole(Rel.LEADER);
|
|
Collection<FPlayer> mods = faction.getFPlayersWhereRole(Rel.OFFICER);
|
|
Collection<FPlayer> normals = faction.getFPlayersWhereRole(Rel.MEMBER);
|
|
|
|
msg(p.txt.titleize(faction.getTag(fme)));
|
|
msg("<a>Description: <i>%s", faction.getDescription());
|
|
|
|
// Display important flags
|
|
// TODO: Find the non default flags, and display them instead.
|
|
if (faction.getFlag(FFlag.PERMANENT))
|
|
{
|
|
msg("<a>This faction is permanent - remaining even with no members.");
|
|
}
|
|
|
|
if (faction.getFlag(FFlag.PEACEFUL))
|
|
{
|
|
msg("<a>This faction is peaceful - in truce with everyone.");
|
|
}
|
|
|
|
msg("<a>Joining: <i>"+(faction.getOpen() ? "no invitation is needed" : "invitation is required"));
|
|
msg("<a>Land / Power / Maxpower: <i> %d/%d/%d", faction.getLandRounded(), faction.getPowerRounded(), faction.getPowerMaxRounded());
|
|
|
|
// show the land value
|
|
if (Econ.shouldBeUsed())
|
|
{
|
|
double value = Econ.calculateTotalLandValue(faction.getLandRounded());
|
|
double refund = value * Conf.econClaimRefundMultiplier;
|
|
if (value > 0)
|
|
{
|
|
String stringValue = Econ.moneyString(value);
|
|
String stringRefund = (refund > 0.0) ? (" ("+Econ.moneyString(refund)+" depreciated)") : "";
|
|
msg("<a>Total land value: <i>" + stringValue + stringRefund);
|
|
}
|
|
|
|
//Show bank contents
|
|
if(Conf.bankEnabled)
|
|
{
|
|
msg("<a>Bank contains: <i>"+Econ.moneyString(Econ.getBalance(faction.getAccountId())));
|
|
}
|
|
}
|
|
|
|
String sepparator = p.txt.parse("<i>")+", ";
|
|
|
|
// List the relations to other factions
|
|
Map<Rel, List<String>> relationTags = faction.getFactionTagsPerRelation(fme);
|
|
|
|
if (faction.getFlag(FFlag.PEACEFUL))
|
|
{
|
|
sendMessage(p.txt.parse("<a>In Truce with:<i> *everyone*"));
|
|
}
|
|
else
|
|
{
|
|
sendMessage(p.txt.parse("<a>In Truce with: ") + TextUtil.implode(relationTags.get(Rel.TRUCE), sepparator));
|
|
}
|
|
|
|
sendMessage(p.txt.parse("<a>Allied to: ") + TextUtil.implode(relationTags.get(Rel.ALLY), sepparator));
|
|
sendMessage(p.txt.parse("<a>Enemies: ") + TextUtil.implode(relationTags.get(Rel.ENEMY), sepparator));
|
|
|
|
// List the members...
|
|
List<String> memberOnlineNames = new ArrayList<String>();
|
|
List<String> memberOfflineNames = new ArrayList<String>();
|
|
|
|
for (FPlayer follower : admins)
|
|
{
|
|
if (follower.isOnline())
|
|
{
|
|
memberOnlineNames.add(follower.getNameAndTitle(fme));
|
|
}
|
|
else
|
|
{
|
|
memberOfflineNames.add(follower.getNameAndTitle(fme));
|
|
}
|
|
}
|
|
|
|
for (FPlayer follower : mods)
|
|
{
|
|
if (follower.isOnline())
|
|
{
|
|
memberOnlineNames.add(follower.getNameAndTitle(fme));
|
|
}
|
|
else
|
|
{
|
|
memberOfflineNames.add(follower.getNameAndTitle(fme));
|
|
}
|
|
}
|
|
|
|
for (FPlayer follower : normals)
|
|
{
|
|
if (follower.isOnline())
|
|
{
|
|
memberOnlineNames.add(follower.getNameAndTitle(fme));
|
|
}
|
|
else
|
|
{
|
|
memberOfflineNames.add(follower.getNameAndTitle(fme));
|
|
}
|
|
}
|
|
|
|
sendMessage(p.txt.parse("<a>Members online: ") + TextUtil.implode(memberOnlineNames, sepparator));
|
|
sendMessage(p.txt.parse("<a>Members offline: ") + TextUtil.implode(memberOfflineNames, sepparator));
|
|
}
|
|
|
|
}
|