2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2013-04-16 12:04:12 +02:00
|
|
|
import java.util.List;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2015-01-08 10:00:38 +01:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
2013-04-16 12:04:12 +02:00
|
|
|
import com.massivecraft.factions.FactionListComparator;
|
2015-01-08 10:00:38 +01:00
|
|
|
import com.massivecraft.factions.Factions;
|
2013-04-09 12:56:29 +02:00
|
|
|
import com.massivecraft.factions.Perm;
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.entity.Faction;
|
2014-09-17 13:17:33 +02:00
|
|
|
import com.massivecraft.factions.entity.FactionColl;
|
2015-02-12 12:00:55 +01:00
|
|
|
import com.massivecraft.massivecore.MassiveException;
|
2015-05-13 23:00:53 +02:00
|
|
|
import com.massivecraft.massivecore.cmd.ArgSetting;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.cmd.req.ReqHasPerm;
|
2015-01-08 10:00:38 +01:00
|
|
|
import com.massivecraft.massivecore.mixin.Mixin;
|
|
|
|
import com.massivecraft.massivecore.pager.PagerSimple;
|
|
|
|
import com.massivecraft.massivecore.pager.Stringifier;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.util.Txt;
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2014-09-18 13:41:20 +02:00
|
|
|
public class CmdFactionsList extends FactionsCommand
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public CmdFactionsList()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
// Aliases
|
2013-04-25 16:02:37 +02:00
|
|
|
this.addAliases("l", "list");
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// Args
|
2015-05-13 23:00:53 +02:00
|
|
|
this.addArg(ArgSetting.getPage());
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// Requirements
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.LIST.node));
|
2011-03-23 17:39:56 +01:00
|
|
|
}
|
|
|
|
|
2013-11-11 09:31:04 +01:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2015-02-12 12:00:55 +01:00
|
|
|
public void perform() throws MassiveException
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2015-01-08 10:00:38 +01:00
|
|
|
// Args
|
2015-05-13 23:00:53 +02:00
|
|
|
final int page = this.readArg();
|
2013-04-16 12:04:12 +02:00
|
|
|
|
2015-01-08 10:00:38 +01:00
|
|
|
// NOTE: The faction list is quite slow and mostly thread safe.
|
|
|
|
// We run it asynchronously to spare the primary server thread.
|
|
|
|
final CommandSender sender = this.sender;
|
|
|
|
Bukkit.getScheduler().runTaskAsynchronously(Factions.get(), new Runnable()
|
2012-11-06 16:43:27 +01:00
|
|
|
{
|
2015-01-08 10:00:38 +01:00
|
|
|
@Override
|
|
|
|
public void run()
|
2012-11-06 16:43:27 +01:00
|
|
|
{
|
2015-01-09 15:47:04 +01:00
|
|
|
// Create Pager
|
|
|
|
final List<Faction> factions = FactionColl.get().getAll(null, FactionListComparator.get());
|
|
|
|
final PagerSimple<Faction> pager = new PagerSimple<Faction>(factions, sender);
|
|
|
|
|
2015-01-08 10:00:38 +01:00
|
|
|
// Use Pager
|
2015-05-13 23:00:53 +02:00
|
|
|
List<String> messages = pager.getPageTxt(page, "Faction List", new Stringifier<Faction>() {
|
2015-01-08 10:00:38 +01:00
|
|
|
@Override
|
2015-02-17 10:40:15 +01:00
|
|
|
public String toString(Faction faction, int index)
|
2015-01-08 10:00:38 +01:00
|
|
|
{
|
|
|
|
if (faction.isNone())
|
|
|
|
{
|
|
|
|
return Txt.parse("<i>Factionless<i> %d online", FactionColl.get().getNone().getMPlayersWhereOnline(true).size());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Txt.parse("%s<i> %d/%d online, %d/%d/%d",
|
|
|
|
faction.getName(msender),
|
|
|
|
faction.getMPlayersWhereOnline(true).size(),
|
|
|
|
faction.getMPlayers().size(),
|
|
|
|
faction.getLandCount(),
|
|
|
|
faction.getPowerRounded(),
|
|
|
|
faction.getPowerMaxRounded()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send Messages
|
|
|
|
Mixin.messageOne(sender, messages);
|
2012-11-06 16:43:27 +01:00
|
|
|
}
|
2015-01-08 10:00:38 +01:00
|
|
|
});
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
2013-11-11 09:31:04 +01:00
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|