Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Commit

Permalink
Implement f status
Browse files Browse the repository at this point in the history
  • Loading branch information
ulumulu1510 authored and oloflarsson committed Feb 4, 2015
1 parent 8322528 commit 8e13c1c
Show file tree
Hide file tree
Showing 9 changed files with 288 additions and 11 deletions.
3 changes: 3 additions & 0 deletions plugin.yml
Expand Up @@ -68,6 +68,7 @@ permissions:
factions.seechunkold: {description: see the chunk you stand in, default: false}
factions.sethome: {description: set the faction home, default: false}
factions.setpower: {description: set power, default: false}
factions.status: {description: show faction status, default: false}
factions.name: {description: set faction name, default: false}
factions.title: {description: set player title, default: false}
factions.title.color: {description: set player title with color, default: false}
Expand Down Expand Up @@ -146,6 +147,7 @@ permissions:
factions.seechunkold: true
factions.sethome: true
factions.setpower: true
factions.status: true
factions.name: true
factions.title: true
factions.title.color: true
Expand Down Expand Up @@ -245,6 +247,7 @@ permissions:
factions.seechunk: true
factions.seechunkold: true
factions.sethome: true
factions.status: true
factions.name: true
factions.title: true
factions.title.color: true
Expand Down
5 changes: 3 additions & 2 deletions src/com/massivecraft/factions/Perm.java
Expand Up @@ -65,9 +65,10 @@ public enum Perm
RANK_ACTION("rank.action"),
RELATION("relation"),
SEECHUNK("seechunk"),
SEECHUNKOLD("seechunkold"),
SETHOME("sethome"),
SEECHUNKOLD("seechunkold"),
SETHOME("sethome"),
SETPOWER("setpower"),
STATUS("status"),
NAME("name"),
TITLE("title"),
TITLE_COLOR("title.color"),
Expand Down
43 changes: 43 additions & 0 deletions src/com/massivecraft/factions/PlayerInactivityComparator.java
@@ -0,0 +1,43 @@
package com.massivecraft.factions;

import java.util.Comparator;

import com.massivecraft.factions.entity.MPlayer;

public class PlayerInactivityComparator implements Comparator<MPlayer>
{
// -------------------------------------------- //
// INSTANCE & CONSTRUCT
// -------------------------------------------- //

private static PlayerInactivityComparator i = new PlayerInactivityComparator();
public static PlayerInactivityComparator get() { return i; }

// -------------------------------------------- //
// OVERRIDE: COMPARATOR
// -------------------------------------------- //

@Override
public int compare(MPlayer m1, MPlayer m2)
{
// Null
if (m1 == null && m2 == null) return 0;
else if (m1 == null) return -1;
else if (m2 == null) return +1;

// Online
boolean o1 = m1.isOnline();
boolean o2 = m2.isOnline();

if (o1 && o2) return 0;
else if (o1) return -1;
else if (o2) return +1;

// Inactivity Time
long r1 = m1.getLastActivityMillis();
long r2 = m2.getLastActivityMillis();

return (int) (r1 - r2);
}

}
44 changes: 44 additions & 0 deletions src/com/massivecraft/factions/PlayerPowerComparator.java
@@ -0,0 +1,44 @@
package com.massivecraft.factions;

import java.util.Comparator;

import com.massivecraft.factions.entity.MPlayer;

public class PlayerPowerComparator implements Comparator<MPlayer>
{
// -------------------------------------------- //
// INSTANCE & CONSTRUCT
// -------------------------------------------- //

private static PlayerPowerComparator i = new PlayerPowerComparator();
public static PlayerPowerComparator get() { return i; }

// -------------------------------------------- //
// OVERRIDE: COMPARATOR
// -------------------------------------------- //

@Override
public int compare(MPlayer m1, MPlayer m2)
{
int ret = 0;

// Null
if (m1 == null && m2 == null) return 0;
else if (m1 == null) return -1;
else if (m2 == null) return +1;

// Power
int p1 = m1.getPowerRounded();
int p2 = m2.getPowerRounded();
ret = p1 - p2;
if (ret != 0) return ret;

// MaxPower
int max1 = m1.getPowerMaxRounded();
int max2 = m2.getPowerMaxRounded();
ret = max1 - max2;

return ret;
}

}
15 changes: 6 additions & 9 deletions src/com/massivecraft/factions/PlayerRoleComparator.java
Expand Up @@ -18,19 +18,16 @@ public class PlayerRoleComparator implements Comparator<MPlayer>
// -------------------------------------------- //

