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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/*
* BattleAction.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 "BattleAction.h"
#include "Unit.h"
#include "CBattleInfoCallback.h"
VCMI_LIB_NAMESPACE_BEGIN
static const int32_t INVALID_UNIT_ID = -1000;
BattleAction::BattleAction():
side(-1),
stackNumber(-1),
actionType(EActionType::INVALID),
actionSubtype(-1)
{
}
BattleAction BattleAction::makeHeal(const battle::Unit * healer, const battle::Unit * healed)
{
BattleAction ba;
ba.side = healer->unitSide();
ba.actionType = EActionType::STACK_HEAL;
ba.stackNumber = healer->unitId();
ba.aimToUnit(healed);
return ba;
}
BattleAction BattleAction::makeDefend(const battle::Unit * stack)
{
BattleAction ba;
ba.side = stack->unitSide();
ba.actionType = EActionType::DEFEND;
ba.stackNumber = stack->unitId();
return ba;
}
BattleAction BattleAction::makeMeleeAttack(const battle::Unit * stack, BattleHex destination, BattleHex attackFrom, bool returnAfterAttack)
{
BattleAction ba;
ba.side = stack->unitSide(); //FIXME: will it fail if stack mind controlled?
ba.actionType = EActionType::WALK_AND_ATTACK;
ba.stackNumber = stack->unitId();
ba.aimToHex(attackFrom);
ba.aimToHex(destination);
if(returnAfterAttack && stack->hasBonusOfType(Bonus::RETURN_AFTER_STRIKE))
ba.aimToHex(stack->getPosition());
return ba;
}
BattleAction BattleAction::makeWait(const battle::Unit * stack)
{
BattleAction ba;
ba.side = stack->unitSide();
ba.actionType = EActionType::WAIT;
ba.stackNumber = stack->unitId();
return ba;
}
BattleAction BattleAction::makeShotAttack(const battle::Unit * shooter, const battle::Unit * target)
{
BattleAction ba;
ba.side = shooter->unitSide();
ba.actionType = EActionType::SHOOT;
ba.stackNumber = shooter->unitId();
ba.aimToUnit(target);
return ba;
}
BattleAction BattleAction::makeCreatureSpellcast(const battle::Unit * stack, const battle::Target & target, SpellID spellID)
{
BattleAction ba;
ba.actionType = EActionType::MONSTER_SPELL;
ba.actionSubtype = spellID;
ba.setTarget(target);
ba.side = stack->unitSide();
ba.stackNumber = stack->unitId();
return ba;
}
BattleAction BattleAction::makeMove(const battle::Unit * stack, BattleHex dest)
{
BattleAction ba;
ba.side = stack->unitSide();
ba.actionType = EActionType::WALK;
ba.stackNumber = stack->unitId();
ba.aimToHex(dest);
return ba;
}
BattleAction BattleAction::makeEndOFTacticPhase(ui8 side)
{
BattleAction ba;
ba.side = side;
ba.actionType = EActionType::END_TACTIC_PHASE;
return ba;
}
BattleAction BattleAction::makeSurrender(ui8 side)
{
BattleAction ba;
ba.side = side;
ba.actionType = EActionType::SURRENDER;
return ba;
}
BattleAction BattleAction::makeRetreat(ui8 side)
{
BattleAction ba;
ba.side = side;
ba.actionType = EActionType::RETREAT;
return ba;
}
std::string BattleAction::toString() const
{
std::stringstream actionTypeStream;
actionTypeStream << actionType;
std::stringstream targetStream;
for(const DestinationInfo & info : target)
{
if(info.unitValue == INVALID_UNIT_ID)
{
targetStream << info.hexValue;
}
else
{
targetStream << info.unitValue;
targetStream << "@";
targetStream << info.hexValue;
}
targetStream << ",";
}
boost::format fmt("{BattleAction: side '%d', stackNumber '%d', actionType '%s', actionSubtype '%d', target {%s}}");
fmt % static_cast<int>(side) % stackNumber % actionTypeStream.str() % actionSubtype % targetStream.str();
return fmt.str();
}
void BattleAction::aimToHex(const BattleHex & destination)
{
DestinationInfo info;
info.hexValue = destination;
info.unitValue = INVALID_UNIT_ID;
target.push_back(info);
}
void BattleAction::aimToUnit(const battle::Unit * destination)
{
DestinationInfo info;
info.hexValue = destination->getPosition();
info.unitValue = destination->unitId();
target.push_back(info);
}
battle::Target BattleAction::getTarget(const CBattleInfoCallback * cb) const
{
battle::Target ret;
for(auto & destination : target)
{
if(destination.unitValue == INVALID_UNIT_ID)
ret.emplace_back(destination.hexValue);
else
ret.emplace_back(cb->battleGetUnitByID(destination.unitValue));
}
return ret;
}
void BattleAction::setTarget(const battle::Target & target_)
{
target.clear();
for(auto & destination : target_)
{
if(destination.unitValue == nullptr)
aimToHex(destination.hexValue);
else
aimToUnit(destination.unitValue);
}
}
std::ostream & operator<<(std::ostream & os, const BattleAction & ba)
{
os << ba.toString();
return os;
}
VCMI_LIB_NAMESPACE_END
|