2011-12-13 21:35:28 +00:00
/*
2022-12-11 23:16:23 +02:00
* BattleInterface . h , part of VCMI engine
2011-12-13 21:35:28 +00:00
*
* 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
*
*/
2017-07-13 11:26:03 +03:00
# pragma once
2022-12-09 13:10:35 +02:00
# include "BattleConstants.h"
2022-11-24 16:30:04 +02:00
# include "../gui/CIntObject.h"
2017-07-13 11:26:03 +03:00
# include "../../lib/spells/CSpellHandler.h" //CSpell::TAnimation
2022-12-10 00:25:11 +02:00
# include "../../lib/CondSh.h"
2011-12-13 21:35:28 +00:00
2022-07-26 16:07:42 +03:00
VCMI_LIB_NAMESPACE_BEGIN
2011-12-13 21:35:28 +00:00
class CCreatureSet ;
class CGHeroInstance ;
class CStack ;
struct BattleResult ;
struct BattleSpellCast ;
struct CObstacleInstance ;
2012-09-15 19:16:16 +00:00
struct SetStackEffect ;
2017-07-20 07:08:49 +03:00
class BattleAction ;
2011-12-13 21:35:28 +00:00
class CGTownInstance ;
struct CatapultAttack ;
struct BattleTriggerEffect ;
2022-07-26 16:07:42 +03:00
struct BattleHex ;
struct InfoAboutHero ;
VCMI_LIB_NAMESPACE_END
2022-12-09 13:26:17 +02:00
class BattleHero ;
2022-12-11 22:09:57 +02:00
class Canvas ;
2022-12-09 13:26:17 +02:00
class BattleResultWindow ;
class StackQueue ;
2011-12-17 18:59:59 +00:00
class CPlayerInterface ;
2022-12-09 13:26:17 +02:00
class ClickableHex ;
2017-09-05 17:21:44 +03:00
class CAnimation ;
2022-11-24 16:30:04 +02:00
struct BattleEffect ;
2017-07-20 07:08:49 +03:00
class IImage ;
2022-12-09 13:26:17 +02:00
class StackQueue ;
class BattleProjectileController ;
class BattleSiegeController ;
class BattleObstacleController ;
class BattleFieldController ;
class BattleRenderer ;
2022-12-21 17:06:47 +02:00
class BattleWindow ;
2022-12-09 13:26:17 +02:00
class BattleStacksController ;
class BattleActionsController ;
class BattleEffectsController ;
2022-12-21 17:02:53 +02:00
class BattleConsole ;
2022-11-17 13:21:03 +02:00
2011-12-22 13:05:19 +00:00
/// Small struct which contains information about the id of the attacked stack, the damage dealt,...
struct StackAttackedInfo
{
2022-12-09 13:10:35 +02:00
const CStack * defender ;
const CStack * attacker ;
int64_t damageDealt ;
uint32_t amountKilled ;
SpellID spellEffect ;
2013-08-09 17:37:41 +00:00
bool indirectAttack ; //if true, stack was attacked indirectly - spell or ranged attack
2011-12-22 13:05:19 +00:00
bool killed ; //if true, stack has been killed
bool rebirth ; //if true, play rebirth animation after all
2012-02-18 17:39:47 +00:00
bool cloneKilled ;
2022-12-17 17:35:15 +02:00
bool fireShield ;
2011-12-22 13:05:19 +00:00
} ;
2022-12-11 12:29:11 +02:00
struct StackAttackInfo
{
const CStack * attacker ;
const CStack * defender ;
std : : vector < const CStack * > secondaryDefender ;
SpellID spellEffect ;
BattleHex tile ;
bool indirectAttack ;
bool lucky ;
bool unlucky ;
bool deathBlow ;
bool lifeDrain ;
} ;
2022-12-21 17:02:53 +02:00
/// Main class for battles, responsible for relaying information from server to various battle entities
class BattleInterface
2011-12-13 21:35:28 +00:00
{
private :
2022-12-21 17:06:47 +02:00
std : : shared_ptr < BattleWindow > windowObject ;
2022-12-21 17:02:53 +02:00
std : : shared_ptr < BattleConsole > console ;
2018-07-25 01:36:48 +03:00
2022-11-20 19:11:34 +02:00
std : : shared_ptr < CPlayerInterface > tacticianInterface ; //used during tactics mode, points to the interface of player with higher tactics (can be either attacker or defender in hot-seat), valid onloy for human players
2022-12-21 17:02:53 +02:00
std : : shared_ptr < CPlayerInterface > attackerInt ; // attacker interface, not null if attacker is human in our vcmiclient
std : : shared_ptr < CPlayerInterface > defenderInt ; // defender interface, not null if attacker is human in our vcmiclient
2022-11-20 19:11:34 +02:00
std : : shared_ptr < CPlayerInterface > curInt ; //current player interface
2022-12-21 17:02:53 +02:00
//copy of initial armies (for result window)
const CCreatureSet * army1 ;
const CCreatureSet * army2 ;
2017-09-05 20:04:17 +03:00
2022-12-21 17:02:53 +02:00
const CGHeroInstance * attackingHeroInstance ;
const CGHeroInstance * defendingHeroInstance ;
2011-12-13 21:35:28 +00:00
bool tacticsMode ;
2019-03-23 12:12:25 +01:00
int battleIntroSoundChannel ; //required as variable for disabling it via ESC key
2012-04-04 08:03:52 +00:00
2022-12-10 00:25:11 +02:00
using AwaitingAnimationAction = std : : function < void ( ) > ;
struct AwaitingAnimationEvents {
AwaitingAnimationAction action ;
EAnimationEvents event ;
bool eventState ;
} ;
/// Conditional variables that are set depending on ongoing animations on the battlefield
std : : array < CondSh < bool > , static_cast < size_t > ( EAnimationEvents : : COUNT ) > animationEvents ;
/// List of events that are waiting to be triggered
std : : vector < AwaitingAnimationEvents > awaitingEvents ;
2022-11-20 19:11:34 +02:00
void trySetActivePlayer ( PlayerColor player ) ; // if in hotseat, will activate interface of chosen player
void activateStack ( ) ; //sets activeStack to stackToActivate etc. //FIXME: No, it's not clear at all
2013-06-22 21:47:51 +00:00
void requestAutofightingAIToTakeAction ( ) ;
2013-06-22 14:47:20 +00:00
2017-07-20 07:08:49 +03:00
void giveCommand ( EActionType action , BattleHex tile = BattleHex ( ) , si32 additional = - 1 ) ;
void sendCommand ( BattleAction * & command , const CStack * actor = nullptr ) ;
2016-10-28 23:37:20 +02:00
const CGHeroInstance * getActiveHero ( ) ; //returns hero that can currently cast a spell
2013-07-19 16:35:16 +00:00
2022-12-11 22:09:57 +02:00
void showInterface ( SDL_Surface * to ) ;
2013-07-19 16:35:16 +00:00
2022-12-12 23:31:18 +02:00
void setHeroAnimation ( ui8 side , EHeroAnimType phase ) ;
2022-12-11 12:29:11 +02:00
void executeSpellCast ( ) ; //called when a hero casts a spell
2022-12-21 17:02:53 +02:00
void appendBattleLog ( const std : : string & newEntry ) ;
2011-12-13 21:35:28 +00:00
public :
2022-12-09 13:26:17 +02:00
std : : unique_ptr < BattleProjectileController > projectilesController ;
std : : unique_ptr < BattleSiegeController > siegeController ;
std : : unique_ptr < BattleObstacleController > obstacleController ;
std : : unique_ptr < BattleFieldController > fieldController ;
std : : unique_ptr < BattleStacksController > stacksController ;
std : : unique_ptr < BattleActionsController > actionsController ;
std : : unique_ptr < BattleEffectsController > effectsController ;
2022-11-17 13:21:03 +02:00
2022-12-21 17:02:53 +02:00
std : : shared_ptr < BattleHero > attackingHero ;
std : : shared_ptr < BattleHero > defendingHero ;
2017-06-14 04:53:26 +03:00
static CondSh < BattleAction * > givenCommand ; //data != nullptr if we have i.e. moved current unit
2022-11-20 19:11:34 +02:00
bool myTurn ; //if true, interface is active (commands can be ordered)
int moveSoundHander ; // sound handler used when moving a unit
const BattleResult * bresult ; //result of a battle; if non-zero then display when all animations end
2011-12-13 21:35:28 +00:00
2022-12-21 17:02:53 +02:00
BattleInterface ( const CCreatureSet * army1 , const CCreatureSet * army2 , const CGHeroInstance * hero1 , const CGHeroInstance * hero2 , std : : shared_ptr < CPlayerInterface > att , std : : shared_ptr < CPlayerInterface > defen , std : : shared_ptr < CPlayerInterface > spectatorInt = nullptr ) ;
~ BattleInterface ( ) ;
2011-12-13 21:35:28 +00:00
void setPrintCellBorders ( bool set ) ; //if true, cell borders will be printed
void setPrintStackRange ( bool set ) ; //if true,range of active stack will be printed
void setPrintMouseShadow ( bool set ) ; //if true, hex under mouse will be shaded
2013-07-06 16:10:20 +00:00
void setAnimSpeed ( int set ) ; //speed of animation; range 1..100
int getAnimSpeed ( ) const ; //speed of animation; range 1..100
2016-10-28 23:37:20 +02:00
CPlayerInterface * getCurrentPlayerInterface ( ) const ;
2013-06-23 19:35:54 +00:00
2022-11-18 17:54:10 +02:00
void tacticNextStack ( const CStack * current ) ;
void tacticPhaseEnd ( ) ;
2022-12-10 00:25:11 +02:00
/// sets condition to targeted state and executes any awaiting actions
void setAnimationCondition ( EAnimationEvents event , bool state ) ;
/// returns current state of condition
bool getAnimationCondition ( EAnimationEvents event ) ;
/// locks execution until selected condition reached targeted state
void waitForAnimationCondition ( EAnimationEvents event , bool state ) ;
/// adds action that will be executed one selected condition reached targeted state
void executeOnAnimationCondition ( EAnimationEvents event , bool state , const AwaitingAnimationAction & action ) ;
2022-11-18 17:54:10 +02:00
2011-12-13 21:35:28 +00:00
//call-ins
void startAction ( const BattleAction * action ) ;
2022-11-20 19:11:34 +02:00
void stackReset ( const CStack * stack ) ;
void stackAdded ( const CStack * stack ) ; //new stack appeared on battlefield
2017-07-20 07:08:49 +03:00
void stackRemoved ( uint32_t stackID ) ; //stack disappeared from batlefiled
2016-10-28 23:37:20 +02:00
void stackActivated ( const CStack * stack ) ; //active stack has been changed
2022-12-18 18:26:43 +02:00
void stackMoved ( const CStack * stack , std : : vector < BattleHex > destHex , int distance , bool teleport ) ; //stack with id number moved to destHex
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 17:58:30 +03:00
void stacksAreAttacked ( std : : vector < StackAttackedInfo > attackedInfos ) ; //called when a certain amount of stacks has been attacked
2022-12-11 12:29:11 +02:00
void stackAttacking ( const StackAttackInfo & attackInfo ) ; //called when stack with id ID is attacking something on hex dest
2011-12-13 21:35:28 +00:00
void newRoundFirst ( int round ) ;
void newRound ( int number ) ; //caled when round is ended; number is the number of round
void stackIsCatapulting ( const CatapultAttack & ca ) ; //called when a stack is attacking walls
void battleFinished ( const BattleResult & br ) ; //called when battle is finished - battleresult window should be printed
void displayBattleFinished ( ) ; //displays battle result
2016-10-28 23:37:20 +02:00
void spellCast ( const BattleSpellCast * sc ) ; //called when a hero casts a spell
2011-12-13 21:35:28 +00:00
void battleStacksEffectsSet ( const SetStackEffect & sse ) ; //called when a specific effect is set to stacks
2015-01-30 09:39:36 +03:00
void castThisSpell ( SpellID spellID ) ; //called when player has chosen a spell from spellbook
2017-07-20 07:08:49 +03:00
void displayBattleLog ( const std : : vector < MetaString > & battleLog ) ;
2016-03-01 08:16:02 +03:00
2022-12-22 00:25:35 +02:00
void displaySpellAnimationQueue ( const CSpell * spell , const CSpell : : TAnimationQueue & q , BattleHex destinationTile , bool isHit ) ;
void displaySpellCast ( const CSpell * spell , BattleHex destinationTile ) ; //displays spell`s cast animation
void displaySpellEffect ( const CSpell * spell , BattleHex destinationTile ) ; //displays spell`s affected animation
void displaySpellHit ( const CSpell * spell , BattleHex destinationTile ) ; //displays spell`s affected animation
2016-03-01 08:16:02 +03:00
2011-12-13 21:35:28 +00:00
void endAction ( const BattleAction * action ) ;
2016-03-04 17:53:09 +03:00
2022-12-01 22:06:42 +02:00
void obstaclePlaced ( const std : : vector < std : : shared_ptr < const CObstacleInstance > > oi ) ;
2012-05-04 21:16:39 +00:00
2016-02-13 17:40:31 +03:00
void gateStateChanged ( const EGateState state ) ;
2016-02-10 07:10:32 +03:00
2016-10-28 23:37:20 +02:00
const CGHeroInstance * currentHero ( ) const ;
2012-08-26 09:07:48 +00:00
InfoAboutHero enemyHero ( ) const ;
2022-12-11 23:16:23 +02:00
// TODO: cleanup this list
2011-12-13 21:35:28 +00:00
friend class CPlayerInterface ;
friend class CInGameConsole ;
2022-12-09 13:26:17 +02:00
friend class StackQueue ;
friend class BattleResultWindow ;
friend class BattleHero ;
2011-12-13 21:35:28 +00:00
friend class CBattleStackAnimation ;
friend class CReverseAnimation ;
friend class CDefenceAnimation ;
friend class CMovementAnimation ;
friend class CMovementStartAnimation ;
friend class CAttackAnimation ;
friend class CMeleeAttackAnimation ;
friend class CShootingAnimation ;
2017-09-08 14:25:12 +03:00
friend class CCastAnimation ;
2022-12-09 13:26:17 +02:00
friend class ClickableHex ;
friend class BattleProjectileController ;
friend class BattleSiegeController ;
friend class BattleObstacleController ;
friend class BattleFieldController ;
2022-12-21 17:06:47 +02:00
friend class BattleWindow ;
2022-12-09 13:26:17 +02:00
friend class BattleStacksController ;
friend class BattleActionsController ;
friend class BattleEffectsController ;
2022-12-21 17:02:53 +02:00
friend class BattleRenderer ;
friend class CInGameConsole ;
2011-12-13 21:35:28 +00:00
} ;