@Override
public int compare(MPlayer o1, MPlayer o2)
public int compare(MPlayer m1, MPlayer m2)
{
int ret = 0;

// Null
if (o1 == null && o2 == null) ret = 0;
if (o1 == null) ret = -1;
if (o2 == null) ret = +1;
if (ret != 0) return ret;
if (m1 == null && m2 == null) return 0;
else if (m1 == null) return -1;
else if (m2 == null) return +1;

// Rank
Rel r1 = o1.getRole();
Rel r2 = o2.getRole();
Rel r1 = m1.getRole();
Rel r2 = m2.getRole();
return r2.getValue() - r1.getValue();
}

Expand Down
2 changes: 2 additions & 0 deletions src/com/massivecraft/factions/cmd/CmdFactions.java
Expand Up @@ -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();
Expand Down Expand Up @@ -67,6 +68,7 @@ public CmdFactions()
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);
Expand Down
119 changes: 119 additions & 0 deletions src/com/massivecraft/factions/cmd/CmdFactionsStatus.java
@@ -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 changes: 64 additions & 0 deletions src/com/massivecraft/factions/cmd/arg/ARSortMPlayer.java
@@ -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");
}

}
4 changes: 4 additions & 0 deletions src/com/massivecraft/factions/entity/MPerm.java
Expand Up @@ -50,6 +50,7 @@ public class MPerm extends Entity<MPerm> implements Prioritized, Registerable
public final static transient String ID_DISBAND = "disband";
public final static transient String ID_FLAGS = "flags";
public final static transient String ID_PERMS = "perms";
public final static transient String ID_STATUS = "status";

public final static transient int PRIORITY_BUILD = 1000;
public final static transient int PRIORITY_PAINBUILD = 2000;
Expand All @@ -75,6 +76,7 @@ public class MPerm extends Entity<MPerm> implements Prioritized, Registerable
public final static transient int PRIORITY_DISBAND = 21000;
public final static transient int PRIORITY_FLAGS = 22000;
public final static transient int PRIORITY_PERMS = 23000;
public final static transient int PRIORITY_STATUS = 24000;

// -------------------------------------------- //
// META: CORE
Expand Down Expand Up @@ -114,6 +116,7 @@ public static void setupStandardPerms()
getPermKick();
getPermTitle();
getPermHome();
getPermStatus();
getPermSethome();
getPermDeposit();
getPermWithdraw();
Expand All @@ -137,6 +140,7 @@ public static void setupStandardPerms()
public static MPerm getPermDesc() { return getCreative(PRIORITY_DESC, ID_DESC, ID_DESC, "set description", MUtil.set(Rel.LEADER, Rel.OFFICER), false, true, true); }
public static MPerm getPermMotd() { return getCreative(PRIORITY_MOTD, ID_MOTD, ID_MOTD, "set motd", MUtil.set(Rel.LEADER, Rel.OFFICER), false, true, true); }
public static MPerm getPermInvite() { return getCreative(PRIORITY_INVITE, ID_INVITE, ID_INVITE, "invite players", MUtil.set(Rel.LEADER, Rel.OFFICER), false, true, true); }
public static MPerm getPermStatus() { return getCreative(PRIORITY_STATUS, ID_STATUS, ID_STATUS, "show status", MUtil.set(Rel.LEADER, Rel.OFFICER), false, true, true); }
public static MPerm getPermKick() { return getCreative(PRIORITY_KICK, ID_KICK, ID_KICK, "kick members", MUtil.set(Rel.LEADER, Rel.OFFICER), false, true, true); }
public static MPerm getPermTitle() { return getCreative(PRIORITY_TITLE, ID_TITLE, ID_TITLE, "set titles", MUtil.set(Rel.LEADER, Rel.OFFICER), false, true, true); }
public static MPerm getPermHome() { return getCreative(PRIORITY_HOME, ID_HOME, ID_HOME, "teleport home", MUtil.set(Rel.LEADER, Rel.OFFICER, Rel.MEMBER, Rel.RECRUIT, Rel.ALLY), false, true, true); }
Expand Down

0 comments on commit 8e13c1c

Please sign in to comment.