diff --git a/Mage.Client/plugins/mage-card-plugin.jar b/Mage.Client/plugins/mage-card-plugin.jar index 21609c7d8d2..9bfd0cbcf7a 100644 Binary files a/Mage.Client/plugins/mage-card-plugin.jar and b/Mage.Client/plugins/mage-card-plugin.jar differ diff --git a/Mage.Common/src/mage/interfaces/plugin/CardPlugin.java b/Mage.Common/src/mage/interfaces/plugin/CardPlugin.java index 7aa2985b9c3..0c122b61cc8 100644 --- a/Mage.Common/src/mage/interfaces/plugin/CardPlugin.java +++ b/Mage.Common/src/mage/interfaces/plugin/CardPlugin.java @@ -20,7 +20,7 @@ import net.xeoh.plugins.base.Plugin; /** * Interface for card plugins * - * @version 0.6 17,07.2011 added options to #sortPermanents + * @version 0.6 17.07.2011 added options to #sortPermanents * @version 0.3 21.11.2010 #getMageCard * @version 0.2 07.11.2010 #downloadImages * @version 0.1 31.10.2010 #getMagePermanent, #sortPermanents diff --git a/Mage.Common/src/mage/view/CardView.java b/Mage.Common/src/mage/view/CardView.java index b28b8524be6..936db00f11b 100644 --- a/Mage.Common/src/mage/view/CardView.java +++ b/Mage.Common/src/mage/view/CardView.java @@ -46,11 +46,10 @@ import mage.target.Target; import mage.target.Targets; /** - * * @author BetaSteward_at_googlemail.com */ public class CardView implements Serializable { - private static final long serialVersionUID = 1L; + private static final long serialVersionUID = 1L; protected UUID id; protected UUID parentId; @@ -70,11 +69,20 @@ public class CardView implements Serializable { protected int cardNumber; protected boolean isAbility; protected CardView ability; + protected boolean faceDown; public List targets; - + public CardView(Card card) { this.id = card.getId(); + this.faceDown = card.isFaceDown(); + + // no information available for face down cards + if (this.faceDown) { + fillEmpty(); + return; + } + this.name = card.getName(); this.rules = card.getRules(); if (card instanceof Permanent) { @@ -101,7 +109,7 @@ public class CardView implements Serializable { this.cardNumber = card.getCardNumber(); if (card instanceof Spell) { - Spell spell = (Spell)card; + Spell spell = (Spell) card; if (spell.getSpellAbility().getTargets().size() > 0) { setTargets(spell.getSpellAbility().getTargets()); } @@ -109,7 +117,23 @@ public class CardView implements Serializable { } protected CardView() { + } + private void fillEmpty() { + this.name = "Face Down"; + this.rules = new ArrayList(); + this.power = ""; + this.toughness = ""; + this.loyalty = ""; + this.cardTypes = new ArrayList(); + this.subTypes = new ArrayList(); + this.superTypes = new ArrayList(); + this.color = new ObjectColor(); + this.manaCost = new ArrayList(); + this.convertedManaCost = 0; + this.rarity = Rarity.COMMON; + this.expansionSetCode = ""; + this.cardNumber = 0; } CardView(Token token) { @@ -135,10 +159,10 @@ public class CardView implements Serializable { if (this.targets == null) this.targets = new ArrayList(); this.targets.add(targetUUID); } - } + } } } - + // protected List formatRules(List rules) { // List newRules = new ArrayList(); // for (String rule: rules) { @@ -160,7 +184,7 @@ public class CardView implements Serializable { public List getRules() { return rules; } - + public void overrideRules(List rules) { this.rules = rules; } @@ -168,11 +192,11 @@ public class CardView implements Serializable { public void setIsAbility(boolean isAbility) { this.isAbility = isAbility; } - + public boolean isAbility() { return isAbility; } - + public String getPower() { return power; } @@ -220,48 +244,53 @@ public class CardView implements Serializable { public UUID getId() { return id; } - + public int getCardNumber() { return cardNumber; } - + /** * Returns UUIDs for targets. * Can be null if there is no target selected. + * * @return */ public List getTargets() { return targets; } - + public void overrideTargets(List newTargets) { this.targets = newTargets; } - + public void overrideId(UUID id) { if (parentId == null) { parentId = this.id; } this.id = id; } - + public UUID getParentId() { if (parentId != null) { return parentId; } return id; } - + public void setAbility(CardView ability) { this.ability = ability; } - + public CardView getAbility() { return this.ability; } - + @Override public String toString() { return getName() + " [" + getId() + "]"; } + + public boolean isFaceDown() { + return faceDown; + } } diff --git a/Mage.Plugins/Mage.Card.Plugin/pom.xml b/Mage.Plugins/Mage.Card.Plugin/pom.xml index 9cbcfb5df56..169270d8560 100644 --- a/Mage.Plugins/Mage.Card.Plugin/pom.xml +++ b/Mage.Plugins/Mage.Card.Plugin/pom.xml @@ -76,7 +76,7 @@ - 0.6 + 0.7 0.9.1 diff --git a/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/card/arcane/CardPanel.java b/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/card/arcane/CardPanel.java index 11b13aae449..c03f83d1fa5 100644 --- a/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/card/arcane/CardPanel.java +++ b/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/card/arcane/CardPanel.java @@ -150,6 +150,7 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti try { tappedAngle = isTapped() ? CardPanel.TAPPED_ANGLE : 0; flippedAngle = isFlipped() ? CardPanel.FLIPPED_ANGLE : 0; + if (gameCard.isFaceDown()) return; BufferedImage srcImage = ImageCache.getThumbnail(gameCard); if (srcImage != null) { hasImage = true; @@ -627,6 +628,7 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti @Override public void mouseEntered(MouseEvent e) { + if (gameCard.isFaceDown()) return; if (!popupShowing) { synchronized (this) { if (!popupShowing) { @@ -643,12 +645,14 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti @Override public void mouseMoved(MouseEvent e) { + if (gameCard.isFaceDown()) return; data.component = this; callback.mouseMoved(e, data); } @Override public void mouseExited(MouseEvent e) { + if (gameCard.isFaceDown()) return; if (getMousePosition(true) != null) return; if (popupShowing) { synchronized (this) { @@ -665,6 +669,7 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti @Override public void mousePressed(MouseEvent e) { + if (gameCard.isFaceDown()) return; data.component = this; data.card = this.gameCard; data.gameId = this.gameId; diff --git a/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/plugins/card/CardPluginImpl.java b/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/plugins/card/CardPluginImpl.java index 2c11513da2a..e1bc3d05dc9 100644 --- a/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/plugins/card/CardPluginImpl.java +++ b/Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/plugins/card/CardPluginImpl.java @@ -38,7 +38,8 @@ import java.util.List; * * @author nantuko * @version 0.1 01.11.2010 Mage permanents. Sorting card layout. - * @version 0.6 17,07.2011 #sortPermanents got option to display non-land permanents in one pile + * @version 0.6 17.07.2011 #sortPermanents got option to display non-land permanents in one pile + * @version 0.7 29.07.2011 face down cards support */ @PluginImplementation @Author(name = "nantuko") @@ -76,7 +77,7 @@ public class CardPluginImpl implements CardPlugin { @Override public String toString() { - return "[Card plugin, version 0.6]"; + return "[Card plugin, version 0.7]"; } @Override diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/CloneShell.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/CloneShell.java new file mode 100644 index 00000000000..a9d3871256d --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/CloneShell.java @@ -0,0 +1,183 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.scarsofmirrodin; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.DiesTriggeredAbility; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.OneShotEffect; +import mage.cards.Card; +import mage.cards.CardImpl; +import mage.cards.Cards; +import mage.cards.CardsImpl; +import mage.filter.FilterCard; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.TargetCard; + +import java.util.List; +import java.util.UUID; + +/** + * @author nantuko + */ +public class CloneShell extends CardImpl { + + public CloneShell(UUID ownerId) { + super(ownerId, 143, "Clone Shell", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{5}"); + this.expansionSetCode = "SOM"; + this.subtype.add("Shapeshifter"); + + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // Imprint - When Clone Shell enters the battlefield, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library in any order. + this.addAbility(new EntersBattlefieldTriggeredAbility(new CloneShellEffect(), false)); + + // When Clone Shell dies, turn the exiled card face up. If it's a creature card, put it onto the battlefield under your control. + this.addAbility(new DiesTriggeredAbility(new CloneShellDiesEffect())); + } + + public CloneShell(final CloneShell card) { + super(card); + } + + @Override + public CloneShell copy() { + return new CloneShell(this); + } +} + +class CloneShellEffect extends OneShotEffect { + + protected static FilterCard filter1 = new FilterCard("card to exile face down"); + protected static FilterCard filter2 = new FilterCard("card to put on the bottom of your library"); + + public CloneShellEffect() { + super(Constants.Outcome.Benefit); + staticText = "look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library in any order"; + } + + public CloneShellEffect(CloneShellEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + Player player = game.getPlayer(source.getControllerId()); + Cards cards = new CardsImpl(Constants.Zone.PICK); + int count = Math.min(player.getLibrary().size(), 4); + for (int i = 0; i < count; i++) { + Card card = player.getLibrary().removeFromTop(game); + cards.add(card); + game.setZone(card.getId(), Constants.Zone.PICK); + } + + if (cards.size() == 0) { + return false; + + } + TargetCard target1 = new TargetCard(Constants.Zone.PICK, filter1); + if (player.choose(Constants.Outcome.Detriment, cards, target1, game)) { + Card card = cards.get(target1.getFirstTarget(), game); + if (card != null) { + cards.remove(card); + card.setFaceDown(true); + card.moveToExile(getId(), "Clone Shell (Imprint)", source.getSourceId(), game); + Permanent permanent = game.getPermanent(source.getSourceId()); + if (permanent != null) { + permanent.imprint(card.getId(), game); + } + } + target1.clearChosen(); + } + + if (cards.size() > 0) { + TargetCard target2 = new TargetCard(Constants.Zone.PICK, filter2); + target2.setRequired(true); + while (cards.size() > 1) { + player.choose(Constants.Outcome.Benefit, cards, target2, game); + Card card = cards.get(target2.getFirstTarget(), game); + if (card != null) { + cards.remove(card); + card.moveToZone(Constants.Zone.LIBRARY, source.getId(), game, false); + } + target2.clearChosen(); + } + Card card = cards.get(cards.iterator().next(), game); + card.moveToZone(Constants.Zone.LIBRARY, source.getId(), game, true); + } + + return true; + } + + @Override + public CloneShellEffect copy() { + return new CloneShellEffect(this); + } + +} + +class CloneShellDiesEffect extends OneShotEffect { + + public CloneShellDiesEffect() { + super(Constants.Outcome.Benefit); + staticText = "turn the exiled card face up. If it's a creature card, put it onto the battlefield under your control"; + } + + public CloneShellDiesEffect(CloneShellDiesEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent permanent = (Permanent) game.getLastKnownInformation(source.getSourceId(), Constants.Zone.BATTLEFIELD); + if (permanent != null) { + List imprinted = permanent.getImprinted(); + if (imprinted.size() > 0) { + Card imprintedCard = game.getCard(imprinted.get(0)); + if (imprintedCard.getCardType().contains(CardType.CREATURE)) { + imprintedCard.putOntoBattlefield(game, Constants.Zone.EXILED, source.getSourceId(), source.getControllerId()); + } + } + } + + return true; + } + + @Override + public CloneShellDiesEffect copy() { + return new CloneShellDiesEffect(this); + } + +} diff --git a/Mage/src/mage/cards/Card.java b/Mage/src/mage/cards/Card.java index 8c4e03617cd..45bc21a2eef 100644 --- a/Mage/src/mage/cards/Card.java +++ b/Mage/src/mage/cards/Card.java @@ -55,6 +55,8 @@ public interface Card extends MageObject { public Watchers getWatchers(); public String getExpansionSetCode(); public void setExpansionSetCode(String expansionSetCode); + public void setFaceDown(boolean value); + public boolean isFaceDown(); public void assignNewId(); public boolean moveToZone(Zone zone, UUID sourceId, Game game, boolean flag); diff --git a/Mage/src/mage/cards/CardImpl.java b/Mage/src/mage/cards/CardImpl.java index 35ef9de2d77..874d55f7015 100644 --- a/Mage/src/mage/cards/CardImpl.java +++ b/Mage/src/mage/cards/CardImpl.java @@ -60,6 +60,7 @@ public abstract class CardImpl> extends MageObjectImpl protected Watchers watchers = new Watchers(); protected String expansionSetCode; protected Rarity rarity; + protected boolean faceDown; public CardImpl(UUID ownerId, int cardNumber, String name, Rarity rarity, CardType[] cardTypes, String costs) { this(ownerId, name); @@ -91,6 +92,7 @@ public abstract class CardImpl> extends MageObjectImpl expansionSetCode = card.expansionSetCode; rarity = card.rarity; watchers = card.watchers.copy(); + faceDown = card.faceDown; } @Override @@ -328,4 +330,14 @@ public abstract class CardImpl> extends MageObjectImpl public void setCardNumber(int cid) { this.cardNumber = cid; } + + @Override + public void setFaceDown(boolean value) { + this.faceDown = value; + } + + @Override + public boolean isFaceDown() { + return this.faceDown; + } } diff --git a/Mage/src/mage/game/stack/Spell.java b/Mage/src/mage/game/stack/Spell.java index c7019b172e8..1214b0ea631 100644 --- a/Mage/src/mage/game/stack/Spell.java +++ b/Mage/src/mage/game/stack/Spell.java @@ -51,6 +51,7 @@ import mage.game.events.GameEvent; import mage.players.Player; import mage.target.Target; import mage.watchers.Watchers; +import sun.reflect.generics.reflectiveObjects.NotImplementedException; /** * @@ -286,6 +287,16 @@ public class Spell> implements StackObject, Card { @Override public void setExpansionSetCode(String expansionSetCode) {} + @Override + public void setFaceDown(boolean value) { + throw new NotImplementedException(); + } + + @Override + public boolean isFaceDown() { + return false; + } + @Override public Spell copy() { return new Spell(this);