mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
244 lines
8.3 KiB
Java
244 lines
8.3 KiB
Java
package mage.abilities;
|
|
|
|
import mage.MageObject;
|
|
import mage.MageObjectReference;
|
|
import mage.abilities.costs.Cost;
|
|
import mage.abilities.costs.VariableCost;
|
|
import mage.abilities.costs.mana.ManaCost;
|
|
import mage.abilities.costs.mana.VariableManaCost;
|
|
import mage.abilities.keyword.FlashAbility;
|
|
import mage.cards.Card;
|
|
import mage.cards.SplitCard;
|
|
import mage.constants.*;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
import mage.game.stack.Spell;
|
|
import mage.players.Player;
|
|
|
|
import java.util.Optional;
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class SpellAbility extends ActivatedAbilityImpl {
|
|
|
|
protected SpellAbilityType spellAbilityType;
|
|
protected SpellAbilityCastMode spellAbilityCastMode;
|
|
protected String cardName;
|
|
|
|
public SpellAbility(ManaCost cost, String cardName) {
|
|
this(cost, cardName, Zone.HAND);
|
|
}
|
|
|
|
public SpellAbility(ManaCost cost, String cardName, Zone zone) {
|
|
this(cost, cardName, zone, SpellAbilityType.BASE);
|
|
}
|
|
|
|
public SpellAbility(ManaCost cost, String cardName, Zone zone, SpellAbilityType spellAbilityType) {
|
|
this(cost, cardName, zone, spellAbilityType, SpellAbilityCastMode.NORMAL);
|
|
}
|
|
|
|
public SpellAbility(ManaCost cost, String cardName, Zone zone, SpellAbilityType spellAbilityType, SpellAbilityCastMode spellAbilityCastMode) {
|
|
super(AbilityType.SPELL, zone);
|
|
this.cardName = cardName;
|
|
this.spellAbilityType = spellAbilityType;
|
|
this.spellAbilityCastMode = spellAbilityCastMode;
|
|
this.addManaCost(cost);
|
|
setSpellName();
|
|
}
|
|
|
|
public SpellAbility(final SpellAbility ability) {
|
|
super(ability);
|
|
this.spellAbilityType = ability.spellAbilityType;
|
|
this.spellAbilityCastMode = ability.spellAbilityCastMode;
|
|
this.cardName = ability.cardName;
|
|
}
|
|
|
|
public boolean spellCanBeActivatedRegularlyNow(UUID playerId, Game game) {
|
|
MageObject object = game.getObject(sourceId);
|
|
return timing == TimingRule.INSTANT
|
|
|| object.hasAbility(FlashAbility.getInstance().getId(), game)
|
|
|| game.canPlaySorcery(playerId);
|
|
}
|
|
|
|
@Override
|
|
public ActivationStatus canActivate(UUID playerId, Game game) {
|
|
if (null != game.getContinuousEffects().asThough(sourceId, AsThoughEffectType.CAST_AS_INSTANT, this, playerId, game) // check this first to allow Offering in main phase
|
|
|| this.spellCanBeActivatedRegularlyNow(playerId, game)) {
|
|
if (spellAbilityType == SpellAbilityType.SPLIT || spellAbilityType == SpellAbilityType.SPLIT_AFTERMATH) {
|
|
return ActivationStatus.getFalse();
|
|
}
|
|
// fix for Gitaxian Probe and casting opponent's spells
|
|
MageObjectReference permittingSource = game.getContinuousEffects().asThough(getSourceId(), AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, null, playerId, game);
|
|
if (permittingSource == null) {
|
|
Card card = game.getCard(sourceId);
|
|
if (!(card != null && card.isOwnedBy(playerId))) {
|
|
return ActivationStatus.getFalse();
|
|
}
|
|
}
|
|
// Check if rule modifying events prevent to cast the spell in check playable mode
|
|
if (this.isCheckPlayableMode()) {
|
|
if (game.getContinuousEffects().preventedByRuleModification(
|
|
GameEvent.getEvent(GameEvent.EventType.CAST_SPELL, this.getId(), this.getSourceId(), playerId), this, game, true)) {
|
|
return ActivationStatus.getFalse();
|
|
}
|
|
}
|
|
// Alternate spell abilities (Flashback, Overload) can't be cast with no mana to pay option
|
|
if (getSpellAbilityType() == SpellAbilityType.BASE_ALTERNATE) {
|
|
Player player = game.getPlayer(playerId);
|
|
if (player != null && getSourceId().equals(player.getCastSourceIdWithAlternateMana())) {
|
|
return ActivationStatus.getFalse();
|
|
}
|
|
}
|
|
if (costs.canPay(this, sourceId, controllerId, game)) {
|
|
if (getSpellAbilityType() == SpellAbilityType.SPLIT_FUSED) {
|
|
SplitCard splitCard = (SplitCard) game.getCard(getSourceId());
|
|
if (splitCard != null) {
|
|
return new ActivationStatus(splitCard.getLeftHalfCard().getSpellAbility().canChooseTarget(game)
|
|
&& splitCard.getRightHalfCard().getSpellAbility().canChooseTarget(game), null);
|
|
}
|
|
return ActivationStatus.getFalse();
|
|
|
|
} else {
|
|
return new ActivationStatus(canChooseTarget(game), permittingSource);
|
|
}
|
|
}
|
|
}
|
|
return ActivationStatus.getFalse();
|
|
}
|
|
|
|
@Override
|
|
public String getGameLogMessage(Game game) {
|
|
return getMessageText(game);
|
|
}
|
|
|
|
@Override
|
|
public String getRule(boolean all) {
|
|
if (all) {
|
|
return new StringBuilder(super.getRule(all)).append(name).toString();
|
|
}
|
|
return super.getRule(false);
|
|
}
|
|
|
|
public void clear() {
|
|
getTargets().clearChosen();
|
|
this.manaCosts.clearPaid();
|
|
this.costs.clearPaid();
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return this.name;
|
|
}
|
|
|
|
@Override
|
|
public SpellAbility copy() {
|
|
return new SpellAbility(this);
|
|
}
|
|
|
|
public SpellAbility copySpell() {
|
|
SpellAbility spell = new SpellAbility(this);
|
|
spell.id = UUID.randomUUID();
|
|
return spell;
|
|
}
|
|
|
|
public SpellAbilityType getSpellAbilityType() {
|
|
return spellAbilityType;
|
|
}
|
|
|
|
public void setSpellAbilityType(SpellAbilityType spellAbilityType) {
|
|
this.spellAbilityType = spellAbilityType;
|
|
}
|
|
|
|
public String getCardName() {
|
|
return cardName;
|
|
}
|
|
|
|
public int getConvertedXManaCost(Card card) {
|
|
int xMultiplier = 0;
|
|
int amount = 0;
|
|
if (card == null) {
|
|
return 0;
|
|
}
|
|
|
|
// mana cost instances
|
|
for (ManaCost manaCost : card.getManaCost()) {
|
|
if (manaCost instanceof VariableManaCost) {
|
|
xMultiplier = ((VariableManaCost) manaCost).getXInstancesCount();
|
|
break;
|
|
}
|
|
}
|
|
|
|
// mana cost final X value
|
|
boolean hasNonManaXCost = false;
|
|
for (Cost cost : getCosts()) {
|
|
if (cost instanceof VariableCost) {
|
|
hasNonManaXCost = true;
|
|
amount = ((VariableCost) cost).getAmount();
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!hasNonManaXCost) {
|
|
amount = getManaCostsToPay().getX();
|
|
}
|
|
return amount * xMultiplier;
|
|
}
|
|
|
|
public void setCardName(String cardName) {
|
|
this.cardName = cardName;
|
|
setSpellName();
|
|
}
|
|
|
|
private void setSpellName() {
|
|
switch (spellAbilityType) {
|
|
case SPLIT_FUSED:
|
|
this.name = "Cast fused " + cardName;
|
|
break;
|
|
default:
|
|
this.name = "Cast " + cardName + (this.spellAbilityCastMode != SpellAbilityCastMode.NORMAL ? " using " + spellAbilityCastMode.toString() : "");
|
|
}
|
|
}
|
|
|
|
public SpellAbilityCastMode getSpellAbilityCastMode() {
|
|
return spellAbilityCastMode;
|
|
}
|
|
|
|
public void setSpellAbilityCastMode(SpellAbilityCastMode spellAbilityCastMode) {
|
|
this.spellAbilityCastMode = spellAbilityCastMode;
|
|
setSpellName();
|
|
}
|
|
|
|
public SpellAbility getSpellAbilityToResolve(Game game) {
|
|
return this;
|
|
}
|
|
|
|
public Card getCharacteristics(Game game) {
|
|
Spell spell = game.getSpell(this.getId());
|
|
if (spell != null) {
|
|
return spell;
|
|
}
|
|
return game.getCard(this.getSourceId());
|
|
}
|
|
|
|
public static SpellAbility getSpellAbilityFromEvent(GameEvent event, Game game) {
|
|
if (event.getType() != GameEvent.EventType.CAST_SPELL) {
|
|
return null;
|
|
}
|
|
|
|
Card card = game.getCard(event.getSourceId());
|
|
if (card != null) {
|
|
Optional<Ability> ability = card.getAbilities(game).get(event.getTargetId());
|
|
if (ability.isPresent() && ability.get() instanceof SpellAbility) {
|
|
return (SpellAbility) ability.get();
|
|
}
|
|
return card.getSpellAbility();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void setId(UUID idToUse) {
|
|
this.id = idToUse;
|
|
}
|
|
}
|