forked from External/mage
51 lines
1.3 KiB
Java
51 lines
1.3 KiB
Java
package mage.watchers.common;
|
|
|
|
import mage.constants.PhaseStep;
|
|
import mage.constants.WatcherScope;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
import mage.watchers.Watcher;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author LevelX2
|
|
* <p>
|
|
* Counts cards drawn during draw step
|
|
*/
|
|
|
|
public class CardsDrawnDuringDrawStepWatcher extends Watcher {
|
|
|
|
private final Map<UUID, Integer> amountOfCardsDrawnThisTurn = new HashMap<>();
|
|
|
|
public CardsDrawnDuringDrawStepWatcher() {
|
|
super(WatcherScope.GAME);
|
|
}
|
|
|
|
@Override
|
|
public void watch(GameEvent event, Game game) {
|
|
if (event.getType() == GameEvent.EventType.DREW_CARD
|
|
&& game.getPhase() != null
|
|
&& game.getPhase().getStep().getType() == PhaseStep.DRAW) {
|
|
UUID playerId = event.getPlayerId();
|
|
if (playerId != null) {
|
|
amountOfCardsDrawnThisTurn.putIfAbsent(playerId, 0);
|
|
amountOfCardsDrawnThisTurn.compute(playerId, (k, amount) -> amount + 1);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
public int getAmountCardsDrawn(UUID playerId) {
|
|
return amountOfCardsDrawnThisTurn.getOrDefault(playerId, 0);
|
|
}
|
|
|
|
@Override
|
|
public void reset() {
|
|
super.reset();
|
|
amountOfCardsDrawnThisTurn.clear();
|
|
}
|
|
|
|
}
|