Factions/src/com/massivecraft/factions/cmd/CmdFactionsPlayer.java

110 lines
4.0 KiB
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
import com.massivecraft.factions.cmd.type.TypeMPlayer;
import com.massivecraft.factions.entity.MConf;
import com.massivecraft.factions.entity.MPlayer;
2015-02-12 12:00:55 +01:00
import com.massivecraft.massivecore.MassiveException;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.Progressbar;
2017-07-25 12:12:50 +02:00
import com.massivecraft.massivecore.event.EventMassiveCorePlayerCleanInactivityToleranceMillis;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.util.TimeDiffUtil;
import com.massivecraft.massivecore.util.TimeUnit;
import com.massivecraft.massivecore.util.Txt;
2017-03-24 13:05:58 +01:00
import java.util.LinkedHashMap;
import java.util.Map.Entry;
2014-09-18 13:41:20 +02:00
public class CmdFactionsPlayer extends FactionsCommand
{
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public CmdFactionsPlayer()
{
// Parameters
this.addParameter(TypeMPlayer.get(), "player", "you");
}
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
@Override
2015-02-12 12:00:55 +01:00
public void perform() throws MassiveException
{
// Args
2015-05-06 17:04:35 +02:00
MPlayer mplayer = this.readArg(msender);
2013-04-26 17:54:06 +02:00
// INFO: Title
message(Txt.titleize("Player " + mplayer.describeTo(msender)));
2019-01-02 00:43:39 +01:00
// INFO: Rank
msg("<a>Rank: <v>%s", mplayer.getRank().getDisplayName(sender));
2013-04-26 17:54:06 +02:00
// INFO: Power (as progress bar)
2014-10-03 13:22:35 +02:00
double progressbarQuota = 0;
double playerPowerMax = mplayer.getPowerMax();
if (playerPowerMax != 0)
{
progressbarQuota = mplayer.getPower() / playerPowerMax;
}
2014-09-17 13:29:58 +02:00
int progressbarWidth = (int) Math.round(mplayer.getPowerMax() / mplayer.getPowerMaxUniversal() * 100);
msg("<a>Power: <v>%s", Progressbar.HEALTHBAR_CLASSIC.withQuota(progressbarQuota).withWidth(progressbarWidth).render());
2013-04-26 17:54:06 +02:00
// INFO: Power (as digits)
msg("<a>Power: <v>%.2f / %.2f", mplayer.getPower(), mplayer.getPowerMax());
2013-04-26 17:54:06 +02:00
// INFO: Power Boost
2014-09-17 13:29:58 +02:00
if (mplayer.hasPowerBoost())
2013-04-26 17:54:06 +02:00
{
2014-09-17 13:29:58 +02:00
double powerBoost = mplayer.getPowerBoost();
2013-04-26 17:54:06 +02:00
String powerBoostType = (powerBoost > 0 ? "bonus" : "penalty");
msg("<a>Power Boost: <v>%f <i>(a manually granted %s)", powerBoost, powerBoostType);
2013-04-26 17:54:06 +02:00
}
// INFO: Power per Hour
// If the player is not at maximum we wan't to display how much time left.
String stringTillMax = "";
2014-09-17 13:29:58 +02:00
double powerTillMax = mplayer.getPowerMax() - mplayer.getPower();
2013-04-26 17:54:06 +02:00
if (powerTillMax > 0)
{
2014-09-17 13:29:58 +02:00
long millisTillMax = (long) (powerTillMax * TimeUnit.MILLIS_PER_HOUR / mplayer.getPowerPerHour());
2013-04-26 17:54:06 +02:00
LinkedHashMap<TimeUnit, Long> unitcountsTillMax = TimeDiffUtil.unitcounts(millisTillMax, TimeUnit.getAllButMillis());
unitcountsTillMax = TimeDiffUtil.limit(unitcountsTillMax, 2);
String unitcountsTillMaxFormated = TimeDiffUtil.formatedVerboose(unitcountsTillMax, "<i>");
stringTillMax = Txt.parse(" <i>(%s <i>left till max)", unitcountsTillMaxFormated);
}
msg("<a>Power per Hour: <v>%.2f%s", mplayer.getPowerPerHour(), stringTillMax);
2013-04-26 17:54:06 +02:00
// INFO: Power per Death
msg("<a>Power per Death: <v>%.2f", mplayer.getPowerPerDeath());
// Display automatic kick / remove info if the system is in use
2017-07-25 12:12:50 +02:00
if (MConf.get().cleanInactivityToleranceMillis <= 0) return;
2017-07-25 12:12:50 +02:00
EventMassiveCorePlayerCleanInactivityToleranceMillis event = new EventMassiveCorePlayerCleanInactivityToleranceMillis(mplayer.getLastActivityMillis(), mplayer);
event.run();
2017-05-19 08:47:42 +02:00
msg("<i>Automatic removal after %s <i>of inactivity:", format(event.getToleranceMillis()));
for (Entry<String, Long> causeMillis : event.getToleranceCauseMillis().entrySet())
{
String cause = causeMillis.getKey();
long millis = causeMillis.getValue();
msg("<a>%s<a>: <v>%s", cause, format(millis));
}
}
// -------------------------------------------- //
// TIME FORMAT
// -------------------------------------------- //
public static String format(long millis)
{
LinkedHashMap<TimeUnit, Long> unitcounts = TimeDiffUtil.unitcounts(millis, TimeUnit.getAllBut(TimeUnit.MILLISECOND, TimeUnit.WEEK, TimeUnit.MONTH));
return TimeDiffUtil.formatedVerboose(unitcounts);
}
2013-11-11 09:31:04 +01:00
2017-02-10 16:38:36 +01:00
}