2013-04-16 12:04:12 +02:00
|
|
|
package com.massivecraft.factions;
|
|
|
|
|
|
|
|
import java.util.Comparator;
|
|
|
|
|
|
|
|
import com.massivecraft.mcore.util.MUtil;
|
|
|
|
|
|
|
|
public class FactionListComparator implements Comparator<Faction>
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// INSTANCE & CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static FactionListComparator i = new FactionListComparator();
|
|
|
|
public static FactionListComparator get() { return i; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE: COMPARATOR
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(Faction f1, Faction f2)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2013-04-16 13:17:42 +02:00
|
|
|
// Null
|
2013-04-16 12:04:12 +02:00
|
|
|
if (f1 == null && f2 == null) ret = 0;
|
|
|
|
if (f1 == null) ret = -1;
|
|
|
|
if (f2 == null) ret = +1;
|
|
|
|
if (ret != 0) return ret;
|
|
|
|
|
2013-04-16 13:17:42 +02:00
|
|
|
// None
|
2013-04-16 12:04:12 +02:00
|
|
|
if (f1.isNone() && f2.isNone()) ret = 0;
|
2013-04-16 13:17:42 +02:00
|
|
|
if (f1.isNone()) ret = -1;
|
|
|
|
if (f2.isNone()) ret = +1;
|
2013-04-16 12:04:12 +02:00
|
|
|
if (ret != 0) return ret;
|
|
|
|
|
2013-04-16 13:17:42 +02:00
|
|
|
// Players Online
|
|
|
|
ret = f2.getFPlayersWhereOnline(true).size() - f1.getFPlayersWhereOnline(true).size();
|
2013-04-16 12:04:12 +02:00
|
|
|
if (ret != 0) return ret;
|
|
|
|
|
2013-04-16 13:17:42 +02:00
|
|
|
// Players Total
|
|
|
|
ret = f2.getFPlayers().size() - f1.getFPlayers().size();
|
2013-04-16 12:04:12 +02:00
|
|
|
if (ret != 0) return ret;
|
|
|
|
|
|
|
|
// Tie by Id
|
|
|
|
return MUtil.compare(f1.getId(), f2.getId());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|