1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-04 01:06:04 -09:00

Oathbreaker: added support of 2 partners with 2 spells, improved signature spell hint and checks;

This commit is contained in:
Oleg Agafonov 2019-05-29 03:03:17 +04:00
parent 50e5a3e050
commit a9329c130d
8 changed files with 146 additions and 196 deletions
Mage.Server.Plugins
Mage.Deck.Constructed/src/mage/deck
Mage.Game.OathbreakerFreeForAll/src/mage/game
Mage/src/main/java/mage

View file

@ -5,6 +5,7 @@ import mage.cards.Card;
import mage.cards.decks.Constructed; import mage.cards.decks.Constructed;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.filter.FilterMana; import mage.filter.FilterMana;
import mage.util.ManaUtil;
import java.util.*; import java.util.*;
@ -78,25 +79,7 @@ public class Brawl extends Constructed {
invalid.put("Brawl", "Invalid Commander (" + commander.getName() + ')'); invalid.put("Brawl", "Invalid Commander (" + commander.getName() + ')');
valid = false; valid = false;
} }
FilterMana commanderColor = commander.getColorIdentity(); ManaUtil.collectColorIdentity(colorIdentity, commander.getColorIdentity());
if (commanderColor.isWhite()) {
colorIdentity.setWhite(true);
}
if (commanderColor.isBlue()) {
colorIdentity.setBlue(true);
}
if (commanderColor.isBlack()) {
colorIdentity.setBlack(true);
}
if (commanderColor.isRed()) {
colorIdentity.setRed(true);
}
if (commanderColor.isGreen()) {
colorIdentity.setGreen(true);
}
if (commanderColor.isColorless()) {
colorIdentity.setColorless(true);
}
} }
} }
Set<String> basicsInDeck = new HashSet<>(); Set<String> basicsInDeck = new HashSet<>();
@ -108,7 +91,7 @@ public class Brawl extends Constructed {
} }
} }
for (Card card : deck.getCards()) { for (Card card : deck.getCards()) {
if (!cardHasValidColor(colorIdentity, card) if (!ManaUtil.isColorIdentityCompatible(colorIdentity, card.getColorIdentity())
&& !(colorIdentity.isColorless() && !(colorIdentity.isColorless()
&& basicsInDeck.size() == 1 && basicsInDeck.size() == 1
&& basicsInDeck.contains(card.getName()))) { && basicsInDeck.contains(card.getName()))) {
@ -135,13 +118,4 @@ public class Brawl extends Constructed {
return valid; return valid;
} }
public boolean cardHasValidColor(FilterMana commander, Card card) {
FilterMana cardColor = card.getColorIdentity();
return !(cardColor.isBlack() && !commander.isBlack()
|| cardColor.isBlue() && !commander.isBlue()
|| cardColor.isGreen() && !commander.isGreen()
|| cardColor.isRed() && !commander.isRed()
|| cardColor.isWhite() && !commander.isWhite());
}
} }

View file

@ -12,6 +12,7 @@ import mage.cards.Sets;
import mage.cards.decks.Constructed; import mage.cards.decks.Constructed;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.filter.FilterMana; import mage.filter.FilterMana;
import mage.util.ManaUtil;
import java.util.*; import java.util.*;
@ -148,22 +149,7 @@ public class Commander extends Constructed {
valid = false; valid = false;
} }
} }
FilterMana commanderColor = commander.getColorIdentity(); ManaUtil.collectColorIdentity(colorIdentity, commander.getColorIdentity());
if (commanderColor.isWhite()) {
colorIdentity.setWhite(true);
}
if (commanderColor.isBlue()) {
colorIdentity.setBlue(true);
}
if (commanderColor.isBlack()) {
colorIdentity.setBlack(true);
}
if (commanderColor.isRed()) {
colorIdentity.setRed(true);
}
if (commanderColor.isGreen()) {
colorIdentity.setGreen(true);
}
} }
} }
@ -173,7 +159,7 @@ public class Commander extends Constructed {
} }
for (Card card : deck.getCards()) { for (Card card : deck.getCards()) {
if (!cardHasValidColor(colorIdentity, card)) { if (!ManaUtil.isColorIdentityCompatible(colorIdentity, card.getColorIdentity())) {
invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')'); invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')');
valid = false; valid = false;
} }
@ -197,15 +183,6 @@ public class Commander extends Constructed {
return valid; return valid;
} }
public boolean cardHasValidColor(FilterMana commander, Card card) {
FilterMana cardColor = card.getColorIdentity();
return !(cardColor.isBlack() && !commander.isBlack()
|| cardColor.isBlue() && !commander.isBlue()
|| cardColor.isGreen() && !commander.isGreen()
|| cardColor.isRed() && !commander.isRed()
|| cardColor.isWhite() && !commander.isWhite());
}
@Override @Override
public int getEdhPowerLevel(Deck deck) { public int getEdhPowerLevel(Deck deck) {
if (deck == null) { if (deck == null) {

View file

@ -9,6 +9,7 @@ import mage.cards.Sets;
import mage.cards.decks.Constructed; import mage.cards.decks.Constructed;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.filter.FilterMana; import mage.filter.FilterMana;
import mage.util.ManaUtil;
import java.util.*; import java.util.*;
@ -95,22 +96,7 @@ public class FreeformCommander extends Constructed {
valid = false; valid = false;
} }
} }
FilterMana commanderColor = commander.getColorIdentity(); ManaUtil.collectColorIdentity(colorIdentity, commander.getColorIdentity());
if (commanderColor.isWhite()) {
colorIdentity.setWhite(true);
}
if (commanderColor.isBlue()) {
colorIdentity.setBlue(true);
}
if (commanderColor.isBlack()) {
colorIdentity.setBlack(true);
}
if (commanderColor.isRed()) {
colorIdentity.setRed(true);
}
if (commanderColor.isGreen()) {
colorIdentity.setGreen(true);
}
} }
} }
@ -120,7 +106,7 @@ public class FreeformCommander extends Constructed {
} }
for (Card card : deck.getCards()) { for (Card card : deck.getCards()) {
if (!cardHasValidColor(colorIdentity, card)) { if (!ManaUtil.isColorIdentityCompatible(colorIdentity, card.getColorIdentity())) {
invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')'); invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')');
valid = false; valid = false;
} }
@ -136,13 +122,4 @@ public class FreeformCommander extends Constructed {
} }
return valid; return valid;
} }
public boolean cardHasValidColor(FilterMana commander, Card card) {
FilterMana cardColor = card.getColorIdentity();
return !(cardColor.isBlack() && !commander.isBlack()
|| cardColor.isBlue() && !commander.isBlue()
|| cardColor.isGreen() && !commander.isGreen()
|| cardColor.isRed() && !commander.isRed()
|| cardColor.isWhite() && !commander.isWhite());
}
} }

