diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/images/ImageCache.java b/Mage.Client/src/main/java/org/mage/plugins/card/images/ImageCache.java index 0fd8ad97436..79b2344bfdb 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/images/ImageCache.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/images/ImageCache.java @@ -18,6 +18,7 @@ import javax.imageio.ImageIO; import java.awt.*; import java.awt.image.BufferedImage; import java.io.File; +import java.io.IOException; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -227,11 +228,17 @@ public class ImageCache { BufferedImage image = getResizedImage(original, Constants.THUMBNAIL_SIZE_FULL); TFile imageFile = new TFile(path); try { - //log.debug("thumbnail path:"+path); - TFileOutputStream outputStream = new TFileOutputStream(imageFile); - ImageIO.write(image, "jpg", outputStream); - outputStream.close(); - } catch (Exception e) { + TFileOutputStream outputStream = null; + try { + //log.debug("thumbnail path:"+path); + outputStream = new TFileOutputStream(imageFile); + ImageIO.write(image, "jpg", outputStream); + } finally { + if (outputStream != null) { + outputStream.close(); + } + } + } catch (IOException e) { log.error(e,e); } return image; @@ -239,6 +246,7 @@ public class ImageCache { /** * Returns an image scaled to the size given + * @return */ public static BufferedImage getNormalSizeImage(BufferedImage original) { if (original == null) { diff --git a/Mage.Sets/src/mage/sets/commander2013/TemptWithReflections.java b/Mage.Sets/src/mage/sets/commander2013/TemptWithReflections.java new file mode 100644 index 00000000000..8f7d7cf7e8f --- /dev/null +++ b/Mage.Sets/src/mage/sets/commander2013/TemptWithReflections.java @@ -0,0 +1,136 @@ +/* + * 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.commander2013; + +import java.util.HashSet; +import java.util.Set; +import java.util.UUID; +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.constants.Rarity; +import mage.constants.Zone; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.players.PlayerList; +import mage.sets.tokens.EmptyToken; +import mage.target.common.TargetControlledCreaturePermanent; +import mage.util.CardUtil; + +/** + * + * @author LevelX2 + */ +public class TemptWithReflections extends CardImpl { + + public TemptWithReflections(UUID ownerId) { + super(ownerId, 60, "Tempt with Reflections", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{3}{U}"); + this.expansionSetCode = "C13"; + + this.color.setBlue(true); + + // Tempting offer - Choose target creature you control. Put a token onto the battlefield that's a copy of that creature. Each opponent may put a token onto the battlefield that's a copy of that creature. For each opponent who does, put a token onto the battlefield that's a copy of that creature. + this.getSpellAbility().addEffect(new TemptWithReflectionsEffect()); + this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent(true)); + } + + public TemptWithReflections(final TemptWithReflections card) { + super(card); + } + + @Override + public TemptWithReflections copy() { + return new TemptWithReflections(this); + } +} + +class TemptWithReflectionsEffect extends OneShotEffect { + + public TemptWithReflectionsEffect() { + super(Outcome.PutCreatureInPlay); + this.staticText = "Tempting offer - Choose target creature you control. Put a token onto the battlefield that's a copy of that creature. Each opponent may put a token onto the battlefield that's a copy of that creature. For each opponent who does, put a token onto the battlefield that's a copy of that creature"; + } + + public TemptWithReflectionsEffect(final TemptWithReflectionsEffect effect) { + super(effect); + } + + @Override + public TemptWithReflectionsEffect copy() { + return new TemptWithReflectionsEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent permanent = game.getPermanent(this.getTargetPointer().getFirst(game, source)); + if (permanent == null) { + permanent = (Permanent) game.getLastKnownInformation(source.getFirstTarget(), Zone.BATTLEFIELD); + } + + if (permanent != null) { + EmptyToken token = new EmptyToken(); + CardUtil.copyTo(token).from(permanent); + token.putOntoBattlefield(1, game, source.getSourceId(), source.getControllerId()); + + Set playersSaidYes = new HashSet(); + PlayerList playerList = game.getPlayerList().copy(); + playerList.setCurrent(game.getActivePlayerId()); + Player player = game.getPlayer(game.getActivePlayerId()); + do { + if (game.getOpponents(source.getControllerId()).contains(player.getId())) { + String decision; + if (player.chooseUse(outcome, "Put a copy of target creature onto the battlefield for you?", game)) { + playersSaidYes.add(player.getId()); + decision = " chooses to copy "; + } else { + decision = " won't copy "; + } + game.informPlayers((new StringBuilder(player.getName()).append(decision).append(permanent.getName()).toString())); + } + player = playerList.getNext(game); + } while (!player.getId().equals(game.getActivePlayerId())); + + for (UUID playerId: playersSaidYes) { + token = new EmptyToken(); + CardUtil.copyTo(token).from(permanent); + token.putOntoBattlefield(1, game, source.getSourceId(), playerId); + } + + if (playersSaidYes.size() > 0) { + token = new EmptyToken(); + CardUtil.copyTo(token).from(permanent); + token.putOntoBattlefield(playersSaidYes.size(), game, source.getSourceId(), source.getControllerId()); + } + return true; + } + return false; + } +} diff --git a/Mage.Sets/src/mage/sets/commander2013/WarCadence.java b/Mage.Sets/src/mage/sets/commander2013/WarCadence.java index 4d02cf13259..6a0a3117d04 100644 --- a/Mage.Sets/src/mage/sets/commander2013/WarCadence.java +++ b/Mage.Sets/src/mage/sets/commander2013/WarCadence.java @@ -30,7 +30,6 @@ package mage.sets.commander2013; import java.util.UUID; import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; -import mage.abilities.costs.mana.GenericManaCost; import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.dynamicvalue.DynamicValue; import mage.abilities.dynamicvalue.common.ManacostVariableValue; @@ -112,10 +111,7 @@ class WarCadenceReplacementEffect extends ReplacementEffectImpl zoneChangeCounter = new HashMap();