forked from External/mage
* apply regex to change public copy constructors to protected * cleanup code using now protected constructors * fix manaBuilder weird casting of Mana into ConditionalMana
67 lines
1.8 KiB
Java
67 lines
1.8 KiB
Java
package mage.abilities.dynamicvalue.common;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.dynamicvalue.DynamicValue;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.filter.FilterPermanent;
|
|
import mage.game.Game;
|
|
|
|
/**
|
|
* @author North
|
|
*/
|
|
public class PermanentsOnBattlefieldCount implements DynamicValue {
|
|
|
|
private final FilterPermanent filter;
|
|
private final Integer multiplier;
|
|
|
|
public PermanentsOnBattlefieldCount() {
|
|
this(new FilterPermanent(), 1);
|
|
}
|
|
|
|
public PermanentsOnBattlefieldCount(FilterPermanent filter) {
|
|
this(filter, 1);
|
|
}
|
|
|
|
/**
|
|
* @param filter
|
|
* @param multiplier
|
|
*/
|
|
public PermanentsOnBattlefieldCount(FilterPermanent filter, Integer multiplier) {
|
|
this.filter = filter;
|
|
this.multiplier = multiplier;
|
|
}
|
|
|
|
protected PermanentsOnBattlefieldCount(final PermanentsOnBattlefieldCount dynamicValue) {
|
|
this.filter = dynamicValue.filter;
|
|
this.multiplier = dynamicValue.multiplier;
|
|
}
|
|
|
|
@Override
|
|
public int calculate(Game game, Ability sourceAbility, Effect effect) {
|
|
int value = game.getBattlefield().count(filter, sourceAbility.getControllerId(), sourceAbility, game);
|
|
if (multiplier != null) {
|
|
value *= multiplier;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
@Override
|
|
public PermanentsOnBattlefieldCount copy() {
|
|
return new PermanentsOnBattlefieldCount(this);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return multiplier == null ? "X" : multiplier.toString();
|
|
}
|
|
|
|
@Override
|
|
public String getMessage() {
|
|
return multiplier == null ? "the number of " + filter.getMessage() : filter.getMessage();
|
|
}
|
|
|
|
@Override
|
|
public int getSign() {
|
|
return multiplier == null ? 1 : multiplier;
|
|
}
|
|
}
|