mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
81 lines
1.8 KiB
C++
81 lines
1.8 KiB
C++
#define VCMI_DLL
|
|
#include "BattleAction.h"
|
|
#include "BattleState.h"
|
|
|
|
/*
|
|
* BattleAction.h, 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
|
|
*
|
|
*/
|
|
|
|
BattleAction::BattleAction()
|
|
{
|
|
side = -1;
|
|
stackNumber = -1;
|
|
actionType = INVALID;
|
|
destinationTile = -1;
|
|
additionalInfo = -1;
|
|
}
|
|
|
|
BattleAction BattleAction::makeDefend(const CStack *stack)
|
|
{
|
|
BattleAction ba;
|
|
ba.side = !stack->attackerOwned;
|
|
ba.actionType = DEFEND;
|
|
ba.stackNumber = stack->ID;
|
|
return ba;
|
|
}
|
|
|
|
|
|
BattleAction BattleAction::makeMeleeAttack(const CStack *stack, const CStack * attacked, THex attackFrom /*= THex::INVALID*/)
|
|
{
|
|
BattleAction ba;
|
|
ba.side = !stack->attackerOwned;
|
|
ba.actionType = WALK_AND_ATTACK;
|
|
ba.stackNumber = stack->ID;
|
|
ba.destinationTile = attackFrom;
|
|
ba.additionalInfo = attacked->position;
|
|
return ba;
|
|
|
|
}
|
|
BattleAction BattleAction::makeWait(const CStack *stack)
|
|
{
|
|
BattleAction ba;
|
|
ba.side = !stack->attackerOwned;
|
|
ba.actionType = WAIT;
|
|
ba.stackNumber = stack->ID;
|
|
return ba;
|
|
}
|
|
|
|
BattleAction BattleAction::makeShotAttack(const CStack *shooter, const CStack *target)
|
|
{
|
|
BattleAction ba;
|
|
ba.side = !shooter->attackerOwned;
|
|
ba.actionType = SHOOT;
|
|
ba.stackNumber = shooter->ID;
|
|
ba.destinationTile = target->position;
|
|
return ba;
|
|
}
|
|
|
|
BattleAction BattleAction::makeMove(const CStack *stack, THex dest)
|
|
{
|
|
BattleAction ba;
|
|
ba.side = !stack->attackerOwned;
|
|
ba.actionType = WALK;
|
|
ba.stackNumber = stack->ID;
|
|
ba.destinationTile = dest;
|
|
return ba;
|
|
}
|
|
|
|
BattleAction BattleAction::makeEndOFTacticPhase(ui8 side)
|
|
{
|
|
BattleAction ba;
|
|
ba.side = side;
|
|
ba.actionType = END_TACTIC_PHASE;
|
|
return ba;
|
|
}
|