mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-27 22:49:25 +02:00
This commit is contained in:
@@ -169,6 +169,95 @@ private:
|
|||||||
const SpellCreatedObstacle * obs;
|
const SpellCreatedObstacle * obs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class BonusCasterProxy : public Caster
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
BonusCasterProxy(const CGHeroInstance * hero_, std::shared_ptr<const Bonus> bonus_)
|
||||||
|
: hero(hero_),
|
||||||
|
bonus(bonus_)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
~BonusCasterProxy() = default;
|
||||||
|
|
||||||
|
ui8 getSpellSchoolLevel(const Spell * spell, int * outSelectedSchool = nullptr) const override
|
||||||
|
{
|
||||||
|
return hero->getSpellSchoolLevel(spell, outSelectedSchool);
|
||||||
|
}
|
||||||
|
|
||||||
|
int getEffectLevel(const Spell * spell) const override
|
||||||
|
{
|
||||||
|
return hero->getEffectLevel(spell);
|
||||||
|
}
|
||||||
|
|
||||||
|
int64_t getSpellBonus(const Spell * spell, int64_t base, const battle::Unit * affectedStack) const override
|
||||||
|
{
|
||||||
|
return hero->getSpellBonus(spell, base, affectedStack);
|
||||||
|
}
|
||||||
|
|
||||||
|
int64_t getSpecificSpellBonus(const Spell * spell, int64_t base) const override
|
||||||
|
{
|
||||||
|
return hero->getSpecificSpellBonus(spell, base);
|
||||||
|
}
|
||||||
|
|
||||||
|
int getEffectPower(const Spell * spell) const override
|
||||||
|
{
|
||||||
|
return hero->getEffectPower(spell);
|
||||||
|
}
|
||||||
|
|
||||||
|
int getEnchantPower(const Spell * spell) const override
|
||||||
|
{
|
||||||
|
return hero->getEnchantPower(spell);
|
||||||
|
}
|
||||||
|
|
||||||
|
int64_t getEffectValue(const Spell * spell) const override
|
||||||
|
{
|
||||||
|
return hero->getEffectValue(spell);
|
||||||
|
}
|
||||||
|
|
||||||
|
const PlayerColor getOwner() const override
|
||||||
|
{
|
||||||
|
return hero->getOwner();
|
||||||
|
}
|
||||||
|
|
||||||
|
void getCasterName(MetaString & text) const override
|
||||||
|
{
|
||||||
|
if(!bonus->description.empty())
|
||||||
|
text.addReplacement(bonus->description);
|
||||||
|
else
|
||||||
|
hero->getCasterName(text);
|
||||||
|
}
|
||||||
|
|
||||||
|
void getCastDescription(const Spell * spell, MetaString & text) const override
|
||||||
|
{
|
||||||
|
text.addTxt(MetaString::GENERAL_TXT, 196);
|
||||||
|
getCasterName(text);
|
||||||
|
text.addReplacement(MetaString::SPELL_NAME, spell->getIndex());
|
||||||
|
}
|
||||||
|
|
||||||
|
void getCastDescription(const Spell * spell, const std::vector<const battle::Unit *> & attacked, MetaString & text) const override
|
||||||
|
{
|
||||||
|
const bool singleTarget = attacked.size() == 1;
|
||||||
|
const int textIndex = singleTarget ? 195 : 196;
|
||||||
|
|
||||||
|
text.addTxt(MetaString::GENERAL_TXT, textIndex);
|
||||||
|
getCasterName(text);
|
||||||
|
text.addReplacement(MetaString::SPELL_NAME, spell->getIndex());
|
||||||
|
if(singleTarget)
|
||||||
|
attacked.at(0)->addNameReplacement(text, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void spendMana(const PacketSender * server, const int spellCost) const override
|
||||||
|
{
|
||||||
|
logGlobal->error("Unexpected call to BonusCasterProxy::spendMana");
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
const CGHeroInstance * hero;
|
||||||
|
std::shared_ptr<const Bonus> bonus;
|
||||||
|
};
|
||||||
|
|
||||||
}//
|
}//
|
||||||
|
|
||||||
CondSh<bool> battleMadeAction(false);
|
CondSh<bool> battleMadeAction(false);
|
||||||
@@ -5982,9 +6071,11 @@ void CGameHandler::runBattle()
|
|||||||
|
|
||||||
for (auto b : *bl)
|
for (auto b : *bl)
|
||||||
{
|
{
|
||||||
|
spells::BonusCasterProxy caster(h, b);
|
||||||
|
|
||||||
const CSpell * spell = SpellID(b->subtype).toSpell();
|
const CSpell * spell = SpellID(b->subtype).toSpell();
|
||||||
|
|
||||||
spells::BattleCast parameters(gs->curB, h, spells::Mode::PASSIVE, spell);
|
spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
|
||||||
parameters.setSpellLevel(3);
|
parameters.setSpellLevel(3);
|
||||||
parameters.setEffectDuration(b->val);
|
parameters.setEffectDuration(b->val);
|
||||||
parameters.massive = true;
|
parameters.massive = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user