91f9d1d8db
Tooltips were causing a lot of issues on larger servers. Constructing them as well as the lookups required to display them caused significant lag. Resolves #197, #164.
146 lines
5.3 KiB
Java
146 lines
5.3 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.*;
|
|
import com.massivecraft.factions.integration.Econ;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.struct.Relation;
|
|
import com.massivecraft.factions.struct.Role;
|
|
|
|
import java.util.Collection;
|
|
|
|
public class CmdShow extends FCommand {
|
|
|
|
public CmdShow() {
|
|
this.aliases.add("show");
|
|
this.aliases.add("who");
|
|
|
|
this.optionalArgs.put("faction tag", "yours");
|
|
|
|
this.permission = Permission.SHOW.node;
|
|
this.disableOnLock = false;
|
|
|
|
this.senderMustBePlayer = true;
|
|
this.senderMustBeMember = false;
|
|
this.senderMustBeModerator = false;
|
|
this.senderMustBeAdmin = false;
|
|
}
|
|
|
|
public void perform() {
|
|
Faction faction = this.myFaction;
|
|
if (argIsSet(0)) {
|
|
faction = argAsFaction(0);
|
|
if (faction == null) {
|
|
return;
|
|
}
|
|
|
|
}
|
|
|
|
if (!payForCommand(Conf.econCostShow, "to show faction information", "for showing faction information")) {
|
|
return;
|
|
}
|
|
|
|
Collection<FPlayer> admins = faction.getFPlayersWhereRole(Role.ADMIN);
|
|
Collection<FPlayer> mods = faction.getFPlayersWhereRole(Role.MODERATOR);
|
|
Collection<FPlayer> normals = faction.getFPlayersWhereRole(Role.NORMAL);
|
|
|
|
msg((p).txt.titleize(faction.getTag(this.fme)));
|
|
msg("<a>Description: <i>%s", faction.getDescription());
|
|
if (!faction.isNormal()) {
|
|
return;
|
|
}
|
|
|
|
String peaceStatus = "";
|
|
if (faction.isPeaceful()) {
|
|
peaceStatus = " " + Conf.colorNeutral + "This faction is Peaceful";
|
|
}
|
|
|
|
msg("<a>Joining: <i>" + (faction.getOpen() ? "no invitation is needed" : "invitation is required") + peaceStatus);
|
|
|
|
double powerBoost = faction.getPowerBoost();
|
|
String boost = (powerBoost > 0.0D ? " (bonus: " : " (penalty: ") + powerBoost + ")";
|
|
msg("<a>Land / Power / Maxpower: <i> %d/%d/%d %s", faction.getLandRounded(), faction.getPowerRounded(), faction.getPowerMaxRounded(), boost);
|
|
|
|
if (faction.isPermanent()) {
|
|
msg("<a>This faction is permanent, remaining even with no members.");
|
|
}
|
|
|
|
if (Econ.shouldBeUsed()) {
|
|
double value = Econ.calculateTotalLandValue(faction.getLandRounded());
|
|
double refund = value * Conf.econClaimRefundMultiplier;
|
|
if (value > 0.0D) {
|
|
String stringValue = Econ.moneyString(value);
|
|
String stringRefund = refund > 0.0D ? " (" + Econ.moneyString(refund) + " depreciated)" : "";
|
|
msg("<a>Total land value: <i>" + stringValue + stringRefund);
|
|
}
|
|
|
|
if (Conf.bankEnabled) {
|
|
msg("<a>Bank contains: <i>" + Econ.moneyString(Econ.getBalance(faction.getAccountId())));
|
|
}
|
|
|
|
}
|
|
|
|
String allyList = p.txt.parse("<a>Allies: ");
|
|
String enemyList = p.txt.parse("<a>Enemies: ");
|
|
for (Faction otherFaction : Factions.getInstance().getAllFactions()) {
|
|
if (otherFaction != faction) {
|
|
Relation rel = otherFaction.getRelationTo(faction);
|
|
if ((rel.isAlly()) || (rel.isEnemy())) {
|
|
String listpart = otherFaction.getTag(this.fme) + p.txt.parse("<i>") + ", ";
|
|
if (rel.isAlly()) {
|
|
allyList = allyList + listpart;
|
|
} else if (rel.isEnemy()) {
|
|
enemyList = enemyList + listpart;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (allyList.endsWith(", ")) {
|
|
allyList = allyList.substring(0, allyList.length() - 2);
|
|
}
|
|
if (enemyList.endsWith(", ")) {
|
|
enemyList = enemyList.substring(0, enemyList.length() - 2);
|
|
}
|
|
sendMessage(allyList);
|
|
sendMessage(enemyList);
|
|
|
|
String onlineList = p.txt.parse("<a>") + "Members online: ";
|
|
String offlineList = p.txt.parse("<a>") + "Members offline: ";
|
|
for (FPlayer follower : admins) {
|
|
String listpart = follower.getNameAndTitle(this.fme) + p.txt.parse("<i>") + ", ";
|
|
if (follower.isOnlineAndVisibleTo(this.me)) {
|
|
onlineList = onlineList + listpart;
|
|
} else {
|
|
offlineList = offlineList + listpart;
|
|
}
|
|
}
|
|
for (FPlayer follower : mods) {
|
|
String listpart = follower.getNameAndTitle(this.fme) + p.txt.parse("<i>") + ", ";
|
|
|
|
if (follower.isOnlineAndVisibleTo(this.me)) {
|
|
onlineList = onlineList + listpart;
|
|
} else {
|
|
offlineList = offlineList + listpart;
|
|
}
|
|
}
|
|
|
|
for (FPlayer follower : normals) {
|
|
String listpart = follower.getNameAndTitle(this.fme) + p.txt.parse("<i>") + ", ";
|
|
if (follower.isOnlineAndVisibleTo(this.me)) {
|
|
onlineList = onlineList + listpart;
|
|
} else {
|
|
offlineList = offlineList + listpart;
|
|
}
|
|
}
|
|
|
|
if (onlineList.endsWith(", ")) {
|
|
onlineList = onlineList.substring(0, onlineList.length() - 2);
|
|
}
|
|
if (offlineList.endsWith(", ")) {
|
|
offlineList = offlineList.substring(0, offlineList.length() - 2);
|
|
}
|
|
|
|
sendMessage(onlineList);
|
|
sendMessage(offlineList);
|
|
}
|
|
} |