1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/*
* Effects.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
#include "Effects.h"
#include "../ISpellMechanics.h"
#include "../../serializer/JsonSerializeFormat.h"
namespace spells
{
namespace effects
{
Effects::Effects() = default;
Effects::~Effects() = default;
void Effects::add(const std::string & name, std::shared_ptr<Effect> effect, const int level)
{
effect->name = name;
data.at(level)[name] = effect;
}
bool Effects::applicable(Problem & problem, const Mechanics * m) const
{
//stop on first problem
//require all not optional effects to be applicable in general
//f.e. FireWall damage effect also need to have smart target
bool requiredEffectNotBlocked = true;
bool oneEffectApplicable = false;
auto callback = [&](const Effect * e, bool & stop)
{
if(e->applicable(problem, m))
{
oneEffectApplicable = true;
}
else if(!e->optional)
{
requiredEffectNotBlocked = false;
stop = true;
}
};
forEachEffect(m->getEffectLevel(), callback);
return requiredEffectNotBlocked && oneEffectApplicable;
}
bool Effects::applicable(Problem & problem, const Mechanics * m, const Target & aimPoint, const Target & spellTarget) const
{
//stop on first problem
//require all direct and not optional effects to be applicable at this aimPoint
//f.e. FireWall do not need damage target here, only a place to put obstacle
bool requiredEffectNotBlocked = true;
bool oneEffectApplicable = false;
auto callback = [&](const Effect * e, bool & stop)
{
if(e->indirect)
return;
EffectTarget target = e->transformTarget(m, aimPoint, spellTarget);
if(e->applicable(problem, m, target))
{
oneEffectApplicable = true;
}
else if(!e->optional)
{
requiredEffectNotBlocked = false;
stop = true;
}
};
forEachEffect(m->getEffectLevel(), callback);
return requiredEffectNotBlocked && oneEffectApplicable;
}
void Effects::forEachEffect(const int level, const std::function<void(const Effect *, bool &)> & callback) const
{
bool stop = false;
for(auto one : data.at(level))
{
callback(one.second.get(), stop);
if(stop)
return;
}
}
Effects::EffectsToApply Effects::prepare(const Mechanics * m, const Target & aimPoint, const Target & spellTarget) const
{
EffectsToApply effectsToApply;
auto callback = [&](const Effect * e, bool & stop)
{
bool applyThis = false;
//todo: find a better way to handle such special cases
if(m->getSpellIndex() == SpellID::RESURRECTION && e->name == "cure")
applyThis = (m->caster->getCasterUnitId() >= 0);
else
applyThis = !e->indirect;
if(applyThis)
{
EffectTarget target = e->transformTarget(m, aimPoint, spellTarget);
effectsToApply.push_back(std::make_pair(e, target));
}
};
forEachEffect(m->getEffectLevel(), callback);
return effectsToApply;
}
void Effects::serializeJson(JsonSerializeFormat & handler, const int level)
{
assert(!handler.saving);
const JsonNode & effectMap = handler.getCurrent();
for(auto & p : effectMap.Struct())
{
const std::string & name = p.first;
auto guard = handler.enterStruct(name);
std::string type;
handler.serializeString("type", type);
auto effect = Effect::create(type);
if(effect)
{
effect->serializeJson(handler);
add(name, effect, level);
}
}
}
}
}
|