1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-16 10:19:47 +02:00
vcmi/client/battle/BattleEffectsController.h

75 lines
2.0 KiB
C
Raw Normal View History

2022-11-24 16:30:04 +02:00
/*
* BattleEffectsController.h, part of VCMI engine
2022-11-24 16:30:04 +02: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
*
*/
#pragma once
#include "../../lib/battle/BattleHex.h"
#include "../../lib/Point.h"
#include "BattleConstants.h"
2022-11-24 16:30:04 +02:00
VCMI_LIB_NAMESPACE_BEGIN
2022-11-24 16:30:04 +02:00
class BattleAction;
struct BattleTriggerEffect;
VCMI_LIB_NAMESPACE_END
struct ColorMuxerEffect;
2022-11-24 16:30:04 +02:00
class CAnimation;
class Canvas;
class BattleInterface;
class BattleRenderer;
class EffectAnimation;
2022-11-24 16:30:04 +02:00
/// Struct for battle effect animation e.g. morale, prayer, armageddon, bless,...
struct BattleEffect
{
enum class AnimType : ui8
{
DEFAULT = 0, //If we have such animation
REVERSE = 1 //Reverse DEFAULT will be used
};
AnimType type;
Point pos; //position on the screen
2022-11-24 16:30:04 +02:00
float currentFrame;
std::shared_ptr<CAnimation> animation;
int effectID; //uniqueID equal ot ID of appropriate CSpellEffectAnim
BattleHex tile; //Indicates if effect which hex the effect is drawn on
2022-11-24 16:30:04 +02:00
};
/// Controls rendering of effects in battle, e.g. from spells, abilities and various other actions like morale
class BattleEffectsController
2022-11-24 16:30:04 +02:00
{
2022-12-13 13:58:16 +02:00
BattleInterface & owner;
2022-11-24 16:30:04 +02:00
/// list of current effects that are being displayed on screen (spells & creature abilities)
std::vector<BattleEffect> battleEffects;
std::map<std::string, ColorMuxerEffect> colorMuxerEffects;
void loadColorMuxers();
2022-11-24 16:30:04 +02:00
public:
const ColorMuxerEffect &getMuxerEffect(const std::string & name);
2022-12-13 13:58:16 +02:00
BattleEffectsController(BattleInterface & owner);
2022-11-24 16:30:04 +02:00
void startAction(const BattleAction* action);
//displays custom effect on the battlefield
void displayEffect(EBattleEffect effect, const BattleHex & destTile);
2022-12-25 20:11:22 +02:00
void displayEffect(EBattleEffect effect, std::string soundFile, const BattleHex & destTile);
2022-11-24 16:30:04 +02:00
void battleTriggerEffect(const BattleTriggerEffect & bte);
void collectRenderableObjects(BattleRenderer & renderer);
2022-11-24 16:30:04 +02:00
friend class EffectAnimation;
2022-11-24 16:30:04 +02:00
};