mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Face down cards. Updated card plugin. [SOM] Clone Shell
This commit is contained in:
parent
017fb17616
commit
dc4fed493b
10 changed files with 264 additions and 21 deletions
Binary file not shown.
|
@ -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
|
||||
|
|
|
@ -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<UUID> 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<String>();
|
||||
this.power = "";
|
||||
this.toughness = "";
|
||||
this.loyalty = "";
|
||||
this.cardTypes = new ArrayList<CardType>();
|
||||
this.subTypes = new ArrayList<String>();
|
||||
this.superTypes = new ArrayList<String>();
|
||||
this.color = new ObjectColor();
|
||||
this.manaCost = new ArrayList<String>();
|
||||
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<UUID>();
|
||||
this.targets.add(targetUUID);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// protected List<String> formatRules(List<String> rules) {
|
||||
// List<String> newRules = new ArrayList<String>();
|
||||
// for (String rule: rules) {
|
||||
|
@ -160,7 +184,7 @@ public class CardView implements Serializable {
|
|||
public List<String> getRules() {
|
||||
return rules;
|
||||
}
|
||||
|
||||
|
||||
public void overrideRules(List<String> 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<UUID> getTargets() {
|
||||
return targets;
|
||||
}
|
||||
|
||||
|
||||
public void overrideTargets(List<UUID> 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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
</build>
|
||||
|
||||
<properties>
|
||||
<plugin-version>0.6</plugin-version>
|
||||
<plugin-version>0.7</plugin-version>
|
||||
<jspf-version>0.9.1</jspf-version>
|
||||
</properties>
|
||||
</project>
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
183
Mage.Sets/src/mage/sets/scarsofmirrodin/CloneShell.java
Normal file
183
Mage.Sets/src/mage/sets/scarsofmirrodin/CloneShell.java
Normal file
|
@ -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<CloneShell> {
|
||||
|
||||
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<CloneShellEffect> {
|
||||
|
||||
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<CloneShellDiesEffect> {
|
||||
|
||||
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<UUID> 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);
|
||||
}
|
||||
|
||||
}
|
|
@ -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);
|
||||
|
|
|
@ -60,6 +60,7 @@ public abstract class CardImpl<T extends CardImpl<T>> extends MageObjectImpl<T>
|
|||
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<T extends CardImpl<T>> extends MageObjectImpl<T>
|
|||
expansionSetCode = card.expansionSetCode;
|
||||
rarity = card.rarity;
|
||||
watchers = card.watchers.copy();
|
||||
faceDown = card.faceDown;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -328,4 +330,14 @@ public abstract class CardImpl<T extends CardImpl<T>> extends MageObjectImpl<T>
|
|||
public void setCardNumber(int cid) {
|
||||
this.cardNumber = cid;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFaceDown(boolean value) {
|
||||
this.faceDown = value;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isFaceDown() {
|
||||
return this.faceDown;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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<T extends Spell<T>> 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);
|
||||
|
|
Loading…
Reference in a new issue