redesigned evasion abilities and added restriction and requirement effects

This commit is contained in:
BetaSteward 2010-12-19 00:56:45 -05:00
parent ab1f0b5f11
commit 0ce1f50734
44 changed files with 839 additions and 356 deletions

View file

@ -146,7 +146,9 @@ public final class Constants {
REPLACEMENT("Replacement Effect"),
PREVENTION("Prevention Effect"),
REDIRECTION("Redirection Effect"),
ASTHOUGH("As Though Effect");
ASTHOUGH("As Though Effect"),
RESTRICTION("Restriction Effect"),
REQUIREMENT("Requirement Effect");
private String text;
@ -176,7 +178,8 @@ public final class Constants {
WhileOnBattlefield(""),
WhileOnStack(""),
EndOfTurn("until end of turn"),
EndOfCombat("until end of combat");
EndOfCombat("until end of combat"),
Custom("");
private String text;

View file

@ -55,6 +55,7 @@ public interface Abilities<T extends Ability> extends List<T>, Serializable {
public boolean containsKey(UUID abilityId);
public T get(UUID abilityId);
public boolean contains(T ability);
public boolean containsAll(Abilities<T> abilities);
public Abilities<T> copy();

View file

@ -177,19 +177,22 @@ public class AbilitiesImpl<T extends Ability> extends ArrayList<T> implements Ab
}
}
@Override
public boolean contains(T ability) {
for (T test: this) {
if (ability.getId().equals(test.getId()) || ability.getRule().equals(test.getRule())) {
return true;
}
}
return false;
}
@Override
public boolean containsAll(Abilities<T> abilities) {
if (this.size() < abilities.size())
return false;
for (T ability: abilities) {
boolean found = false;
for (T test: this) {
if (ability.getId().equals(test.getId()) || ability.getRule().equals(test.getRule())) {
found = true;
break;
}
}
if (!found)
if (!contains(ability))
return false;
}
return true;

View file

@ -28,16 +28,21 @@
package mage.abilities;
import java.util.UUID;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.Constants.AbilityType;
import mage.Constants.Zone;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public interface EvasionAbility extends Ability {
public abstract class EvasionAbility<T extends EvasionAbility<T>> extends StaticAbility<T> {
public boolean canBlock(Permanent blocker, Game game);
public EvasionAbility() {
super(AbilityType.EVASION, Zone.BATTLEFIELD);
}
public EvasionAbility(final EvasionAbility ability) {
super(ability);
}
}

View file

@ -1,48 +0,0 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.abilities;
import mage.Constants.AbilityType;
import mage.Constants.Zone;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public abstract class EvasionAbilityImpl<T extends EvasionAbilityImpl<T>> extends StaticAbility<T> implements EvasionAbility {
public EvasionAbilityImpl() {
super(AbilityType.EVASION, Zone.BATTLEFIELD);
}
public EvasionAbilityImpl(final EvasionAbilityImpl ability) {
super(ability);
}
}

View file

@ -29,15 +29,9 @@
package mage.abilities.common;
import mage.Constants.Duration;
import mage.Constants.Outcome;
import mage.Constants.Zone;
import mage.abilities.Ability;
import mage.abilities.StaticAbility;
import mage.abilities.effects.RequirementAttackEffect;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetDefender;
import mage.abilities.effects.common.AttacksIfAbleSourceEffect;
/**
*
@ -46,7 +40,7 @@ import mage.target.common.TargetDefender;
public class AttacksEachTurnStaticAbility extends StaticAbility<AttacksEachTurnStaticAbility> {
public AttacksEachTurnStaticAbility() {
super(Zone.BATTLEFIELD, new AttacksEachTurnEffect());
super(Zone.BATTLEFIELD, new AttacksIfAbleSourceEffect(Duration.WhileOnBattlefield));
}
public AttacksEachTurnStaticAbility(AttacksEachTurnStaticAbility ability) {
@ -59,41 +53,3 @@ public class AttacksEachTurnStaticAbility extends StaticAbility<AttacksEachTurnS
}
}
class AttacksEachTurnEffect extends RequirementAttackEffect<AttacksEachTurnEffect> {
public AttacksEachTurnEffect() {
super(Duration.WhileOnBattlefield);
}
public AttacksEachTurnEffect(final AttacksEachTurnEffect effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent creature = game.getPermanent(source.getSourceId());
if (creature != null) {
if (creature.canAttack(game)) {
TargetDefender target = new TargetDefender(game.getCombat().getDefenders(), creature.getControllerId());
target.setRequired(true);
Player controller = game.getPlayer(creature.getControllerId());
while (!target.isChosen())
controller.chooseTarget(Outcome.Damage, target, source, game);
game.getCombat().declareAttacker(creature.getId(), target.getFirstTarget(), game);
return true;
}
}
return false;
}
@Override
public String getText(Ability source) {
return "{this} attacks each turn if able.";
}
@Override
public AttacksEachTurnEffect copy() {
return new AttacksEachTurnEffect(this);
}
}

View file

@ -48,6 +48,7 @@ public interface ContinuousEffect<T extends ContinuousEffect<T>> extends Effect<
public void newId();
public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game);
public boolean hasLayer(Layer layer);
public boolean isInactive(Ability source, Game game);
public void init(Ability source, Game game);
}

View file

@ -145,4 +145,9 @@ public abstract class ContinuousEffectImpl<T extends ContinuousEffectImpl<T>> ex
}
}
@Override
public boolean isInactive(Ability source, Game game) {
return false;
}
}

View file

@ -45,6 +45,7 @@ import mage.Constants.Layer;
import mage.Constants.SubLayer;
import mage.Constants.Zone;
import mage.abilities.Ability;
import mage.abilities.StaticAbility;
import mage.cards.Card;
import mage.game.Game;
import mage.game.events.GameEvent;
@ -61,6 +62,8 @@ public class ContinuousEffects implements Serializable {
private final List<ContinuousEffect> layeredEffects = new ArrayList<ContinuousEffect>();
private final List<ReplacementEffect> replacementEffects = new ArrayList<ReplacementEffect>();
private final List<PreventionEffect> preventionEffects = new ArrayList<PreventionEffect>();
private final List<RequirementEffect> requirementEffects = new ArrayList<RequirementEffect>();
private final List<RestrictionEffect> restrictionEffects = new ArrayList<RestrictionEffect>();
private final List<AsThoughEffect> asThoughEffects = new ArrayList<AsThoughEffect>();
//map Abilities to Continuous effects
@ -86,6 +89,12 @@ public class ContinuousEffects implements Serializable {
for (PreventionEffect entry: effect.preventionEffects) {
preventionEffects.add((PreventionEffect)entry.copy());
}
for (RequirementEffect entry: effect.requirementEffects) {
requirementEffects.add((RequirementEffect)entry.copy());
}
for (RestrictionEffect entry: effect.restrictionEffects) {
restrictionEffects.add((RestrictionEffect)entry.copy());
}
for (AsThoughEffect entry: effect.asThoughEffects) {
asThoughEffects.add((AsThoughEffect)entry.copy());
}
@ -98,6 +107,18 @@ public class ContinuousEffects implements Serializable {
return new ContinuousEffects(this);
}
public List<RequirementEffect> getRequirementEffects() {
return requirementEffects;
}
public List<RestrictionEffect> getRestrictionEffects() {
return restrictionEffects;
}
public Ability getAbility(UUID effectId) {
return abilityMap.get(effectId);
}
public void removeEndOfTurnEffects() {
for (Iterator<ContinuousEffect> i = layeredEffects.iterator(); i.hasNext();) {
ContinuousEffect entry = i.next();
@ -114,6 +135,16 @@ public class ContinuousEffects implements Serializable {
if (entry.getDuration() == Duration.EndOfTurn)
i.remove();
}
for (Iterator<RequirementEffect> i = requirementEffects.iterator(); i.hasNext();) {
ContinuousEffect entry = i.next();
if (entry.getDuration() == Duration.EndOfTurn)
i.remove();
}
for (Iterator<RestrictionEffect> i = restrictionEffects.iterator(); i.hasNext();) {
ContinuousEffect entry = i.next();
if (entry.getDuration() == Duration.EndOfTurn)
i.remove();
}
for (Iterator<AsThoughEffect> i = asThoughEffects.iterator(); i.hasNext();) {
ContinuousEffect entry = i.next();
if (entry.getDuration() == Duration.EndOfTurn)
@ -123,47 +154,44 @@ public class ContinuousEffects implements Serializable {
public void removeInactiveEffects(Game game) {
for (Iterator<ContinuousEffect> i = layeredEffects.iterator(); i.hasNext();) {
ContinuousEffect entry = i.next();
if (entry.getDuration() == Duration.WhileOnBattlefield) {
Permanent permanent = game.getPermanent(abilityMap.get(entry.getId()).getSourceId());
if (permanent == null || !permanent.isPhasedIn())
i.remove();
}
else if (entry.getDuration() == Duration.OneUse && entry.isUsed())
if (isInactive(i.next(), game))
i.remove();
}
for (Iterator<ReplacementEffect> i = replacementEffects.iterator(); i.hasNext();) {
ReplacementEffect entry = i.next();
if (entry.getDuration() == Duration.WhileOnBattlefield) {
Permanent permanent = game.getPermanent(abilityMap.get(entry.getId()).getSourceId());
if (permanent == null || !permanent.isPhasedIn())
i.remove();
}
else if (entry.getDuration() == Duration.OneUse && entry.isUsed())
if (isInactive(i.next(), game))
i.remove();
}
for (Iterator<PreventionEffect> i = preventionEffects.iterator(); i.hasNext();) {
PreventionEffect entry = i.next();
if (entry.getDuration() == Duration.WhileOnBattlefield) {
Permanent permanent = game.getPermanent(abilityMap.get(entry.getId()).getSourceId());
if (permanent == null || !permanent.isPhasedIn())
i.remove();
}
else if (entry.getDuration() == Duration.OneUse && entry.isUsed())
if (isInactive(i.next(), game))
i.remove();
}
for (Iterator<RequirementEffect> i = requirementEffects.iterator(); i.hasNext();) {
if (isInactive(i.next(), game))
i.remove();
}
for (Iterator<RestrictionEffect> i = restrictionEffects.iterator(); i.hasNext();) {
if (isInactive(i.next(), game))
i.remove();
}
for (Iterator<AsThoughEffect> i = asThoughEffects.iterator(); i.hasNext();) {
AsThoughEffect entry = i.next();
if (entry.getDuration() == Duration.WhileOnBattlefield) {
Permanent permanent = game.getPermanent(abilityMap.get(entry.getId()).getSourceId());
if (permanent == null || !permanent.isPhasedIn())
i.remove();
}
else if (entry.getDuration() == Duration.OneUse && entry.isUsed())
if (isInactive(i.next(), game))
i.remove();
}
}
private boolean isInactive(ContinuousEffect effect, Game game) {
switch(effect.getDuration()) {
case WhileOnBattlefield:
Permanent permanent = game.getPermanent(abilityMap.get(effect.getId()).getSourceId());
return (permanent == null || !permanent.isPhasedIn());
case OneUse:
return effect.isUsed();
case Custom:
return effect.isInactive(abilityMap.get(effect.getId()), game);
}
return false;
}
private List<ContinuousEffect> getLayeredEffects(Game game) {
List<ContinuousEffect> layerEffects = new ArrayList<ContinuousEffect>(layeredEffects);
for (Card card: game.getCards()) {
@ -197,6 +225,46 @@ public class ContinuousEffects implements Serializable {
return layerEffects;
}
public List<RequirementEffect> getApplicableRequirementEffects(Permanent permanent, Game game) {
List<RequirementEffect> effects = new ArrayList<RequirementEffect>();
//get all applicable Requirement effects on the battlefield
for (Permanent perm: game.getBattlefield().getActivePermanents(permanent.getControllerId(), game)) {
for (StaticAbility ability: perm.getAbilities().getStaticAbilities(Zone.BATTLEFIELD)) {
for (Effect effect: ability.getEffects(EffectType.REQUIREMENT)) {
if (((RequirementEffect)effect).applies(permanent, ability, game)) {
effects.add((RequirementEffect) effect);
abilityMap.put(effect.getId(), ability);
}
}
}
}
for (RequirementEffect effect: requirementEffects) {
if (effect.applies(permanent, abilityMap.get(effect.getId()), game))
effects.add(effect);
}
return effects;
}
public List<RestrictionEffect> getApplicableRestrictionEffects(Permanent permanent, Game game) {
List<RestrictionEffect> effects = new ArrayList<RestrictionEffect>();
//get all applicable Restriction effects on the battlefield
for (Permanent perm: game.getBattlefield().getActivePermanents(permanent.getControllerId(), game)) {
for (StaticAbility ability: perm.getAbilities().getStaticAbilities(Zone.BATTLEFIELD)) {
for (Effect effect: ability.getEffects(EffectType.RESTRICTION)) {
if (((RestrictionEffect)effect).applies(permanent, ability, game)) {
effects.add((RestrictionEffect) effect);
abilityMap.put(effect.getId(), ability);
}
}
}
}
for (RestrictionEffect effect: restrictionEffects) {
if (effect.applies(permanent, abilityMap.get(effect.getId()), game))
effects.add(effect);
}
return effects;
}
/**
*
* @param event
@ -391,6 +459,16 @@ public class ContinuousEffects implements Serializable {
preventionEffects.add(newPreventionEffect);
abilityMap.put(newPreventionEffect.getId(), source);
break;
case RESTRICTION:
RestrictionEffect newRestrictionEffect = (RestrictionEffect)effect;
restrictionEffects.add(newRestrictionEffect);
abilityMap.put(newRestrictionEffect.getId(), source);
break;
case REQUIREMENT:
RequirementEffect newRequirementEffect = (RequirementEffect)effect;
requirementEffects.add(newRequirementEffect);
abilityMap.put(newRequirementEffect.getId(), source);
break;
case ASTHOUGH:
AsThoughEffect newAsThoughEffect = (AsThoughEffect)effect;
asThoughEffects.add(newAsThoughEffect);

View file

@ -0,0 +1,73 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.abilities.effects;
import java.util.UUID;
import mage.Constants.Duration;
import mage.Constants.EffectType;
import mage.Constants.Outcome;
import mage.abilities.Ability;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public abstract class RequirementEffect<T extends RequirementEffect<T>> extends ContinuousEffectImpl<T> {
public RequirementEffect(Duration duration) {
super(duration, Outcome.Detriment);
this.effectType = EffectType.REQUIREMENT;
}
public RequirementEffect(final RequirementEffect effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
throw new UnsupportedOperationException("Not supported.");
}
public abstract boolean applies(Permanent permanent, Ability source, Game game);
public abstract boolean mustAttack(Game game);
public abstract boolean mustBlock(Game game);
public UUID mustAttackDefender(Ability source, Game game) {
return null;
}
public UUID mustBlockAttacker(Ability source, Game game) {
return null;
}
}

View file

@ -29,38 +29,40 @@
package mage.abilities.effects;
import mage.Constants.Duration;
import mage.Constants.EffectType;
import mage.Constants.Outcome;
import mage.abilities.Ability;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.events.GameEvent.EventType;
import mage.game.permanent.Permanent;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public abstract class RequirementAttackEffect<T extends RequirementAttackEffect<T>> extends ReplacementEffectImpl<T> {
public abstract class RestrictionEffect<T extends RestrictionEffect<T>> extends ContinuousEffectImpl<T> {
public RequirementAttackEffect(Duration duration) {
public RestrictionEffect(Duration duration) {
super(duration, Outcome.Detriment);
this.effectType = EffectType.RESTRICTION;
}
public RequirementAttackEffect(final RequirementAttackEffect effect) {
public RestrictionEffect(final RestrictionEffect effect) {
super(effect);
}
@Override
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
apply(game, source);
return false;
public boolean apply(Game game, Ability source) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public boolean applies(GameEvent event, Ability source, Game game) {
if (event.getType().equals(EventType.DECLARE_ATTACKERS_STEP_PRE))
return true;
return false;
public abstract boolean applies(Permanent permanent, Ability source, Game game);
public boolean canAttack(Game game) {
return true;
}
public boolean canBlock(Permanent blocker, Game game) {
return true;
}
}

View file

@ -0,0 +1,82 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.abilities.effects.common;
import mage.Constants.Duration;
import mage.abilities.Ability;
import mage.abilities.effects.RequirementEffect;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class AttacksIfAbleSourceEffect extends RequirementEffect<AttacksIfAbleSourceEffect> {
public AttacksIfAbleSourceEffect(Duration duration) {
super(duration);
}
public AttacksIfAbleSourceEffect(final AttacksIfAbleSourceEffect effect) {
super(effect);
}
@Override
public AttacksIfAbleSourceEffect copy() {
return new AttacksIfAbleSourceEffect(this);
}
@Override
public boolean applies(Permanent permanent, Ability source, Game game) {
if (permanent.getId().equals(source.getSourceId())) {
return true;
}
return false;
}
@Override
public boolean mustAttack(Game game) {
return true;
}
@Override
public boolean mustBlock(Game game) {
return false;
}
@Override
public String getText(Ability source) {
if (this.duration == Duration.EndOfTurn)
return "{this} attacks this turn if able";
else
return "{this} attacks each turn if able";
}
}

View file

@ -29,22 +29,19 @@
package mage.abilities.effects.common;
import mage.Constants.Duration;
import mage.Constants.Outcome;
import mage.abilities.Ability;
import mage.abilities.effects.RequirementAttackEffect;
import mage.abilities.effects.RequirementEffect;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetDefender;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class AttacksIfAbleTargetEffect extends RequirementAttackEffect<AttacksIfAbleTargetEffect> {
public class AttacksIfAbleTargetEffect extends RequirementEffect<AttacksIfAbleTargetEffect> {
public AttacksIfAbleTargetEffect() {
super(Duration.EndOfTurn);
public AttacksIfAbleTargetEffect(Duration duration) {
super(duration);
}
public AttacksIfAbleTargetEffect(final AttacksIfAbleTargetEffect effect) {
@ -57,24 +54,30 @@ public class AttacksIfAbleTargetEffect extends RequirementAttackEffect<AttacksIf
}
@Override
public boolean apply(Game game, Ability source) {
public boolean applies(Permanent permanent, Ability source, Game game) {
Permanent creature = game.getPermanent(source.getFirstTarget());
if (creature != null) {
if (creature.canAttack(game)) {
TargetDefender target = new TargetDefender(game.getCombat().getDefenders(), creature.getControllerId());
target.setRequired(true);
Player controller = game.getPlayer(creature.getControllerId());
while (!target.isChosen())
controller.chooseTarget(Outcome.Damage, target, source, game);
game.getCombat().declareAttacker(creature.getId(), target.getFirstTarget(), game);
return true;
}
if (creature != null && creature.getId().equals(permanent.getId())) {
return true;
}
return false;
}
@Override
public String getText(Ability source) {
return "Target " + source.getTargets().get(0).getTargetName() + " attacks this turn if able";
public boolean mustAttack(Game game) {
return true;
}
@Override
public boolean mustBlock(Game game) {
return false;
}
@Override
public String getText(Ability source) {
if (this.duration == Duration.EndOfTurn)
return "Target " + source.getTargets().get(0).getTargetName() + " attacks this turn if able";
else
return "Target " + source.getTargets().get(0).getTargetName() + " attacks each turn if able";
}
}

View file

@ -0,0 +1,69 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.abilities.effects.common;
import mage.Constants.Duration;
import mage.abilities.Ability;
import mage.abilities.effects.RestrictionEffect;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class CantAttackSourceEffect extends RestrictionEffect<CantAttackSourceEffect> {
public CantAttackSourceEffect(Duration duration) {
super(duration);
}
public CantAttackSourceEffect(final CantAttackSourceEffect effect) {
super(effect);
}
@Override
public boolean applies(Permanent permanent, Ability source, Game game) {
if (permanent.getId().equals(source.getSourceId())) {
return true;
}
return false;
}
@Override
public boolean canAttack(Game game) {
return false;
}
@Override
public CantAttackSourceEffect copy() {
return new CantAttackSourceEffect(this);
}
}

View file

@ -0,0 +1,69 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.abilities.effects.common;
import mage.Constants.Duration;
import mage.abilities.Ability;
import mage.abilities.effects.RestrictionEffect;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class CantBlockSourceEffect extends RestrictionEffect<CantBlockSourceEffect> {
public CantBlockSourceEffect(Duration duration) {
super(duration);
}
public CantBlockSourceEffect(final CantBlockSourceEffect effect) {
super(effect);
}
@Override
public boolean applies(Permanent permanent, Ability source, Game game) {
if (permanent.getId().equals(source.getSourceId())) {
return true;
}
return false;
}
@Override
public boolean canBlock(Permanent blocker, Game game) {
return false;
}
@Override
public CantBlockSourceEffect copy() {
return new CantBlockSourceEffect(this);
}
}

View file

@ -28,55 +28,51 @@
package mage.abilities.effects.common;
import java.util.UUID;
import mage.Constants.Duration;
import mage.abilities.Ability;
import mage.abilities.effects.RequirementBlockEffect;
import mage.filter.common.FilterCreaturePermanent;
import mage.abilities.effects.RequirementEffect;
import mage.game.Game;
import mage.game.combat.CombatGroup;
import mage.game.permanent.Permanent;
import mage.players.Player;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class MustBlockSourceEffect extends RequirementBlockEffect<MustBlockSourceEffect> {
public class MustBlockSourceEffect extends RequirementEffect<MustBlockSourceEffect> {
public MustBlockSourceEffect() {
super(Duration.WhileOnBattlefield);
}
public MustBlockSourceEffect(Duration duration) {
super(duration);
}
public MustBlockSourceEffect(final MustBlockSourceEffect effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
CombatGroup group = game.getCombat().findGroup(source.getSourceId());
if (group != null) {
Player defender = null;
if (group.isDefenderIsPlaneswalker()) {
Permanent planeswalker = game.getPermanent(group.getDefenderId());
if (planeswalker != null) {
defender = game.getPlayer(planeswalker.getControllerId());
}
}
else {
defender = game.getPlayer(group.getDefenderId());
}
if (defender != null) {
for (Permanent creature: game.getBattlefield().getAllActivePermanents(FilterCreaturePermanent.getDefault(), defender.getId())) {
if (group.canBlock(creature, game)) {
group.addBlocker(creature.getId(), creature.getControllerId(), game);
}
}
return true;
}
}
public boolean applies(Permanent permanent, Ability source, Game game) {
return true;
}
@Override
public boolean mustAttack(Game game) {
return false;
}
@Override
public boolean mustBlock(Game game) {
return true;
}
@Override
public UUID mustBlockAttacker(Ability source, Game game) {
return source.getSourceId();
}
@Override
public MustBlockSourceEffect copy() {
return new MustBlockSourceEffect(this);

View file

@ -29,7 +29,10 @@
package mage.abilities.keyword;
import java.io.ObjectStreamException;
import mage.abilities.EvasionAbilityImpl;
import mage.Constants.Duration;
import mage.abilities.Ability;
import mage.abilities.EvasionAbility;
import mage.abilities.effects.RestrictionEffect;
import mage.game.Game;
import mage.game.permanent.Permanent;
@ -37,7 +40,7 @@ import mage.game.permanent.Permanent;
*
* @author BetaSteward_at_googlemail.com
*/
public class FlyingAbility extends EvasionAbilityImpl<FlyingAbility> {
public class FlyingAbility extends EvasionAbility<FlyingAbility> {
private static final FlyingAbility fINSTANCE = new FlyingAbility();
@ -49,13 +52,8 @@ public class FlyingAbility extends EvasionAbilityImpl<FlyingAbility> {
return fINSTANCE;
}
private FlyingAbility() {}
@Override
public boolean canBlock(Permanent blocker, Game game) {
if (blocker.getAbilities().containsKey(id) || blocker.getAbilities().containsKey(ReachAbility.getInstance().getId()))
return true;
return false;
private FlyingAbility() {
this.addEffect(new FlyingEffect());
}
@Override
@ -69,3 +67,35 @@ public class FlyingAbility extends EvasionAbilityImpl<FlyingAbility> {
}
}
class FlyingEffect extends RestrictionEffect<FlyingEffect> {
public FlyingEffect() {
super(Duration.WhileOnBattlefield);
}
public FlyingEffect(final FlyingEffect effect) {
super(effect);
}
@Override
public boolean applies(Permanent permanent, Ability source, Game game) {
if (permanent.getAbilities().containsKey(FlyingAbility.getInstance().getId())) {
return true;
}
return false;
}
@Override
public boolean canBlock(Permanent blocker, Game game) {
if (blocker.getAbilities().containsKey(FlyingAbility.getInstance().getId()) || blocker.getAbilities().containsKey(ReachAbility.getInstance().getId()))
return true;
return false;
}
@Override
public FlyingEffect copy() {
return new FlyingEffect(this);
}
}

View file

@ -38,20 +38,23 @@ import mage.filter.common.FilterLandPermanent;
*/
public class ForestwalkAbility extends LandwalkAbility {
private static final ForestwalkAbility fINSTANCE = new ForestwalkAbility();
private static FilterLandPermanent filter = new FilterLandPermanent("Forest");
private Object readResolve() throws ObjectStreamException {
return fINSTANCE;
}
public static ForestwalkAbility getInstance() {
return fINSTANCE;
}
private ForestwalkAbility() {
filter = new FilterLandPermanent("Forest");
static {
filter.getSubtype().add("Forest");
filter.setScopeSubtype(ComparisonScope.Any);
}
public ForestwalkAbility() {
super(filter);
}
public ForestwalkAbility(final ForestwalkAbility ability) {
super(ability);
}
@Override
public ForestwalkAbility copy() {
return new ForestwalkAbility(this);
}
}

View file

@ -38,20 +38,23 @@ import mage.filter.common.FilterLandPermanent;
*/
public class IslandwalkAbility extends LandwalkAbility {
private static final IslandwalkAbility fINSTANCE = new IslandwalkAbility();
private static final IslandwalkAbility fINSTANCE = new IslandwalkAbility(); private static FilterLandPermanent filter = new FilterLandPermanent("Island");
private Object readResolve() throws ObjectStreamException {
return fINSTANCE;
}
public static IslandwalkAbility getInstance() {
return fINSTANCE;
}
private IslandwalkAbility() {
filter = new FilterLandPermanent("Island");
static {
filter.getSubtype().add("Island");
filter.setScopeSubtype(ComparisonScope.Any);
}
public IslandwalkAbility() {
super(filter);
}
public IslandwalkAbility(final IslandwalkAbility ability) {
super(ability);
}
@Override
public IslandwalkAbility copy() {
return new IslandwalkAbility(this);
}
}

View file

@ -28,7 +28,10 @@
package mage.abilities.keyword;
import mage.abilities.EvasionAbilityImpl;
import mage.Constants.Duration;
import mage.abilities.Ability;
import mage.abilities.EvasionAbility;
import mage.abilities.effects.RestrictionEffect;
import mage.filter.common.FilterLandPermanent;
import mage.game.Game;
import mage.game.permanent.Permanent;
@ -37,19 +40,14 @@ import mage.game.permanent.Permanent;
*
* @author BetaSteward_at_googlemail.com
*/
public class LandwalkAbility extends EvasionAbilityImpl<LandwalkAbility> {
protected FilterLandPermanent filter;
protected LandwalkAbility() {}
public class LandwalkAbility extends EvasionAbility<LandwalkAbility> {
public LandwalkAbility(FilterLandPermanent filter) {
this.filter = filter;
this.addEffect(new LandwalkEffect(filter));
}
public LandwalkAbility(final LandwalkAbility ability) {
super(ability);
this.filter = ability.filter.copy();
}
@Override
@ -57,14 +55,43 @@ public class LandwalkAbility extends EvasionAbilityImpl<LandwalkAbility> {
return new LandwalkAbility(this);
}
}
class LandwalkEffect extends RestrictionEffect<LandwalkEffect> {
protected FilterLandPermanent filter;
public LandwalkEffect(FilterLandPermanent filter) {
super(Duration.WhileOnBattlefield);
this.filter = filter;
}
public LandwalkEffect(final LandwalkEffect effect) {
super(effect);
this.filter = effect.filter.copy();
}
@Override
public boolean canBlock(Permanent blocker, Game game) {
return game.getBattlefield().countAll(filter, blocker.getControllerId()) == 0;
}
@Override
public String getRule() {
public boolean applies(Permanent permanent, Ability source, Game game) {
if (permanent.getId().equals(source.getSourceId())) {
return true;
}
return false;
}
@Override
public LandwalkEffect copy() {
return new LandwalkEffect(this);
}
@Override
public String getText(Ability source) {
return filter.getMessage() + "walk";
}
}
}

View file

@ -38,20 +38,23 @@ import mage.filter.common.FilterLandPermanent;
*/
public class MountainwalkAbility extends LandwalkAbility {
private static final MountainwalkAbility fINSTANCE = new MountainwalkAbility();
private static FilterLandPermanent filter = new FilterLandPermanent("Mountain");
private Object readResolve() throws ObjectStreamException {
return fINSTANCE;
}
public static MountainwalkAbility getInstance() {
return fINSTANCE;
}
private MountainwalkAbility() {
filter = new FilterLandPermanent("Mountain");
static {
filter.getSubtype().add("Mountain");
filter.setScopeSubtype(ComparisonScope.Any);
}
public MountainwalkAbility() {
super(filter);
}
public MountainwalkAbility(final MountainwalkAbility ability) {
super(ability);
}
@Override
public MountainwalkAbility copy() {
return new MountainwalkAbility(this);
}
}

View file

@ -38,20 +38,23 @@ import mage.filter.common.FilterLandPermanent;
*/
public class SwampwalkAbility extends LandwalkAbility {
private static final SwampwalkAbility fINSTANCE = new SwampwalkAbility();
private static FilterLandPermanent filter = new FilterLandPermanent("Swamp");
private Object readResolve() throws ObjectStreamException {
return fINSTANCE;
}
public static SwampwalkAbility getInstance() {
return fINSTANCE;
}
private SwampwalkAbility() {
filter = new FilterLandPermanent("Swamp");
static {
filter.getSubtype().add("Swamp");
filter.setScopeSubtype(ComparisonScope.Any);
}
public SwampwalkAbility() {
super(filter);
}
public SwampwalkAbility(final SwampwalkAbility ability) {
super(ability);
}
@Override
public SwampwalkAbility copy() {
return new SwampwalkAbility(this);
}
}

View file

@ -29,7 +29,10 @@
package mage.abilities.keyword;
import java.io.ObjectStreamException;
import mage.abilities.EvasionAbilityImpl;
import mage.Constants.Duration;
import mage.abilities.Ability;
import mage.abilities.EvasionAbility;
import mage.abilities.effects.RestrictionEffect;
import mage.game.Game;
import mage.game.permanent.Permanent;
@ -37,7 +40,7 @@ import mage.game.permanent.Permanent;
*
* @author BetaSteward_at_googlemail.com
*/
public class UnblockableAbility extends EvasionAbilityImpl<UnblockableAbility> {
public class UnblockableAbility extends EvasionAbility<UnblockableAbility> {
private static final UnblockableAbility fINSTANCE = new UnblockableAbility();
@ -49,11 +52,8 @@ public class UnblockableAbility extends EvasionAbilityImpl<UnblockableAbility> {
return fINSTANCE;
}
private UnblockableAbility() {}
@Override
public boolean canBlock(Permanent blocker, Game game) {
return false;
private UnblockableAbility() {
this.addEffect(new UnblockableEffect());
}
@Override
@ -67,3 +67,33 @@ public class UnblockableAbility extends EvasionAbilityImpl<UnblockableAbility> {
}
}
class UnblockableEffect extends RestrictionEffect<UnblockableEffect> {
public UnblockableEffect() {
super(Duration.WhileOnBattlefield);
}
public UnblockableEffect(final UnblockableEffect effect) {
super(effect);
}
@Override
public boolean applies(Permanent permanent, Ability source, Game game) {
if (permanent.getId().equals(source.getSourceId())) {
return true;
}
return false;
}
@Override
public boolean canBlock(Permanent blocker, Game game) {
return false;
}
@Override
public UnblockableEffect copy() {
return new UnblockableEffect(this);
}
}

View file

@ -34,13 +34,18 @@ import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.UUID;
import mage.Constants.Outcome;
import mage.abilities.effects.RequirementEffect;
import mage.abilities.keyword.VigilanceAbility;
import mage.filter.common.FilterCreatureForAttack;
import mage.filter.common.FilterCreatureForCombat;
import mage.filter.common.FilterPlaneswalkerPermanent;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.players.PlayerList;
import mage.target.common.TargetDefender;
import mage.util.Copyable;
@ -51,6 +56,8 @@ import mage.util.Copyable;
public class Combat implements Serializable, Copyable<Combat> {
private static FilterPlaneswalkerPermanent filterPlaneswalker = new FilterPlaneswalkerPermanent();
private static FilterCreatureForAttack filterAttackers = new FilterCreatureForAttack();
private static FilterCreatureForCombat filterBlockers = new FilterCreatureForCombat();
protected List<CombatGroup> groups = new ArrayList<CombatGroup>();
protected Set<UUID> defenders = new HashSet<UUID>();
@ -113,14 +120,46 @@ public class Combat implements Serializable, Copyable<Combat> {
public void selectAttackers(Game game) {
if (!game.replaceEvent(GameEvent.getEvent(GameEvent.EventType.DECLARING_ATTACKERS, attackerId, attackerId))) {
game.getPlayer(attackerId).selectAttackers(game);
Player player = game.getPlayer(attackerId);
//20101001 - 508.1d
checkAttackRequirements(player, game);
player.selectAttackers(game);
game.fireEvent(GameEvent.getEvent(GameEvent.EventType.DECLARED_ATTACKERS, attackerId, attackerId));
game.fireInformEvent(game.getPlayer(attackerId).getName() + " attacks with " + groups.size() + " creatures");
game.fireInformEvent(player.getName() + " attacks with " + groups.size() + " creatures");
}
}
protected void checkAttackRequirements(Player player, Game game) {
//20101001 - 508.1d
for (Permanent creature: game.getBattlefield().getAllActivePermanents(filterAttackers, player.getId())) {
for (RequirementEffect effect: game.getContinuousEffects().getApplicableRequirementEffects(creature, game)) {
if (effect.mustAttack(game)) {
UUID defenderId = effect.mustAttackDefender(game.getContinuousEffects().getAbility(effect.getId()), game);
if (defenderId == null) {
if (defenders.size() == 1) {
player.declareAttacker(creature.getId(), defenders.iterator().next(), game);
}
else {
TargetDefender target = new TargetDefender(defenders, creature.getId());
target.setRequired(true);
if (player.chooseTarget(Outcome.Damage, target, null, game)) {
player.declareAttacker(creature.getId(), target.getFirstTarget(), game);
}
}
}
else {
player.declareAttacker(creature.getId(), defenderId, game);
}
}
}
}
}
public void selectBlockers(Game game) {
if (!game.replaceEvent(GameEvent.getEvent(GameEvent.EventType.DECLARING_BLOCKERS, attackerId, attackerId))) {
Player player = game.getPlayer(attackerId);
//20101001 - 509.1c
checkBlockRequirements(player, game);
for (UUID defenderId: getPlayerDefenders(game)) {
game.getPlayer(defenderId).selectBlockers(game);
game.fireEvent(GameEvent.getEvent(GameEvent.EventType.DECLARED_BLOCKERS, defenderId, defenderId));
@ -128,6 +167,24 @@ public class Combat implements Serializable, Copyable<Combat> {
}
}
protected void checkBlockRequirements(Player player, Game game) {
//20101001 - 509.1c
//TODO: handle case where more than one attacker must be blocked
for (Permanent creature: game.getBattlefield().getActivePermanents(filterBlockers, player.getId(), game)) {
if (game.getOpponents(attackerId).contains(creature.getControllerId())) {
for (RequirementEffect effect: game.getContinuousEffects().getApplicableRequirementEffects(creature, game)) {
if (effect.mustBlock(game)) {
UUID attackId = effect.mustBlockAttacker(game.getContinuousEffects().getAbility(effect.getId()), game);
Player defender = game.getPlayer(creature.getControllerId());
if (attackId != null && defender != null) {
defender.declareBlocker(creature.getId(), attackId, game);
}
}
}
}
}
}
public void setDefenders(Game game) {
Set<UUID> opponents = game.getOpponents(attackerId);
PlayerList players;

View file

@ -37,6 +37,7 @@ import mage.MageObject;
import mage.abilities.Ability;
import mage.abilities.EvasionAbility;
import mage.abilities.TriggeredAbility;
import mage.abilities.effects.RestrictionEffect;
import mage.abilities.keyword.DeathtouchAbility;
import mage.abilities.keyword.DefenderAbility;
import mage.abilities.keyword.HasteAbility;
@ -558,6 +559,11 @@ public abstract class PermanentImpl<T extends PermanentImpl<T>> extends CardImpl
return false;
if (hasSummoningSickness())
return false;
//20101001 - 508.1c
for (RestrictionEffect effect: game.getContinuousEffects().getApplicableRestrictionEffects(this, game)) {
if (!effect.canAttack(game))
return false;
}
if (abilities.containsKey(DefenderAbility.getInstance().getId()))
return false;
return true;
@ -568,10 +574,15 @@ public abstract class PermanentImpl<T extends PermanentImpl<T>> extends CardImpl
if (tapped)
return false;
Permanent attacker = game.getPermanent(attackerId);
for (EvasionAbility ability: attacker.getAbilities().getEvasionAbilities()) {
if (!ability.canBlock(this, game))
//20101001 - 509.1b
for (RestrictionEffect effect: game.getContinuousEffects().getApplicableRestrictionEffects(this, game)) {
if (!effect.canBlock(attacker, game))
return false;
}
// for (EvasionAbility ability: attacker.getAbilities().getEvasionAbilities()) {
// if (!ability.canBlock(this, game))
// return false;
// }
if (attacker.hasProtectionFrom(this))
return false;
return true;