Implement f status
This commit is contained in:

committed by
Olof Larsson

parent
8322528652
commit
8e13c1c13f
@@ -38,6 +38,7 @@ public class CmdFactions extends FactionsCommand
|
||||
public CmdFactionsMoney cmdFactionsMoney = new CmdFactionsMoney();
|
||||
public CmdFactionsSeeChunk cmdFactionsSeeChunk = new CmdFactionsSeeChunk();
|
||||
public CmdFactionsSeeChunkOld cmdFactionsSeeChunkOld = new CmdFactionsSeeChunkOld();
|
||||
public CmdFactionsStatus cmdFactionsStatus = new CmdFactionsStatus();
|
||||
public CmdFactionsClaim cmdFactionsClaim = new CmdFactionsClaim();
|
||||
public CmdFactionsUnclaim cmdFactionsUnclaim = new CmdFactionsUnclaim();
|
||||
public CmdFactionsAccess cmdFactionsAccess = new CmdFactionsAccess();
|
||||
@@ -67,6 +68,7 @@ public class CmdFactions extends FactionsCommand
|
||||
this.addSubCommand(this.cmdFactionsList);
|
||||
this.addSubCommand(this.cmdFactionsFaction);
|
||||
this.addSubCommand(this.cmdFactionsPlayer);
|
||||
this.addSubCommand(this.cmdFactionsStatus);
|
||||
this.addSubCommand(this.cmdFactionsJoin);
|
||||
this.addSubCommand(this.cmdFactionsLeave);
|
||||
this.addSubCommand(this.cmdFactionsHome);
|
||||
|
119
src/com/massivecraft/factions/cmd/CmdFactionsStatus.java
Normal file
119
src/com/massivecraft/factions/cmd/CmdFactionsStatus.java
Normal file
@@ -0,0 +1,119 @@
|
||||
package com.massivecraft.factions.cmd;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
|
||||
import com.massivecraft.factions.Perm;
|
||||
import com.massivecraft.factions.PlayerInactivityComparator;
|
||||
import com.massivecraft.factions.cmd.arg.ARFaction;
|
||||
import com.massivecraft.factions.cmd.arg.ARSortMPlayer;
|
||||
import com.massivecraft.factions.entity.Faction;
|
||||
import com.massivecraft.factions.entity.MPerm;
|
||||
import com.massivecraft.factions.entity.MPlayer;
|
||||
import com.massivecraft.massivecore.cmd.MassiveCommandException;
|
||||
import com.massivecraft.massivecore.cmd.arg.ARInteger;
|
||||
import com.massivecraft.massivecore.cmd.req.ReqHasPerm;
|
||||
import com.massivecraft.massivecore.pager.PagerSimple;
|
||||
import com.massivecraft.massivecore.pager.Stringifier;
|
||||
import com.massivecraft.massivecore.util.TimeDiffUtil;
|
||||
import com.massivecraft.massivecore.util.TimeUnit;
|
||||
import com.massivecraft.massivecore.util.Txt;
|
||||
|
||||
|
||||
public class CmdFactionsStatus extends FactionsCommand
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
public CmdFactionsStatus()
|
||||
{
|
||||
// Aliases
|
||||
this.addAliases("s", "status");
|
||||
|
||||
// Args
|
||||
this.addOptionalArg("page", "1");
|
||||
this.addOptionalArg("faction", "you");
|
||||
this.addOptionalArg("sort by", "time");
|
||||
|
||||
// Requirements
|
||||
this.addRequirements(ReqHasPerm.get(Perm.STATUS.node));
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
// OVERRIDE
|
||||
// -------------------------------------------- //
|
||||
|
||||
@Override
|
||||
public void perform() throws MassiveCommandException
|
||||
{
|
||||
// Args
|
||||
Integer pageHumanBased = this.arg(0, ARInteger.get(), 1);
|
||||
Faction faction = this.arg(1, ARFaction.get(), msenderFaction);
|
||||
Comparator<MPlayer> sortedBy = this.arg(2, ARSortMPlayer.get(), PlayerInactivityComparator.get());
|
||||
|
||||
// MPerm
|
||||
if ( ! MPerm.getPermStatus().has(msender, faction, true)) return;
|
||||
|
||||
// Sort list
|
||||
final List<MPlayer> mplayers = faction.getMPlayers();
|
||||
Collections.sort(mplayers, sortedBy);
|
||||
|
||||
// Create Pager
|
||||
final PagerSimple<MPlayer> pager = new PagerSimple<MPlayer>(mplayers, sender);
|
||||
String pagerTitle = Txt.parse("<i>Status of %s<i>.", faction.describeTo(msender, true));
|
||||
|
||||
// Use Pager
|
||||
List<String> messages = pager.getPageTxt(pageHumanBased, pagerTitle, new Stringifier<MPlayer>(){
|
||||
|
||||
@Override
|
||||
public String toString(MPlayer mplayer)
|
||||
{
|
||||
// Name
|
||||
String displayName = mplayer.getNameAndSomething(msender.getColorTo(mplayer).toString(), "");
|
||||
int length = 15 - displayName.length();
|
||||
length = length <= 0 ? 1 : length;
|
||||
String whiteSpace = Txt.repeat(" ", length);
|
||||
|
||||
// Power
|
||||
double currentPower = mplayer.getPower();
|
||||
double maxPower = mplayer.getPowerMax();
|
||||
String color;
|
||||
double percent = currentPower / maxPower;
|
||||
|
||||
if (percent > 0.75)
|
||||
{
|
||||
color = "<green>";
|
||||
}
|
||||
else if (percent > 0.5)
|
||||
{
|
||||
color = "<yellow>";
|
||||
}
|
||||
else if (percent > 0.25)
|
||||
{
|
||||
color = "<rose>";
|
||||
}
|
||||
else
|
||||
{
|
||||
color = "<red>";
|
||||
}
|
||||
|
||||
String power = Txt.parse("<art>Power: %s%.0f<gray>/<green>%.0f", Txt.parse(color), currentPower, maxPower);
|
||||
|
||||
// Time
|
||||
long lastActiveMillis = mplayer.getLastActivityMillis() - System.currentTimeMillis();
|
||||
LinkedHashMap<TimeUnit, Long> activeTimes = TimeDiffUtil.limit(TimeDiffUtil.unitcounts(lastActiveMillis, TimeUnit.getAllButMillis()), 3);
|
||||
String lastActive = mplayer.isOnline() ? Txt.parse("<lime>Online right now.") : Txt.parse("<i>Last active: " + TimeDiffUtil.formatedMinimal(activeTimes, "<i>"));
|
||||
|
||||
return Txt.parse("%s%s %s %s", displayName, whiteSpace, power, lastActive);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// Send message
|
||||
sendMessage(messages);
|
||||
}
|
||||
|
||||
}
|
64
src/com/massivecraft/factions/cmd/arg/ARSortMPlayer.java
Normal file
64
src/com/massivecraft/factions/cmd/arg/ARSortMPlayer.java
Normal file
@@ -0,0 +1,64 @@
|
||||
package com.massivecraft.factions.cmd.arg;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Comparator;
|
||||
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
import com.massivecraft.factions.PlayerInactivityComparator;
|
||||
import com.massivecraft.factions.PlayerPowerComparator;
|
||||
import com.massivecraft.factions.PlayerRoleComparator;
|
||||
import com.massivecraft.factions.entity.MPlayer;
|
||||
import com.massivecraft.massivecore.cmd.arg.ARAbstractSelect;
|
||||
import com.massivecraft.massivecore.util.MUtil;
|
||||
|
||||
public class ARSortMPlayer extends ARAbstractSelect<Comparator<MPlayer>>
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// INSTANCE & CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
private static ARSortMPlayer i = new ARSortMPlayer();
|
||||
public static ARSortMPlayer get() { return i; }
|
||||
|
||||
// -------------------------------------------- //
|
||||
// OVERRIDE
|
||||
// -------------------------------------------- //
|
||||
|
||||
@Override
|
||||
public String typename()
|
||||
{
|
||||
return "player sorter";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Comparator<MPlayer> select(String sortedBy, CommandSender sender)
|
||||
{
|
||||
sortedBy = sortedBy.toLowerCase();
|
||||
|
||||
if (sortedBy.startsWith("r"))
|
||||
{
|
||||
// Sort by rank
|
||||
return PlayerRoleComparator.get();
|
||||
}
|
||||
else if (sortedBy.startsWith("p"))
|
||||
{
|
||||
// Sort by power
|
||||
return PlayerPowerComparator.get();
|
||||
}
|
||||
else if (sortedBy.startsWith("t"))
|
||||
{
|
||||
// Sort by time
|
||||
return PlayerInactivityComparator.get();
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Collection<String> altNames(CommandSender sender)
|
||||
{
|
||||
return MUtil.list("rank", "power", "time");
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user