forked from External/mage
55 lines
1.6 KiB
Java
55 lines
1.6 KiB
Java
|
|
package mage.abilities.condition.common;
|
|
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
import java.util.UUID;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.condition.Condition;
|
|
import mage.filter.common.FilterCreaturePermanent;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
* Condition for:
|
|
* - if you control the creature with the greatest power or tied for the greatest power
|
|
*
|
|
* @author noxx
|
|
*/
|
|
public enum ControlsCreatureGreatestPowerCondition implements Condition {
|
|
|
|
instance;
|
|
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
|
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Set<UUID> controllers = new HashSet<>();
|
|
Integer maxPower = null;
|
|
|
|
List<Permanent> permanents = game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), game);
|
|
for (Permanent permanent : permanents) {
|
|
if (permanent == null) {
|
|
continue;
|
|
}
|
|
|
|
int power = permanent.getPower().getValue();
|
|
if (maxPower == null || power > maxPower) {
|
|
maxPower = permanent.getPower().getValue();
|
|
controllers.clear();
|
|
}
|
|
if (power == maxPower) {
|
|
controllers.add(permanent.getControllerId());
|
|
}
|
|
}
|
|
return controllers.contains(source.getControllerId());
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "you control the creature with the greatest power or tied for the greatest power";
|
|
}
|
|
|
|
}
|