mirror of
https://github.com/correl/mage.git
synced 2025-04-04 01:06:04 -09:00
* StormAbility - Fixed that the storm amount was not calculated correctly if a game state was restored (fixes #1051).
This commit is contained in:
parent
fa58de0772
commit
68d5f7bb9f
4 changed files with 143 additions and 75 deletions
Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords
Mage/src/mage
|
@ -204,7 +204,7 @@ public class StormTest extends CardTestPlayerBase {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testStormAndFlshback() {
|
public void testStormAndFlashback() {
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 8);
|
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 8);
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
|
addCard(Zone.BATTLEFIELD, playerA, "Island", 1);
|
||||||
// Geistflame deals 1 damage to target creature or player.
|
// Geistflame deals 1 damage to target creature or player.
|
||||||
|
@ -231,4 +231,66 @@ public class StormTest extends CardTestPlayerBase {
|
||||||
assertLife(playerB, 12); // 3 from the Geistflame + 5 from Grapeshot
|
assertLife(playerB, 12); // 3 from the Geistflame + 5 from Grapeshot
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* I cast Wheel of Fortune. (1st)
|
||||||
|
* I cast Mox Emerald. (2nd)
|
||||||
|
* I cast Turnabout. (3rd)
|
||||||
|
* I cast Yawgmoth's Will. (4th)
|
||||||
|
* I cast Palinchron from graveyard. (5th)
|
||||||
|
* I cast Mind's Desire from graveyard. Storm makes 2
|
||||||
|
* copies (instead of 5). (6th) I cast Turnabout from graveyard. (7th) I
|
||||||
|
* cast Golgari Signet from exile. (8th) I cast Empty the Warrens. Storm
|
||||||
|
* makes 5 copies (instead of 8). (9th)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testStormYawgmothsWill() {
|
||||||
|
|
||||||
|
addCard(Zone.BATTLEFIELD, playerA, "Swamp", 3);
|
||||||
|
addCard(Zone.BATTLEFIELD, playerA, "Island", 10);
|
||||||
|
addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1);
|
||||||
|
// Each player discards his or her hand,
|
||||||
|
// then draws seven cards.
|
||||||
|
addCard(Zone.HAND, playerA, "Wheel of Fortune", 1); // {2}{R}
|
||||||
|
addCard(Zone.LIBRARY, playerA, "Mox Emerald", 1);
|
||||||
|
// Choose artifact, creature, or land. Tap all untapped permanents of the chosen type target player controls, or untap all tapped permanents of that type that player controls.
|
||||||
|
addCard(Zone.LIBRARY, playerA, "Turnabout", 1); // {2}{U}{U}
|
||||||
|
|
||||||
|
// Until end of turn, you may play cards from your graveyard.
|
||||||
|
// If a card would be put into your graveyard from anywhere this turn, exile that card instead.
|
||||||
|
addCard(Zone.LIBRARY, playerA, "Yawgmoth's Will", 1); // {2}{B}
|
||||||
|
skipInitShuffling();
|
||||||
|
|
||||||
|
// Flying
|
||||||
|
// When Palinchron enters the battlefield, untap up to seven lands.
|
||||||
|
// {2}{U}{U}: Return Palinchron to its owner's hand.
|
||||||
|
addCard(Zone.HAND, playerA, "Palinchron", 1); // {5}{U}{U}
|
||||||
|
// Shuffle your library. Then exile the top card of your library. Until end of turn, you may play that card without paying its mana cost.
|
||||||
|
// Storm
|
||||||
|
addCard(Zone.HAND, playerA, "Mind's Desire", 1); // {4}{U}{U}
|
||||||
|
|
||||||
|
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Wheel of Fortune");
|
||||||
|
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Mox Emerald");
|
||||||
|
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Turnabout");
|
||||||
|
setChoice(playerA, "Land");
|
||||||
|
setChoice(playerA, "Untap");
|
||||||
|
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Yawgmoth's Will");
|
||||||
|
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Palinchron");
|
||||||
|
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Mind's Desire");
|
||||||
|
|
||||||
|
setStopAt(1, PhaseStep.BEGIN_COMBAT);
|
||||||
|
execute();
|
||||||
|
|
||||||
|
assertGraveyardCount(playerA, "Wheel of Fortune", 1);
|
||||||
|
assertPermanentCount(playerA, "Mox Emerald", 1);
|
||||||
|
assertGraveyardCount(playerA, "Turnabout", 1);
|
||||||
|
assertPermanentCount(playerA, "Palinchron", 1);
|
||||||
|
|
||||||
|
assertExileCount("Yawgmoth's Will", 1);
|
||||||
|
assertExileCount("Mind's Desire", 1);
|
||||||
|
|
||||||
|
assertExileCount(playerA, 8); // 6 from Mind's Desire and the Desire and the Yawgmoth's Will
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,6 +70,7 @@ public class ForecastAbility extends LimitedTimesPerTurnActivatedAbility {
|
||||||
@Override
|
@Override
|
||||||
public boolean canActivate(UUID playerId, Game game) {
|
public boolean canActivate(UUID playerId, Game game) {
|
||||||
// May be activated only during the upkeep step of the card's owner
|
// May be activated only during the upkeep step of the card's owner
|
||||||
|
// Because it can only be activated from a players hand it should be ok to check here with controllerId instead of card.getOwnerId().
|
||||||
if (!game.getActivePlayerId().equals(controllerId) || !PhaseStep.UPKEEP.equals(game.getStep().getType())) {
|
if (!game.getActivePlayerId().equals(controllerId) || !PhaseStep.UPKEEP.equals(game.getStep().getType())) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -154,6 +154,11 @@ public interface Game extends MageItem, Serializable {
|
||||||
|
|
||||||
boolean canPlaySorcery(UUID playerId);
|
boolean canPlaySorcery(UUID playerId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Id of the player the current turn it is.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
UUID getActivePlayerId();
|
UUID getActivePlayerId();
|
||||||
|
|
||||||
UUID getPriorityPlayerId();
|
UUID getPriorityPlayerId();
|
||||||
|
|
|
@ -1,31 +1,30 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without modification, are
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
* permitted provided that the following conditions are met:
|
* permitted provided that the following conditions are met:
|
||||||
*
|
*
|
||||||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
* conditions and the following disclaimer.
|
* conditions and the following disclaimer.
|
||||||
*
|
*
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
* 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
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
* provided with the distribution.
|
* provided with the distribution.
|
||||||
*
|
*
|
||||||
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
* 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
|
* 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
|
* 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
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 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
|
* 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
|
* 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
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* The views and conclusions contained in the software and documentation are those of the
|
* 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
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
* or implied, of BetaSteward_at_googlemail.com.
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package mage.watchers.common;
|
package mage.watchers.common;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -41,9 +40,9 @@ import mage.game.events.GameEvent;
|
||||||
import mage.watchers.Watcher;
|
import mage.watchers.Watcher;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author nantuko, BetaSteward_at_googlemail.com
|
* @author nantuko, BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class CastSpellLastTurnWatcher extends Watcher {
|
public class CastSpellLastTurnWatcher extends Watcher {
|
||||||
|
|
||||||
private final Map<UUID, Integer> amountOfSpellsCastOnPrevTurn = new HashMap<>();
|
private final Map<UUID, Integer> amountOfSpellsCastOnPrevTurn = new HashMap<>();
|
||||||
|
@ -51,83 +50,84 @@ public class CastSpellLastTurnWatcher extends Watcher {
|
||||||
private final List<MageObjectReference> spellsCastThisTurnInOrder = new ArrayList<>();
|
private final List<MageObjectReference> spellsCastThisTurnInOrder = new ArrayList<>();
|
||||||
|
|
||||||
public CastSpellLastTurnWatcher() {
|
public CastSpellLastTurnWatcher() {
|
||||||
super("CastSpellLastTurnWatcher", WatcherScope.GAME);
|
super("CastSpellLastTurnWatcher", WatcherScope.GAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
public CastSpellLastTurnWatcher(final CastSpellLastTurnWatcher watcher) {
|
public CastSpellLastTurnWatcher(final CastSpellLastTurnWatcher watcher) {
|
||||||
super(watcher);
|
super(watcher);
|
||||||
for (Entry<UUID, Integer> entry: watcher.amountOfSpellsCastOnCurrentTurn.entrySet()) {
|
for (Entry<UUID, Integer> entry : watcher.amountOfSpellsCastOnCurrentTurn.entrySet()) {
|
||||||
amountOfSpellsCastOnCurrentTurn.put(entry.getKey(), entry.getValue());
|
amountOfSpellsCastOnCurrentTurn.put(entry.getKey(), entry.getValue());
|
||||||
}
|
}
|
||||||
for (Entry<UUID, Integer> entry: watcher.amountOfSpellsCastOnPrevTurn.entrySet()) {
|
for (Entry<UUID, Integer> entry : watcher.amountOfSpellsCastOnPrevTurn.entrySet()) {
|
||||||
amountOfSpellsCastOnPrevTurn.put(entry.getKey(), entry.getValue());
|
amountOfSpellsCastOnPrevTurn.put(entry.getKey(), entry.getValue());
|
||||||
}
|
}
|
||||||
|
this.spellsCastThisTurnInOrder.addAll(watcher.spellsCastThisTurnInOrder);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void watch(GameEvent event, Game game) {
|
public void watch(GameEvent event, Game game) {
|
||||||
if (event.getType() == GameEvent.EventType.SPELL_CAST) {
|
if (event.getType() == GameEvent.EventType.SPELL_CAST) {
|
||||||
spellsCastThisTurnInOrder.add(new MageObjectReference(event.getTargetId(), game));
|
spellsCastThisTurnInOrder.add(new MageObjectReference(event.getTargetId(), game));
|
||||||
UUID playerId = event.getPlayerId();
|
UUID playerId = event.getPlayerId();
|
||||||
if (playerId != null) {
|
if (playerId != null) {
|
||||||
Integer amount = amountOfSpellsCastOnCurrentTurn.get(playerId);
|
Integer amount = amountOfSpellsCastOnCurrentTurn.get(playerId);
|
||||||
if (amount == null) {
|
if (amount == null) {
|
||||||
amount = 1;
|
amount = 1;
|
||||||
} else {
|
} else {
|
||||||
amount = amount+1;
|
amount = amount + 1;
|
||||||
}
|
}
|
||||||
amountOfSpellsCastOnCurrentTurn.put(playerId, amount);
|
amountOfSpellsCastOnCurrentTurn.put(playerId, amount);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void reset() {
|
public void reset() {
|
||||||
amountOfSpellsCastOnPrevTurn.clear();
|
amountOfSpellsCastOnPrevTurn.clear();
|
||||||
amountOfSpellsCastOnPrevTurn.putAll(amountOfSpellsCastOnCurrentTurn);
|
amountOfSpellsCastOnPrevTurn.putAll(amountOfSpellsCastOnCurrentTurn);
|
||||||
amountOfSpellsCastOnCurrentTurn.clear();
|
amountOfSpellsCastOnCurrentTurn.clear();
|
||||||
spellsCastThisTurnInOrder.clear();
|
spellsCastThisTurnInOrder.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Map<UUID, Integer> getAmountOfSpellsCastOnPrevTurn() {
|
public Map<UUID, Integer> getAmountOfSpellsCastOnPrevTurn() {
|
||||||
return amountOfSpellsCastOnPrevTurn;
|
return amountOfSpellsCastOnPrevTurn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Map<UUID, Integer> getAmountOfSpellsCastOnCurrentTurn() {
|
public Map<UUID, Integer> getAmountOfSpellsCastOnCurrentTurn() {
|
||||||
return amountOfSpellsCastOnCurrentTurn;
|
return amountOfSpellsCastOnCurrentTurn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getAmountOfSpellsAllPlayersCastOnCurrentTurn() {
|
public int getAmountOfSpellsAllPlayersCastOnCurrentTurn() {
|
||||||
int totalAmount = 0;
|
int totalAmount = 0;
|
||||||
for(Integer amount: amountOfSpellsCastOnCurrentTurn.values()) {
|
for (Integer amount : amountOfSpellsCastOnCurrentTurn.values()) {
|
||||||
totalAmount += amount;
|
totalAmount += amount;
|
||||||
}
|
}
|
||||||
return totalAmount;
|
return totalAmount;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getAmountOfSpellsPlayerCastOnCurrentTurn(UUID playerId) {
|
public int getAmountOfSpellsPlayerCastOnCurrentTurn(UUID playerId) {
|
||||||
Integer value = amountOfSpellsCastOnCurrentTurn.get(playerId);
|
Integer value = amountOfSpellsCastOnCurrentTurn.get(playerId);
|
||||||
if (value != null) {
|
if (value != null) {
|
||||||
return value;
|
return value;
|
||||||
} else {
|
} else {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getSpellOrder(MageObjectReference spell, Game game) {
|
public int getSpellOrder(MageObjectReference spell, Game game) {
|
||||||
int index = 0;
|
int index = 0;
|
||||||
for (MageObjectReference mor : spellsCastThisTurnInOrder) {
|
for (MageObjectReference mor : spellsCastThisTurnInOrder) {
|
||||||
index++;
|
index++;
|
||||||
if (mor.equals(spell)) {
|
if (mor.equals(spell)) {
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CastSpellLastTurnWatcher copy() {
|
public CastSpellLastTurnWatcher copy() {
|
||||||
return new CastSpellLastTurnWatcher(this);
|
return new CastSpellLastTurnWatcher(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue