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.Card; import mage.cards.FrameStyle; import mage.constants.CardType; import mage.constants.Planes; import mage.constants.SubType; import mage.constants.SuperType; import mage.game.Game; import mage.game.events.ZoneChangeEvent; import mage.util.GameLog; import mage.util.RandomUtil; import mage.util.SubTypes; import java.lang.reflect.Constructor; import java.util.ArrayList; import java.util.EnumSet; import java.util.List; import java.util.UUID; /** * @author spjspj */ public class Plane implements CommandObject { private static List emptySet = new ArrayList<>(); private static ObjectColor emptyColor = new ObjectColor(); private static ManaCosts emptyCost = new ManaCostsImpl(); private Planes planeType = null; private UUID id; 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 abilites = new AbilitiesImpl<>(); private String expansionSetCodeForImage = ""; public Plane() { this.id = UUID.randomUUID(); this.frameStyle = FrameStyle.M15_NORMAL; } public Plane(final Plane plane) { this.id = plane.id; this.planeType = plane.planeType; this.frameStyle = plane.frameStyle; this.controllerId = plane.controllerId; this.sourceObject = plane.sourceObject; this.copy = plane.copy; this.copyFrom = (plane.copyFrom != null ? plane.copyFrom.copy() : null); this.abilites = plane.abilites.copy(); this.expansionSetCodeForImage = plane.expansionSetCodeForImage; } @Override public FrameStyle getFrameStyle() { return frameStyle; } @Override public void assignNewId() { this.id = UUID.randomUUID(); } public void setSourceObject(MageObject sourceObject) { this.sourceObject = sourceObject; if (sourceObject instanceof Card) { if (expansionSetCodeForImage.isEmpty()) { expansionSetCodeForImage = ((Card) sourceObject).getExpansionSetCode(); } } } @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 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 planeType != null ? planeType.getFullName() : ""; } @Override public String getIdName() { return getName() + " [" + getId().toString().substring(0, 3) + ']'; } @Override public String getLogName() { return GameLog.getColoredObjectIdName(this); } @Override public String getImageName() { return planeType != null ? planeType.getFullName() : ""; } @Override public void setName(String name) { throw new UnsupportedOperationException("Planes don't use setName, use setPlaneType instead"); } public void setPlaneType(Planes planeType) { this.planeType = planeType; } public Planes getPlaneType() { return this.planeType; } @Override public List getCardType(Game game) { return emptySet; } @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 EnumSet getSuperType() { return EnumSet.noneOf(SuperType.class); } @Override public Abilities getAbilities() { return abilites; } @Override public boolean hasAbility(Ability ability, Game game) { return getAbilities().contains(ability); } @Override public ObjectColor getColor() { return emptyColor; } @Override public ObjectColor getColor(Game game) { return emptyColor; } @Override public ObjectColor getFrameColor(Game game) { return emptyColor; } @Override public ManaCosts 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 UUID getId() { return this.id; } @Override public Plane copy() { return new Plane(this); } public void setExpansionSetCodeForImage(String expansionSetCodeForImage) { this.expansionSetCodeForImage = expansionSetCodeForImage; } public String getExpansionSetCodeForImage() { return expansionSetCodeForImage; } @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() { } public static Plane createPlane(Planes planeType) { if (planeType != null) { String planeFullClass = "mage.game.command.planes." + planeType.getClassName(); try { Class c = Class.forName(planeFullClass); Constructor cons = c.getConstructor(); Object plane = cons.newInstance(); if (plane instanceof Plane) { return (Plane) plane; } } catch (Exception ex) { } } return null; } public static Plane createPlaneByFullName(String fullName) { Planes planeType = Planes.fromFullName(fullName); return createPlane(planeType); } public static Plane createRandomPlane() { int pick = RandomUtil.nextInt(Planes.values().length); Planes planeType = Planes.values()[pick]; return createPlane(planeType); } }