* Hexproof Planeswalkers can't be attacked (fixes #3328).

This commit is contained in:
LevelX2 2017-05-16 10:34:58 +02:00
parent 917111b664
commit 7dcfbd5be5

View file

@ -24,13 +24,15 @@
* The views and conclusions contained in the software and documentation are those of the * 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 * authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com. * or implied, of BetaSteward_at_googlemail.com.
*/ */
package mage.target.common; package mage.target.common;
import mage.constants.Zone; import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
import mage.MageObject; import mage.MageObject;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.constants.Zone;
import mage.filter.Filter; import mage.filter.Filter;
import mage.filter.common.FilterPlaneswalkerOrPlayer; import mage.filter.common.FilterPlaneswalkerOrPlayer;
import mage.filter.common.FilterPlaneswalkerPermanent; import mage.filter.common.FilterPlaneswalkerPermanent;
@ -39,10 +41,6 @@ import mage.game.permanent.Permanent;
import mage.players.Player; import mage.players.Player;
import mage.target.TargetImpl; import mage.target.TargetImpl;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
/** /**
* *
* @author BetaSteward_at_googlemail.com * @author BetaSteward_at_googlemail.com
@ -84,19 +82,20 @@ public class TargetDefender extends TargetImpl {
public boolean canChoose(UUID sourceId, UUID sourceControllerId, Game game) { public boolean canChoose(UUID sourceId, UUID sourceControllerId, Game game) {
int count = 0; int count = 0;
MageObject targetSource = game.getObject(sourceId); MageObject targetSource = game.getObject(sourceId);
for (UUID playerId: game.getState().getPlayersInRange(sourceControllerId, game)) { for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId); Player player = game.getPlayer(playerId);
// removed canBeTargeted because it's not correct to check it for attacking target if (player != null
if (player != null && player.canBeTargetedBy(targetSource, sourceControllerId, game) && filter.match(player, game)) { && (notTarget || player.canBeTargetedBy(targetSource, sourceControllerId, game))
&& filter.match(player, game)) {
count++; count++;
if (count >= this.minNumberOfTargets) { if (count >= this.minNumberOfTargets) {
return true; return true;
} }
} }
} }
for (Permanent permanent: game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) { for (Permanent permanent : game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) {
// removed canBeTargeted because it's not correct to check for attacking target if ((notTarget || permanent.canBeTargetedBy(targetSource, sourceControllerId, game))
if (permanent.canBeTargetedBy(targetSource, sourceControllerId, game) && filter.match(permanent, game)) { && filter.match(permanent, game)) {
count++; count++;
if (count >= this.minNumberOfTargets) { if (count >= this.minNumberOfTargets) {
return true; return true;
@ -109,7 +108,7 @@ public class TargetDefender extends TargetImpl {
@Override @Override
public boolean canChoose(UUID sourceControllerId, Game game) { public boolean canChoose(UUID sourceControllerId, Game game) {
int count = 0; int count = 0;
for (UUID playerId: game.getState().getPlayersInRange(sourceControllerId, game)) { for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId); Player player = game.getPlayer(playerId);
if (player != null && filter.match(player, game)) { if (player != null && filter.match(player, game)) {
count++; count++;
@ -118,7 +117,7 @@ public class TargetDefender extends TargetImpl {
} }
} }
} }
for (Permanent permanent: game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) { for (Permanent permanent : game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) {
if (filter.match(permanent, game)) { if (filter.match(permanent, game)) {
count++; count++;
if (count >= this.minNumberOfTargets) { if (count >= this.minNumberOfTargets) {
@ -133,14 +132,17 @@ public class TargetDefender extends TargetImpl {
public Set<UUID> possibleTargets(UUID sourceId, UUID sourceControllerId, Game game) { public Set<UUID> possibleTargets(UUID sourceId, UUID sourceControllerId, Game game) {
Set<UUID> possibleTargets = new HashSet<>(); Set<UUID> possibleTargets = new HashSet<>();
MageObject targetSource = game.getObject(sourceId); MageObject targetSource = game.getObject(sourceId);
for (UUID playerId: game.getState().getPlayersInRange(sourceControllerId, game)) { for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId); Player player = game.getPlayer(playerId);
if (player != null && (player.canBeTargetedBy(targetSource, sourceControllerId, game) || notTarget) && filter.match(player, game)) { if (player != null
&& (notTarget || player.canBeTargetedBy(targetSource, sourceControllerId, game))
&& filter.match(player, game)) {
possibleTargets.add(playerId); possibleTargets.add(playerId);
} }
} }
for (Permanent permanent: game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) { for (Permanent permanent : game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) {
if ((permanent.canBeTargetedBy(targetSource, sourceControllerId, game) || notTarget) && filter.match(permanent, game)) { if ((notTarget || permanent.canBeTargetedBy(targetSource, sourceControllerId, game))
&& filter.match(permanent, game)) {
possibleTargets.add(permanent.getId()); possibleTargets.add(permanent.getId());
} }
} }
@ -150,13 +152,13 @@ public class TargetDefender extends TargetImpl {
@Override @Override
public Set<UUID> possibleTargets(UUID sourceControllerId, Game game) { public Set<UUID> possibleTargets(UUID sourceControllerId, Game game) {
Set<UUID> possibleTargets = new HashSet<>(); Set<UUID> possibleTargets = new HashSet<>();
for (UUID playerId: game.getState().getPlayersInRange(sourceControllerId, game)) { for (UUID playerId : game.getState().getPlayersInRange(sourceControllerId, game)) {
Player player = game.getPlayer(playerId); Player player = game.getPlayer(playerId);
if (player != null && filter.match(player, game)) { if (player != null && filter.match(player, game)) {
possibleTargets.add(playerId); possibleTargets.add(playerId);
} }
} }
for (Permanent permanent: game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) { for (Permanent permanent : game.getBattlefield().getActivePermanents(new FilterPlaneswalkerPermanent(), sourceControllerId, game)) {
if (filter.match(permanent, game)) { if (filter.match(permanent, game)) {
possibleTargets.add(permanent.getId()); possibleTargets.add(permanent.getId());
} }
@ -167,12 +169,11 @@ public class TargetDefender extends TargetImpl {
@Override @Override
public String getTargetedName(Game game) { public String getTargetedName(Game game) {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
for (UUID targetId: getTargets()) { for (UUID targetId : getTargets()) {
Permanent permanent = game.getPermanent(targetId); Permanent permanent = game.getPermanent(targetId);
if (permanent != null) { if (permanent != null) {
sb.append(permanent.getName()).append(' '); sb.append(permanent.getName()).append(' ');
} } else {
else {
Player player = game.getPlayer(targetId); Player player = game.getPlayer(targetId);
sb.append(player.getLogName()).append(' '); sb.append(player.getLogName()).append(' ');
} }
@ -195,16 +196,18 @@ public class TargetDefender extends TargetImpl {
Player player = game.getPlayer(id); Player player = game.getPlayer(id);
MageObject targetSource = game.getObject(attackerId); MageObject targetSource = game.getObject(attackerId);
if (player != null) { if (player != null) {
return notTarget || (player.canBeTargetedBy(targetSource, source == null ? null : source.getControllerId(), game) && filter.match(player, game)); return (notTarget || player.canBeTargetedBy(targetSource, (source == null ? null : source.getControllerId()), game))
&& filter.match(player, game);
} }
Permanent permanent = game.getPermanent(id); // planeswalker Permanent permanent = game.getPermanent(id); // planeswalker
if (permanent != null) { if (permanent != null) {
//Could be targeting due to combat decision to attack a player or planeswalker. //Could be targeting due to combat decision to attack a player or planeswalker.
UUID controllerId = null; UUID controllerId = null;
if ( source != null ) { if (source != null) {
controllerId = source.getControllerId(); controllerId = source.getControllerId();
} }
return permanent.canBeTargetedBy(targetSource, controllerId, game) && filter.match(permanent, game); return (notTarget || permanent.canBeTargetedBy(targetSource, controllerId, game))
&& filter.match(permanent, game);
} }
return false; return false;
} }
@ -213,11 +216,10 @@ public class TargetDefender extends TargetImpl {
public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) { public boolean canTarget(UUID playerId, UUID id, Ability source, Game game) {
return canTarget(id, source, game); return canTarget(id, source, game);
} }
@Override @Override
public TargetDefender copy() { public TargetDefender copy() {
return new TargetDefender(this); return new TargetDefender(this);
} }
} }