View file

@ -6,6 +6,7 @@ import mage.abilities.keyword.PartnerWithAbility;
import mage.cards.Card; import mage.cards.Card;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.filter.FilterMana; import mage.filter.FilterMana;
import mage.util.ManaUtil;
import java.util.*; import java.util.*;
@ -71,7 +72,7 @@ public class Oathbreaker extends Vintage {
@Override @Override
public int getDeckMinSize() { public int getDeckMinSize() {
return 60 - (1 + 2); // spell + 2 x partner oathbreakers return 60 - (2 + 2); // 2 x spells + 2 x partner oathbreakers
} }
@Override @Override
@ -82,7 +83,6 @@ public class Oathbreaker extends Vintage {
@Override @Override
public boolean validate(Deck deck) { public boolean validate(Deck deck) {
boolean valid = true; boolean valid = true;
FilterMana colorIdentity = new FilterMana();
if (deck.getCards().size() + deck.getSideboard().size() != 60) { if (deck.getCards().size() + deck.getSideboard().size() != 60) {
invalid.put("Deck", "Must contain " + 60 + " cards: has " + (deck.getCards().size() + deck.getSideboard().size()) + " cards"); invalid.put("Deck", "Must contain " + 60 + " cards: has " + (deck.getCards().size() + deck.getSideboard().size()) + " cards");
@ -103,22 +103,22 @@ public class Oathbreaker extends Vintage {
} }
Set<String> commanderNames = new HashSet<>(); Set<String> commanderNames = new HashSet<>();
String signatureSpell = null; Set<String> signatureSpells = new HashSet<>();
if (deck.getSideboard().size() < 2 || deck.getSideboard().size() > 3) { FilterMana allCommandersColor = new FilterMana();
invalid.put("Oathbreaker", "Sideboard must contain only the oathbreaker(s) with signature spell"); if (deck.getSideboard().size() < 2 || deck.getSideboard().size() > 4) {
invalid.put("Oathbreaker", "Sideboard must contain only 2 or 4 cards (oathbreaker + signature spell)");
valid = false; valid = false;
} else { } else {
// collect data
for (Card commander : deck.getSideboard()) { for (Card commander : deck.getSideboard()) {
if (commander.isInstantOrSorcery()) { if (commander.isInstantOrSorcery()) {
if (signatureSpell == null) { signatureSpells.add(commander.getName());
signatureSpell = commander.getName();
} else {
invalid.put("Signature spell", "Only one signature spell allows, but found: " + signatureSpell + " and " + commander.getName());
valid = false;
}
} else { } else {
if (commander.isPlaneswalker()) { if (commander.isPlaneswalker()) {
commanderNames.add(commander.getName()); commanderNames.add(commander.getName());
// color identity from commanders only, not spell
ManaUtil.collectColorIdentity(allCommandersColor, commander.getColorIdentity());
} else { } else {
invalid.put("Oathbreaker", "Only planeswalker can be Oathbreaker, not " + commander.getName()); invalid.put("Oathbreaker", "Only planeswalker can be Oathbreaker, not " + commander.getName());
valid = false; valid = false;
@ -126,6 +126,21 @@ public class Oathbreaker extends Vintage {
} }
} }
// check size (1+1 or 2+2 allows)
if (commanderNames.size() == 0 || commanderNames.size() > 2) {
invalid.put("Oathbreaker", "Sideboard must contains 1 or 2 oathbreakers, but found: " + commanderNames.size());
valid = false;
}
if (signatureSpells.size() == 0 || signatureSpells.size() > 2) {
invalid.put("Signature Spell", "Sideboard must contains 1 or 2 signature spells, but found: " + signatureSpells.size());
valid = false;
}
if (signatureSpells.size() != commanderNames.size()) {
invalid.put("Oathbreaker", "Sideboard must contains 1 + 1 or 2 + 2 cards, but found: " + commanderNames.size() + " + " + signatureSpells.size());
valid = false;
}
// check partners
for (Card commander : deck.getSideboard()) { for (Card commander : deck.getSideboard()) {
if (commanderNames.contains(commander.getName())) { if (commanderNames.contains(commander.getName())) {
// partner checks // partner checks
@ -142,42 +157,28 @@ public class Oathbreaker extends Vintage {
valid = false; valid = false;
} }
} }
// color identity from commanders only, not spell
FilterMana commanderColor = commander.getColorIdentity();
if (commanderColor.isWhite()) {
colorIdentity.setWhite(true);
}
if (commanderColor.isBlue()) {
colorIdentity.setBlue(true);
}
if (commanderColor.isBlack()) {
colorIdentity.setBlack(true);
}
if (commanderColor.isRed()) {
colorIdentity.setRed(true);
}
if (commanderColor.isGreen()) {
colorIdentity.setGreen(true);
}
} }
} }
if (commanderNames.size() == 0) { // check spell color (one spell must be used by one oathbreaker)
invalid.put("Sideboard", "Can't find any oathbreaker"); // xmage doesn't allows to select pairs of spell + oathbreaker, what's why it requires one color combo minimum
valid = false; for (Card spell : deck.getSideboard()) {
} if (signatureSpells.contains(spell.getName())) {
if (signatureSpell == null) { FilterMana spellColor = spell.getColorIdentity();
invalid.put("Sideboard", "Can't find signature spell"); boolean haveSameColor = false;
valid = false; for (Card commander : deck.getSideboard()) {
} if (commanderNames.contains(commander.getName())) {
} FilterMana commanderColor = commander.getColorIdentity();
if (ManaUtil.isColorIdentityCompatible(commanderColor, spellColor)) {
// signature spell color haveSameColor = true;
for (Card card : deck.getSideboard()) { }
if (card.getName().equals(signatureSpell) && !cardHasValidColor(colorIdentity, card)) { }
invalid.put(card.getName(), "Invalid color for signature spell (" + colorIdentity.toString() + ')'); }
valid = false; if (!haveSameColor) {
invalid.put("Signature Spell", "Can't find oathbreaker with compatible color identity (" + spell.getName() + " - " + spellColor + ")");
valid = false;
}
}
} }
} }
@ -187,8 +188,8 @@ public class Oathbreaker extends Vintage {
} }
for (Card card : deck.getCards()) { for (Card card : deck.getCards()) {
if (!cardHasValidColor(colorIdentity, card)) { if (!ManaUtil.isColorIdentityCompatible(allCommandersColor, card.getColorIdentity())) {
invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')'); invalid.put(card.getName(), "Invalid color (" + card.getColorIdentity() + ')');
valid = false; valid = false;
} }
} }
@ -203,13 +204,4 @@ public class Oathbreaker extends Vintage {
} }
return valid; return valid;
} }
public boolean cardHasValidColor(FilterMana commander, Card card) {
FilterMana cardColor = card.getColorIdentity();
return !(cardColor.isBlack() && !commander.isBlack()
|| cardColor.isBlue() && !commander.isBlue()
|| cardColor.isGreen() && !commander.isGreen()
|| cardColor.isRed() && !commander.isRed()
|| cardColor.isWhite() && !commander.isWhite());
}
} }

