forked from External/mage
* apply regex to change public copy constructors to protected * cleanup code using now protected constructors * fix manaBuilder weird casting of Mana into ConditionalMana
247 lines
6 KiB
Java
247 lines
6 KiB
Java
package mage.game.command;
|
|
|
|
import mage.MageInt;
|
|
import mage.MageObject;
|
|
import mage.ObjectColor;
|
|
import mage.abilities.Abilities;
|
|
import mage.abilities.AbilitiesImpl;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.costs.mana.ManaCost;
|
|
import mage.abilities.costs.mana.ManaCosts;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.effects.ContinuousEffect;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.cards.FrameStyle;
|
|
import mage.cards.repository.TokenInfo;
|
|
import mage.cards.repository.TokenRepository;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.SuperType;
|
|
import mage.game.Game;
|
|
import mage.game.events.ZoneChangeEvent;
|
|
import mage.util.SubTypes;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author nantuko
|
|
*/
|
|
public abstract class Emblem extends CommandObjectImpl {
|
|
|
|
private static final ManaCosts emptyCost = new ManaCostsImpl<>();
|
|
|
|
private UUID controllerId;
|
|
private MageObject sourceObject;
|
|
private boolean copy;
|
|
private MageObject copyFrom; // copied card INFO (used to call original adjusters)
|
|
private FrameStyle frameStyle;
|
|
private Abilities<Ability> abilites = new AbilitiesImpl<>();
|
|
|
|
public Emblem(String name) {
|
|
super(name);
|
|
}
|
|
|
|
protected Emblem(final Emblem emblem) {
|
|
super(emblem);
|
|
this.frameStyle = emblem.frameStyle;
|
|
this.controllerId = emblem.controllerId;
|
|
this.sourceObject = emblem.sourceObject;
|
|
this.copy = emblem.copy;
|
|
this.copyFrom = (emblem.copyFrom != null ? emblem.copyFrom : null);
|
|
this.abilites = emblem.abilites.copy();
|
|
}
|
|
|
|
@Override
|
|
public FrameStyle getFrameStyle() {
|
|
return frameStyle;
|
|
}
|
|
|
|
public void setSourceObject(MageObject sourceObject) {
|
|
this.sourceObject = sourceObject;
|
|
|
|
// choose set code due source
|
|
TokenInfo foundInfo = TokenRepository.instance.findPreferredTokenInfoForClass(this.getClass().getName(), sourceObject.getExpansionSetCode());
|
|
if (foundInfo != null) {
|
|
this.setExpansionSetCode(foundInfo.getSetCode());
|
|
this.setCardNumber("");
|
|
this.setImageNumber(foundInfo.getImageNumber());
|
|
} else {
|
|
// how-to fix: add emblem to the tokens-database
|
|
throw new IllegalArgumentException("Wrong code usage: can't find token info for the emblem: " + this.getClass().getName());
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public MageObject getSourceObject() {
|
|
return sourceObject;
|
|
}
|
|
|
|
@Override
|
|
public UUID getSourceId() {
|
|
if (sourceObject != null) {
|
|
return sourceObject.getId();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public UUID getControllerId() {
|
|
return this.controllerId;
|
|
}
|
|
|
|
public void setControllerId(UUID controllerId) {
|
|
this.controllerId = controllerId;
|
|
this.abilites.setControllerId(controllerId);
|
|
}
|
|
|
|
@Override
|
|
abstract public Emblem copy();
|
|
|
|
@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 List<CardType> getCardType(Game game) {
|
|
return Collections.emptyList();
|
|
}
|
|
|
|
@Override
|
|
public SubTypes getSubtype() {
|
|
return new SubTypes();
|
|
}
|
|
|
|
@Override
|
|
public SubTypes getSubtype(Game game) {
|
|
return new SubTypes();
|
|
}
|
|
|
|
@Override
|
|
public boolean hasSubtype(SubType subtype, Game game) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public List<SuperType> getSuperType(Game game) {
|
|
return Collections.emptyList();
|
|
}
|
|
|
|
@Override
|
|
public Abilities<Ability> getAbilities() {
|
|
return abilites;
|
|
}
|
|
|
|
@Override
|
|
public boolean hasAbility(Ability ability, Game game) {
|
|
return getAbilities().contains(ability);
|
|
}
|
|
|
|
@Override
|
|
public ObjectColor getColor() {
|
|
return ObjectColor.COLORLESS;
|
|
}
|
|
|
|
@Override
|
|
public ObjectColor getColor(Game game) {
|
|
return ObjectColor.COLORLESS;
|
|
}
|
|
|
|
@Override
|
|
public ObjectColor getFrameColor(Game game) {
|
|
return ObjectColor.COLORLESS;
|
|
}
|
|
|
|
@Override
|
|
public ManaCosts<ManaCost> getManaCost() {
|
|
return emptyCost;
|
|
}
|
|
|
|
@Override
|
|
public int getManaValue() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public MageInt getPower() {
|
|
return MageInt.EmptyMageInt;
|
|
}
|
|
|
|
@Override
|
|
public MageInt getToughness() {
|
|
return MageInt.EmptyMageInt;
|
|
}
|
|
|
|
@Override
|
|
public int getStartingLoyalty() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void setStartingLoyalty(int startingLoyalty) {
|
|
}
|
|
|
|
@Override
|
|
public int getStartingDefense() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void setStartingDefense(int startingDefense) {
|
|
}
|
|
|
|
@Override
|
|
public int getZoneChangeCounter(Game game) {
|
|
return 1; // Emblems can't move zones until now so return always 1
|
|
}
|
|
|
|
@Override
|
|
public void updateZoneChangeCounter(Game game, ZoneChangeEvent event) {
|
|
throw new UnsupportedOperationException("Unsupported operation");
|
|
}
|
|
|
|
@Override
|
|
public void setZoneChangeCounter(int value, Game game) {
|
|
throw new UnsupportedOperationException("Unsupported operation");
|
|
}
|
|
|
|
@Override
|
|
public boolean isAllCreatureTypes(Game game) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void setIsAllCreatureTypes(boolean value) {
|
|
}
|
|
|
|
@Override
|
|
public void setIsAllCreatureTypes(Game game, boolean value) {
|
|
}
|
|
|
|
public void discardEffects() {
|
|
for (Ability ability : abilites) {
|
|
for (Effect effect : ability.getEffects()) {
|
|
if (effect instanceof ContinuousEffect) {
|
|
((ContinuousEffect) effect).discard();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void removePTCDA() {
|
|
}
|
|
}
|