forked from External/mage
87 lines
2.7 KiB
Java
87 lines
2.7 KiB
Java
package mage.watchers.common;
|
|
|
|
import mage.MageObjectReference;
|
|
import mage.constants.WatcherScope;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
import mage.game.permanent.Permanent;
|
|
import mage.watchers.Watcher;
|
|
|
|
import java.util.*;
|
|
|
|
/**
|
|
* @author nantuko, BetaSteward_at_googlemail.com
|
|
*/
|
|
public class CastSpellLastTurnWatcher extends Watcher {
|
|
|
|
private final Map<UUID, Integer> amountOfSpellsCastOnPrevTurn = new HashMap<>();
|
|
private final Map<UUID, Integer> amountOfSpellsCastOnCurrentTurn = new HashMap<>();
|
|
private final List<MageObjectReference> spellsCastThisTurnInOrder = new ArrayList<>();
|
|
|
|
public CastSpellLastTurnWatcher() {
|
|
super(WatcherScope.GAME);
|
|
}
|
|
|
|
@Override
|
|
public void watch(GameEvent event, Game game) {
|
|
if (event.getType() == GameEvent.EventType.SPELL_CAST) {
|
|
spellsCastThisTurnInOrder.add(new MageObjectReference(event.getTargetId(), game));
|
|
UUID playerId = event.getPlayerId();
|
|
if (playerId != null) {
|
|
amountOfSpellsCastOnCurrentTurn.putIfAbsent(playerId, 0);
|
|
amountOfSpellsCastOnCurrentTurn.compute(playerId, (k, a) -> a + 1);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void reset() {
|
|
super.reset();
|
|
amountOfSpellsCastOnPrevTurn.clear();
|
|
amountOfSpellsCastOnPrevTurn.putAll(amountOfSpellsCastOnCurrentTurn);
|
|
amountOfSpellsCastOnCurrentTurn.clear();
|
|
spellsCastThisTurnInOrder.clear();
|
|
}
|
|
|
|
public Map<UUID, Integer> getAmountOfSpellsCastOnPrevTurn() {
|
|
return amountOfSpellsCastOnPrevTurn;
|
|
}
|
|
|
|
public Map<UUID, Integer> getAmountOfSpellsCastOnCurrentTurn() {
|
|
return amountOfSpellsCastOnCurrentTurn;
|
|
}
|
|
|
|
public int getAmountOfSpellsAllPlayersCastOnCurrentTurn() {
|
|
return amountOfSpellsCastOnCurrentTurn.values().stream().reduce(0, Integer::sum);
|
|
}
|
|
|
|
public int getAmountOfSpellsPlayerCastOnCurrentTurn(UUID playerId) {
|
|
return amountOfSpellsCastOnCurrentTurn.getOrDefault(playerId, 0);
|
|
}
|
|
|
|
public int getSpellOrder(MageObjectReference spell, Game game) {
|
|
int index = 0;
|
|
for (MageObjectReference mor : spellsCastThisTurnInOrder) {
|
|
index++;
|
|
if (mor.equals(spell)) {
|
|
return index;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
public int getPermanentSpellOrder(Permanent permanent, Game game) {
|
|
if (permanent == null) {
|
|
return -1;
|
|
}
|
|
int index = 0;
|
|
for (MageObjectReference mor : spellsCastThisTurnInOrder) {
|
|
index++;
|
|
if (mor.getSourceId() == permanent.getId() && mor.getZoneChangeCounter() + 1 == permanent.getZoneChangeCounter(game)) {
|
|
return index;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
}
|