forked from External/mage
140 lines
5 KiB
Java
140 lines
5 KiB
Java
|
|
package mage.deck;
|
|
|
|
import java.util.*;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.keyword.PartnerAbility;
|
|
import mage.abilities.keyword.PartnerWithAbility;
|
|
import mage.cards.Card;
|
|
import mage.cards.ExpansionSet;
|
|
import mage.cards.Sets;
|
|
import mage.cards.decks.Constructed;
|
|
import mage.cards.decks.Deck;
|
|
import mage.filter.FilterMana;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public class FreeformCommander extends Constructed {
|
|
|
|
protected List<String> bannedCommander = new ArrayList<>();
|
|
private static final Map<String, Integer> pdAllowed = new HashMap<>();
|
|
|
|
public FreeformCommander() {
|
|
this("Freeform Commander");
|
|
for (ExpansionSet set : Sets.getInstance().values()) {
|
|
setCodes.add(set.getCode());
|
|
}
|
|
|
|
// no banned cards
|
|
this.banned.clear();
|
|
}
|
|
|
|
public FreeformCommander(String name) {
|
|
super(name);
|
|
}
|
|
|
|
@Override
|
|
public boolean validate(Deck deck) {
|
|
boolean valid = true;
|
|
FilterMana colorIdentity = new FilterMana();
|
|
|
|
if (deck.getCards().size() + deck.getSideboard().size() != 100) {
|
|
invalid.put("Deck", "Must contain 100 cards: has " + (deck.getCards().size() + deck.getSideboard().size()) + " cards");
|
|
valid = false;
|
|
}
|
|
|
|
Map<String, Integer> counts = new HashMap<>();
|
|
countCards(counts, deck.getCards());
|
|
countCards(counts, deck.getSideboard());
|
|
|
|
for (Map.Entry<String, Integer> entry : counts.entrySet()) {
|
|
if (entry.getValue() > 1) {
|
|
if (!basicLandNames.contains(entry.getKey())) {
|
|
invalid.put(entry.getKey(), "Too many: " + entry.getValue());
|
|
valid = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
generateFreeformHash();
|
|
|
|
if (deck.getSideboard().size() < 1 || deck.getSideboard().size() > 2) {
|
|
invalid.put("Commander", "Sideboard must contain only the commander(s)");
|
|
valid = false;
|
|
} else {
|
|
Set<String> commanderNames = new HashSet<>();
|
|
for (Card commander : deck.getSideboard()) {
|
|
commanderNames.add(commander.getName());
|
|
}
|
|
for (Card commander : deck.getSideboard()) {
|
|
if (!(commander.isCreature()
|
|
|| commander.isLegendary())) {
|
|
invalid.put("Commander", "For Freeform Commander, the commander must be a creature or be legendary. Yours was: " + commander.getName());
|
|
valid = false;
|
|
}
|
|
if (deck.getSideboard().size() == 2 && !commander.getAbilities().contains(PartnerAbility.getInstance())) {
|
|
boolean partnersWith = false;
|
|
for (Ability ability : commander.getAbilities()) {
|
|
if (ability instanceof PartnerWithAbility
|
|
&& commanderNames.contains(((PartnerWithAbility) ability).getPartnerName())) {
|
|
partnersWith = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!partnersWith) {
|
|
invalid.put("Commander", "Commander without Partner (" + commander.getName() + ')');
|
|
valid = false;
|
|
}
|
|
}
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
for (Card card : deck.getCards()) {
|
|
if (!cardHasValidColor(colorIdentity, card)) {
|
|
invalid.put(card.getName(), "Invalid color (" + colorIdentity.toString() + ')');
|
|
valid = false;
|
|
}
|
|
}
|
|
|
|
for (Card card : deck.getSideboard()) {
|
|
if (!isSetAllowed(card.getExpansionSetCode())) {
|
|
if (!legalSets(card)) {
|
|
invalid.put(card.getName(), "Not allowed Set: " + card.getExpansionSetCode());
|
|
valid = false;
|
|
}
|
|
}
|
|
}
|
|
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 generateFreeformHash() {
|
|
return;
|
|
}
|
|
}
|