mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
Tokens and command objects reworked (part 1 of 2):
- fixed that copy effect doesn't restore original image after effect's end; - removed outdated availableImageSetCodes (all images auto-selected from tokens database now, related to #10139); - refactor command objects to use CommandObjectImpl; - refactor planes/emblems/etc objects to use MageObjectImpl, added copyable support; - refactor another game objects to remove some duplicated fields;
This commit is contained in:
parent
46f6593da8
commit
5f55c7c667
45 changed files with 517 additions and 477 deletions
|
|
@ -23,14 +23,18 @@ import java.util.Set;
|
|||
|
||||
public interface MageObject extends MageItem, Serializable, Copyable<MageObject> {
|
||||
|
||||
String getExpansionSetCode();
|
||||
void setExpansionSetCode(String expansionSetCode);
|
||||
|
||||
String getCardNumber();
|
||||
void setCardNumber(String cardNumber);
|
||||
|
||||
Integer getImageNumber();
|
||||
void setImageNumber(Integer imageNumber);
|
||||
|
||||
String getName();
|
||||
|
||||
String getIdName();
|
||||
|
||||
String getLogName();
|
||||
|
||||
String getImageName();
|
||||
|
||||
void setName(String name);
|
||||
|
||||
default List<CardType> getCardType() {
|
||||
|
|
|
|||
|
|
@ -29,18 +29,26 @@ public abstract class MageObjectImpl implements MageObject {
|
|||
|
||||
protected String name;
|
||||
protected ManaCosts<ManaCost> manaCost;
|
||||
|
||||
protected ObjectColor color;
|
||||
protected ObjectColor frameColor;
|
||||
protected FrameStyle frameStyle;
|
||||
|
||||
private String expansionSetCode = "";
|
||||
private String cardNumber = "";
|
||||
private int imageNumber = 0;
|
||||
|
||||
protected List<CardType> cardType = new ArrayList<>();
|
||||
protected SubTypes subtype = new SubTypes();
|
||||
protected Set<SuperType> supertype = EnumSet.noneOf(SuperType.class);
|
||||
protected Abilities<Ability> abilities;
|
||||
|
||||
protected String text;
|
||||
protected MageInt power;
|
||||
protected MageInt toughness;
|
||||
protected int startingLoyalty = -1; // -2 means X, -1 means none, 0 and up is normal
|
||||
protected int startingDefense = -1; // -2 means X, -1 means none, 0 and up is normal
|
||||
|
||||
protected boolean copy;
|
||||
protected MageObject copyFrom; // copied card INFO (used to call original adjusters)
|
||||
|
||||
|
|
@ -67,6 +75,9 @@ public abstract class MageObjectImpl implements MageObject {
|
|||
color = object.color.copy();
|
||||
frameColor = object.frameColor.copy();
|
||||
frameStyle = object.frameStyle;
|
||||
expansionSetCode = object.expansionSetCode;
|
||||
cardNumber = object.cardNumber;
|
||||
imageNumber = object.imageNumber;
|
||||
power = object.power.copy();
|
||||
toughness = object.toughness.copy();
|
||||
startingLoyalty = object.startingLoyalty;
|
||||
|
|
@ -99,11 +110,6 @@ public abstract class MageObjectImpl implements MageObject {
|
|||
return GameLog.getColoredObjectIdName(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
|
|
@ -233,6 +239,36 @@ public abstract class MageObjectImpl implements MageObject {
|
|||
return frameStyle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return expansionSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCode(String expansionSetCode) {
|
||||
this.expansionSetCode = expansionSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCardNumber() {
|
||||
return cardNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCardNumber(String cardNumber) {
|
||||
this.cardNumber = cardNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getImageNumber() {
|
||||
return imageNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setImageNumber(Integer imageNumber) {
|
||||
this.imageNumber = imageNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ManaCosts<ManaCost> getManaCost() {
|
||||
return manaCost;
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ public interface Ability extends Controllable, Serializable {
|
|||
* @see Game#addTriggeredAbility(TriggeredAbility, GameEvent)
|
||||
* @see mage.game.GameImpl#addDelayedTriggeredAbility(mage.abilities.DelayedTriggeredAbility)
|
||||
*/
|
||||
void newOriginalId();
|
||||
void newOriginalId(); // TODO: delete newOriginalId???
|
||||
|
||||
/**
|
||||
* Gets the {@link AbilityType} of this ability.
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public abstract class AbilityImpl implements Ability {
|
|||
private static final List<Ability> emptyAbilities = new ArrayList<>();
|
||||
|
||||
protected UUID id;
|
||||
protected UUID originalId;
|
||||
protected UUID originalId; // TODO: delete originalId???
|
||||
protected AbilityType abilityType;
|
||||
protected UUID controllerId;
|
||||
protected UUID sourceId;
|
||||
|
|
|
|||
|
|
@ -128,8 +128,7 @@ public class RollPlanarDieEffect extends OneShotEffect {
|
|||
try {
|
||||
if (plane != null && !planesVisited.contains(plane.getName())) {
|
||||
foundNextPlane = true;
|
||||
plane.setControllerId(controller.getId());
|
||||
game.addPlane(plane, null, controller.getId());
|
||||
game.addPlane(plane, controller.getId());
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ import mage.abilities.costs.mana.GenericManaCost;
|
|||
import mage.abilities.costs.mana.ManaCost;
|
||||
import mage.abilities.effects.common.continuous.BecomesFaceDownCreatureEffect;
|
||||
import mage.abilities.effects.common.continuous.BecomesFaceDownCreatureEffect.FaceDownType;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.game.Game;
|
||||
|
|
@ -157,9 +156,6 @@ public class MorphAbility extends AlternativeSourceCostsImpl {
|
|||
targetObject.getManaCost().clear();
|
||||
|
||||
Token emptyImage = new EmptyToken();
|
||||
emptyImage.setOriginalExpansionSetCode("");
|
||||
emptyImage.setExpansionSetCodeForImage("");
|
||||
emptyImage.setOriginalCardNumber("");
|
||||
|
||||
// TODO: add morph image here?
|
||||
if (targetObject instanceof Permanent) {
|
||||
|
|
|
|||
|
|
@ -45,11 +45,6 @@ public class AdventureCardSpellImpl extends CardImpl implements AdventureCardSpe
|
|||
return adventureCardParent.getOwnerId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return adventureCardParent.getImageName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return adventureCardParent.getExpansionSetCode();
|
||||
|
|
|
|||
|
|
@ -25,8 +25,6 @@ public interface Card extends MageObject {
|
|||
|
||||
UUID getOwnerId();
|
||||
|
||||
String getCardNumber();
|
||||
|
||||
Rarity getRarity(); // null for tokens
|
||||
|
||||
void setOwnerId(UUID ownerId);
|
||||
|
|
@ -48,7 +46,6 @@ public interface Card extends MageObject {
|
|||
|
||||
List<String> getRules(Game game); // gets card rules + in game modifications
|
||||
|
||||
String getExpansionSetCode();
|
||||
void checkForCountersToAdd(Permanent permanent, Ability source, Game game);
|
||||
|
||||
void setFaceDown(boolean value, Game game);
|
||||
|
|
|
|||
|
|
@ -40,8 +40,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
private static final Logger logger = Logger.getLogger(CardImpl.class);
|
||||
|
||||
protected UUID ownerId;
|
||||
protected String cardNumber;
|
||||
protected String expansionSetCode;
|
||||
protected Rarity rarity;
|
||||
protected Class<? extends Card> secondSideCardClazz;
|
||||
protected Class<? extends Card> meldsWithClazz;
|
||||
|
|
@ -59,12 +57,12 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
public CardImpl(UUID ownerId, CardSetInfo setInfo, CardType[] cardTypes, String costs) {
|
||||
this(ownerId, setInfo, cardTypes, costs, SpellAbilityType.BASE);
|
||||
}
|
||||
|
||||
public CardImpl(UUID ownerId, CardSetInfo setInfo, CardType[] cardTypes, String costs, SpellAbilityType spellAbilityType) {
|
||||
this(ownerId, setInfo.getName());
|
||||
|
||||
this.rarity = setInfo.getRarity();
|
||||
this.cardNumber = setInfo.getCardNumber();
|
||||
this.expansionSetCode = setInfo.getExpansionSetCode();
|
||||
this.setExpansionSetCode(setInfo.getExpansionSetCode());
|
||||
this.setCardNumber(setInfo.getCardNumber());
|
||||
this.cardType.addAll(Arrays.asList(cardTypes));
|
||||
this.manaCost.load(costs);
|
||||
setDefaultColor();
|
||||
|
|
@ -104,6 +102,7 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
}
|
||||
|
||||
protected CardImpl(UUID ownerId, String name) {
|
||||
super();
|
||||
this.ownerId = ownerId;
|
||||
this.name = name;
|
||||
}
|
||||
|
|
@ -117,8 +116,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
public CardImpl(final CardImpl card) {
|
||||
super(card);
|
||||
ownerId = card.ownerId;
|
||||
cardNumber = card.cardNumber;
|
||||
expansionSetCode = card.expansionSetCode;
|
||||
rarity = card.rarity;
|
||||
|
||||
secondSideCardClazz = card.secondSideCardClazz;
|
||||
|
|
@ -199,11 +196,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
return ownerId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCardNumber() {
|
||||
return cardNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Rarity getRarity() {
|
||||
return rarity;
|
||||
|
|
@ -369,11 +361,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
abilities.setControllerId(ownerId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return expansionSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Mana> getMana() {
|
||||
List<Mana> mana = new ArrayList<>();
|
||||
|
|
@ -634,11 +621,11 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
// must be non strict search in any sets, not one set
|
||||
// example: if set contains only one card side
|
||||
// method used in cards database creating, so can't use repository here
|
||||
ExpansionSet.SetCardInfo info = Sets.findCardByClass(cardClazz, expansionSetCode, cardNumber);
|
||||
ExpansionSet.SetCardInfo info = Sets.findCardByClass(cardClazz, this.getExpansionSetCode(), this.getCardNumber());
|
||||
if (info == null) {
|
||||
return null;
|
||||
}
|
||||
return createCard(cardClazz, new CardSetInfo(info.getName(), expansionSetCode, info.getCardNumber(), info.getRarity(), info.getGraphicInfo()));
|
||||
return createCard(cardClazz, new CardSetInfo(info.getName(), this.getExpansionSetCode(), info.getCardNumber(), info.getRarity(), info.getGraphicInfo()));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -36,11 +36,6 @@ public class ModalDoubleFacesCardHalfImpl extends CardImpl implements ModalDoubl
|
|||
return parentCard.getOwnerId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
// TODO: own set code?
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ public class Sets extends HashMap<String, ExpansionSet> {
|
|||
if (instance.containsKey(preferredSetCode)) {
|
||||
info = instance.get(preferredSetCode).findCardInfoByClass(clazz)
|
||||
.stream()
|
||||
.filter(card -> preferredCardNumber == null || card.getCardNumber().equals(preferredCardNumber))
|
||||
.filter(card -> preferredCardNumber.isEmpty() || card.getCardNumber().equals(preferredCardNumber))
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
}
|
||||
|
|
@ -220,7 +220,7 @@ public class Sets extends HashMap<String, ExpansionSet> {
|
|||
for (Map.Entry<String, ExpansionSet> entry : instance.entrySet()) {
|
||||
info = entry.getValue().findCardInfoByClass(clazz)
|
||||
.stream()
|
||||
.filter(card -> preferredCardNumber == null || card.getCardNumber().equals(preferredCardNumber))
|
||||
.filter(card -> preferredCardNumber.isEmpty() || card.getCardNumber().equals(preferredCardNumber))
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
if (info != null) {
|
||||
|
|
|
|||
|
|
@ -31,11 +31,6 @@ public class SplitCardHalfImpl extends CardImpl implements SplitCardHalf {
|
|||
return splitCardParent.getOwnerId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return splitCardParent.getImageName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return splitCardParent.getExpansionSetCode();
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@ public class MockCard extends CardImpl {
|
|||
|
||||
public MockCard(CardInfo card) {
|
||||
super(null, card.getName());
|
||||
this.cardNumber = card.getCardNumber();
|
||||
this.expansionSetCode = card.getSetCode();
|
||||
this.setExpansionSetCode(card.getSetCode());
|
||||
this.setCardNumber(card.getCardNumber());
|
||||
this.power = mageIntFromString(card.getPower());
|
||||
this.toughness = mageIntFromString(card.getToughness());
|
||||
this.rarity = card.getRarity();
|
||||
|
|
|
|||
|
|
@ -26,7 +26,6 @@ public class MockSplitCard extends SplitCard {
|
|||
join(card.getManaCosts(CardInfo.ManaCostSide.LEFT)),
|
||||
join(card.getManaCosts(CardInfo.ManaCostSide.RIGHT)),
|
||||
getSpellAbilityType(card));
|
||||
this.expansionSetCode = card.getSetCode();
|
||||
this.power = mageIntFromString(card.getPower());
|
||||
this.toughness = mageIntFromString(card.getToughness());
|
||||
this.cardType = card.getTypes();
|
||||
|
|
|
|||
|
|
@ -349,7 +349,7 @@ public enum CardRepository {
|
|||
}
|
||||
|
||||
public CardInfo findPreferredCoreExpansionCard(String name) {
|
||||
return findPreferredCoreExpansionCard(name, null);
|
||||
return findPreferredCoreExpansionCard(name, "");
|
||||
}
|
||||
|
||||
public CardInfo findPreferredCoreExpansionCard(String name, String preferredSetCode) {
|
||||
|
|
@ -368,7 +368,7 @@ public enum CardRepository {
|
|||
ExpansionInfo set = ExpansionRepository.instance.getSetByCode(cardinfo.getSetCode());
|
||||
if (set != null) {
|
||||
|
||||
if ((preferredSetCode != null) && (preferredSetCode.equals(set.getCode()))) {
|
||||
if (preferredSetCode.equals(set.getCode())) {
|
||||
return cardinfo;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
package mage.cards.repository;
|
||||
|
||||
import mage.util.RandomUtil;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
|
|
@ -275,4 +276,31 @@ public enum TokenRepository {
|
|||
|
||||
return res;
|
||||
}
|
||||
|
||||
/**
|
||||
* Try to find random image info by related set code
|
||||
*
|
||||
* @param className full class name of the token or other object
|
||||
* @param setCode primary set code for possible image
|
||||
* @return
|
||||
*/
|
||||
public TokenInfo generateTokenInfoBySetCode(String className, String setCode) {
|
||||
// search by set code
|
||||
List<TokenInfo> possibleInfo = TokenRepository.instance.getByClassName(className)
|
||||
.stream()
|
||||
.filter(info -> info.getSetCode().equals(setCode))
|
||||
.collect(Collectors.toList());
|
||||
|
||||
// search by random set
|
||||
if (possibleInfo.isEmpty()) {
|
||||
possibleInfo = new ArrayList<>(TokenRepository.instance.getByClassName(className));
|
||||
}
|
||||
|
||||
// also weill return diff image number for tokens
|
||||
if (possibleInfo.size() > 0) {
|
||||
return RandomUtil.randomFromCollection(possibleInfo);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -398,7 +398,7 @@ public interface Game extends MageItem, Serializable, Copyable<Game> {
|
|||
|
||||
void addEmblem(Emblem emblem, MageObject sourceObject, UUID toPlayerId);
|
||||
|
||||
boolean addPlane(Plane plane, MageObject sourceObject, UUID toPlayerId);
|
||||
boolean addPlane(Plane plane, UUID toPlayerId);
|
||||
|
||||
void addCommander(Commander commander);
|
||||
|
||||
|
|
|
|||
|
|
@ -1307,7 +1307,7 @@ public abstract class GameImpl implements Game {
|
|||
if (gameOptions.planeChase) {
|
||||
Plane plane = Plane.createRandomPlane();
|
||||
plane.setControllerId(startingPlayerId);
|
||||
addPlane(plane, null, startingPlayerId);
|
||||
addPlane(plane, startingPlayerId);
|
||||
state.setPlaneChase(this, gameOptions.planeChase);
|
||||
}
|
||||
}
|
||||
|
|
@ -1850,18 +1850,18 @@ public abstract class GameImpl implements Game {
|
|||
for (Ability ability : newEmblem.getAbilities()) {
|
||||
ability.setSourceId(newEmblem.getId());
|
||||
}
|
||||
state.addCommandObject(newEmblem);
|
||||
|
||||
state.addCommandObject(newEmblem); // TODO: generate image for emblem here?
|
||||
}
|
||||
|
||||
/**
|
||||
* @param plane
|
||||
* @param sourceObject
|
||||
* @param toPlayerId controller and owner of the plane (may only be one
|
||||
* per game..)
|
||||
* @return boolean - whether the plane was added successfully or not
|
||||
*/
|
||||
@Override
|
||||
public boolean addPlane(Plane plane, MageObject sourceObject, UUID toPlayerId) {
|
||||
public boolean addPlane(Plane plane, UUID toPlayerId) {
|
||||
// Implementing planechase as if it were 901.15. Single Planar Deck Option
|
||||
// Here, can enforce the world plane restriction (the Grand Melee format may have some impact on this implementation)
|
||||
|
||||
|
|
@ -1872,7 +1872,7 @@ public abstract class GameImpl implements Game {
|
|||
}
|
||||
}
|
||||
Plane newPlane = plane.copy();
|
||||
newPlane.setSourceObject(sourceObject);
|
||||
newPlane.setSourceObject();
|
||||
newPlane.setControllerId(toPlayerId);
|
||||
newPlane.assignNewId();
|
||||
newPlane.getAbilities().newId();
|
||||
|
|
@ -3160,7 +3160,7 @@ public abstract class GameImpl implements Game {
|
|||
addedAgain = true;
|
||||
Plane plane = Plane.createRandomPlane();
|
||||
plane.setControllerId(aplayer.getId());
|
||||
addPlane(plane, null, aplayer.getId());
|
||||
addPlane(plane, aplayer.getId());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,8 +18,4 @@ public interface CommandObject extends MageObject, Controllable {
|
|||
|
||||
@Override
|
||||
CommandObject copy();
|
||||
|
||||
String getExpansionSetCodeForImage();
|
||||
|
||||
void setExpansionSetCodeForImage(String expansionSetCodeForImage);
|
||||
}
|
||||
|
|
|
|||
92
Mage/src/main/java/mage/game/command/CommandObjectImpl.java
Normal file
92
Mage/src/main/java/mage/game/command/CommandObjectImpl.java
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
package mage.game.command;
|
||||
|
||||
import mage.game.permanent.token.TokenImpl;
|
||||
import mage.util.GameLog;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author JayDi85
|
||||
*/
|
||||
public abstract class CommandObjectImpl implements CommandObject {
|
||||
|
||||
private UUID id;
|
||||
private String name = "";
|
||||
|
||||
private String expansionSetCode;
|
||||
private String cardNumber;
|
||||
private int imageNumber;
|
||||
|
||||
public CommandObjectImpl(String name) {
|
||||
this.id = UUID.randomUUID();
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
protected CommandObjectImpl(final CommandObjectImpl object) {
|
||||
this.id = object.id;
|
||||
this.name = object.name;
|
||||
this.expansionSetCode = object.expansionSetCode;
|
||||
this.cardNumber = object.cardNumber;
|
||||
this.imageNumber = object.imageNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return expansionSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCode(String expansionSetCode) {
|
||||
this.expansionSetCode = expansionSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCardNumber() {
|
||||
return cardNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCardNumber(String cardNumber) {
|
||||
this.cardNumber = cardNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getImageNumber() {
|
||||
return imageNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setImageNumber(Integer imageNumber) {
|
||||
this.imageNumber = imageNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void assignNewId() {
|
||||
this.id = UUID.randomUUID();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIdName() {
|
||||
return getName() + " [" + getId().toString().substring(0, 3) + ']';
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getLogName() {
|
||||
return GameLog.getColoredObjectIdName(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -23,7 +23,7 @@ import java.util.List;
|
|||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
public class Commander implements CommandObject {
|
||||
public class Commander extends CommandObjectImpl {
|
||||
|
||||
private final Card sourceObject;
|
||||
private boolean copy;
|
||||
|
|
@ -31,6 +31,7 @@ public class Commander implements CommandObject {
|
|||
private final Abilities<Ability> abilities = new AbilitiesImpl<>();
|
||||
|
||||
public Commander(Card card) {
|
||||
super(card.getName());
|
||||
this.sourceObject = card;
|
||||
|
||||
// All abilities must be added to the game before usage. It adding by addCard and addCommandObject calls
|
||||
|
|
@ -106,6 +107,7 @@ public class Commander implements CommandObject {
|
|||
}
|
||||
|
||||
private Commander(final Commander commander) {
|
||||
super(commander);
|
||||
this.sourceObject = commander.sourceObject.copy();
|
||||
this.copy = commander.copy;
|
||||
this.copyFrom = (commander.copyFrom != null ? commander.copyFrom.copy() : null);
|
||||
|
|
@ -127,10 +129,6 @@ public class Commander implements CommandObject {
|
|||
return sourceObject.getOwnerId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void assignNewId() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public CommandObject copy() {
|
||||
return new Commander(this);
|
||||
|
|
@ -162,15 +160,6 @@ public class Commander implements CommandObject {
|
|||
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 List<CardType> getCardType(Game game) {
|
||||
return sourceObject.getCardType(game);
|
||||
|
|
@ -289,21 +278,6 @@ public class Commander implements CommandObject {
|
|||
return sourceObject.getId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return sourceObject.getImageName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCodeForImage() {
|
||||
return sourceObject.getExpansionSetCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCodeForImage(String expansionSetCodeForImage) {
|
||||
throw new IllegalStateException("Can't change a set code of the commander, source card already has it");
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getZoneChangeCounter(Game game) {
|
||||
return sourceObject.getZoneChangeCounter(game);
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ import java.util.*;
|
|||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class Dungeon implements CommandObject {
|
||||
public class Dungeon extends CommandObjectImpl {
|
||||
|
||||
private static final Set<String> dungeonNames = new HashSet<>();
|
||||
|
||||
|
|
@ -49,31 +49,24 @@ public class Dungeon implements CommandObject {
|
|||
private static final ObjectColor emptyColor = new ObjectColor();
|
||||
private static final ManaCosts<ManaCost> emptyCost = new ManaCostsImpl<>();
|
||||
|
||||
private final String name;
|
||||
private UUID id;
|
||||
private UUID controllerId;
|
||||
private boolean copy;
|
||||
private MageObject copyFrom; // copied card INFO (used to call original adjusters)
|
||||
private FrameStyle frameStyle;
|
||||
private final Abilities<Ability> abilites = new AbilitiesImpl<>();
|
||||
private String expansionSetCodeForImage;
|
||||
private final List<DungeonRoom> dungeonRooms = new ArrayList<>();
|
||||
private DungeonRoom currentRoom = null;
|
||||
|
||||
public Dungeon(String name, String expansionSetCodeForImage) {
|
||||
this.id = UUID.randomUUID();
|
||||
this.name = name;
|
||||
this.expansionSetCodeForImage = expansionSetCodeForImage;
|
||||
public Dungeon(String name) {
|
||||
super(name);
|
||||
}
|
||||
|
||||
public Dungeon(final Dungeon dungeon) {
|
||||
this.id = dungeon.id;
|
||||
this.name = dungeon.name;
|
||||
super(dungeon);
|
||||
this.frameStyle = dungeon.frameStyle;
|
||||
this.controllerId = dungeon.controllerId;
|
||||
this.copy = dungeon.copy;
|
||||
this.copyFrom = (dungeon.copyFrom != null ? dungeon.copyFrom : null);
|
||||
this.expansionSetCodeForImage = dungeon.expansionSetCodeForImage;
|
||||
this.copyRooms(dungeon);
|
||||
}
|
||||
|
||||
|
|
@ -91,7 +84,7 @@ public class Dungeon implements CommandObject {
|
|||
|
||||
public void addRoom(DungeonRoom room) {
|
||||
this.dungeonRooms.add(room);
|
||||
room.getRoomTriggeredAbility().setSourceId(id);
|
||||
room.getRoomTriggeredAbility().setSourceId(this.getId());
|
||||
this.abilites.add(room.getRoomTriggeredAbility());
|
||||
}
|
||||
|
||||
|
|
@ -173,11 +166,6 @@ public class Dungeon implements CommandObject {
|
|||
return frameStyle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void assignNewId() {
|
||||
this.id = UUID.randomUUID();
|
||||
}
|
||||
|
||||
@Override
|
||||
public MageObject getSourceObject() {
|
||||
return null;
|
||||
|
|
@ -214,30 +202,6 @@ public class Dungeon implements CommandObject {
|
|||
return this.copyFrom;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIdName() {
|
||||
return getName() + " [" + getId().toString().substring(0, 3) + ']';
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getLogName() {
|
||||
return GameLog.getColoredObjectIdName(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setName(String name) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<CardType> getCardType(Game game) {
|
||||
return emptyList;
|
||||
|
|
@ -326,26 +290,11 @@ public class Dungeon implements CommandObject {
|
|||
public void setStartingDefense(int startingDefense) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Dungeon copy() {
|
||||
return new Dungeon(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCodeForImage() {
|
||||
return expansionSetCodeForImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCodeForImage(String expansionSetCodeForImage) {
|
||||
this.expansionSetCodeForImage = expansionSetCodeForImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getZoneChangeCounter(Game game) {
|
||||
return 1;
|
||||
|
|
|
|||
|
|
@ -13,11 +13,14 @@ import mage.abilities.effects.ContinuousEffect;
|
|||
import mage.abilities.effects.Effect;
|
||||
import mage.cards.Card;
|
||||
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.game.permanent.token.TokenImpl;
|
||||
import mage.util.GameLog;
|
||||
import mage.util.RandomUtil;
|
||||
import mage.util.SubTypes;
|
||||
|
|
@ -27,40 +30,31 @@ import java.util.*;
|
|||
/**
|
||||
* @author nantuko
|
||||
*/
|
||||
public class Emblem implements CommandObject {
|
||||
public abstract class Emblem extends CommandObjectImpl {
|
||||
|
||||
private static final List<CardType> emptyList = Collections.unmodifiableList(new ArrayList<>());
|
||||
private static final ObjectColor emptyColor = new ObjectColor();
|
||||
private static final ManaCosts emptyCost = new ManaCostsImpl<>();
|
||||
|
||||
private String name = "";
|
||||
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<Ability> abilites = new AbilitiesImpl<>();
|
||||
private String expansionSetCodeForImage = "";
|
||||
|
||||
// list of set codes emblem images are available for
|
||||
protected List<String> availableImageSetCodes = new ArrayList<>();
|
||||
|
||||
public Emblem() {
|
||||
this.id = UUID.randomUUID();
|
||||
public Emblem(String name) {
|
||||
super(name);
|
||||
}
|
||||
|
||||
public Emblem(final Emblem emblem) {
|
||||
this.id = emblem.id;
|
||||
this.name = emblem.name;
|
||||
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();
|
||||
this.expansionSetCodeForImage = emblem.expansionSetCodeForImage;
|
||||
this.availableImageSetCodes = emblem.availableImageSetCodes;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -68,25 +62,18 @@ public class Emblem implements CommandObject {
|
|||
return frameStyle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void assignNewId() {
|
||||
this.id = UUID.randomUUID();
|
||||
}
|
||||
|
||||
public void setSourceObject(MageObject sourceObject) {
|
||||
this.sourceObject = sourceObject;
|
||||
if (sourceObject instanceof Card) {
|
||||
if (name.isEmpty()) {
|
||||
name = sourceObject.getSubtype().toString();
|
||||
}
|
||||
if (expansionSetCodeForImage.isEmpty()) {
|
||||
expansionSetCodeForImage = ((Card) sourceObject).getExpansionSetCode();
|
||||
}
|
||||
if (!availableImageSetCodes.isEmpty()) {
|
||||
if (expansionSetCodeForImage.equals("") || !availableImageSetCodes.contains(expansionSetCodeForImage)) {
|
||||
expansionSetCodeForImage = availableImageSetCodes.get(RandomUtil.nextInt(availableImageSetCodes.size()));
|
||||
}
|
||||
}
|
||||
|
||||
// choose set code due source
|
||||
TokenInfo foundInfo = TokenRepository.instance.generateTokenInfoBySetCode(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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -113,6 +100,9 @@ public class Emblem implements CommandObject {
|
|||
this.abilites.setControllerId(controllerId);
|
||||
}
|
||||
|
||||
@Override
|
||||
abstract public Emblem copy();
|
||||
|
||||
@Override
|
||||
public void setCopy(boolean isCopy, MageObject copyFrom) {
|
||||
this.copy = isCopy;
|
||||
|
|
@ -129,31 +119,6 @@ public class Emblem implements CommandObject {
|
|||
return this.copyFrom;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIdName() {
|
||||
return getName() + " [" + getId().toString().substring(0, 3) + ']';
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getLogName() {
|
||||
return GameLog.getColoredObjectIdName(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<CardType> getCardType(Game game) {
|
||||
return emptyList;
|
||||
|
|
@ -242,26 +207,6 @@ public class Emblem implements CommandObject {
|
|||
public void setStartingDefense(int startingDefense) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Emblem copy() {
|
||||
return new Emblem(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCodeForImage() {
|
||||
return expansionSetCodeForImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCodeForImage(String expansionSetCodeForImage) {
|
||||
this.expansionSetCodeForImage = expansionSetCodeForImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getZoneChangeCounter(Game game) {
|
||||
return 1; // Emblems can't move zones until now so return always 1
|
||||
|
|
|
|||
|
|
@ -13,6 +13,8 @@ import mage.abilities.effects.ContinuousEffect;
|
|||
import mage.abilities.effects.Effect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.FrameStyle;
|
||||
import mage.cards.repository.TokenInfo;
|
||||
import mage.cards.repository.TokenRepository;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Planes;
|
||||
import mage.constants.SubType;
|
||||
|
|
@ -29,29 +31,28 @@ import java.util.*;
|
|||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public class Plane implements CommandObject {
|
||||
public abstract class Plane extends CommandObjectImpl {
|
||||
|
||||
private static final List<CardType> emptyList = Collections.unmodifiableList(new ArrayList<>());
|
||||
private static final ObjectColor emptyColor = new ObjectColor();
|
||||
private static final 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<Ability> abilites = new AbilitiesImpl<>();
|
||||
private String expansionSetCodeForImage = "";
|
||||
|
||||
public Plane() {
|
||||
this.id = UUID.randomUUID();
|
||||
super("");
|
||||
this.frameStyle = FrameStyle.M15_NORMAL;
|
||||
}
|
||||
|
||||
public Plane(final Plane plane) {
|
||||
this.id = plane.id;
|
||||
super(plane);
|
||||
this.planeType = plane.planeType;
|
||||
this.frameStyle = plane.frameStyle;
|
||||
this.controllerId = plane.controllerId;
|
||||
|
|
@ -59,7 +60,6 @@ public class Plane implements CommandObject {
|
|||
this.copy = plane.copy;
|
||||
this.copyFrom = (plane.copyFrom != null ? plane.copyFrom.copy() : null);
|
||||
this.abilites = plane.abilites.copy();
|
||||
this.expansionSetCodeForImage = plane.expansionSetCodeForImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -67,17 +67,18 @@ public class Plane implements CommandObject {
|
|||
return frameStyle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void assignNewId() {
|
||||
this.id = UUID.randomUUID();
|
||||
}
|
||||
public void setSourceObject() {
|
||||
this.sourceObject = null;
|
||||
|
||||
public void setSourceObject(MageObject sourceObject) {
|
||||
this.sourceObject = sourceObject;
|
||||
if (sourceObject instanceof Card) {
|
||||
if (expansionSetCodeForImage.isEmpty()) {
|
||||
expansionSetCodeForImage = ((Card) sourceObject).getExpansionSetCode();
|
||||
}
|
||||
// choose set code due source
|
||||
TokenInfo foundInfo = TokenRepository.instance.generateTokenInfoBySetCode(this.getClass().getName(), null);
|
||||
if (foundInfo != null) {
|
||||
this.setExpansionSetCode(foundInfo.getSetCode());
|
||||
this.setCardNumber("");
|
||||
this.setImageNumber(foundInfo.getImageNumber());
|
||||
} else {
|
||||
// how-to fix: add plane to the tokens-database
|
||||
throw new IllegalArgumentException("Wrong code usage: can't find token info for the plane: " + this.getClass().getName());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -104,6 +105,9 @@ public class Plane implements CommandObject {
|
|||
this.abilites.setControllerId(controllerId);
|
||||
}
|
||||
|
||||
@Override
|
||||
abstract public Plane copy();
|
||||
|
||||
@Override
|
||||
public void setCopy(boolean isCopy, MageObject copyFrom) {
|
||||
this.copy = isCopy;
|
||||
|
|
@ -125,21 +129,6 @@ public class Plane implements CommandObject {
|
|||
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");
|
||||
|
|
@ -241,29 +230,9 @@ public class Plane implements CommandObject {
|
|||
public void setStartingDefense(int startingDefense) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Plane copy() {
|
||||
return new Plane(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCodeForImage() {
|
||||
return expansionSetCodeForImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCodeForImage(String expansionSetCodeForImage) {
|
||||
this.expansionSetCodeForImage = expansionSetCodeForImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getZoneChangeCounter(Game game) {
|
||||
return 1; // Emblems can't move zones until now so return always 1
|
||||
return 1; // Planes can't move zones until now so return always 1
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -311,6 +280,7 @@ public class Plane implements CommandObject {
|
|||
Constructor<?> cons = c.getConstructor();
|
||||
Object plane = cons.newInstance();
|
||||
if (plane instanceof Plane) {
|
||||
// TODO: generate image for plane here?
|
||||
return (Plane) plane;
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
|
|
|
|||
|
|
@ -126,9 +126,10 @@ public class PermanentCard extends PermanentImpl {
|
|||
this.subtype.copyFrom(card.getSubtype());
|
||||
this.supertype.clear();
|
||||
this.supertype.addAll(card.getSuperType());
|
||||
this.expansionSetCode = card.getExpansionSetCode();
|
||||
|
||||
this.setExpansionSetCode(card.getExpansionSetCode());
|
||||
this.setCardNumber(card.getCardNumber());
|
||||
this.rarity = card.getRarity();
|
||||
this.cardNumber = card.getCardNumber();
|
||||
this.usesVariousArt = card.getUsesVariousArt();
|
||||
|
||||
if (card.getSecondCardFace() != null) {
|
||||
|
|
|
|||
|
|
@ -186,7 +186,7 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
|
|||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = threadLocalBuilder.get();
|
||||
sb.append(this.getName()).append('-').append(this.expansionSetCode);
|
||||
sb.append(this.getName()).append('-').append(this.getExpansionSetCode());
|
||||
if (copy) {
|
||||
sb.append(" [Copy]");
|
||||
}
|
||||
|
|
@ -1184,7 +1184,7 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
|
|||
@Override
|
||||
public boolean entersBattlefield(Ability source, Game game, Zone fromZone, boolean fireEvent) {
|
||||
controlledFromStartOfControllerTurn = false;
|
||||
if (this.isFaceDown(game)) { // ?? add morphed/manifested here ??
|
||||
if (this.isFaceDown(game)) { // ?? add morphed/manifested here ???
|
||||
// remove some attributes here, because first apply effects comes later otherwise abilities (e.g. color related) will unintended trigger
|
||||
MorphAbility.setPermanentToFaceDownCreature(this, this, game);
|
||||
}
|
||||
|
|
@ -1782,16 +1782,6 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
|
|||
morphed = value;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCardNumber(String cardNumber) {
|
||||
this.cardNumber = cardNumber;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCode(String expansionSetCode) {
|
||||
this.expansionSetCode = expansionSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setRarity(Rarity rarity) {
|
||||
this.rarity = rarity;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ import mage.constants.EmptyNames;
|
|||
import mage.game.Game;
|
||||
import mage.game.events.ZoneChangeEvent;
|
||||
import mage.game.permanent.token.Token;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -73,6 +74,11 @@ public class PermanentToken extends PermanentImpl {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("%s - %s", getExpansionSetCode(), getName());
|
||||
}
|
||||
|
||||
private void copyFromToken(Token token, Game game, boolean reset) {
|
||||
// modify all attributes permanently (without game usage)
|
||||
this.name = token.getName();
|
||||
|
|
@ -105,6 +111,8 @@ public class PermanentToken extends PermanentImpl {
|
|||
if (this.abilities.containsClass(ChangelingAbility.class)) {
|
||||
this.subtype.setIsAllCreatureTypes(true);
|
||||
}
|
||||
|
||||
CardUtil.copySetAndCardNumber(this, token);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -144,24 +152,4 @@ public class PermanentToken extends PermanentImpl {
|
|||
public MageObject getOtherFace() {
|
||||
return this.transformed ? token : this.token.getBackFace();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCardNumber() {
|
||||
return token.getOriginalCardNumber();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCardNumber(String cardNumber) {
|
||||
throw new IllegalArgumentException("Wrong code usage: you can't change a token's card number");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return token.getOriginalExpansionSetCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCode(String expansionSetCode) {
|
||||
throw new IllegalArgumentException("Wrong code usage: you can't change a token's set code, use CardUtils.copySetAndCardNumber instead");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -202,6 +202,36 @@ public class Spell extends StackObjectImpl implements Card {
|
|||
return GameLog.replaceNameByColoredName(card, getSpellAbility().toString());
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return card.getExpansionSetCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCode(String expansionSetCode) {
|
||||
throw new IllegalStateException("Wrong code usage: you can't change set code for the spell");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCardNumber() {
|
||||
return card.getCardNumber();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCardNumber(String cardNumber) {
|
||||
throw new IllegalStateException("Wrong code usage: you can't change card number for the spell");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getImageNumber() {
|
||||
return card.getImageNumber();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setImageNumber(Integer imageNumber) {
|
||||
throw new IllegalStateException("Wrong code usage: you can't change image number for the spell");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean resolve(Game game) {
|
||||
boolean result;
|
||||
|
|
@ -481,11 +511,6 @@ public class Spell extends StackObjectImpl implements Card {
|
|||
return GameLog.getColoredObjectIdName(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return card.getImageName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setName(String name) {
|
||||
}
|
||||
|
|
@ -704,11 +729,6 @@ public class Spell extends StackObjectImpl implements Card {
|
|||
return card.getRules(game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return card.getExpansionSetCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFaceDown(boolean value, Game game) {
|
||||
faceDown = value;
|
||||
|
|
@ -875,11 +895,6 @@ public class Spell extends StackObjectImpl implements Card {
|
|||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCardNumber() {
|
||||
return card.getCardNumber();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getUsesVariousArt() {
|
||||
return card.getUsesVariousArt();
|
||||
|
|
|
|||
|
|
@ -52,23 +52,23 @@ public class StackAbility extends StackObjectImpl implements Ability {
|
|||
private boolean copy;
|
||||
private MageObject copyFrom; // copied card INFO (used to call original adjusters)
|
||||
private String name;
|
||||
private String expansionSetCode;
|
||||
private TargetAdjuster targetAdjuster = null;
|
||||
private CostAdjuster costAdjuster = null;
|
||||
|
||||
public StackAbility(Ability ability, UUID controllerId) {
|
||||
super();
|
||||
this.ability = ability;
|
||||
this.controllerId = controllerId;
|
||||
this.name = "stack ability (" + ability.getRule() + ')';
|
||||
}
|
||||
|
||||
public StackAbility(final StackAbility stackAbility) {
|
||||
super();
|
||||
this.ability = stackAbility.ability.copy();
|
||||
this.controllerId = stackAbility.controllerId;
|
||||
this.copy = stackAbility.copy;
|
||||
this.copyFrom = (stackAbility.copyFrom != null ? stackAbility.copyFrom.copy() : null);
|
||||
this.name = stackAbility.name;
|
||||
this.expansionSetCode = stackAbility.expansionSetCode;
|
||||
this.targetAdjuster = stackAbility.targetAdjuster;
|
||||
this.targetChanged = stackAbility.targetChanged;
|
||||
this.costAdjuster = stackAbility.costAdjuster;
|
||||
|
|
@ -128,6 +128,36 @@ public class StackAbility extends StackObjectImpl implements Ability {
|
|||
return this.copyFrom;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getExpansionSetCode() {
|
||||
return "";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setExpansionSetCode(String expansionSetCode) {
|
||||
throw new IllegalStateException("Wrong code usage: you can't change set code for the stack ability");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCardNumber() {
|
||||
return "";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCardNumber(String cardNumber) {
|
||||
throw new IllegalStateException("Wrong code usage: you can't change card number for the stack ability");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getImageNumber() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setImageNumber(Integer imageNumber) {
|
||||
throw new IllegalStateException("Wrong code usage: you can't change image number for the stack ability");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return name;
|
||||
|
|
@ -144,12 +174,8 @@ public class StackAbility extends StackObjectImpl implements Ability {
|
|||
}
|
||||
|
||||
@Override
|
||||
public String getImageName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public String getExpansionSetCode() {
|
||||
return expansionSetCode;
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -384,15 +410,6 @@ public class StackAbility extends StackObjectImpl implements Ability {
|
|||
return new StackAbility(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setExpansionSetCode(String expansionSetCode) {
|
||||
this.expansionSetCode = expansionSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkIfClause(Game game) {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -1786,61 +1786,40 @@ public final class CardUtil {
|
|||
|
||||
|
||||
/**
|
||||
* Copy image related data from one object to another (card number, set code, token type)
|
||||
* Copy image related data from one object to another (set code, card number, image number)
|
||||
* Use it in copy/transform effects
|
||||
*/
|
||||
public static void copySetAndCardNumber(MageObject targetObject, MageObject copyFromObject) {
|
||||
String needSetCode;
|
||||
String needCardNumber;
|
||||
int needTokenType;
|
||||
if (copyFromObject instanceof CommandObject) {
|
||||
needSetCode = ((CommandObject) copyFromObject).getExpansionSetCodeForImage();
|
||||
needCardNumber = "0";
|
||||
needTokenType = 0;
|
||||
} else if (copyFromObject instanceof PermanentCard) {
|
||||
needSetCode = ((PermanentCard) copyFromObject).getExpansionSetCode();
|
||||
needCardNumber = ((PermanentCard) copyFromObject).getCardNumber();
|
||||
needTokenType = 0;
|
||||
} else if (copyFromObject instanceof PermanentToken) {
|
||||
needSetCode = ((PermanentToken) copyFromObject).getToken().getOriginalExpansionSetCode();
|
||||
needCardNumber = ((PermanentToken) copyFromObject).getToken().getOriginalCardNumber();
|
||||
needTokenType = ((PermanentToken) copyFromObject).getToken().getTokenType();
|
||||
} else if (copyFromObject instanceof Card) {
|
||||
needSetCode = ((Card) copyFromObject).getExpansionSetCode();
|
||||
needCardNumber = ((Card) copyFromObject).getCardNumber();
|
||||
needTokenType = 0;
|
||||
} else if (copyFromObject instanceof Token) {
|
||||
needSetCode = ((Token) copyFromObject).getOriginalExpansionSetCode();
|
||||
needCardNumber = ((Token) copyFromObject).getOriginalCardNumber();
|
||||
needTokenType = ((Token) copyFromObject).getTokenType();
|
||||
} else {
|
||||
throw new IllegalStateException("Unsupported copyFromObject class: " + copyFromObject.getClass().getSimpleName());
|
||||
}
|
||||
int needImageNumber;
|
||||
needSetCode = copyFromObject.getExpansionSetCode();
|
||||
needCardNumber = copyFromObject.getCardNumber();
|
||||
needImageNumber = copyFromObject.getImageNumber();
|
||||
|
||||
if (targetObject instanceof Permanent) {
|
||||
copySetAndCardNumber((Permanent) targetObject, needSetCode, needCardNumber, needTokenType);
|
||||
copySetAndCardNumber((Permanent) targetObject, needSetCode, needCardNumber, needImageNumber);
|
||||
} else if (targetObject instanceof Token) {
|
||||
copySetAndCardNumber((Token) targetObject, needSetCode, needCardNumber, needTokenType);
|
||||
copySetAndCardNumber((Token) targetObject, needSetCode, needCardNumber, needImageNumber);
|
||||
} else {
|
||||
throw new IllegalStateException("Unsupported target object class: " + targetObject.getClass().getSimpleName());
|
||||
}
|
||||
}
|
||||
|
||||
private static void copySetAndCardNumber(Permanent targetPermanent, String newSetCode, String newCardNumber, Integer newTokenType) {
|
||||
if (targetPermanent instanceof PermanentToken) {
|
||||
copySetAndCardNumber(((PermanentToken) targetPermanent).getToken(), newSetCode, newCardNumber, newTokenType);
|
||||
} else if (targetPermanent instanceof PermanentCard) {
|
||||
private static void copySetAndCardNumber(Permanent targetPermanent, String newSetCode, String newCardNumber, Integer newImageNumber) {
|
||||
if (targetPermanent instanceof PermanentCard
|
||||
|| targetPermanent instanceof PermanentToken) {
|
||||
targetPermanent.setExpansionSetCode(newSetCode);
|
||||
targetPermanent.setCardNumber(newCardNumber);
|
||||
targetPermanent.setImageNumber(newImageNumber);
|
||||
} else {
|
||||
throw new IllegalArgumentException("Wrong code usage: un-supported target permanent type: " + targetPermanent.getClass().getSimpleName());
|
||||
}
|
||||
}
|
||||
|
||||
private static void copySetAndCardNumber(Token targetToken, String newSetCode, String newCardNumber, Integer newTokenType) {
|
||||
targetToken.setOriginalExpansionSetCode(newSetCode);
|
||||
targetToken.setExpansionSetCodeForImage(newSetCode);
|
||||
targetToken.setOriginalCardNumber(newCardNumber);
|
||||
targetToken.setTokenType(newTokenType);
|
||||
private static void copySetAndCardNumber(Token targetToken, String newSetCode, String newCardNumber, Integer newImageNumber) {
|
||||
targetToken.setExpansionSetCode(newSetCode);
|
||||
targetToken.setCardNumber(newCardNumber);
|
||||
targetToken.setImageNumber(newImageNumber);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
# Contains all possible emblems, planes, dungeons and tokens
|
||||
# All objects must have an image (private tokens don't have image,
|
||||
# so can be ignored)
|
||||
# so can be ignored, use TokenCreature instead)
|
||||
# One class for same images (if you have 2/2 and */* then must use different classes)
|
||||
|
||||
# Use verify test to check it: test_checkMissingTokenData
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue