added
"whenever a creature enters the battlefield you may pay {1}, if you do gain one life"
conditional may pay({cost}) effect
this version is a super type ability, and can only be used in certain combos.
to nest you will need to use it in its subtype pay[[{cost}]] effect
pay keyword can have sideeffects coded as follows
pay[[{1}]] life:1?life:-1
pay one mana and gain 1 life, if you dont then you lose one life. notice no space between the abilities and the question mark.
added castcard()
a method to cast a targeted card, this contains the following subkeywords which can be used in combinations
(normal)
(restricted)
(copied)
(noevent)
castcard(restricted copied noevent) for example will cast a card that is a copy or the spell without sending a cast event only when the spell is castable.
"normal" subkeyword cast the actual spell, not a copy.
extended the use of exiledeath to everyzone, any card going from any zone to graveyard is placed in exile if it has exiledeath.
limited swipe left to open hand only when hand is closed view.
"moveto(" can now be named.
2613 lines
99 KiB
C++
2613 lines
99 KiB
C++
#include "PrecompiledHeader.h"
|
|
|
|
#include "AIPlayerBaka.h"
|
|
#include "CardDescriptor.h"
|
|
#include "AIStats.h"
|
|
#include "AllAbilities.h"
|
|
#include "ExtraCost.h"
|
|
#include "GuiCombat.h"
|
|
#include "AIHints.h"
|
|
#include "ManaCostHybrid.h"
|
|
#include "MTGRules.h"
|
|
|
|
//
|
|
// AIAction
|
|
//
|
|
|
|
|
|
Player * OrderedAIAction::getPlayerTarget()
|
|
{
|
|
if (playerAbilityTarget)
|
|
return (Player *)playerAbilityTarget;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
int OrderedAIAction::getEfficiency(AADamager * aad)
|
|
{
|
|
Player * playerTarget = getPlayerTarget();
|
|
GameObserver * g = owner->getObserver();
|
|
Player * p = g->currentlyActing();
|
|
|
|
MTGCardInstance * dTarget = target ? target : dynamic_cast<MTGCardInstance *>(aad->getTarget());
|
|
|
|
if(!target && !playerTarget && dTarget)
|
|
{
|
|
//no action target, but damage has a target...this is most likely a card like pestilence.
|
|
return int(p->opponent()->game->battlefield->countByType("creature") - p->game->battlefield->countByType("creature")) * 25 % 100;
|
|
}
|
|
|
|
if(playerTarget)
|
|
{
|
|
TargetChooser * checkT = g->getCurrentTargetChooser();
|
|
int otherTargets = checkT ? checkT->countValidTargets() : 0;
|
|
if (playerTarget == p->opponent())
|
|
return 90 - otherTargets;
|
|
return 0;
|
|
}
|
|
|
|
if(p == target->controller())
|
|
return 0;
|
|
|
|
if (dTarget && aad && (aad->getDamage() >= dTarget->toughness))
|
|
return 100;
|
|
|
|
if (dTarget && dTarget->toughness)
|
|
return (50 * aad->getDamage()) / dTarget->toughness;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// In this function, target represents the target of the currentAIAction object, while coreAbilityCardTarget is the target of the ability of this AIAction object
|
|
// I can't remember as I type this in which condition we use one or the other for this function, if you find out please replace this comment
|
|
int OrderedAIAction::getEfficiency()
|
|
{
|
|
if (efficiency > -1)
|
|
return efficiency;
|
|
if (!ability)
|
|
return 0;
|
|
GameObserver * g = owner->getObserver();
|
|
ActionStack * s = g->mLayers->stackLayer();
|
|
int currentPhase = g->getCurrentGamePhase();
|
|
|
|
Player * p = g->currentlyActing();
|
|
if (s->has(ability))
|
|
return 0;
|
|
MTGAbility * a = AbilityFactory::getCoreAbility(ability);
|
|
MTGAbility * transAbility = NULL;
|
|
if(ATransformerInstant * atia = dynamic_cast<ATransformerInstant *>(a))
|
|
{
|
|
if(atia->newAbilityFound)
|
|
{
|
|
AbilityFactory af(g);
|
|
transAbility = af.parseMagicLine(atia->newAbilitiesList[atia->newAbilitiesList.size()-1], 0, NULL, atia->source);
|
|
transAbility->target = ability->target;
|
|
a = transAbility;
|
|
}
|
|
}
|
|
if (!a)
|
|
{
|
|
DebugTrace("FATAL: Ability is NULL in AIAction::getEfficiency()");
|
|
return 0;
|
|
}
|
|
|
|
if (!((AIPlayerBaka *)owner)->canHandleCost(ability))
|
|
{
|
|
SAFE_DELETE(transAbility);
|
|
return 0;
|
|
}
|
|
MTGCardInstance * coreAbilityCardTarget = dynamic_cast<MTGCardInstance *>(a->target);
|
|
|
|
//CoreAbility shouldn't return a Lord, but it does.
|
|
//When we don't have a target for a lord action, we assume it's the lord itself
|
|
if (!target && dynamic_cast<ALord*> (a))
|
|
{
|
|
target = a->source;
|
|
}
|
|
|
|
switch (a->aType)
|
|
{
|
|
case MTGAbility::DAMAGER:
|
|
{
|
|
efficiency = getEfficiency ((AADamager *) a);
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_REGENERATE:
|
|
{
|
|
efficiency = 0;
|
|
if (!coreAbilityCardTarget)
|
|
break;
|
|
|
|
if (!coreAbilityCardTarget->regenerateTokens && currentPhase == MTG_PHASE_COMBATBLOCKERS
|
|
&& (coreAbilityCardTarget->defenser || coreAbilityCardTarget->blockers.size())
|
|
)
|
|
{
|
|
efficiency = 95;
|
|
}
|
|
//TODO If the card is the target of a damage spell
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_PREVENT:
|
|
{
|
|
efficiency = 0;//starts out low to avoid spamming it when its not needed.
|
|
|
|
if (!target)
|
|
break;
|
|
|
|
bool NeedPreventing;
|
|
NeedPreventing = false;
|
|
if (currentPhase == MTG_PHASE_COMBATBLOCKERS)
|
|
{
|
|
MTGCardInstance * nextOpponent = target->getNextOpponent();
|
|
if(!nextOpponent)
|
|
break;
|
|
if ((target->defenser || target->blockers.size()) && target->preventable < nextOpponent->power)
|
|
NeedPreventing = true;
|
|
if (p == target->controller() && target->controller()->isAI() && NeedPreventing && !(nextOpponent->has(Constants::DEATHTOUCH)
|
|
||nextOpponent->has(Constants::WITHER)))
|
|
{
|
|
efficiency = 20 * (target->DangerRanking());//increase this chance to be used in combat if the creature blocking/blocked could kill the creature this chance is taking into consideration how good the creature is, best creature will always be the first "saved"..
|
|
if (target->toughness == 1 && nextOpponent->power == 1)
|
|
efficiency += 15;
|
|
//small bonus added for the poor 1/1s, if we can save them, we will unless something else took precidence.
|
|
//note is the target is being blocked or blocking a creature with wither or deathtouch, it is not even considered for preventing as it is a waste.
|
|
//if its combat blockers, it is being blocked or blocking, and has less prevents the the amount of damage it will be taking, the effeincy is increased slightly and totalled by the danger rank multiplier for final result.
|
|
int calculateAfterDamage = 0;
|
|
int damages = 0;
|
|
if((target->defenser || target->blockers.size()) && target->controller() == p)
|
|
{
|
|
damages = nextOpponent->power;
|
|
calculateAfterDamage = int(target->toughness - damages);
|
|
if((calculateAfterDamage + target->preventable) > 0)
|
|
{
|
|
efficiency = 0;
|
|
//this is to avoid wasting prevents on creatures that will already survive.
|
|
//this should take into account bushido and flanking as this check is run after every trigger.
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//TODO If the card is the target of a damage spell
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_EQUIP:
|
|
{
|
|
|
|
efficiency = 0;
|
|
if (!target)
|
|
break;
|
|
|
|
unsigned int equips = p->game->battlefield->countByType("Equipment");
|
|
unsigned int myArmy = p->game->battlefield->countByType("Creature");
|
|
// when can this ever be negative?
|
|
int equalized = myArmy ? equips / myArmy : 0;
|
|
|
|
if (p == target->controller() && target->equipment <= 1 && !a->source->target)
|
|
{
|
|
efficiency = 20 * (target->DangerRanking());
|
|
if (target->hasColor(Constants::MTG_COLOR_WHITE))
|
|
efficiency += 20;//this is to encourage Ai to equip white creatures in a weenie deck. ultimately it will depend on what had the higher dangerranking.
|
|
if (target->power == 1 && target->toughness == 1 && target->isToken == 0)
|
|
efficiency += 10; //small bonus to encourage equipping nontoken 1/1 creatures.
|
|
}
|
|
|
|
if (p == target->controller() && !a->source->target && target->equipment < equalized)
|
|
{
|
|
efficiency = 15 * (target->DangerRanking());
|
|
efficiency -= 5 * (target->equipment);
|
|
}
|
|
|
|
if ( efficiency < 20 && efficiency > 0 )
|
|
efficiency += target->controller()->getObserver()->getRandomGenerator()->random() % 30;
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_LEVELUP:
|
|
{
|
|
efficiency = 0;
|
|
Counter * targetCounter = NULL;
|
|
int currentlevel = 0;
|
|
|
|
if (!coreAbilityCardTarget)
|
|
break;
|
|
|
|
if (coreAbilityCardTarget->counters && coreAbilityCardTarget->counters->hasCounter("level", 0, 0))
|
|
{
|
|
targetCounter = coreAbilityCardTarget->counters->hasCounter("level", 0, 0);
|
|
currentlevel = targetCounter->nb;
|
|
}
|
|
if (currentlevel < coreAbilityCardTarget->MaxLevelUp)
|
|
{
|
|
efficiency = 85;
|
|
//increase the efficeincy of leveling up by a small amount equal to current level.
|
|
efficiency += currentlevel;
|
|
|
|
if (p->game->hand->nb_cards > 0 && p->isAI())
|
|
{
|
|
efficiency -= (10 * p->game->hand->nb_cards);//reduce the eff if by 10 times the amount of cards in Ais hand.
|
|
//it should always try playing more cards before deciding
|
|
}
|
|
|
|
if (g->getCurrentGamePhase() == MTG_PHASE_SECONDMAIN)
|
|
{
|
|
efficiency = 100;
|
|
//in 2nd main, go all out and try to max stuff.
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
case MTGAbility::COUNTERS:
|
|
{
|
|
MTGCardInstance * _target = target ? target : coreAbilityCardTarget;
|
|
efficiency = 0;
|
|
|
|
if (!_target)
|
|
break;
|
|
|
|
if(AACounter * cc = dynamic_cast<AACounter*> (a))
|
|
{
|
|
if(_target->controller() == p && cc->toughness>=0)
|
|
{
|
|
efficiency = 90;
|
|
|
|
}
|
|
if(_target->controller() != p && ((_target->toughness + cc->toughness <= 0 && _target->toughness) || (cc->toughness < 0 && cc->power < 0)))
|
|
{
|
|
efficiency = 90;
|
|
|
|
}
|
|
if(_target->counters && _target->counters->hasCounter(cc->power,cc->toughness) && _target->counters->hasCounter(cc->power,cc->toughness)->nb > 15)
|
|
{
|
|
efficiency = _target->counters->hasCounter(cc->power,cc->toughness)->nb;
|
|
}
|
|
if(cc->maxNb && _target->counters && _target->counters->hasCounter(cc->power,cc->toughness)->nb >= cc->maxNb)
|
|
efficiency = 0;
|
|
if(a->target == a->source && a->getCost() && a->getCost()->hasX())
|
|
efficiency -= 10 * int(p->game->hand->cards.size());
|
|
}
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_PUMP:
|
|
{
|
|
efficiency = 0;
|
|
if(!coreAbilityCardTarget)
|
|
break;
|
|
if(!target && !dynamic_cast<ALord*> (a) && (((MTGCardInstance *)a->source)->hasSubtype(Subtypes::TYPE_AURA) || ((MTGCardInstance *)a->source)->hasSubtype(Subtypes::TYPE_EQUIPMENT)))
|
|
{
|
|
if(a->source->target)
|
|
coreAbilityCardTarget = a->source->target; //TODO use intermediate value?
|
|
target = a->source;
|
|
}
|
|
if (!target && !dynamic_cast<ALord*> (a))
|
|
break;
|
|
if(dynamic_cast<ALord*> (a) && !target)
|
|
{
|
|
target = a->source;
|
|
}
|
|
|
|
AbilityFactory af(g);
|
|
int suggestion = af.abilityEfficiency(a, p, MODE_ABILITY);
|
|
//i do not set a starting eff. on this ability, this allows Ai to sometimes randomly do it as it normally does.
|
|
int currentPhase = g->getCurrentGamePhase();
|
|
if ((currentPhase == MTG_PHASE_COMBATBLOCKERS) || (currentPhase == MTG_PHASE_COMBATATTACKERS))
|
|
{
|
|
if (suggestion == BAKA_EFFECT_GOOD && target->controller() == p)
|
|
{
|
|
if(coreAbilityCardTarget->defenser || coreAbilityCardTarget->blockers.size())
|
|
{
|
|
MTGCardInstance * opponent = coreAbilityCardTarget->getNextOpponent();
|
|
if (!opponent)
|
|
break;
|
|
|
|
if (coreAbilityCardTarget->power < opponent->toughness ||( coreAbilityCardTarget->toughness < opponent->power) || (coreAbilityCardTarget->has(Constants::TRAMPLE)))
|
|
{
|
|
//this pump is based on a start eff. of 20 multiplied by how good the creature is.
|
|
efficiency = 20 * coreAbilityCardTarget->DangerRanking();
|
|
}
|
|
}
|
|
if (coreAbilityCardTarget->isAttacker() && !coreAbilityCardTarget->blockers.size())
|
|
{
|
|
//this means im heading directly for the player, pump this creature as much as possible.
|
|
efficiency = 100;
|
|
if(coreAbilityCardTarget->power > 50)
|
|
efficiency -= coreAbilityCardTarget->power;//we don't need to go overboard. better to not put all your eggs in a single basket.
|
|
}
|
|
}
|
|
}
|
|
if (suggestion == BAKA_EFFECT_BAD && target->controller() != p && target->toughness > 0)
|
|
{
|
|
efficiency = 100;
|
|
}
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_BECOMES:
|
|
{
|
|
if(!coreAbilityCardTarget)
|
|
break;
|
|
|
|
//nothing huge here, just ensuring that Ai makes his noncreature becomers into creatures during first main, so it can actually use them in combat.
|
|
if (coreAbilityCardTarget && !coreAbilityCardTarget->isCreature() && currentPhase == MTG_PHASE_FIRSTMAIN)
|
|
{
|
|
efficiency = 100;
|
|
}
|
|
break;
|
|
}
|
|
case MTGAbility::MANA_PRODUCER://only way to hit this condition is nested manaabilities, ai skips manaproducers by defualt when finding an ability to use.
|
|
{
|
|
efficiency = 0;
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARDABILITYGRANT:
|
|
{
|
|
efficiency = 0;
|
|
|
|
if (!target)
|
|
break;
|
|
|
|
//ensuring that Ai grants abilities to creatures during first main, so it can actually use them in combat.
|
|
//quick note: the eff is multiplied by creatures ranking then divided by the number of cards in hand.
|
|
//the reason i do this is to encourage more casting and less waste of mana on abilities.
|
|
AbilityFactory af(g);
|
|
int suggestion = af.abilityEfficiency(a, p, MODE_ABILITY);
|
|
|
|
int efficiencyModifier = (25 * target->DangerRanking());
|
|
if (p->game->hand->nb_cards > 1)
|
|
{
|
|
efficiencyModifier -= p->game->hand->nb_cards*3;
|
|
}
|
|
if (suggestion == BAKA_EFFECT_BAD && p != target->controller() && !target->has(a->abilitygranted))
|
|
{
|
|
efficiency += efficiencyModifier;
|
|
}
|
|
|
|
if (!target->has(a->abilitygranted) && g->getCurrentGamePhase() == MTG_PHASE_COMBATBEGIN
|
|
&& p == target->controller()
|
|
)
|
|
{
|
|
efficiency += efficiencyModifier;
|
|
}
|
|
|
|
if (suggestion == BAKA_EFFECT_GOOD && target->has(a->abilitygranted))
|
|
{
|
|
//trying to avoid Ai giving ie:flying creatures ie:flying twice.
|
|
efficiency = 0;
|
|
}
|
|
|
|
if ((suggestion == BAKA_EFFECT_BAD && p == target->controller())
|
|
|| (suggestion == BAKA_EFFECT_GOOD && p != target->controller())
|
|
)
|
|
{
|
|
efficiency = 0;
|
|
//stop giving trample to the players creatures.
|
|
}
|
|
break;
|
|
}
|
|
|
|
case MTGAbility::UNTAPPER:
|
|
//untap things that Ai owns and are tapped.
|
|
{
|
|
efficiency = 0;
|
|
if (!target)
|
|
break;
|
|
|
|
if (target->isTapped() && target->controller() == p)
|
|
{
|
|
efficiency = target->isCreature()? (20 * target->DangerRanking()) : 100;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case MTGAbility::TAPPER:
|
|
//tap things the player owns and that are untapped.
|
|
{
|
|
if (!target)
|
|
break;
|
|
|
|
if (target->controller() != p)
|
|
efficiency = (20 * target->DangerRanking());
|
|
|
|
if (target->isTapped())
|
|
efficiency = 0;
|
|
|
|
break;
|
|
}
|
|
|
|
case MTGAbility::LIFER:
|
|
{
|
|
//use life abilities whenever possible.
|
|
AALifer * alife = (AALifer *) a;
|
|
Targetable * _t = alife->getTarget();
|
|
|
|
efficiency = 100;
|
|
AbilityFactory af(g);
|
|
int suggestion = af.abilityEfficiency(a, p, MODE_ABILITY);
|
|
|
|
if(MTGCardInstance * cTarget = dynamic_cast<MTGCardInstance *>(_t))
|
|
{
|
|
if((suggestion == BAKA_EFFECT_BAD && (cTarget)->controller() == p) || (suggestion == BAKA_EFFECT_GOOD && (cTarget)->controller() != p))
|
|
efficiency = 0;
|
|
}
|
|
else if ((suggestion == BAKA_EFFECT_BAD && _t == p) || (suggestion == BAKA_EFFECT_GOOD && _t != p))
|
|
{
|
|
efficiency = 0;
|
|
}
|
|
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_DRAW:
|
|
{
|
|
AADrawer * drawer = (AADrawer *)a;
|
|
//adding this case since i played a few games where Ai litterally decided to mill himself to death. fastest and easiest win ever.
|
|
//this should help a little, tho ultimately it will be decided later what the best course of action is.
|
|
//eff of drawing ability is calculated by base 20 + the amount of cards in library minus the amount of cards in hand times 7.
|
|
//drawing is never going to return a hundred eff because later eff is multiplied by 1.3 if no cards in hand.
|
|
efficiency = int(20 + p->game->library->nb_cards) - int(p->game->hand->nb_cards * 7);
|
|
if (p->game->hand->nb_cards > 8)//reduce by 50 if cards in hand are over 8, high chance ai cant play them.
|
|
{
|
|
efficiency -= 70;
|
|
}
|
|
if ((drawer->getNumCards() >= p->game->library->nb_cards && (Targetable*)p == drawer->getTarget()) || (p->game->hand->nb_cards > 10 && (Targetable*)p == drawer->getTarget()))
|
|
{
|
|
//if the amount im drawing will mill me to death or i have more then 10 cards in hand, eff is 0;
|
|
efficiency = 0;
|
|
}
|
|
break;
|
|
}
|
|
case MTGAbility::CLONING:
|
|
{
|
|
efficiency = 0;
|
|
if(!target)
|
|
efficiency = 100;//a clone ability with no target is an "clone all("
|
|
else if (p == target->controller())
|
|
{
|
|
efficiency = 20 * target->DangerRanking();
|
|
}
|
|
break;
|
|
}
|
|
case MTGAbility::STANDARD_FIZZLER:
|
|
{
|
|
efficiency = 0;
|
|
|
|
if(!target)
|
|
break;
|
|
|
|
Interruptible * action = g->mLayers->stackLayer()->getAt(-1);
|
|
if (!action)
|
|
break;
|
|
|
|
Spell * spell = dynamic_cast<Spell *>(action);
|
|
if (!spell)
|
|
break;
|
|
|
|
Player * lastStackActionController = spell->source->controller();
|
|
if(p != target->controller() && lastStackActionController != p)
|
|
efficiency = 60;//we want ai to fizzle at higher than "unknown" ability %.
|
|
|
|
break;
|
|
}
|
|
default:
|
|
if (target)
|
|
{
|
|
AbilityFactory af(g);
|
|
int suggestion = af.abilityEfficiency(a, p, MODE_ABILITY,NULL,target);
|
|
if (AADynamic * ady = dynamic_cast<AADynamic *>(a))
|
|
{
|
|
if(ady)
|
|
{
|
|
//not going into massive detail with this ability, its far to complex, just going to give it a general idea.
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_COUNTERSONEONE)
|
|
suggestion = BAKA_EFFECT_GOOD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_DEPLETE)
|
|
suggestion = BAKA_EFFECT_BAD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_DRAW)
|
|
suggestion = BAKA_EFFECT_GOOD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_LIFEGAIN)
|
|
suggestion = BAKA_EFFECT_GOOD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_LIFELOSS)
|
|
suggestion = BAKA_EFFECT_BAD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_PUMPBOTH)
|
|
suggestion = BAKA_EFFECT_GOOD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_PUMPTOUGHNESS)
|
|
suggestion = BAKA_EFFECT_GOOD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_PUMPPOWER)
|
|
suggestion = BAKA_EFFECT_GOOD;
|
|
if(ady->effect == ady->DYNAMIC_ABILITY_EFFECT_STRIKE)
|
|
suggestion = BAKA_EFFECT_BAD;
|
|
}
|
|
}
|
|
if ((suggestion == BAKA_EFFECT_BAD && p == target->controller())
|
|
|| (suggestion == BAKA_EFFECT_GOOD && p != target->controller()))
|
|
{
|
|
efficiency = 0;
|
|
}
|
|
else
|
|
{
|
|
//without a base to start with Wrand % 5 almost always returns 0.
|
|
efficiency = 10 + (owner->getRandomGenerator()->random() % 20); //Small percentage of chance for unknown abilities
|
|
}
|
|
}
|
|
else
|
|
{
|
|
efficiency = 10 + (owner->getRandomGenerator()->random() % 30);
|
|
}
|
|
break;
|
|
}
|
|
if(AUpkeep * auk = dynamic_cast<AUpkeep *>(ability))
|
|
{
|
|
//hello, Ai pay your upcost please :P, this entices Ai into paying upcost, the conditional isAi() is required strangely ai is able to pay upcost during YOUR upkeep.
|
|
if (auk && g->getCurrentGamePhase() == MTG_PHASE_UPKEEP && g->currentPlayer == p && p == a->source->controller())
|
|
{
|
|
efficiency = 100;
|
|
}
|
|
}
|
|
else if (AAMover * aam = dynamic_cast<AAMover *>(a))
|
|
{
|
|
MTGGameZone * z = aam->destinationZone(target);
|
|
if (target)
|
|
{
|
|
if (target->currentZone == p->game->library|| target->currentZone == p->opponent()->game->inPlay||target->currentZone == p->game->hand)
|
|
{
|
|
if (z == p->game->hand || z == p->game->inPlay || z == target->controller()->game->hand)
|
|
efficiency = 100;
|
|
}
|
|
else if( target->currentZone == p->game->inPlay && (MTGCardInstance*)target == a->source)
|
|
{
|
|
if (z == p->game->hand)
|
|
efficiency = 10 + (owner->getRandomGenerator()->random() % 10);//random chance to bounce their own card;
|
|
}
|
|
else
|
|
{
|
|
efficiency = 10 + (owner->getRandomGenerator()->random() % 5);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
efficiency = 50;
|
|
//may abilities target the source until thier nested ability is activated, so 50% chance to use this
|
|
//mover, until we can come up with something more elegent....
|
|
}
|
|
}
|
|
else if (dynamic_cast<AAProliferate *>(a))
|
|
{
|
|
if (playerAbilityTarget && playerAbilityTarget != p)
|
|
{
|
|
efficiency = 60;//ai determines if the counters are good or bad on menu check.
|
|
}
|
|
else
|
|
efficiency = 90;
|
|
}
|
|
else if (dynamic_cast<AAAlterPoison *>(a))
|
|
{
|
|
if (playerAbilityTarget && playerAbilityTarget != p)
|
|
{
|
|
efficiency = 90;
|
|
}
|
|
}
|
|
else if (ATokenCreator * atc = dynamic_cast<ATokenCreator *>(a))
|
|
{
|
|
efficiency = 80;
|
|
if(atc->name.length() && atc->sabilities.length() && atc->types.size() && p->game->inPlay->findByName(atc->name))
|
|
{
|
|
list<int>::iterator it;
|
|
for (it = atc->types.begin(); it != atc->types.end(); it++)
|
|
{
|
|
if(*it == Subtypes::TYPE_LEGENDARY)//ai please stop killing voja!!! :P
|
|
efficiency = 0;
|
|
}
|
|
}
|
|
if(p->game->battlefield->countByType("token") >= 25)
|
|
efficiency = 0;
|
|
|
|
}
|
|
//At this point the "basic" efficiency is computed, we further tweak it depending on general decisions, independent of theAbility type
|
|
|
|
MayAbility * may = dynamic_cast<MayAbility*>(ability);
|
|
if (!efficiency && may)
|
|
{
|
|
AIPlayer * chk = (AIPlayer*)p;
|
|
if(may->ability && may->ability->getActionTc() && chk->chooseTarget(may->ability->getActionTc(),NULL,NULL,true))
|
|
efficiency = 50 + (owner->getRandomGenerator()->random() % 50);
|
|
}
|
|
if (p->game->hand->nb_cards == 0)
|
|
efficiency = (int) ((float) efficiency * 1.3); //increase chance of using ability if hand is empty
|
|
ManaCost * cost = ability->getCost();
|
|
if (cost)
|
|
{
|
|
ExtraCosts * ec = cost->extraCosts;
|
|
if (ec)
|
|
{
|
|
for(unsigned int i = 0; i < ec->costs.size();i++)
|
|
{
|
|
ExtraCost * tapper = dynamic_cast<TapCost*>(ec->costs[i]);
|
|
if(tapper)
|
|
continue;
|
|
else
|
|
efficiency = efficiency / 2;
|
|
}
|
|
//Decrease chance of using ability if there is an extra cost to use the ability, ignore tap
|
|
}
|
|
}
|
|
if (dynamic_cast<MTGPutInPlayRule *>(a))
|
|
{
|
|
efficiency += 65;
|
|
}
|
|
SAFE_DELETE(transAbility);
|
|
return efficiency;
|
|
}
|
|
|
|
int AIPlayerBaka::getEfficiency(OrderedAIAction * action)
|
|
{
|
|
return action->getEfficiency();
|
|
}
|
|
|
|
//
|
|
// Abilities/Target Selection
|
|
//
|
|
|
|
|
|
MTGCardInstance * AIPlayerBaka::chooseCard(TargetChooser * tc, MTGCardInstance * source, int)
|
|
{
|
|
MTGPlayerCards * playerZones = source->controller()->game;
|
|
if (comboHint && comboHint->cardTargets.size())
|
|
{
|
|
tc = GetComboTc(observer,tc);
|
|
}
|
|
for(int players = 0; players < 2;++players)
|
|
{
|
|
MTGGameZone * zones[] = { playerZones->hand, playerZones->library, playerZones->inPlay, playerZones->graveyard,playerZones->stack };
|
|
for (int j = 0; j < 5; j++)
|
|
{
|
|
MTGGameZone * zone = zones[j];
|
|
for (int k = 0; k < zone->nb_cards; k++)
|
|
{
|
|
MTGCardInstance * card = zone->cards[k];
|
|
if (card != source && card != tc->source && !tc->alreadyHasTarget(card) && tc->canTarget(card))
|
|
{
|
|
return card;
|
|
}
|
|
}
|
|
}
|
|
//switch player->zones to the other player and check there if we haven't found one yet.
|
|
playerZones = source->controller()->opponent()->game;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
bool AIPlayerBaka::payTheManaCost(ManaCost * cost, MTGCardInstance * target,vector<MTGAbility*>gotPayments)
|
|
{
|
|
DebugTrace("AIPlayerBaka: AI attempting to pay a mana cost." << endl
|
|
<< "- Target: " << (target ? target->name : "None" ) << endl
|
|
<< "- Cost: " << (cost ? cost->toString() : "NULL") );
|
|
|
|
if (!cost)
|
|
{
|
|
DebugTrace("AIPlayerBaka: Mana cost is NULL. ");
|
|
return false;
|
|
}
|
|
|
|
ExtraCosts * ec = cost->extraCosts;
|
|
if(!ec && observer->mExtraPayment)
|
|
ec = observer->mExtraPayment;
|
|
if (ec)
|
|
{
|
|
for (size_t i = 0; i < ec->costs.size(); ++i)
|
|
{
|
|
if (ec->costs[i]->tc)
|
|
{
|
|
ec->costs[i]->setSource(target);
|
|
if(!ec->costs[i]->tc->countValidTargets())
|
|
return false;
|
|
MTGCardInstance * costTarget = chooseCard(ec->costs[i]->tc,target);
|
|
int checkTarget = 0;
|
|
while (ec->tryToSetPayment(costTarget))
|
|
{
|
|
costTarget = chooseCard(ec->costs[i]->tc,target);
|
|
if(checkTarget == 20)
|
|
return false;
|
|
checkTarget++;
|
|
}
|
|
if(!ec->costs[i]->isPaymentSet())
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!cost->getConvertedCost())
|
|
{
|
|
DebugTrace("AIPlayerBaka: Card or Ability was free to play. ");
|
|
if(!cost->hasX())//don't return true if it contains {x} but no cost, locks ai in a loop. ie oorchi hatchery cost {x}{x} to play.
|
|
return true;
|
|
//return true if cost does not contain "x" becuase we don't need to do anything with a cost of 0;
|
|
}
|
|
if(gotPayments.size())
|
|
{
|
|
DebugTrace("AIPlayerBaka: Ai had a payment in mind.");
|
|
ManaCost * paid = NEW ManaCost();
|
|
vector<AIAction*>clicks;
|
|
|
|
for(size_t k = 0; k < gotPayments.size(); ++k)
|
|
{
|
|
if ( AManaProducer * amp = dynamic_cast<AManaProducer*> (gotPayments[k]))
|
|
{
|
|
AIAction * action = NEW AIAction(this, amp,amp->source);
|
|
clicks.push_back(action);
|
|
paid->add(amp->output);
|
|
}
|
|
else if(GenericActivatedAbility * gmp = dynamic_cast<GenericActivatedAbility*>(gotPayments[k]))
|
|
{
|
|
AIAction * action = NEW AIAction(this, gmp,gmp->source);
|
|
clicks.push_back(action);
|
|
if(AForeach * fmp = dynamic_cast<AForeach*>(gmp->ability))
|
|
{
|
|
amp = dynamic_cast<AManaProducer*> (fmp->ability);
|
|
int outPut = fmp->checkActivation();
|
|
for(int k = 0; k < outPut; ++k)
|
|
paid->add(amp->output);
|
|
}
|
|
}
|
|
if(k == gotPayments.size()-1)//only add it once, and at the end.
|
|
paid->add(this->getManaPool());//incase some of our payments were mana already in the pool/.
|
|
if(paid->canAfford(cost))
|
|
{
|
|
if((!cost->hasX() && !cost->hasAnotherCost()) || k == gotPayments.size()-1)
|
|
{
|
|
SAFE_DELETE(paid);
|
|
for(size_t clicking = 0; clicking < clicks.size(); ++clicking)
|
|
clickstream.push(clicks[clicking]);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
//clean up temporary "clicks" structure if its content wasn't used above
|
|
for(size_t i = 0; i< clicks.size(); ++i)
|
|
SAFE_DELETE(clicks[i]);
|
|
clicks.clear();
|
|
SAFE_DELETE(paid);
|
|
return false;
|
|
}
|
|
|
|
// Didn't have a payment in mind if we reach this point
|
|
//pMana is our main payment form, it is far faster then direct search.
|
|
DebugTrace("AIPlayerBaka: the Mana was already in the manapool or could be Paid with potential mana, using potential Mana now.");
|
|
|
|
ManaCost * pMana = getPotentialMana(target);
|
|
if (!pMana)
|
|
return false;
|
|
|
|
pMana->add(this->getManaPool());
|
|
|
|
if(!cost->getConvertedCost() && cost->hasX())
|
|
{
|
|
cost = pMana;//{x}:effect, set x to max.
|
|
}
|
|
|
|
if(!pMana->canAfford(cost))
|
|
{
|
|
delete pMana;
|
|
return false;
|
|
}
|
|
ManaCost * diff = pMana->Diff(cost);
|
|
delete (pMana);
|
|
|
|
map<MTGCardInstance *, bool> used;
|
|
for (size_t i = 1; i < observer->mLayers->actionLayer()->mObjects.size(); ++i)
|
|
{ //0 is not a mtgability...hackish
|
|
//Make sure we can use the ability
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->mObjects[i]);
|
|
AManaProducer * amp = dynamic_cast<AManaProducer*> (a);
|
|
if (amp && canHandleCost(amp))
|
|
{
|
|
MTGCardInstance * card = amp->source;
|
|
if (card == target)
|
|
{
|
|
used[card] = true;
|
|
} //http://code.google.com/p/wagic/issues/detail?id=76
|
|
if (!used[card] && amp->isReactingToClick(card) && amp->output->getConvertedCost() >= 1)
|
|
{
|
|
used[card] = true;
|
|
int doUse = 1;
|
|
for (int i = Constants::NB_Colors - 1; i >= 0; i--)
|
|
{
|
|
if (diff->getCost(i) && amp->output->getCost(i))
|
|
{
|
|
diff->remove(i, 1);
|
|
doUse = 0;
|
|
break;
|
|
}
|
|
}
|
|
if (doUse)
|
|
{
|
|
AIAction * action = NEW AIAction(this, amp, card);
|
|
clickstream.push(action);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
delete (diff);
|
|
return true;
|
|
}
|
|
|
|
ManaCost * AIPlayerBaka::getPotentialMana(MTGCardInstance * target)
|
|
{
|
|
ManaCost * result = NEW ManaCost();
|
|
map<MTGCardInstance *, bool> used;
|
|
for (size_t i = 0; i < observer->mLayers->actionLayer()->manaObjects.size(); i++)
|
|
{
|
|
//Make sure we can use the ability
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->manaObjects[i]);
|
|
AManaProducer * amp = dynamic_cast<AManaProducer*> (a);
|
|
GenericActivatedAbility * gmp = dynamic_cast<GenericActivatedAbility*>(a);
|
|
if(gmp && canHandleCost(gmp))
|
|
{
|
|
//skip for each mana producers.
|
|
AForeach * fmp = dynamic_cast<AForeach*>(gmp->ability);
|
|
if(fmp)
|
|
{
|
|
amp = dynamic_cast<AManaProducer*> (fmp->ability);
|
|
if(amp)
|
|
{
|
|
used[fmp->source] = true;
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
if (amp && canHandleCost(amp))
|
|
{
|
|
MTGCardInstance * card = amp->source;
|
|
if (card == target)
|
|
used[card] = true; //http://code.google.com/p/wagic/issues/detail?id=76
|
|
if (!used[card] && amp->isReactingToClick(card) && amp->output->getConvertedCost() == 1)
|
|
{//ai can't use cards which produce more then 1 converted while using the old pMana method.
|
|
result->add(amp->output);
|
|
used[card] = true;
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
vector<MTGAbility*> AIPlayerBaka::canPayMana(MTGCardInstance * target,ManaCost * cost)
|
|
{
|
|
if(!cost || (cost && !cost->getConvertedCost()) || !target)
|
|
return vector<MTGAbility*>();
|
|
map<MTGCardInstance*, bool> usedCards;
|
|
|
|
return canPayMana(target, cost, usedCards);
|
|
}
|
|
|
|
vector<MTGAbility*> AIPlayerBaka::canPayMana(MTGCardInstance * target,ManaCost * cost, map<MTGCardInstance*,bool> &used ,bool searchingAgain)
|
|
{
|
|
if(!cost->getConvertedCost())
|
|
return vector<MTGAbility*>();
|
|
ManaCost * result = NEW ManaCost();
|
|
|
|
vector<MTGAbility*>payments = vector<MTGAbility*>();
|
|
if (this->getManaPool()->getConvertedCost())
|
|
{
|
|
//adding the current manapool if any.
|
|
result->add(this->getManaPool());
|
|
}
|
|
int needColorConverted = cost->getConvertedCost() - int(cost->getCost(0)+cost->getCost(7));
|
|
int fullColor = 0;
|
|
for (size_t i = 0; i < observer->mLayers->actionLayer()->manaObjects.size(); i++)
|
|
{
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->manaObjects[i]);
|
|
AManaProducer * amp = dynamic_cast<AManaProducer*> (a);
|
|
if(amp && (amp->getCost() && amp->getCost()->extraCosts && !amp->getCost()->extraCosts->canPay()))
|
|
continue;
|
|
if(fullColor == needColorConverted && result->getConvertedCost() < cost->getConvertedCost())
|
|
{
|
|
if(cost->hasColor(0) && amp)//find colorless after color mana.
|
|
{
|
|
if(result->canAfford(cost))
|
|
continue;
|
|
if (canHandleCost(amp))
|
|
{
|
|
MTGCardInstance * card = amp->source;
|
|
if (card == target)
|
|
used[card] = true; //http://code.google.com/p/wagic/issues/detail?id=76
|
|
if (!used[card] && amp->isReactingToClick(card) && amp->output->getConvertedCost() >= 1)
|
|
{
|
|
if(!(result->canAfford(cost)))//if we got to this point we should be filling colorless mana requirements.
|
|
{
|
|
payments.push_back(amp);
|
|
result->add(amp->output);
|
|
used[card] = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
continue;
|
|
}
|
|
GenericActivatedAbility * gmp = dynamic_cast<GenericActivatedAbility*>(a);
|
|
if(gmp && canHandleCost(gmp))
|
|
{
|
|
//for each mana producers.
|
|
AForeach * fmp = dynamic_cast<AForeach*>(gmp->ability);
|
|
if(fmp)
|
|
{
|
|
amp = dynamic_cast<AManaProducer*> (fmp->ability);
|
|
if(amp)
|
|
{
|
|
MTGCardInstance * fecard = gmp->source;
|
|
if (fecard == target)
|
|
used[fecard] = true; //http://code.google.com/p/wagic/issues/detail?id=76
|
|
if(gmp->getCost() && gmp->getCost()->getConvertedCost() > 0)
|
|
{//ai stil can't use cabal coffers and mana abilities which require mana payments effectively;
|
|
used[fecard];
|
|
continue;
|
|
}
|
|
if (!used[fecard] && gmp->isReactingToClick(fecard) && amp->output->getConvertedCost() >= 1 && (cost->getConvertedCost() > 1 || cost->hasX()))//wasteful to tap a potential big mana source for a single mana.
|
|
{
|
|
int outPut = fmp->checkActivation();
|
|
for(int k = 0;k < outPut;k++)
|
|
result->add(amp->output);
|
|
payments.push_back(gmp);
|
|
used[fecard] = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (amp && canHandleCost(amp) && amp->isReactingToClick(amp->source,amp->getCost()))
|
|
{
|
|
for (int k = Constants::NB_Colors-1; k > 0 ; k--)//go backwards.
|
|
{
|
|
if (cost->hasColor(k) && amp->output->hasColor(k) && result->getCost(k) < cost->getCost(k))
|
|
{
|
|
MTGCardInstance * card = amp->source;
|
|
if (card == target)
|
|
used[card] = true; //http://code.google.com/p/wagic/issues/detail?id=76
|
|
if (!used[card] && amp->isReactingToClick(card) && amp->output->getConvertedCost() >= 1)
|
|
{
|
|
ManaCost * check = NEW ManaCost();
|
|
check->add(k,cost->getCost(k));
|
|
ManaCost * checkResult = NEW ManaCost();
|
|
checkResult->add(k,result->getCost(k));
|
|
if(!(checkResult->canAfford(check)))
|
|
{
|
|
payments.push_back(amp);
|
|
result->add(k,amp->output->getCost(k));
|
|
used[card] = true;
|
|
fullColor++;
|
|
}
|
|
SAFE_DELETE(check);
|
|
SAFE_DELETE(checkResult);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
ManaCostHybrid * hybridCost;
|
|
int hyb;
|
|
hyb = 0;
|
|
hybridCost = cost->getHybridCost(0);
|
|
if(hybridCost)
|
|
{
|
|
while ((hybridCost = cost->getHybridCost(hyb)) != NULL)
|
|
{
|
|
//here we try to find one of the colors in the hybrid cost, it is done 1 at a time unfortunately
|
|
//{rw}{ub} would be 2 runs of this.90% of the time ai finds it's hybrid in pMana check.
|
|
bool foundColor1 = false;
|
|
bool foundColor2 = false;
|
|
for (size_t i = 0; i < observer->mLayers->actionLayer()->manaObjects.size(); i++)
|
|
{
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->manaObjects[i]);
|
|
AManaProducer * amp = dynamic_cast<AManaProducer*> (a);
|
|
if (amp && canHandleCost(amp))
|
|
{
|
|
foundColor1 = amp->output->hasColor(hybridCost->color1)?true:false;
|
|
foundColor2 = amp->output->hasColor(hybridCost->color2)?true:false;
|
|
if ((foundColor1 && result->getCost(hybridCost->color1) < hybridCost->value1)||
|
|
(foundColor2 && result->getCost(hybridCost->color2) < hybridCost->value2))
|
|
{
|
|
MTGCardInstance * card = amp->source;
|
|
if (card == target)
|
|
used[card] = true; //http://code.google.com/p/wagic/issues/detail?id=76
|
|
if (!used[card] && amp->isReactingToClick(card) && amp->output->getConvertedCost() >= 1)
|
|
{
|
|
ManaCost * check = NEW ManaCost();
|
|
check->add(foundColor1?hybridCost->color1:hybridCost->color2,foundColor1?hybridCost->value1:hybridCost->value2);
|
|
ManaCost * checkResult = NEW ManaCost();
|
|
checkResult->add(foundColor1?hybridCost->color1:hybridCost->color2,result->getCost(foundColor1?hybridCost->color1:hybridCost->color2));
|
|
if(((foundColor1 && !foundColor2)||(!foundColor1 && foundColor2)) &&!(checkResult->canAfford(check)))
|
|
{
|
|
payments.push_back(amp);
|
|
result->add(foundColor1?hybridCost->color1:hybridCost->color2,amp->output->getCost(foundColor1?hybridCost->color1:hybridCost->color2));
|
|
used[card] = true;
|
|
fullColor++;
|
|
}
|
|
SAFE_DELETE(check);
|
|
SAFE_DELETE(checkResult);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
hyb++;
|
|
}
|
|
}
|
|
else if(!hybridCost && result->getConvertedCost())
|
|
{
|
|
ManaCost * check = NEW ManaCost();
|
|
ManaCost * checkResult = NEW ManaCost();
|
|
for (int k = 1; k < Constants::NB_Colors; k++)
|
|
{
|
|
check->add(k,cost->getCost(k));
|
|
checkResult->add(k,result->getCost(k));
|
|
if(!(checkResult->canAfford(check)))
|
|
{
|
|
SAFE_DELETE(check);
|
|
SAFE_DELETE(checkResult);
|
|
SAFE_DELETE(result);
|
|
payments.clear();
|
|
return payments;//we didn't meet one of the color cost requirements.
|
|
}
|
|
}
|
|
if(cost->kicker && !searchingAgain)
|
|
{
|
|
|
|
ManaCost * withKickerCost= NEW ManaCost(cost->kicker);
|
|
int canKick = 0;
|
|
vector<MTGAbility*>kickerPayment;
|
|
bool keepLooking = true;
|
|
while(keepLooking)
|
|
{
|
|
kickerPayment = canPayMana(target, withKickerCost, used,true);
|
|
if(kickerPayment.size())
|
|
{
|
|
for(unsigned int w = 0;w < kickerPayment.size();++w)
|
|
{
|
|
if(used[kickerPayment[w]->source])
|
|
{
|
|
payments.push_back(kickerPayment[w]);
|
|
}
|
|
}
|
|
canKick += 1;
|
|
keepLooking = cost->kicker->isMulti;
|
|
}
|
|
else
|
|
keepLooking = false;
|
|
}
|
|
SAFE_DELETE(withKickerCost);
|
|
}
|
|
SAFE_DELETE(check);
|
|
SAFE_DELETE(checkResult);
|
|
}
|
|
if(cost->hasX())
|
|
{
|
|
//if we decided to play an "x" ability/card, lets go all out, these effects tend to be game winners.
|
|
//add the rest of the mana.
|
|
for (size_t i = 0; i < observer->mLayers->actionLayer()->manaObjects.size(); i++)
|
|
{
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->manaObjects[i]);
|
|
AManaProducer * amp = dynamic_cast<AManaProducer*> (a);
|
|
if (amp && canHandleCost(amp))
|
|
{
|
|
if (!used[amp->source] && amp->isReactingToClick(amp->source) && amp->output->getConvertedCost() >= 1)
|
|
{
|
|
payments.push_back(amp);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(!result->canAfford(cost))
|
|
payments.clear();
|
|
SAFE_DELETE(result);
|
|
return payments;
|
|
}
|
|
|
|
vector<MTGAbility*> AIPlayerBaka::canPaySunBurst(ManaCost * cost)
|
|
{
|
|
//in canPaySunburst we try to fill the cost with one of each color we can produce,
|
|
//note it is still possible to use lotus petal for it's first mana ability and not later for a final color
|
|
//a search of true sunburst would cause the game to come to a crawl, trust me, this is the "fast" method for sunburst :)
|
|
ManaCost * result = NEW ManaCost();
|
|
map<MTGCardInstance *, bool> used;
|
|
vector<MTGAbility*>payments = vector<MTGAbility*>();
|
|
int needColorConverted = 6;
|
|
int fullColor = 0;
|
|
result->add(this->getManaPool());
|
|
for (size_t i = 0; i < observer->mLayers->actionLayer()->manaObjects.size(); i++)
|
|
{
|
|
//Make sure we can use the ability
|
|
if(fullColor == needColorConverted || fullColor == cost->getConvertedCost())
|
|
{
|
|
break;
|
|
}
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->manaObjects[i]);
|
|
AManaProducer * amp = dynamic_cast<AManaProducer*> (a);
|
|
if(amp && amp->getCost() && amp->getCost()->extraCosts && !amp->getCost()->extraCosts->canPay())
|
|
continue;//pentid prism, has no cost but contains a counter cost, without this check ai will think it can still use this mana.
|
|
if (amp && canHandleCost(amp) && amp->isReactingToClick(amp->source,amp->getCost()))
|
|
{
|
|
for (int k = Constants::NB_Colors-1; k > 0 ; k--)
|
|
{
|
|
if (amp->output->hasColor(k) && result->getCost(k) < 1 && result->getConvertedCost() < cost->getConvertedCost())
|
|
{
|
|
MTGCardInstance * card = amp->source;
|
|
if (!used[card] && amp->isReactingToClick(card) && amp->output->getConvertedCost() >= 1)
|
|
{
|
|
ManaCost * check = NEW ManaCost();
|
|
check->add(k,1);
|
|
ManaCost * checkResult = NEW ManaCost();
|
|
checkResult->add(k,result->getCost(k));
|
|
if(!(checkResult->canAfford(check)))
|
|
{
|
|
payments.push_back(amp);
|
|
result->add(k,amp->output->getCost(k));
|
|
used[card] = true;
|
|
fullColor++;
|
|
}
|
|
SAFE_DELETE(check);
|
|
SAFE_DELETE(checkResult);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
for(int i = fullColor;i < cost->getConvertedCost();i++)
|
|
{
|
|
for (size_t i = 0; i < observer->mLayers->actionLayer()->manaObjects.size(); i++)
|
|
{
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->manaObjects[i]);
|
|
AManaProducer * amp = dynamic_cast<AManaProducer*> (a);
|
|
if (amp && canHandleCost(amp))
|
|
{
|
|
MTGCardInstance * card = amp->source;
|
|
if (!used[card] && amp->isReactingToClick(card) && amp->output->getConvertedCost() >= 1)
|
|
{
|
|
if(!(result->canAfford(cost)))//if we got to this point we should be filling colorless mana requirements.
|
|
{
|
|
payments.push_back(amp);
|
|
result->add(amp->output);
|
|
used[card] = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(!result->canAfford(cost))
|
|
payments.clear();
|
|
SAFE_DELETE(result);
|
|
return payments;
|
|
}
|
|
|
|
|
|
//can handle extra cost to some extent, tho not wisely.
|
|
int AIPlayerBaka::CanHandleCost(ManaCost * cost, MTGCardInstance * card)
|
|
{
|
|
if (!cost)
|
|
return 1;
|
|
|
|
ExtraCosts * ec = cost->extraCosts;
|
|
if (!ec)
|
|
return 1;
|
|
|
|
for (size_t i = 0; i < ec->costs.size(); ++i)
|
|
{
|
|
if (ec->costs[i]->tc)
|
|
{
|
|
ec->costs[i]->setSource(card);
|
|
if(!ec->costs[i]->tc->countValidTargets())
|
|
return 0;
|
|
if(!chooseCard(ec->costs[i]->tc,card))
|
|
return 0;
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
int AIPlayerBaka::canHandleCost(MTGAbility * ability)
|
|
{
|
|
return CanHandleCost(ability->getCost(),ability->source);
|
|
}
|
|
|
|
|
|
|
|
|
|
int AIPlayerBaka::createAbilityTargets(MTGAbility * a, MTGCardInstance * c, RankingContainer& ranking)
|
|
{
|
|
if (!a->getActionTc())
|
|
{
|
|
OrderedAIAction aiAction(this, a, c, NULL);
|
|
ranking[aiAction] = 1;
|
|
return 1;
|
|
}
|
|
if (comboHint && comboHint->cardTargets.size())
|
|
{
|
|
a->setActionTC(GetComboTc(observer,a->getActionTc()));
|
|
}
|
|
vector<Targetable*>potentialTargets;
|
|
for (int i = 0; i < 2; i++)
|
|
{
|
|
Player * p = observer->players[i];
|
|
MTGGameZone * playerZones[] = { p->game->graveyard, p->game->library, p->game->hand, p->game->inPlay,p->game->stack };
|
|
if(a->getActionTc()->canTarget((Targetable*)p))
|
|
{
|
|
if(a->getActionTc()->maxtargets == 1)
|
|
{
|
|
OrderedAIAction aiAction(this, a, p, c);
|
|
ranking[aiAction] = 1;
|
|
}
|
|
else
|
|
potentialTargets.push_back(p);
|
|
}
|
|
for (int j = 0; j < 5; j++)
|
|
{
|
|
MTGGameZone * zone = playerZones[j];
|
|
for (int k = 0; k < zone->nb_cards; k++)
|
|
{
|
|
MTGCardInstance * t = zone->cards[k];
|
|
if (a->getActionTc()->canTarget(t))
|
|
{
|
|
if(a->getActionTc()->maxtargets == 1)
|
|
{
|
|
OrderedAIAction aiAction(this, a, c, t);
|
|
ranking[aiAction] = 1;
|
|
}
|
|
else
|
|
{
|
|
potentialTargets.push_back(t);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
vector<Targetable*>realTargets;
|
|
if(a->getActionTc()->maxtargets != 1)
|
|
{
|
|
if(a->getActionTc()->getNbTargets() && a->getActionTc()->attemptsToFill > 4)
|
|
{
|
|
a->getActionTc()->done = true;
|
|
return 0;
|
|
}
|
|
while(potentialTargets.size())
|
|
{
|
|
OrderedAIAction * check = NULL;
|
|
|
|
MTGCardInstance * cTargeting = dynamic_cast<MTGCardInstance*>(potentialTargets[0]);
|
|
if(cTargeting)
|
|
check = NEW OrderedAIAction(this, a,c,cTargeting);
|
|
|
|
Player * pTargeting = dynamic_cast<Player*>(potentialTargets[0]);
|
|
if(pTargeting)
|
|
check = NEW OrderedAIAction(this, a,pTargeting,c);
|
|
|
|
int targetThis = getEfficiency(check);
|
|
if(targetThis && pTargeting)
|
|
{
|
|
OrderedAIAction aiAction(this, a,pTargeting,c);
|
|
ranking[aiAction] = 1;
|
|
}
|
|
if(targetThis)
|
|
realTargets.push_back(potentialTargets[0]);
|
|
potentialTargets.erase(potentialTargets.begin());
|
|
SAFE_DELETE(check);
|
|
}
|
|
if(!realTargets.size() || (int(realTargets.size()) < a->getActionTc()->maxtargets && a->getActionTc()->targetMin))
|
|
return 0;
|
|
OrderedAIAction aiAction(this, a, c,realTargets);
|
|
|
|
aiAction.target = dynamic_cast<MTGCardInstance*>(realTargets[0]);
|
|
aiAction.playerAbilityTarget = dynamic_cast<Player*>(realTargets[0]);
|
|
ranking[aiAction] = 1;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
TargetChooser * AIPlayerBaka::GetComboTc( GameObserver * observer,TargetChooser * tc)
|
|
{
|
|
TargetChooser * gathertc = NULL;
|
|
TargetChooserFactory tcf(observer);
|
|
map<string, string>::iterator it = comboHint->cardTargets.begin();
|
|
for(map<string, string>::iterator it = comboHint->cardTargets.begin();it != comboHint->cardTargets.end();it++)
|
|
{
|
|
gathertc = tcf.createTargetChooser(it->first.c_str(),tc->source);
|
|
gathertc->setAllZones();
|
|
if(gathertc->canTarget(tc->source))
|
|
{
|
|
MTGCardInstance * cardBackUp = tc->source;
|
|
Player * Oowner = tc->Owner;
|
|
TargetChooser * testTc = tcf.createTargetChooser(it->second.c_str(),cardBackUp);
|
|
if(testTc->countValidTargets())
|
|
{
|
|
tc = testTc;
|
|
tc->Owner = Oowner;
|
|
tc->other = true;
|
|
}
|
|
//I know I shouldn't redefine a passed variable,
|
|
//if anyone knows a way that doesn't add a major function for this that does this correctly
|
|
//then feel free to change this redefine. I do it this way becuase the method is the
|
|
//fastest I could find that doesn't produce a noticible lag on ai.
|
|
//recreate the targetchooser for this card becuase we planned to use it in a combo
|
|
}
|
|
SAFE_DELETE(gathertc);
|
|
}
|
|
return tc;
|
|
}
|
|
|
|
int AIPlayerBaka::selectHintAbility()
|
|
{
|
|
if (!hints)
|
|
return 0;
|
|
|
|
ManaCost * totalPotentialMana = getPotentialMana();
|
|
totalPotentialMana->add(this->getManaPool());
|
|
AIAction * action = hints->suggestAbility(totalPotentialMana);
|
|
if (action && ((randomGenerator.random() % 100) < 95)) //95% chance
|
|
{
|
|
if (!clickstream.size())
|
|
{
|
|
DebugTrace("AIPlayer:Using Activated ability");
|
|
if (payTheManaCost(action->ability->getCost(), action->click))
|
|
{
|
|
clickstream.push(action);
|
|
SAFE_DELETE(totalPotentialMana);
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
SAFE_DELETE(action);
|
|
SAFE_DELETE(totalPotentialMana);
|
|
return 0;
|
|
}
|
|
|
|
int AIPlayerBaka::selectAbility()
|
|
{
|
|
if(observer->mExtraPayment && observer->mExtraPayment->source->controller() == this)
|
|
{
|
|
extraManaCost * check = NULL;
|
|
check = dynamic_cast<extraManaCost*>(observer->mExtraPayment->costs[0]);
|
|
if(check)
|
|
{
|
|
vector<MTGAbility*> CostToPay = canPayMana(observer->mExtraPayment->source,check->costToPay);
|
|
if(CostToPay.size())
|
|
{
|
|
payTheManaCost(check->costToPay,check->source,CostToPay);
|
|
}
|
|
else
|
|
{
|
|
observer->mExtraPayment->action->CheckUserInput(JGE_BTN_SEC);
|
|
observer->mExtraPayment = NULL;
|
|
}
|
|
}
|
|
}
|
|
// Try Deck hints first
|
|
if (selectHintAbility())
|
|
return 1;
|
|
|
|
if(observer->mLayers->stackLayer()->lastActionController == this)
|
|
{
|
|
//this is here for 2 reasons, MTG rules state that priority is passed with each action.
|
|
//without this ai is able to chain cast {t}:damage:1 target(creature) from everything it can all at once.
|
|
//this not only is illegal but cause ai to waste abilities ei:all damage:1 on a single 1/1 creature.
|
|
return 1;
|
|
}
|
|
|
|
RankingContainer ranking;
|
|
list<int>::iterator it;
|
|
vector<MTGAbility*>abilityPayment = vector<MTGAbility*>();
|
|
//This loop is extrmely inefficient. TODO: optimize!
|
|
ManaCost * totalPotentialMana = getPotentialMana();
|
|
totalPotentialMana->add(this->getManaPool());
|
|
for (size_t i = 1; i < observer->mLayers->actionLayer()->mObjects.size(); i++)
|
|
{ //0 is not a mtgability...hackish
|
|
MTGAbility * a = ((MTGAbility *) observer->mLayers->actionLayer()->mObjects[i]);
|
|
//Skip mana abilities for performance
|
|
if (dynamic_cast<AManaProducer*> (a))
|
|
continue;
|
|
//Make sure we can use the ability
|
|
for (int j = 0; j < game->inPlay->nb_cards; j++)
|
|
{
|
|
MTGCardInstance * card = game->inPlay->cards[j];
|
|
if(a->getCost() && !a->isReactingToClick(card, totalPotentialMana))//for performance reason only look for specific mana if the payment couldnt be made with potential.
|
|
{
|
|
abilityPayment = vector<MTGAbility*>();
|
|
abilityPayment = canPayMana(card,a->getCost());
|
|
}
|
|
if (a->isReactingToClick(card, totalPotentialMana) || abilityPayment.size())
|
|
{ //This test is to avoid the huge call to getPotentialManaCost after that
|
|
if(a->getCost() && a->getCost()->hasX() && totalPotentialMana->getConvertedCost() < a->getCost()->getConvertedCost()+1)
|
|
continue;
|
|
//don't even bother to play an ability with {x} if you can't even afford x=1.
|
|
ManaCost * fullPayment = NULL;
|
|
if (abilityPayment.size())
|
|
{
|
|
fullPayment = NEW ManaCost();
|
|
for(int ch = 0; ch < int(abilityPayment.size());ch++)
|
|
{
|
|
AManaProducer * ampp = dynamic_cast<AManaProducer*> (abilityPayment[ch]);
|
|
if(ampp)
|
|
fullPayment->add(ampp->output);
|
|
}
|
|
if (fullPayment && a->isReactingToClick(card, fullPayment))
|
|
createAbilityTargets(a, card, ranking);
|
|
delete fullPayment;
|
|
}
|
|
else
|
|
{
|
|
ManaCost * pMana = getPotentialMana(card);
|
|
pMana->add(this->getManaPool());
|
|
if (a->isReactingToClick(card, pMana))
|
|
createAbilityTargets(a, card, ranking);
|
|
delete (pMana);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
delete totalPotentialMana;
|
|
if (ranking.size())
|
|
{
|
|
OrderedAIAction action = ranking.begin()->first;
|
|
int chance = 1;
|
|
if (!forceBestAbilityUse)
|
|
chance = 1 + randomGenerator.random() % 100;
|
|
int actionScore = action.getEfficiency();
|
|
if(action.ability->getCost() && action.ability->getCost()->hasX() && this->game->hand->cards.size())
|
|
actionScore = actionScore/int(this->game->hand->cards.size());//reduce chance for "x" abilities if cards are in hand.
|
|
if (actionScore >= chance)
|
|
{
|
|
if (!clickstream.size())
|
|
{
|
|
if (abilityPayment.size())
|
|
{
|
|
DebugTrace(" Ai knows exactly what mana to use for this ability.");
|
|
}
|
|
DebugTrace("AIPlayer:Using Activated ability");
|
|
if (payTheManaCost(action.ability->getCost(), action.click,abilityPayment))
|
|
clickstream.push(NEW AIAction(action));
|
|
}
|
|
}
|
|
}
|
|
|
|
abilityPayment.clear();
|
|
return 1;
|
|
}
|
|
|
|
int AIPlayerBaka::interruptIfICan()
|
|
{
|
|
if (observer->mLayers->stackLayer()->askIfWishesToInterrupt == this)
|
|
{
|
|
if (!clickstream.empty())
|
|
observer->mLayers->stackLayer()->cancelInterruptOffer();
|
|
else
|
|
return observer->mLayers->stackLayer()->setIsInterrupting(this);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int AIPlayerBaka::effectBadOrGood(MTGCardInstance * card, int mode, TargetChooser * tc)
|
|
{
|
|
if(hints && hints->HintSaysCardIsGood(observer,card))
|
|
{
|
|
return BAKA_EFFECT_GOOD;
|
|
}
|
|
if(hints && hints->HintSaysCardIsBad(observer,card))
|
|
{
|
|
return BAKA_EFFECT_BAD;
|
|
}
|
|
int id = card->getMTGId();
|
|
AbilityFactory af(observer);
|
|
int autoGuess = af.magicText(id, NULL, card, mode, tc);
|
|
if (autoGuess)
|
|
return autoGuess;
|
|
return BAKA_EFFECT_DONTKNOW;
|
|
}
|
|
|
|
int AIPlayerBaka::chooseTarget(TargetChooser * _tc, Player * forceTarget,MTGCardInstance * chosenCard,bool checkOnly)
|
|
{
|
|
if(observer->mExtraPayment)
|
|
{
|
|
observer->mExtraPayment->action->CheckUserInput(JGE_BTN_SEC);
|
|
observer->mExtraPayment = NULL;
|
|
}
|
|
//there should never be a case where a extra cost target selection is happening at the same time as this..
|
|
//extracost uses "chooseCard()" to determine its targets.
|
|
vector<Targetable *> potentialTargets;
|
|
TargetChooser * tc = _tc;
|
|
if (!(observer->currentlyActing() == this))
|
|
return 0;
|
|
if (!tc)
|
|
{
|
|
tc = observer->getCurrentTargetChooser();
|
|
}
|
|
if (!tc || !tc->source || tc->maxtargets < 1)
|
|
return 0;
|
|
assert(tc);
|
|
if (comboHint && comboHint->cardTargets.size())
|
|
{
|
|
tc = GetComboTc(observer,tc);
|
|
}
|
|
if(!checkOnly && tc->maxtargets > 1)
|
|
{
|
|
tc->initTargets();//just incase....
|
|
potentialTargets.clear();
|
|
}
|
|
//Make sure we own the decision to choose the targets
|
|
assert(tc->Owner == observer->currentlyActing());
|
|
if (tc && tc->Owner != observer->currentlyActing())
|
|
{
|
|
observer->currentActionPlayer = tc->Owner;
|
|
//this is a hack, but if we hit this condition we are locked in a infinate loop
|
|
//so lets give the tc to its owner
|
|
//todo:find the root cause of this.
|
|
DebugTrace("AIPLAYER: Error, was asked to chose targets but I don't own the source of the targetController\n");
|
|
return 0;
|
|
}
|
|
Player * target = forceTarget;
|
|
int playerTargetedZone = 1;
|
|
if (!target)
|
|
{
|
|
target = this;
|
|
int cardEffect = effectBadOrGood(tc->source, MODE_TARGET, tc);
|
|
if(tc->belongsToAbility.size())
|
|
{
|
|
AbilityFactory af(observer);
|
|
MTGAbility * withoutGuessing = af.parseMagicLine(tc->belongsToAbility,0,NULL,tc->source);
|
|
cardEffect = af.abilityEfficiency(withoutGuessing,this,MODE_TARGET,tc,NULL);
|
|
delete withoutGuessing;
|
|
}
|
|
if (cardEffect != BAKA_EFFECT_GOOD)
|
|
{
|
|
target = this->opponent();
|
|
}
|
|
if(dynamic_cast<ProliferateChooser*> (tc))
|
|
playerTargetedZone = 2;
|
|
}
|
|
while(playerTargetedZone)
|
|
{
|
|
if (!tc->alreadyHasTarget(target) && tc->canTarget(target) && potentialTargets.size() < 50)
|
|
{
|
|
for (int i = 0; i < 3; i++)
|
|
{ //Increase probability to target a player when this is possible
|
|
potentialTargets.push_back(target);
|
|
}
|
|
}
|
|
MTGPlayerCards * playerZones = target->game;
|
|
MTGGameZone * zones[] = { playerZones->hand, playerZones->library, playerZones->inPlay, playerZones->graveyard,playerZones->stack };
|
|
for (int j = 0; j < 5; j++)
|
|
{
|
|
MTGGameZone * zone = zones[j];
|
|
for (int k = 0; k < zone->nb_cards; k++)
|
|
{
|
|
MTGCardInstance * card = zone->cards[k];
|
|
if (!tc->alreadyHasTarget(card) && tc->canTarget(card) && potentialTargets.size() < 50)
|
|
{
|
|
int multiplier = 1;
|
|
if (getStats() && getStats()->isInTop(card, 10))
|
|
{
|
|
multiplier++;
|
|
if (getStats()->isInTop(card, 5))
|
|
{
|
|
multiplier++;
|
|
if (getStats()->isInTop(card, 3))
|
|
{
|
|
multiplier++;
|
|
}
|
|
}
|
|
}
|
|
for (int l = 0; l < multiplier; l++)
|
|
{
|
|
if(tc->maxtargets != 1 && tc->belongsToAbility.size())
|
|
{
|
|
AbilityFactory af(observer);
|
|
MTGAbility * withoutGuessing = af.parseMagicLine(tc->belongsToAbility,0,NULL,tc->source);
|
|
OrderedAIAction * effCheck = NEW OrderedAIAction(this, withoutGuessing,(MTGCardInstance*)tc->source,card);
|
|
if(effCheck->getEfficiency())
|
|
{
|
|
potentialTargets.push_back(card);
|
|
}
|
|
SAFE_DELETE(effCheck);
|
|
SAFE_DELETE(withoutGuessing);
|
|
}
|
|
else
|
|
{
|
|
potentialTargets.push_back(card);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(playerTargetedZone > 1)
|
|
target = target->opponent();
|
|
playerTargetedZone--;
|
|
}
|
|
if (potentialTargets.size())
|
|
{
|
|
if((!forceTarget && checkOnly)||(tc->maxtargets != 1))
|
|
{
|
|
sort(potentialTargets.begin(), potentialTargets.end());
|
|
potentialTargets.erase(std::unique(potentialTargets.begin(), potentialTargets.end()), potentialTargets.end());
|
|
//checking actual amount of unique targets.
|
|
//multitargeting can not function the same as single target,
|
|
//a second click on the same target causes it to detoggle target, which can lead to ai lockdowns.
|
|
if(!checkOnly)
|
|
return clickMultiTarget(tc, potentialTargets);
|
|
return int(potentialTargets.size());//return the actual amount of targets ai will atempt to select.
|
|
}
|
|
return clickSingleTarget(tc, potentialTargets, chosenCard);
|
|
//click single target contains nbtargets to keep it as it was previously designed
|
|
//shoving 100 targets into potential, then selecting one of them at random.
|
|
}
|
|
if(checkOnly)return 0;//it wasn't an error if we couldn't find a target while checkonly
|
|
//Couldn't find any valid target,
|
|
//usually that's because we played a card that has bad side effects (ex: when X comes into play, return target land you own to your hand)
|
|
//so we try again to choose a target in the other player's field...
|
|
int cancel = observer->cancelCurrentAction();
|
|
if (!cancel && !forceTarget)
|
|
return chooseTarget(tc, target->opponent(), NULL, checkOnly);
|
|
//ERROR!!!
|
|
DebugTrace("AIPLAYER: ERROR! AI needs to choose a target but can't decide!!!");
|
|
return 1;
|
|
}
|
|
|
|
//Returns -1 if error, a number between 0 and 100 otherwise
|
|
int AIPlayerBaka::getEfficiency(MTGAbility * ability)
|
|
{
|
|
if (!ability)
|
|
return -1;
|
|
|
|
OrderedAIAction * check = NULL;
|
|
|
|
if(MTGCardInstance * cTarget = dynamic_cast<MTGCardInstance *>(ability->target))
|
|
check = NEW OrderedAIAction(this, ability, ability->source, cTarget);
|
|
else if(Player * pTarget = dynamic_cast<Player *>(ability->target))
|
|
check = NEW OrderedAIAction(this, ability, pTarget, ability->source);
|
|
else
|
|
check = NEW OrderedAIAction(this, ability, ability->source);
|
|
|
|
if (!check)
|
|
return -1;
|
|
|
|
int result = getEfficiency(check);
|
|
SAFE_DELETE(check);
|
|
return result;
|
|
}
|
|
|
|
int AIPlayerBaka::selectMenuOption()
|
|
{
|
|
ActionLayer * object = observer->mLayers->actionLayer();
|
|
int doThis = -1;
|
|
if (object->menuObject)
|
|
{
|
|
int checkedLast = 0;
|
|
|
|
if(object->abilitiesMenu->isMultipleChoice && object->currentActionCard)
|
|
{
|
|
MenuAbility * currentMenu = NULL;
|
|
for(size_t m = object->mObjects.size()-1;m > 0;m--)
|
|
{
|
|
MenuAbility * ability = dynamic_cast<MenuAbility *>(object->mObjects[m]);
|
|
if(ability && ability->triggered)
|
|
{
|
|
currentMenu = (MenuAbility *)object->mObjects[m];
|
|
break;
|
|
}
|
|
}
|
|
if(currentMenu)
|
|
for(unsigned int mk = 0;mk < currentMenu->abilities.size();mk++)
|
|
{
|
|
int checked = getEfficiency(currentMenu->abilities[mk]);
|
|
if(checked > 60 && checked > checkedLast)
|
|
{
|
|
doThis = mk;
|
|
checkedLast = checked;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for(unsigned int k = 0;k < object->abilitiesMenu->mObjects.size();k++)
|
|
{
|
|
if(object->abilitiesMenu->mObjects[k]->GetId() <= 0)
|
|
continue;
|
|
|
|
MTGAbility * checkEff = (MTGAbility *)object->mObjects[object->abilitiesMenu->mObjects[k]->GetId()];
|
|
int checked = getEfficiency(checkEff);
|
|
if(checked > 60 && checked > checkedLast)
|
|
{
|
|
doThis = k;
|
|
checkedLast = checked;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return doThis;
|
|
}
|
|
|
|
MTGCardInstance * AIPlayerBaka::FindCardToPlay(ManaCost * pMana, const char * type)
|
|
{
|
|
int maxCost = -1;
|
|
MTGCardInstance * nextCardToPlay = NULL;
|
|
MTGCardInstance * card = NULL;
|
|
if(comboCards.size())
|
|
{
|
|
nextCardToPlay = comboCards.back();
|
|
gotPayments.clear();
|
|
if((!pMana->canAfford(nextCardToPlay->getManaCost()) || nextCardToPlay->getManaCost()->kicker))
|
|
gotPayments = canPayMana(nextCardToPlay,nextCardToPlay->getManaCost());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
comboCards.pop_back();
|
|
if(!comboHint->cardTargets.size() && !comboCards.size())
|
|
comboHint = NULL;//becuase it's no longer needed.
|
|
return nextCardToPlay;
|
|
}
|
|
CardDescriptor cd;
|
|
cd.init();
|
|
cd.setType(type);
|
|
card = NULL;
|
|
gotPayments = vector<MTGAbility*>();
|
|
while ((card = cd.nextmatch(game->hand, card)))
|
|
{
|
|
if (!CanHandleCost(card->getManaCost(),card))
|
|
continue;
|
|
|
|
if (card->hasType(Subtypes::TYPE_LAND))
|
|
{
|
|
if (game->playRestrictions->canPutIntoZone(card, game->inPlay) == PlayRestriction::CANT_PLAY)
|
|
continue;
|
|
}
|
|
else
|
|
{
|
|
if (game->playRestrictions->canPutIntoZone(card, game->stack) == PlayRestriction::CANT_PLAY)
|
|
continue;
|
|
}
|
|
|
|
if (card->hasType(Subtypes::TYPE_LEGENDARY) && game->inPlay->findByName(card->name))
|
|
continue;
|
|
|
|
if (card->hasType(Subtypes::TYPE_PLANESWALKER) && card->types.size() > 0 && game->inPlay->hasTypeSpecificInt(Subtypes::TYPE_PLANESWALKER,card->types[1]))
|
|
continue;
|
|
|
|
if(hints && hints->HintSaysItsForCombo(observer,card))
|
|
{
|
|
if(hints->canWeCombo(observer,card,this))
|
|
{
|
|
AbilityFactory af(observer);
|
|
int canPlay = af.parseCastRestrictions(card,card->controller(),card->getRestrictions());
|
|
if(!canPlay)
|
|
continue;
|
|
nextCardToPlay = card;
|
|
gotPayments.clear();
|
|
if((!pMana->canAfford(nextCardToPlay->getManaCost()) || nextCardToPlay->getManaCost()->kicker))
|
|
gotPayments = canPayMana(nextCardToPlay,nextCardToPlay->getManaCost());
|
|
return activateCombo();
|
|
}
|
|
else
|
|
{
|
|
nextCardToPlay = NULL;
|
|
continue;
|
|
}
|
|
}
|
|
int currentCost = card->getManaCost()->getConvertedCost();
|
|
int hasX = card->getManaCost()->hasX();
|
|
gotPayments.clear();
|
|
if((!pMana->canAfford(card->getManaCost()) || card->getManaCost()->kicker))
|
|
gotPayments = canPayMana(card,card->getManaCost());
|
|
//for preformence reason we only look for specific mana if the payment couldn't be made with pmana.
|
|
if ((currentCost > maxCost || hasX) && (gotPayments.size() || pMana->canAfford(card->getManaCost())))
|
|
{
|
|
TargetChooserFactory tcf(observer);
|
|
TargetChooser * tc = tcf.createTargetChooser(card);
|
|
int shouldPlayPercentage = 0;
|
|
if (tc)
|
|
{
|
|
int hasTarget = chooseTarget(tc,NULL,NULL,true);
|
|
if(
|
|
(tc->maxtargets > hasTarget && tc->maxtargets > 1 && !tc->targetMin && tc->maxtargets != TargetChooser::UNLITMITED_TARGETS) ||//target=<3>creature
|
|
(tc->maxtargets == TargetChooser::UNLITMITED_TARGETS && hasTarget < 1)//target=creatures
|
|
)
|
|
hasTarget = 0;
|
|
if (!hasTarget)//single target covered here.
|
|
{
|
|
SAFE_DELETE(tc);
|
|
continue;
|
|
}
|
|
shouldPlayPercentage = 90;
|
|
if(tc->targetMin && hasTarget < tc->maxtargets)
|
|
shouldPlayPercentage = 0;
|
|
if(tc->maxtargets > 1 && tc->maxtargets != TargetChooser::UNLITMITED_TARGETS && hasTarget <= tc->maxtargets)
|
|
{
|
|
int maxA = hasTarget-tc->maxtargets;
|
|
shouldPlayPercentage += (10*maxA);//reduce the chances of playing multitarget if we are not above max targets.
|
|
}
|
|
if(tc->maxtargets == TargetChooser::UNLITMITED_TARGETS)
|
|
{
|
|
shouldPlayPercentage = 40 + (10*hasTarget);
|
|
int totalCost = pMana->getConvertedCost()-currentCost;
|
|
int totalTargets = hasTarget+hasTarget;
|
|
if(hasX && totalCost <= totalTargets)// {x} spell with unlimited targeting tend to divide damage, we want atleast 1 damage per target before casting.
|
|
{
|
|
shouldPlayPercentage = 0;
|
|
}
|
|
}
|
|
SAFE_DELETE(tc);
|
|
}
|
|
else
|
|
{
|
|
int shouldPlay = effectBadOrGood(card);
|
|
if (shouldPlay == BAKA_EFFECT_GOOD)
|
|
{
|
|
shouldPlayPercentage = 90;
|
|
}
|
|
else if (BAKA_EFFECT_DONTKNOW == shouldPlay)
|
|
{
|
|
//previously shouldPlayPercentage = 80;, I found this a little to high
|
|
//for cards which AI had no idea how to use.
|
|
shouldPlayPercentage = 60;
|
|
}
|
|
else if (card->isLand())
|
|
{
|
|
shouldPlayPercentage = 90;
|
|
}
|
|
else
|
|
{
|
|
// shouldPlay == baka_effect_bad giving it a 1 for odd ball lottery chance.
|
|
shouldPlayPercentage = 1;
|
|
}
|
|
|
|
}
|
|
//Reduce the chances of playing a spell with X cost if available mana is low
|
|
if (hasX)
|
|
{
|
|
int xDiff = pMana->getConvertedCost() - currentCost;
|
|
if (xDiff < 0)
|
|
xDiff = 0;
|
|
shouldPlayPercentage = shouldPlayPercentage - static_cast<int> ((shouldPlayPercentage * 1.9f) / (1 + xDiff));
|
|
}
|
|
if(card->getManaCost() && card->getManaCost()->kicker && card->getManaCost()->kicker->isMulti)
|
|
{
|
|
shouldPlayPercentage = 10* size_t(gotPayments.size())/int(1+(card->getManaCost()->getConvertedCost()+card->getManaCost()->kicker->getConvertedCost()));
|
|
if(shouldPlayPercentage <= 10)
|
|
shouldPlayPercentage = shouldPlayPercentage/3;
|
|
}
|
|
DebugTrace("Should I play " << (card ? card->name : "Nothing" ) << "?" << endl
|
|
<<"shouldPlayPercentage = "<< shouldPlayPercentage);
|
|
if(card->getRestrictions().size())
|
|
{
|
|
AbilityFactory af(observer);
|
|
int canPlay = af.parseCastRestrictions(card,card->controller(),card->getRestrictions());
|
|
if(!canPlay)
|
|
continue;
|
|
}
|
|
int randomChance = randomGenerator.random();
|
|
int chance = randomChance % 100;
|
|
if (chance > shouldPlayPercentage)
|
|
continue;
|
|
if(shouldPlayPercentage <= 10)
|
|
{
|
|
DebugTrace("shouldPlayPercentage was less than 10 this was a lottery roll on RNG");
|
|
}
|
|
nextCardToPlay = card;
|
|
maxCost = currentCost;
|
|
if (hasX)
|
|
maxCost = pMana->getConvertedCost();
|
|
}
|
|
}
|
|
if(nextCardToPlay)
|
|
{
|
|
if(!pMana->canAfford(nextCardToPlay->getManaCost()) || nextCardToPlay->getManaCost()->kicker)
|
|
gotPayments = canPayMana(nextCardToPlay,nextCardToPlay->getManaCost());
|
|
DebugTrace(" AI wants to play card." << endl
|
|
<< "- Next card to play: " << (nextCardToPlay ? nextCardToPlay->name : "None" ) << endl );
|
|
|
|
if(hints && hints->HintSaysItsForCombo(observer,nextCardToPlay))
|
|
{
|
|
DebugTrace(" AI wants to play a card that belongs to a combo.");
|
|
nextCardToPlay = NULL;
|
|
}
|
|
|
|
}
|
|
return nextCardToPlay;
|
|
}
|
|
|
|
MTGCardInstance * AIPlayerBaka::activateCombo()
|
|
{
|
|
if(!comboHint)
|
|
return NULL;
|
|
TargetChooser * hintTc = NULL;
|
|
TargetChooserFactory tfc(observer);
|
|
ManaCost * totalCost = ManaCost::parseManaCost(comboHint->manaNeeded);
|
|
for(unsigned int k = 0;k < comboHint->casting.size(); k++)
|
|
{
|
|
hintTc = tfc.createTargetChooser(comboHint->casting[k],nextCardToPlay);
|
|
int combohand = game->hand->cards.size();
|
|
for(int j = 0; j < combohand;j++)
|
|
{
|
|
if(!hintTc)
|
|
break;
|
|
if(hintTc->canTarget(game->hand->cards[j]))
|
|
{
|
|
comboCards.push_back(game->hand->cards[j]);
|
|
SAFE_DELETE(hintTc);
|
|
}
|
|
}
|
|
SAFE_DELETE(hintTc);
|
|
}
|
|
if(payTheManaCost(totalCost,nextCardToPlay,gotPayments))
|
|
{
|
|
if(comboCards.size())
|
|
{
|
|
nextCardToPlay = comboCards.back();
|
|
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
DebugTrace("ai is doing a combo:" << nextCardToPlay->getName());
|
|
|
|
if (game->playRestrictions->canPutIntoZone(nextCardToPlay, game->stack) == PlayRestriction::CANT_PLAY)
|
|
return NULL;
|
|
comboCards.pop_back();
|
|
}
|
|
}
|
|
SAFE_DELETE(totalCost);
|
|
return nextCardToPlay;
|
|
}
|
|
|
|
void AIPlayerBaka::initTimer()
|
|
{
|
|
if (mFastTimerMode)
|
|
timer = 0.07f; //0 or 1 is as fast as possible and will generate bad side effects in the game engine (phases getting skipped...), use wisely
|
|
else
|
|
timer = 0.1f;
|
|
}
|
|
|
|
int AIPlayerBaka::computeActions()
|
|
{
|
|
/*Zeth fox:TODO:rewrite this entire function, It's a mess.
|
|
I made it far to complicated for what it does and is prone to error and inefficiency.
|
|
Ai run's certain part's when it doesn't need to and run's certain actions when it shouldn't,
|
|
and it is far to easy to cripple the ai even with what appears to be a minor change to this function;
|
|
reasoning:I split this from 2 to 3 else statements, leaving chooseblockers in the 3rd else,
|
|
the 2nd else is run about 90% of the time over the third, this was causing ai to miss the chance to chooseblockers()
|
|
when it could have blocked almost 90% of the time.*/
|
|
Player * p = this;
|
|
Player * currentP = observer->currentlyActing();
|
|
if (!(currentP == p))
|
|
return 0;
|
|
ActionLayer * object = observer->mLayers->actionLayer();
|
|
if (object->menuObject)
|
|
{
|
|
int doThis = selectMenuOption();
|
|
|
|
// FIXME, action logging is broken in the multiplechoice case.
|
|
if(doThis >= 0)
|
|
{
|
|
if(object->abilitiesMenu->isMultipleChoice)
|
|
observer->mLayers->actionLayer()->ButtonPressedOnMultipleChoice(doThis);
|
|
else
|
|
observer->mLayers->actionLayer()->doReactTo(doThis);
|
|
}
|
|
else if(doThis < 0 || object->checkCantCancel())
|
|
observer->mLayers->actionLayer()->doReactTo(object->abilitiesMenu->mObjects.size()-1);
|
|
return 1;
|
|
}
|
|
TargetChooser * currentTc = observer->getCurrentTargetChooser();
|
|
if(currentTc)
|
|
{
|
|
int targetResult = currentTc->Owner == this? chooseTarget():0;
|
|
if (targetResult)
|
|
return 1;
|
|
}
|
|
|
|
#ifndef AI_CHANGE_TESTING
|
|
static bool findingCard = false;
|
|
//this guard is put in place to prevent Ai from
|
|
//ever running computeActions() function WHILE its already doing so.
|
|
// Break if this happens in debug mode. If this happens, it's actually a bug
|
|
assert(!findingCard);
|
|
if (findingCard)
|
|
{//is already looking kick me out of this function!
|
|
return 0;
|
|
}
|
|
#endif //AI_CHANGE_TESTING
|
|
|
|
Interruptible * action = observer->mLayers->stackLayer()->getAt(-1);
|
|
Spell * spell = dynamic_cast<Spell *>(action);
|
|
Player * lastStackActionController = spell ? spell->source->controller() : NULL;
|
|
if (observer->isInterrupting == this
|
|
&& this == currentP
|
|
//and i am the currentlyActivePlayer
|
|
&& ((lastStackActionController && lastStackActionController != this) || (observer->mLayers->stackLayer()->count(0, NOT_RESOLVED) == 0)))
|
|
//am im not interupting my own spell, or the stack contains nothing.
|
|
{
|
|
bool ipotential = false;
|
|
if(p->game->hand->hasType("instant") || p->game->hand->hasAbility(Constants::FLASH))
|
|
{
|
|
#ifndef AI_CHANGE_TESTING
|
|
findingCard = true;
|
|
#endif //AI_CHANGE_TESTING
|
|
ManaCost * icurrentMana = getPotentialMana();
|
|
icurrentMana->add(this->getManaPool());
|
|
if (icurrentMana->getConvertedCost())
|
|
{
|
|
//if theres mana i can use there then potential is true.
|
|
ipotential = true;
|
|
}
|
|
if (!nextCardToPlay)
|
|
{
|
|
nextCardToPlay = FindCardToPlay(icurrentMana, "instant");
|
|
if (game->playRestrictions->canPutIntoZone(nextCardToPlay, game->stack) == PlayRestriction::CANT_PLAY)
|
|
nextCardToPlay = NULL;
|
|
}
|
|
SAFE_DELETE (icurrentMana);
|
|
}
|
|
if (!nextCardToPlay)
|
|
{
|
|
selectAbility();
|
|
}
|
|
if (nextCardToPlay)
|
|
{
|
|
if (ipotential)
|
|
{
|
|
if(payTheManaCost(nextCardToPlay->getManaCost(),nextCardToPlay,gotPayments))
|
|
{
|
|
AIAction * a = NEW AIAction(this, nextCardToPlay);
|
|
clickstream.push(a);
|
|
gotPayments.clear();
|
|
}
|
|
}
|
|
#ifndef AI_CHANGE_TESTING
|
|
findingCard = false;
|
|
#endif //AI_CHANGE_TESTING
|
|
nextCardToPlay = NULL;
|
|
return 1;
|
|
}
|
|
nextCardToPlay = NULL;
|
|
#ifndef AI_CHANGE_TESTING
|
|
findingCard = false;
|
|
#endif //AI_CHANGE_TESTING
|
|
return 1;
|
|
}
|
|
else if(observer->mLayers->stackLayer()->count(0, NOT_RESOLVED) == 0)
|
|
{ //standard actions
|
|
switch (observer->getCurrentGamePhase())
|
|
{
|
|
case MTG_PHASE_UPKEEP:
|
|
selectAbility();
|
|
break;
|
|
case MTG_PHASE_FIRSTMAIN:
|
|
case MTG_PHASE_SECONDMAIN:
|
|
{
|
|
ManaCost * currentMana = getPotentialMana();
|
|
currentMana->add(this->getManaPool());
|
|
|
|
nextCardToPlay = FindCardToPlay(currentMana, "land");
|
|
if (nextCardToPlay && nextCardToPlay->isLand() && game->playRestrictions->canPutIntoZone(nextCardToPlay, game->battlefield) == PlayRestriction::CANT_PLAY)
|
|
nextCardToPlay = NULL;//look for a land, did we find one we can play..if not set to null now.
|
|
if(hints && hints->mCastOrder().size())
|
|
{
|
|
vector<string>findType = hints->mCastOrder();
|
|
for(unsigned int j = 0;j < findType.size();j++)
|
|
{
|
|
if(nextCardToPlay)
|
|
continue;//if there is a card to play on first run of this, it is most likly a land.
|
|
if(clickstream.size())
|
|
{
|
|
SAFE_DELETE(currentMana);
|
|
return 0;
|
|
}
|
|
nextCardToPlay = FindCardToPlay(currentMana, findType[j].c_str());
|
|
if (game->playRestrictions->canPutIntoZone(nextCardToPlay, game->stack) == PlayRestriction::CANT_PLAY)
|
|
nextCardToPlay = NULL;
|
|
if (nextCardToPlay && nextCardToPlay->isLand() && game->playRestrictions->canPutIntoZone(nextCardToPlay, game->battlefield) == PlayRestriction::CANT_PLAY)
|
|
nextCardToPlay = NULL;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//look for the most expensive creature we can afford. If not found, try enchantment, then artifact, etc...
|
|
const char* types[] = {"planeswalker","creature", "enchantment", "artifact", "sorcery", "instant"};
|
|
int count = 0;
|
|
while (!nextCardToPlay && count < 6)
|
|
{
|
|
if(clickstream.size()) //don't find cards while we have clicking to do.
|
|
{
|
|
SAFE_DELETE(currentMana);
|
|
return 0;
|
|
}
|
|
nextCardToPlay = FindCardToPlay(currentMana, types[count]);
|
|
if (game->playRestrictions->canPutIntoZone(nextCardToPlay, game->stack) == PlayRestriction::CANT_PLAY)
|
|
nextCardToPlay = NULL;
|
|
if (nextCardToPlay && nextCardToPlay->isLand() && game->playRestrictions->canPutIntoZone(nextCardToPlay, game->battlefield) == PlayRestriction::CANT_PLAY)
|
|
nextCardToPlay = NULL;
|
|
count++;
|
|
}
|
|
}
|
|
|
|
SAFE_DELETE(currentMana);
|
|
if (nextCardToPlay)
|
|
{
|
|
if(nextCardToPlay->has(Constants::SUNBURST))
|
|
{
|
|
//had to force this on Ai other wise it would pay nothing but 1 color for a sunburst card.
|
|
//this does not teach it to use manaproducer more effectively, it simply allow it to
|
|
//use the manaproducers it does understand better on sunburst by force.
|
|
vector<MTGAbility*>checking = canPaySunBurst(nextCardToPlay->getManaCost());
|
|
if(payTheManaCost(nextCardToPlay->getManaCost(),NULL,checking))
|
|
{
|
|
AIAction * a = NEW AIAction(this, nextCardToPlay);
|
|
clickstream.push(a);
|
|
return 1;
|
|
}
|
|
nextCardToPlay = NULL;
|
|
gotPayments.clear();//if any.
|
|
return 1;
|
|
}
|
|
if(payTheManaCost(nextCardToPlay->getManaCost(),nextCardToPlay,gotPayments))
|
|
{
|
|
AIAction * a = NEW AIAction(this, nextCardToPlay);
|
|
clickstream.push(a);
|
|
gotPayments.clear();
|
|
}
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
if(observer->mExtraPayment)
|
|
{
|
|
//no extra payment should be waiting before selecting an ability.
|
|
observer->mExtraPayment->action->CheckUserInput(JGE_BTN_SEC);
|
|
observer->mExtraPayment = NULL;
|
|
}
|
|
//this is a fix for a rare bug that somehow ai trips over an extra payment without paying
|
|
//then locks in a loop of trying to choose something different to do and trying to pay the extra payment.
|
|
selectAbility();
|
|
}
|
|
break;
|
|
}
|
|
case MTG_PHASE_COMBATATTACKERS:
|
|
{
|
|
if(observer->currentPlayer == this)//only on my turns.
|
|
chooseAttackers();
|
|
break;
|
|
}
|
|
case MTG_PHASE_COMBATBLOCKERS:
|
|
{
|
|
if(observer->currentPlayer != this)//only on my opponents turns.
|
|
chooseBlockers();
|
|
break;
|
|
}
|
|
case MTG_PHASE_ENDOFTURN:
|
|
selectAbility();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
switch (observer->getCurrentGamePhase())
|
|
{
|
|
case MTG_PHASE_UPKEEP:
|
|
case MTG_PHASE_FIRSTMAIN:
|
|
case MTG_PHASE_COMBATATTACKERS:
|
|
case MTG_PHASE_COMBATBLOCKERS:
|
|
case MTG_PHASE_SECONDMAIN:
|
|
{
|
|
selectAbility();
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
return 1;
|
|
}
|
|
return 1;
|
|
};
|
|
|
|
|
|
//
|
|
// Combat //
|
|
//
|
|
|
|
int AIPlayerBaka::getCreaturesInfo(Player * player, int neededInfo, int untapMode, int canAttack)
|
|
{
|
|
int result = 0;
|
|
CardDescriptor cd;
|
|
cd.init();
|
|
cd.setType("Creature");
|
|
cd.unsecureSetTapped(untapMode);
|
|
MTGCardInstance * card = NULL;
|
|
while ((card = cd.nextmatch(player->game->inPlay, card)))
|
|
{
|
|
if (!canAttack || card->canAttack())
|
|
{
|
|
if (neededInfo == INFO_NBCREATURES)
|
|
{
|
|
result++;
|
|
}
|
|
else
|
|
{
|
|
result += card->power;
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
int AIPlayerBaka::chooseAttackers()
|
|
{
|
|
//Attack with all creatures
|
|
//How much damage can the other player do during his next Attack ?
|
|
int opponentForce = getCreaturesInfo(opponent(), INFO_CREATURESPOWER);
|
|
int opponentCreatures = getCreaturesInfo(opponent(), INFO_NBCREATURES);
|
|
int myForce = getCreaturesInfo(this, INFO_CREATURESPOWER, -1, 1);
|
|
int myCreatures = getCreaturesInfo(this, INFO_NBCREATURES, -1, 1);
|
|
bool attack = ((myCreatures > opponentCreatures) || (myForce > opponentForce) || (myForce > 2 * opponent()->life));
|
|
if (agressivity > 80 && !attack && life > opponentForce)
|
|
{
|
|
opponentCreatures = getCreaturesInfo(opponent(), INFO_NBCREATURES, -1);
|
|
opponentForce = getCreaturesInfo(opponent(), INFO_CREATURESPOWER, -1);
|
|
attack = (myCreatures >= opponentCreatures && myForce > opponentForce)
|
|
|| (myForce > opponentForce) || (myForce > opponent()->life);
|
|
}
|
|
printf("Choose attackers : %i %i %i %i -> %i\n", opponentForce, opponentCreatures, myForce, myCreatures, attack);
|
|
|
|
CardDescriptor cd;
|
|
cd.init();
|
|
cd.setType("creature");
|
|
MTGCardInstance * card = NULL;
|
|
while ((card = cd.nextmatch(game->inPlay, card)))
|
|
{
|
|
if(hints && hints->HintSaysAlwaysAttack(observer,card))
|
|
observer->cardClick(card, MTGAbility::MTG_ATTACK_RULE);
|
|
}
|
|
|
|
if (attack)
|
|
{
|
|
CardDescriptor cd;
|
|
cd.init();
|
|
cd.setType("creature");
|
|
MTGCardInstance * card = NULL;
|
|
while ((card = cd.nextmatch(game->inPlay, card)))
|
|
{
|
|
if(hints && hints->HintSaysDontAttack(observer,card))
|
|
continue;
|
|
if(!card->isAttacker())
|
|
observer->cardClick(card, MTGAbility::MTG_ATTACK_RULE);
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
/* Can I first strike my oponent and get away with murder ? */
|
|
int AIPlayerBaka::canFirstStrikeKill(MTGCardInstance * card, MTGCardInstance *ennemy)
|
|
{
|
|
if(hints && hints->HintSaysAlwaysBlock(observer,ennemy))
|
|
return 1;
|
|
if (ennemy->has(Constants::FIRSTSTRIKE) || ennemy->has(Constants::DOUBLESTRIKE))
|
|
return 0;
|
|
if (!(card->has(Constants::FIRSTSTRIKE) || card->has(Constants::DOUBLESTRIKE)))
|
|
return 0;
|
|
if (!(card->power >= ennemy->toughness))
|
|
return 0;
|
|
if (!(card->power >= ennemy->toughness + 1) && ennemy->has(Constants::FLANKING))
|
|
return 0;
|
|
return 1;
|
|
}
|
|
|
|
int AIPlayerBaka::chooseBlockers()
|
|
{
|
|
//Should not block during my own turn...
|
|
if (observer->currentPlayer == this)
|
|
return 0;
|
|
map<MTGCardInstance *, int> opponentsToughness;
|
|
int opponentForce = getCreaturesInfo(opponent(), INFO_CREATURESPOWER);
|
|
|
|
//Initialize the list of opponent's attacking cards toughness
|
|
CardDescriptor cdAttackers;
|
|
cdAttackers.init();
|
|
cdAttackers.setType("Creature");
|
|
MTGCardInstance * card = NULL;
|
|
while ((card = cdAttackers.nextmatch(opponent()->game->inPlay, card)))
|
|
{
|
|
if (card->isAttacker())
|
|
opponentsToughness[card] = card->toughness;
|
|
}
|
|
|
|
//A Descriptor to find untapped creatures in our game
|
|
CardDescriptor cd;
|
|
cd.init();
|
|
cd.setType("Creature");
|
|
cd.unsecureSetTapped(-1);
|
|
card = NULL;
|
|
|
|
// We first try to block the major threats, those that are marked in the Top 3 of our stats
|
|
while ((card = cd.nextmatch(game->inPlay, card)))
|
|
{
|
|
if(hints && hints->HintSaysDontBlock(observer,card))
|
|
continue;
|
|
observer->cardClick(card, MTGAbility::MTG_BLOCK_RULE);
|
|
int set = 0;
|
|
while (!set)
|
|
{
|
|
if (!card->defenser)
|
|
{
|
|
set = 1;
|
|
}
|
|
else
|
|
{
|
|
MTGCardInstance * attacker = card->defenser;
|
|
map<MTGCardInstance *, int>::iterator it = opponentsToughness.find(attacker);
|
|
if (it == opponentsToughness.end())
|
|
{
|
|
opponentsToughness[attacker] = attacker->toughness;
|
|
it = opponentsToughness.find(attacker);
|
|
}
|
|
if (opponentsToughness[attacker] > 0 && getStats() && getStats()->isInTop(attacker, 3, false))
|
|
{
|
|
opponentsToughness[attacker] -= card->power;
|
|
set = 1;
|
|
}
|
|
else
|
|
{
|
|
observer->cardClick(card, MTGAbility::MTG_BLOCK_RULE);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//If blocking one of the major threats is not enough to kill it,
|
|
// We change strategy, first we unassign its blockers that where assigned above
|
|
card = NULL;
|
|
while ((card = cd.nextmatch(game->inPlay, card)))
|
|
{
|
|
if(hints && hints->HintSaysDontBlock(observer,card))
|
|
continue;
|
|
if (card->defenser && opponentsToughness[card->defenser] > 0)
|
|
{
|
|
while (card->defenser)
|
|
{
|
|
observer->cardClick(card, MTGAbility::MTG_BLOCK_RULE);
|
|
}
|
|
}
|
|
}
|
|
|
|
//Assign the "free" potential blockers to attacking creatures that are not blocked enough
|
|
card = NULL;
|
|
while ((card = cd.nextmatch(game->inPlay, card)))
|
|
{
|
|
if(hints && hints->HintSaysDontBlock(observer,card))
|
|
continue;
|
|
if (!card->defenser)
|
|
{
|
|
observer->cardClick(card, MTGAbility::MTG_BLOCK_RULE);
|
|
int set = 0;
|
|
while (!set)
|
|
{
|
|
if (!card->defenser)
|
|
{
|
|
set = 1;
|
|
}
|
|
else
|
|
{
|
|
MTGCardInstance * attacker = card->defenser;
|
|
if (opponentsToughness[attacker] <= 0 || (card->toughness <= attacker->power && opponentForce * 2 < life
|
|
&& !canFirstStrikeKill(card, attacker)) || attacker->nbOpponents() > 1)
|
|
{
|
|
observer->cardClick(card, MTGAbility::MTG_BLOCK_RULE);
|
|
}
|
|
else
|
|
{
|
|
set = 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
selectAbility();
|
|
return 1;
|
|
}
|
|
|
|
int AIPlayerBaka::orderBlockers()
|
|
{
|
|
if (ORDER == observer->combatStep && observer->currentPlayer == this)
|
|
{
|
|
DebugTrace("AIPLAYER: order blockers");
|
|
observer->userRequestNextGamePhase(); //TODO clever rank of blockers
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int AIPlayerBaka::affectCombatDamages(CombatStep step)
|
|
{
|
|
GuiCombat * gc = observer->mLayers->combatLayer();
|
|
for (vector<AttackerDamaged*>::iterator attacker = gc->attackers.begin(); attacker != gc->attackers.end(); ++attacker)
|
|
gc->autoaffectDamage(*attacker, step);
|
|
return 1;
|
|
}
|
|
|
|
//TODO: Deprecate combatDamages
|
|
int AIPlayerBaka::combatDamages()
|
|
{
|
|
int currentGamePhase = observer->getCurrentGamePhase();
|
|
|
|
if (currentGamePhase == MTG_PHASE_COMBATBLOCKERS)
|
|
return orderBlockers();
|
|
|
|
if (currentGamePhase != MTG_PHASE_COMBATDAMAGE)
|
|
return 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// General
|
|
//
|
|
|
|
AIStats * AIPlayerBaka::getStats()
|
|
{
|
|
if (!stats)
|
|
{
|
|
char statFile[512];
|
|
sprintf(statFile, "ai/baka/stats/%s.stats", opponent()->deckFileSmall.c_str());
|
|
stats = NEW AIStats(this, statFile);
|
|
}
|
|
return stats;
|
|
}
|
|
|
|
|
|
void AIPlayerBaka::Render()
|
|
{
|
|
#ifdef RENDER_AI_STATS
|
|
if (getStats()) getStats()->Render();
|
|
#endif
|
|
}
|
|
|
|
int AIPlayerBaka::receiveEvent(WEvent * event)
|
|
{
|
|
if (getStats())
|
|
return getStats()->receiveEvent(event);
|
|
return 0;
|
|
}
|
|
|
|
|
|
AIPlayerBaka::AIPlayerBaka(GameObserver *observer, string file, string fileSmall, string avatarFile, MTGDeck * deck) :
|
|
AIPlayer(observer, file, fileSmall, deck)
|
|
{
|
|
|
|
nextCardToPlay = NULL;
|
|
stats = NULL;
|
|
|
|
//Initialize "AIHints" system
|
|
hints = NULL;
|
|
comboHint = NULL;
|
|
if (mDeck && mDeck->meta_AIHints.size())
|
|
{
|
|
hints = NEW AIHints(this);
|
|
for (size_t i = 0; i < mDeck->meta_AIHints.size(); ++i)
|
|
hints->add(mDeck->meta_AIHints[i]);
|
|
}
|
|
|
|
|
|
if(avatarFile != "")
|
|
{
|
|
if(!loadAvatar(avatarFile, "bakaAvatar"))
|
|
{
|
|
avatarFile = "baka.jpg";
|
|
loadAvatar(avatarFile, "bakaAvatar");
|
|
}
|
|
mAvatarName = avatarFile;
|
|
}
|
|
else //load a random avatar.
|
|
{
|
|
avatarFile = "avatar";
|
|
char buffer[3];
|
|
sprintf(buffer, "%i", int(observer->getRandomGenerator()->random()%100));
|
|
avatarFile.append(buffer);
|
|
avatarFile.append(".jpg");
|
|
if(!loadAvatar(avatarFile, "bakaAvatar"))
|
|
{
|
|
avatarFile = "baka.jpg";
|
|
loadAvatar(avatarFile, "bakaAvatar");
|
|
}
|
|
mAvatarName = avatarFile;
|
|
}
|
|
|
|
if (fileSmall == "ai_baka_eviltwin")
|
|
mAvatar->SetHFlip(true);
|
|
|
|
initTimer();
|
|
}
|
|
|
|
int AIPlayerBaka::Act(float dt)
|
|
{
|
|
if (!(observer->currentlyActing() == this))
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int currentGamePhase = observer->getCurrentGamePhase();
|
|
|
|
oldGamePhase = currentGamePhase;
|
|
|
|
if (mFastTimerMode)
|
|
timer -= dt*3;
|
|
else
|
|
timer -= dt;
|
|
if (timer > 0)
|
|
{
|
|
return 0;
|
|
}
|
|
initTimer();
|
|
|
|
if (combatDamages())
|
|
{
|
|
return 0;
|
|
}
|
|
interruptIfICan();
|
|
|
|
//computeActions only when i have priority
|
|
if (!(observer->currentlyActing() == this))
|
|
{
|
|
DebugTrace("Cannot interrupt");
|
|
return 0;
|
|
}
|
|
if (clickstream.empty())
|
|
computeActions();
|
|
if (clickstream.empty())
|
|
{
|
|
if (observer->isInterrupting == this)
|
|
{
|
|
if(observer->mExtraPayment && observer->mExtraPayment->source->controller() == this)
|
|
{
|
|
extraManaCost * check = NULL;
|
|
check = dynamic_cast<extraManaCost*>(observer->mExtraPayment->costs[0]);
|
|
if(check)
|
|
{
|
|
vector<MTGAbility*> CostToPay = canPayMana(observer->mExtraPayment->source,check->costToPay);
|
|
if(CostToPay.size())
|
|
{
|
|
payTheManaCost(check->costToPay,check->source,CostToPay);
|
|
}
|
|
else
|
|
{
|
|
observer->mExtraPayment->action->CheckUserInput(JGE_BTN_SEC);
|
|
observer->mExtraPayment = NULL;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
observer->mLayers->stackLayer()->cancelInterruptOffer(); //endOfInterruption();
|
|
}
|
|
else
|
|
{
|
|
if (observer->currentActionPlayer == this)//if im not the action player why would i requestnextphase?
|
|
observer->userRequestNextGamePhase();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
while(clickstream.size())
|
|
{
|
|
AIAction * action = clickstream.front();
|
|
action->Act();
|
|
SAFE_DELETE(action);
|
|
clickstream.pop();
|
|
}
|
|
}
|
|
return 1;
|
|
};
|
|
|
|
AIPlayerBaka::~AIPlayerBaka() {
|
|
if (stats)
|
|
{
|
|
stats->save();
|
|
SAFE_DELETE(stats);
|
|
}
|
|
SAFE_DELETE(hints);
|
|
}
|