2014-08-22 00:55:40 +02:00
|
|
|
package nautilus.game.arcade.stats;
|
|
|
|
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.EventPriority;
|
|
|
|
|
|
|
|
import mineplex.core.updater.UpdateType;
|
|
|
|
import mineplex.core.updater.event.UpdateEvent;
|
|
|
|
import nautilus.game.arcade.events.GameStateChangeEvent;
|
|
|
|
import nautilus.game.arcade.game.Game;
|
|
|
|
import nautilus.game.arcade.game.GameTeam;
|
|
|
|
import nautilus.game.arcade.game.games.turfforts.TurfForts;
|
|
|
|
|
|
|
|
public class TheComebackStatTracker extends StatTracker<TurfForts>
|
|
|
|
{
|
|
|
|
private final Set<GameTeam> _hasWentFiveOrBelow = new HashSet<>();
|
|
|
|
|
|
|
|
public TheComebackStatTracker(TurfForts game)
|
|
|
|
{
|
|
|
|
super(game);
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR)
|
|
|
|
public void onUpdate(UpdateEvent event)
|
|
|
|
{
|
2014-08-25 22:27:02 +02:00
|
|
|
if (getGame().GetState() != Game.GameState.Live)
|
|
|
|
return;
|
|
|
|
|
2014-08-22 00:55:40 +02:00
|
|
|
if (event.getType() == UpdateType.TICK)
|
|
|
|
{
|
2014-08-25 22:27:02 +02:00
|
|
|
for (GameTeam team : getGame().GetTeamList())
|
2014-08-22 00:55:40 +02:00
|
|
|
{
|
2014-08-25 22:27:02 +02:00
|
|
|
if (getGame().getLines(team) <= 5)
|
|
|
|
_hasWentFiveOrBelow.add(team);
|
2014-08-22 00:55:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR)
|
|
|
|
public void onGameStateChange(GameStateChangeEvent event)
|
|
|
|
{
|
|
|
|
if (event.GetState() == Game.GameState.End)
|
|
|
|
{
|
|
|
|
if (_hasWentFiveOrBelow.contains(getGame().WinnerTeam))
|
|
|
|
{
|
|
|
|
for (Player player : getGame().getWinners())
|
2014-08-26 22:30:55 +02:00
|
|
|
addStat(player, "TheComeback", 1, true, false);
|
2014-08-22 00:55:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|