forked from External/mage
* [KHM] fixed legendary status of mdf cards (closes #7370, #7404, #7465, #7481); * Game: added support of split cards as commander (signature spell); * Game: added support of adventure cards as commander; * Game: added support of modal double faces cards as commander;
295 lines
7.9 KiB
Java
295 lines
7.9 KiB
Java
package mage.game.command;
|
|
|
|
import mage.MageInt;
|
|
import mage.MageObject;
|
|
import mage.ObjectColor;
|
|
import mage.abilities.*;
|
|
import mage.abilities.common.CastCommanderAbility;
|
|
import mage.abilities.common.PlayLandAsCommanderAbility;
|
|
import mage.abilities.costs.mana.ManaCost;
|
|
import mage.abilities.costs.mana.ManaCosts;
|
|
import mage.abilities.text.TextPart;
|
|
import mage.cards.Card;
|
|
import mage.cards.FrameStyle;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.SuperType;
|
|
import mage.game.Game;
|
|
import mage.game.events.ZoneChangeEvent;
|
|
import mage.util.GameLog;
|
|
import mage.util.SubTypes;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
import java.util.UUID;
|
|
|
|
public class Commander implements CommandObject {
|
|
|
|
private final Card sourceObject;
|
|
private boolean copy;
|
|
private MageObject copyFrom; // copied card INFO (used to call original adjusters)
|
|
private final Abilities<Ability> abilities = new AbilitiesImpl<>();
|
|
|
|
public Commander(Card card) {
|
|
this.sourceObject = card;
|
|
|
|
// replace spell ability by commander cast spell (to cast from command zone)
|
|
for (Ability ability : card.getAbilities()) {
|
|
if (ability instanceof SpellAbility) {
|
|
SpellAbility spellAbility = (SpellAbility) ability;
|
|
switch (spellAbility.getSpellAbilityType()) {
|
|
case BASE:
|
|
case BASE_ALTERNATE:
|
|
case SPLIT:
|
|
case SPLIT_FUSED:
|
|
case SPLIT_LEFT:
|
|
case SPLIT_RIGHT:
|
|
case MODAL:
|
|
case MODAL_LEFT:
|
|
case MODAL_RIGHT:
|
|
case ADVENTURE_SPELL:
|
|
// can be used from command zone
|
|
abilities.add(new CastCommanderAbility(card, spellAbility));
|
|
break;
|
|
case FACE_DOWN_CREATURE: // dynamic added spell for alternative cost like cast as face down
|
|
case SPLICE: // only from hand
|
|
case SPLIT_AFTERMATH: // only from graveyard
|
|
// can't use from command zone
|
|
break;
|
|
default:
|
|
throw new IllegalArgumentException("Error, unknown spell type in commander card: " + spellAbility.getSpellAbilityType() + " from " + card.getName());
|
|
}
|
|
}
|
|
}
|
|
|
|
// replace play land with commander play land (to play from command zone)
|
|
for (Ability ability : card.getAbilities()) {
|
|
if (ability instanceof PlayLandAbility) {
|
|
Ability newAbility = new PlayLandAsCommanderAbility((PlayLandAbility) ability);
|
|
abilities.add(newAbility);
|
|
}
|
|
}
|
|
|
|
// other abilities
|
|
for (Ability ability : card.getAbilities()) {
|
|
if (!(ability instanceof SpellAbility) && !(ability instanceof PlayLandAbility)) {
|
|
Ability newAbility = ability.copy();
|
|
abilities.add(newAbility);
|
|
}
|
|
}
|
|
}
|
|
|
|
private Commander(final Commander commander) {
|
|
this.sourceObject = commander.sourceObject;
|
|
this.copy = commander.copy;
|
|
this.copyFrom = (commander.copyFrom != null ? commander.copyFrom.copy() : null);
|
|
}
|
|
|
|
@Override
|
|
public Card getSourceObject() {
|
|
return sourceObject;
|
|
}
|
|
|
|
@Override
|
|
public UUID getSourceId() {
|
|
return sourceObject.getId();
|
|
}
|
|
|
|
@Override
|
|
public UUID getControllerId() {
|
|
return sourceObject.getOwnerId();
|
|
}
|
|
|
|
@Override
|
|
public void assignNewId() {
|
|
}
|
|
|
|
@Override
|
|
public CommandObject copy() {
|
|
return new Commander(this);
|
|
}
|
|
|
|
@Override
|
|
public void setCopy(boolean isCopy, MageObject copyFrom) {
|
|
this.copy = isCopy;
|
|
this.copyFrom = (copyFrom != null ? copyFrom.copy() : null);
|
|
}
|
|
|
|
@Override
|
|
public boolean isCopy() {
|
|
return this.copy;
|
|
}
|
|
|
|
@Override
|
|
public MageObject getCopyFrom() {
|
|
return this.copyFrom;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return sourceObject.getName();
|
|
}
|
|
|
|
@Override
|
|
public String getIdName() {
|
|
return sourceObject.getName() + " [" + sourceObject.getId().toString().substring(0, 3) + ']';
|
|
}
|
|
|
|
@Override
|
|
public String getLogName() {
|
|
return GameLog.getColoredObjectIdName(this);
|
|
}
|
|
|
|
@Override
|
|
public void setName(String name) {
|
|
}
|
|
|
|
@Override
|
|
public ArrayList<CardType> getCardType() {
|
|
return sourceObject.getCardType();
|
|
}
|
|
|
|
@Override
|
|
public SubTypes getSubtype() {
|
|
return sourceObject.getSubtype();
|
|
}
|
|
|
|
@Override
|
|
public SubTypes getSubtype(Game game) {
|
|
return sourceObject.getSubtype(game);
|
|
}
|
|
|
|
@Override
|
|
public boolean hasSubtype(SubType subtype, Game game) {
|
|
return sourceObject.hasSubtype(subtype, game);
|
|
}
|
|
|
|
@Override
|
|
public Set<SuperType> getSuperType() {
|
|
return sourceObject.getSuperType();
|
|
}
|
|
|
|
@Override
|
|
public Abilities<Ability> getAbilities() {
|
|
return abilities;
|
|
}
|
|
|
|
@Override
|
|
public boolean hasAbility(Ability ability, Game game) {
|
|
if (this.getAbilities().contains(ability)) {
|
|
return true;
|
|
}
|
|
Abilities<Ability> otherAbilities = game.getState().getAllOtherAbilities(getId());
|
|
return otherAbilities != null && otherAbilities.contains(ability);
|
|
}
|
|
|
|
@Override
|
|
public ObjectColor getColor() {
|
|
return sourceObject.getColor();
|
|
}
|
|
|
|
@Override
|
|
public ObjectColor getColor(Game game) {
|
|
return sourceObject.getColor(game);
|
|
}
|
|
|
|
@Override
|
|
public ObjectColor getFrameColor(Game game) {
|
|
return sourceObject.getFrameColor(game);
|
|
}
|
|
|
|
@Override
|
|
public FrameStyle getFrameStyle() {
|
|
return sourceObject.getFrameStyle();
|
|
}
|
|
|
|
@Override
|
|
public ManaCosts<ManaCost> getManaCost() {
|
|
return sourceObject.getManaCost();
|
|
}
|
|
|
|
@Override
|
|
public int getConvertedManaCost() {
|
|
return sourceObject.getConvertedManaCost();
|
|
}
|
|
|
|
@Override
|
|
public MageInt getPower() {
|
|
return sourceObject.getPower();
|
|
}
|
|
|
|
@Override
|
|
public MageInt getToughness() {
|
|
return sourceObject.getToughness();
|
|
}
|
|
|
|
@Override
|
|
public int getStartingLoyalty() {
|
|
return sourceObject.getStartingLoyalty();
|
|
}
|
|
|
|
@Override
|
|
public void setStartingLoyalty(int startingLoyalty) {
|
|
}
|
|
|
|
@Override
|
|
public void adjustCosts(Ability ability, Game game) {
|
|
}
|
|
|
|
@Override
|
|
public void adjustTargets(Ability ability, Game game) {
|
|
}
|
|
|
|
@Override
|
|
public UUID getId() {
|
|
return sourceObject.getId();
|
|
}
|
|
|
|
@Override
|
|
public String getImageName() {
|
|
return sourceObject.getImageName();
|
|
}
|
|
|
|
@Override
|
|
public int getZoneChangeCounter(Game game) {
|
|
return sourceObject.getZoneChangeCounter(game);
|
|
}
|
|
|
|
@Override
|
|
public void updateZoneChangeCounter(Game game, ZoneChangeEvent event) {
|
|
sourceObject.updateZoneChangeCounter(game, event);
|
|
}
|
|
|
|
@Override
|
|
public void setZoneChangeCounter(int value, Game game) {
|
|
sourceObject.setZoneChangeCounter(value, game);
|
|
}
|
|
|
|
@Override
|
|
public boolean isAllCreatureTypes(Game game) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void setIsAllCreatureTypes(boolean value) {
|
|
}
|
|
|
|
@Override
|
|
public void setIsAllCreatureTypes(Game game, boolean value) {
|
|
}
|
|
|
|
@Override
|
|
public List<TextPart> getTextParts() {
|
|
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
|
}
|
|
|
|
@Override
|
|
public TextPart addTextPart(TextPart textPart) {
|
|
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
|
}
|
|
|
|
@Override
|
|
public void removePTCDA() {
|
|
}
|
|
}
|