View file

@ -10,6 +10,7 @@ import mage.cards.Sets;
import mage.cards.decks.Constructed; import mage.cards.decks.Constructed;
import mage.cards.decks.Deck; import mage.cards.decks.Deck;
import mage.filter.FilterMana; import mage.filter.FilterMana;
import mage.util.ManaUtil;
import java.util.*; import java.util.*;
import java.util.Map.Entry; import java.util.Map.Entry;
@ -106,22 +107,7 @@ public class PennyDreadfulCommander extends Constructed {
valid = false; valid = false;
} }
} }
FilterMana commanderColor = commander.getColorIdentity(); ManaUtil.collectColorIdentity(colorIdentity, commander.getColorIdentity());
if (commanderColor.isWhite()) {
colorIdentity.setWhite(true);
}
if (commanderColor.isBlue()) {
colorIdentity.setBlue(true);
}
if (commanderColor.isBlack()) {
colorIdentity.setBlack(true);
}
if (commanderColor.isRed()) {
colorIdentity.setRed(true);
}
if (commanderColor.isGreen()) {
colorIdentity.setGreen(true);
}
} }
} }
@ -131,7 +117,7 @@ public class PennyDreadfulCommander extends Constructed {
} }
for (Card card : deck.getCards()) { for (Card card : deck.getCards()) {
if (!cardHasValidColor(colorIdentity, card)) { if (!ManaUtil.isColorIdentityCompatible(colorIdentity, card.getColorIdentity())) {
invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')'); invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')');
valid = false; valid = false;
} }
@ -155,15 +141,6 @@ public class PennyDreadfulCommander extends Constructed {
return valid; return valid;
} }
public boolean cardHasValidColor(FilterMana commander, Card card) {
FilterMana cardColor = card.getColorIdentity();
return !(cardColor.isBlack() && !commander.isBlack()
|| cardColor.isBlue() && !commander.isBlue()
|| cardColor.isGreen() && !commander.isGreen()
|| cardColor.isRed() && !commander.isRed()
|| cardColor.isWhite() && !commander.isWhite());
}
public void generatePennyDreadfulHash() { public void generatePennyDreadfulHash() {
if (setupAllowed == false) { if (setupAllowed == false) {
setupAllowed = true; setupAllowed = true;

View file

@ -3,7 +3,6 @@ package mage.game;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.common.SignatureSpellCastOnlyWithOathbreakerEffect; import mage.abilities.common.SignatureSpellCastOnlyWithOathbreakerEffect;
import mage.abilities.common.SimpleStaticAbility; import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.condition.Condition;
import mage.abilities.condition.common.OathbreakerOnBattlefieldCondition; import mage.abilities.condition.common.OathbreakerOnBattlefieldCondition;
import mage.abilities.effects.common.InfoEffect; import mage.abilities.effects.common.InfoEffect;
import mage.abilities.hint.ConditionHint; import mage.abilities.hint.ConditionHint;
@ -24,8 +23,8 @@ import java.util.*;
public class OathbreakerFreeForAll extends GameCommanderImpl { public class OathbreakerFreeForAll extends GameCommanderImpl {
private int numPlayers; private int numPlayers;
private Map<UUID, UUID> playerSignatureSpell = new HashMap<>(); private Map<UUID, Set<UUID>> playerSignatureSpells = new HashMap<>();
private Map<UUID, List<UUID>> playerCommanders = new HashMap<>(); private Map<UUID, Set<UUID>> playerOathbreakers = new HashMap<>();
public OathbreakerFreeForAll(MultiplayerAttackOption attackOption, RangeOfInfluence range, Mulligan mulligan, int startLife) { public OathbreakerFreeForAll(MultiplayerAttackOption attackOption, RangeOfInfluence range, Mulligan mulligan, int startLife) {
super(attackOption, range, mulligan, startLife); super(attackOption, range, mulligan, startLife);
@ -34,8 +33,8 @@ public class OathbreakerFreeForAll extends GameCommanderImpl {
public OathbreakerFreeForAll(final OathbreakerFreeForAll game) { public OathbreakerFreeForAll(final OathbreakerFreeForAll game) {
super(game); super(game);
this.numPlayers = game.numPlayers; this.numPlayers = game.numPlayers;
this.playerSignatureSpell.putAll(game.playerSignatureSpell); game.playerSignatureSpells.forEach((key, value) -> this.playerSignatureSpells.put(key, new HashSet<>(value)));
game.playerCommanders.forEach((key, value) -> this.playerCommanders.put(key, new ArrayList<>(value))); game.playerOathbreakers.forEach((key, value) -> this.playerOathbreakers.put(key, new HashSet<>(value)));
} }
@Override @Override
@ -58,38 +57,41 @@ public class OathbreakerFreeForAll extends GameCommanderImpl {
@Override @Override
public void initCommanderEffects(Card commander, Player player, Ability commanderAbility) { public void initCommanderEffects(Card commander, Player player, Ability commanderAbility) {
// all commander effects must be independent from sourceId or controllerId // all commander effects must be independent from sourceId or controllerId (it's limitation of current commander effects)
super.initCommanderEffects(commander, player, commanderAbility); super.initCommanderEffects(commander, player, commanderAbility);
// signature spell restrict (spell can be casted on player's commander on battlefield) // signature spell restrict (spell can be casted on player's commander on battlefield)
if (commander.getId().equals(this.playerSignatureSpell.getOrDefault(player.getId(), null))) { if (this.playerSignatureSpells.getOrDefault(player.getId(), new HashSet<>()).contains(commander.getId())) {
Condition condition = new OathbreakerOnBattlefieldCondition(player.getId(), this.playerCommanders.getOrDefault(player.getId(), null)); OathbreakerOnBattlefieldCondition condition = new OathbreakerOnBattlefieldCondition(this, player.getId(), commander.getId(),
this.playerOathbreakers.getOrDefault(player.getId(), new HashSet<>()));
commanderAbility.addEffect(new SignatureSpellCastOnlyWithOathbreakerEffect(condition, commander.getId())); commanderAbility.addEffect(new SignatureSpellCastOnlyWithOathbreakerEffect(condition, commander.getId()));
// hint must be added to card, not global ability // hint must be added to card, not global ability
Ability ability = new SimpleStaticAbility(new InfoEffect("Signature spell hint")); Ability ability = new SimpleStaticAbility(new InfoEffect("Signature spell hint"));
ability.addHint(new ConditionHint(condition, "Oathbreaker on battlefield")); ability.addHint(new ConditionHint(condition, "Oathbreaker on battlefield (" + condition.getCompatibleNames() + ")"));
ability.setRuleVisible(false); ability.setRuleVisible(false);
commander.addAbility(ability); commander.addAbility(ability);
} }
} }
private void addInnerCommander(Map<UUID, Set<UUID>> destList, UUID playerId, UUID cardId) {
Set<UUID> list = destList.getOrDefault(playerId, null);
if (list == null) {
list = new HashSet<>();
destList.put(playerId, list);
}
list.add(cardId);
}
@Override @Override
public void addCommander(Card card, Player player) { public void addCommander(Card card, Player player) {
super.addCommander(card, player); super.addCommander(card, player);
// prepare signature and commanders info // prepare signature and commanders info
if (card.isInstantOrSorcery()) { if (card.isInstantOrSorcery()) {
this.playerSignatureSpell.put(player.getId(), card.getId()); addInnerCommander(this.playerSignatureSpells, player.getId(), card.getId());
} else { } else {
List<UUID> list = this.playerCommanders.getOrDefault(player.getId(), null); addInnerCommander(this.playerOathbreakers, player.getId(), card.getId());
if (list == null) {
list = new ArrayList<>();
this.playerCommanders.put(player.getId(), list);
}
if (!list.contains(card.getId())) {
list.add(card.getId());
}
} }
} }
@ -116,8 +118,8 @@ public class OathbreakerFreeForAll extends GameCommanderImpl {
public Set<UUID> getCommandersIds(Player player, CommanderCardType commanderCardType) { public Set<UUID> getCommandersIds(Player player, CommanderCardType commanderCardType) {
Set<UUID> res = new HashSet<>(); Set<UUID> res = new HashSet<>();
if (player != null) { if (player != null) {
List<UUID> commanders = this.playerCommanders.getOrDefault(player.getId(), new ArrayList<>()); Set<UUID> commanders = this.playerOathbreakers.getOrDefault(player.getId(), new HashSet<>());
UUID spell = this.playerSignatureSpell.getOrDefault(player.getId(), null); Set<UUID> spells = this.playerSignatureSpells.getOrDefault(player.getId(), new HashSet<>());
for (UUID id : player.getCommandersIds()) { for (UUID id : player.getCommandersIds()) {
switch (commanderCardType) { switch (commanderCardType) {
case ANY: case ANY:
@ -129,7 +131,7 @@ public class OathbreakerFreeForAll extends GameCommanderImpl {
} }
break; break;
case SIGNATURE_SPELL: case SIGNATURE_SPELL:
if (id.equals(spell)) { if (spells.contains(id)) {
res.add(id); res.add(id);
} }
break; break;

View file

@ -2,13 +2,17 @@ package mage.abilities.condition.common;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.condition.Condition; import mage.abilities.condition.Condition;
import mage.cards.Card;
import mage.filter.FilterMana;
import mage.filter.common.FilterControlledPermanent; import mage.filter.common.FilterControlledPermanent;
import mage.filter.predicate.Predicates; import mage.filter.predicate.Predicates;
import mage.filter.predicate.permanent.PermanentIdPredicate; import mage.filter.predicate.permanent.PermanentIdPredicate;
import mage.game.Game; import mage.game.Game;
import mage.util.ManaUtil;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Set;
import java.util.UUID; import java.util.UUID;
/** /**
@ -20,23 +24,42 @@ public class OathbreakerOnBattlefieldCondition implements Condition {
private UUID playerId; private UUID playerId;
private FilterControlledPermanent filter; private FilterControlledPermanent filter;
private String compatibleNames;
public OathbreakerOnBattlefieldCondition(UUID playerId, List<UUID> oathbreakersToSearch) { public OathbreakerOnBattlefieldCondition(Game game, UUID playerId, UUID signatureSpellId, Set<UUID> oathbreakersToSearch) {
this.playerId = playerId; this.playerId = playerId;
this.filter = new FilterControlledPermanent("oathbreaker on battlefield"); this.filter = new FilterControlledPermanent("oathbreaker on battlefield");
Card spell = game.getCard(signatureSpellId);
FilterMana spellColors = spell != null ? spell.getColorIdentity() : null;
// spell can be casted by any compatible oathbreakers
List<PermanentIdPredicate> compatibleList = new ArrayList<>();
List<String> compatibleNames = new ArrayList<>();
if (oathbreakersToSearch != null && !oathbreakersToSearch.isEmpty()) { if (oathbreakersToSearch != null && !oathbreakersToSearch.isEmpty()) {
// any commander on battlefield
List<PermanentIdPredicate> idsList = new ArrayList<>();
for (UUID id : oathbreakersToSearch) { for (UUID id : oathbreakersToSearch) {
idsList.add(new PermanentIdPredicate(id)); Card commander = game.getCard(id);
if (commander != null && ManaUtil.isColorIdentityCompatible(commander.getColorIdentity(), spellColors)) {
compatibleList.add(new PermanentIdPredicate(id));
compatibleNames.add(commander.getName());
}
} }
this.filter.add(Predicates.or(idsList)); }
} else { this.compatibleNames = String.join("; ", compatibleNames);
if (compatibleList.isEmpty()) {
// random id to disable condition // random id to disable condition
this.filter.add(new PermanentIdPredicate(UUID.randomUUID())); this.filter.add(new PermanentIdPredicate(UUID.randomUUID()));
} else {
// oathbreaker on battlefield
this.filter.add(Predicates.or(compatibleList));
} }
} }
public String getCompatibleNames() {
return !this.compatibleNames.isEmpty() ? this.compatibleNames : "you haven't compatible oathbreaker";
}
@Override @Override
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
// source.getSourceId() is null for commander's effects // source.getSourceId() is null for commander's effects

View file

@ -11,6 +11,7 @@ import mage.abilities.mana.*;
import mage.cards.Card; import mage.cards.Card;
import mage.choices.Choice; import mage.choices.Choice;
import mage.constants.ColoredManaSymbol; import mage.constants.ColoredManaSymbol;
import mage.filter.FilterMana;
import mage.game.Game; import mage.game.Game;
import java.util.*; import java.util.*;
@ -26,23 +27,23 @@ public final class ManaUtil {
/** /**
* In case the choice of mana to be produced is obvious, let's discard all * In case the choice of mana to be produced is obvious, let's discard all
* other abilities. * other abilities.
* * <p>
* Example: Pay {W}{R} * Example: Pay {W}{R}
* * <p>
* Land produces {W} or {G}. * Land produces {W} or {G}.
* * <p>
* No need to ask what player wants to choose. {W} mana ability should be * No need to ask what player wants to choose. {W} mana ability should be
* left only. * left only.
* * <p>
* But we CAN do auto choice only in case we have basic mana abilities. * But we CAN do auto choice only in case we have basic mana abilities.
* Example: we should pay {1} and we have Cavern of Souls that can produce * Example: we should pay {1} and we have Cavern of Souls that can produce
* {1} or any mana of creature type choice. We can't simply auto choose {1} * {1} or any mana of creature type choice. We can't simply auto choose {1}
* as the second mana ability also makes spell uncounterable. * as the second mana ability also makes spell uncounterable.
* * <p>
* In case we can't auto choose we'll simply return the useableAbilities map * In case we can't auto choose we'll simply return the useableAbilities map
* back to caller without any modification. * back to caller without any modification.
* *
* @param unpaid Mana we need to pay. Can be null (it is for X costs now). * @param unpaid Mana we need to pay. Can be null (it is for X costs now).
* @param useableAbilities List of mana abilities permanent may produce * @param useableAbilities List of mana abilities permanent may produce
* @return List of mana abilities permanent may produce and are reasonable * @return List of mana abilities permanent may produce and are reasonable
* for unpaid mana * for unpaid mana
@ -430,7 +431,6 @@ public final class ManaUtil {
* Converts a collection of mana symbols into a single condensed string e.g. * Converts a collection of mana symbols into a single condensed string e.g.
* {1}{1}{1}{1}{1}{W} = {5}{W} {2}{B}{2}{B}{2}{B} = {6}{B}{B}{B} * {1}{1}{1}{1}{1}{W} = {5}{W} {2}{B}{2}{B}{2}{B} = {6}{B}{B}{B}
* {1}{2}{R}{U}{1}{1} = {5}{R}{U} {B}{G}{R} = {B}{G}{R} * {1}{2}{R}{U}{1}{1} = {5}{R}{U} {B}{G}{R} = {B}{G}{R}
*
*/ */
public static String condenseManaCostString(String rawCost) { public static String condenseManaCostString(String rawCost) {
int total = 0; int total = 0;
@ -466,4 +466,32 @@ public final class ManaUtil {
// Return the condensed string // Return the condensed string
return sb.toString(); return sb.toString();
} }
public static boolean isColorIdentityCompatible(FilterMana needColors, FilterMana cardColors) {
// colorless can be used with any color
return needColors != null
&& !(cardColors.isBlack() && !needColors.isBlack()
|| cardColors.isBlue() && !needColors.isBlue()
|| cardColors.isGreen() && !needColors.isGreen()
|| cardColors.isRed() && !needColors.isRed()
|| cardColors.isWhite() && !needColors.isWhite());
}
public static void collectColorIdentity(FilterMana destColors, FilterMana newColors) {
if (newColors.isWhite()) {
destColors.setWhite(true);
}
if (newColors.isBlue()) {
destColors.setBlue(true);
}
if (newColors.isBlack()) {
destColors.setBlack(true);
}
if (newColors.isRed()) {
destColors.setRed(true);
}
if (newColors.isGreen()) {
destColors.setGreen(true);
}
}
} }