1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-30 08:57:00 +02:00
vcmi/client/battle/BattleAnimationClasses.h

341 lines
9.9 KiB
C
Raw Normal View History

/*
* BattleAnimations.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
*
*/
#pragma once
#include "../../lib/battle/BattleHex.h"
#include "BattleConstants.h"
VCMI_LIB_NAMESPACE_BEGIN
class CStack;
class CCreature;
class CSpell;
VCMI_LIB_NAMESPACE_END
class CAnimation;
class BattleInterface;
class CreatureAnimation;
struct StackAttackedInfo;
struct Point;
/// Base class of battle animations
2022-12-12 22:04:25 +02:00
class BattleAnimation
{
protected:
2022-12-13 13:58:16 +02:00
BattleInterface & owner;
bool initialized;
2022-12-12 22:04:25 +02:00
std::vector<BattleAnimation *> & pendingAnimations();
std::shared_ptr<CreatureAnimation> stackAnimation(const CStack * stack) const;
bool stackFacingRight(const CStack * stack);
void setStackFacingRight(const CStack * stack, bool facingRight);
virtual bool init() = 0; //to be called - if returned false, call again until returns true
public:
ui32 ID; //unique identifier
bool isInitialized();
bool tryInitialize();
virtual void nextFrame() {} //call every new frame
2022-12-12 22:04:25 +02:00
virtual ~BattleAnimation();
2022-12-12 22:04:25 +02:00
BattleAnimation(BattleInterface & owner);
};
/// Sub-class which is responsible for managing the battle stack animation.
2022-12-12 22:04:25 +02:00
class BattleStackAnimation : public BattleAnimation
{
public:
std::shared_ptr<CreatureAnimation> myAnim; //animation for our stack, managed by BattleInterface
const CStack * stack; //id of stack whose animation it is
2022-12-12 22:04:25 +02:00
BattleStackAnimation(BattleInterface & owner, const CStack * _stack);
void rotateStack(BattleHex hex);
};
/// This class is responsible for managing the battle attack animation
2022-12-12 22:04:25 +02:00
class AttackAnimation : public BattleStackAnimation
{
bool soundPlayed;
protected:
BattleHex dest; //attacked hex
2022-12-12 22:04:25 +02:00
ECreatureAnimType::Type group;
const CStack *defendingStack;
const CStack *attackingStack;
int attackingStackPosBeforeReturn; //for stacks with return_after_strike feature
2022-11-27 20:01:52 +02:00
2022-12-06 14:12:13 +02:00
const CCreature * getCreature() const;
public:
2022-12-12 22:04:25 +02:00
virtual void playSound() = 0;
2022-12-12 22:04:25 +02:00
void nextFrame() override;
AttackAnimation(BattleInterface & owner, const CStack *attacker, BattleHex _dest, const CStack *defender);
~AttackAnimation();
};
/// Animation of a defending unit
2022-12-12 22:04:25 +02:00
class DefenceAnimation : public BattleStackAnimation
{
2022-12-12 22:04:25 +02:00
public:
bool init() override;
DefenceAnimation(BattleInterface & owner, const CStack * stack);
};
2022-12-12 22:04:25 +02:00
/// Animation of a hit unit
class HittedAnimation : public BattleStackAnimation
{
public:
2022-12-12 22:04:25 +02:00
HittedAnimation(BattleInterface & owner, const CStack * stack);
bool init() override;
2022-12-12 22:04:25 +02:00
};
2022-12-12 22:04:25 +02:00
/// Animation of a dying unit
class DeathAnimation : public BattleStackAnimation
{
bool rangedAttack;
ECreatureAnimType::Type getMyAnimType();
public:
bool init() override;
DeathAnimation(BattleInterface & owner, const CStack * stack, bool ranged);
~DeathAnimation();
};
2022-12-12 22:04:25 +02:00
class DummyAnimation : public BattleAnimation
{
private:
int counter;
int howMany;
public:
bool init() override;
void nextFrame() override;
2022-12-12 22:04:25 +02:00
DummyAnimation(BattleInterface & owner, int howManyFrames);
};
/// Hand-to-hand attack
2022-12-12 22:04:25 +02:00
class MeleeAttackAnimation : public AttackAnimation
{
public:
bool init() override;
void nextFrame() override;
2022-12-12 22:04:25 +02:00
void playSound() override;
2022-12-12 22:04:25 +02:00
MeleeAttackAnimation(BattleInterface & owner, const CStack * attacker, BattleHex _dest, const CStack * _attacked);
};
/// Base class for all animations that play during stack movement
2022-12-12 22:04:25 +02:00
class StackMoveAnimation : public BattleStackAnimation
2022-11-28 22:35:38 +02:00
{
public:
BattleHex currentHex;
protected:
2022-12-12 22:04:25 +02:00
StackMoveAnimation(BattleInterface & owner, const CStack * _stack, BattleHex _currentHex);
2022-11-28 22:35:38 +02:00
};
/// Move animation of a creature
2022-12-12 22:04:25 +02:00
class MovementAnimation : public StackMoveAnimation
{
private:
std::vector<BattleHex> destTiles; //full path, includes already passed hexes
ui32 curentMoveIndex; // index of nextHex in destTiles
BattleHex oldPos; //position of stack before move
double begX, begY; // starting position
double distanceX, distanceY; // full movement distance, may be negative if creture moves topleft
double timeToMove; // full length of movement animation
double progress; // range 0 -> 1, indicates move progrees. 0 = movement starts, 1 = move ends
public:
bool init() override;
void nextFrame() override;
2022-12-12 22:04:25 +02:00
MovementAnimation(BattleInterface & owner, const CStack *_stack, std::vector<BattleHex> _destTiles, int _distance);
~MovementAnimation();
};
/// Move end animation of a creature
2022-12-12 22:04:25 +02:00
class MovementEndAnimation : public StackMoveAnimation
{
public:
bool init() override;
2022-12-12 22:04:25 +02:00
MovementEndAnimation(BattleInterface & owner, const CStack * _stack, BattleHex destTile);
~MovementEndAnimation();
};
/// Move start animation of a creature
2022-12-12 22:04:25 +02:00
class MovementStartAnimation : public StackMoveAnimation
{
public:
bool init() override;
2022-12-12 22:04:25 +02:00
MovementStartAnimation(BattleInterface & owner, const CStack * _stack);
};
/// Class responsible for animation of stack chaning direction (left <-> right)
2022-12-12 22:04:25 +02:00
class ReverseAnimation : public StackMoveAnimation
{
void setupSecondPart();
public:
bool init() override;
2022-12-12 22:04:25 +02:00
ReverseAnimation(BattleInterface & owner, const CStack * stack, BattleHex dest);
};
/// Resurrects stack from dead state
2022-12-12 22:04:25 +02:00
class ResurrectionAnimation : public BattleStackAnimation
{
public:
bool init() override;
2022-12-12 22:04:25 +02:00
ResurrectionAnimation(BattleInterface & owner, const CStack * _stack);
};
2022-12-12 22:04:25 +02:00
class RangedAttackAnimation : public AttackAnimation
{
void setAnimationGroup();
void initializeProjectile();
void emitProjectile();
void emitExplosion();
protected:
bool projectileEmitted;
virtual ECreatureAnimType::Type getUpwardsGroup() const = 0;
virtual ECreatureAnimType::Type getForwardGroup() const = 0;
virtual ECreatureAnimType::Type getDownwardsGroup() const = 0;
virtual void createProjectile(const Point & from, const Point & dest) const = 0;
2022-12-06 14:12:13 +02:00
virtual uint32_t getAttackClimaxFrame() const = 0;
public:
2022-12-12 22:04:25 +02:00
RangedAttackAnimation(BattleInterface & owner, const CStack * attacker, BattleHex dest, const CStack * defender);
~RangedAttackAnimation();
bool init() override;
void nextFrame() override;
2022-12-12 22:04:25 +02:00
void playSound() override;
};
/// Shooting attack
2022-12-12 22:04:25 +02:00
class ShootingAnimation : public RangedAttackAnimation
{
ECreatureAnimType::Type getUpwardsGroup() const override;
ECreatureAnimType::Type getForwardGroup() const override;
ECreatureAnimType::Type getDownwardsGroup() const override;
void createProjectile(const Point & from, const Point & dest) const override;
2022-12-06 14:12:13 +02:00
uint32_t getAttackClimaxFrame() const override;
public:
2022-12-12 22:04:25 +02:00
ShootingAnimation(BattleInterface & owner, const CStack * attacker, BattleHex dest, const CStack * defender);
};
/// Catapult attack
2022-12-12 22:04:25 +02:00
class CatapultAnimation : public ShootingAnimation
{
private:
bool explosionEmitted;
int catapultDamage;
public:
2022-12-12 22:04:25 +02:00
CatapultAnimation(BattleInterface & owner, const CStack * attacker, BattleHex dest, const CStack * defender, int _catapultDmg = 0);
void createProjectile(const Point & from, const Point & dest) const override;
void nextFrame() override;
};
2022-12-12 22:04:25 +02:00
class CastAnimation : public RangedAttackAnimation
{
const CSpell * spell;
ECreatureAnimType::Type findValidGroup( const std::vector<ECreatureAnimType::Type> candidates ) const;
ECreatureAnimType::Type getUpwardsGroup() const override;
ECreatureAnimType::Type getForwardGroup() const override;
ECreatureAnimType::Type getDownwardsGroup() const override;
void createProjectile(const Point & from, const Point & dest) const override;
2022-12-06 14:12:13 +02:00
uint32_t getAttackClimaxFrame() const override;
public:
2022-12-12 22:04:25 +02:00
CastAnimation(BattleInterface & owner, const CStack * attacker, BattleHex dest_, const CStack * defender, const CSpell * spell);
};
/// Class that plays effect at one or more positions along with (single) sound effect
2022-12-12 22:04:25 +02:00
class PointEffectAnimation : public BattleAnimation
{
std::string soundName;
bool soundPlayed;
bool soundFinished;
bool effectFinished;
int effectFlags;
std::shared_ptr<CAnimation> animation;
std::vector<Point> positions;
std::vector<BattleHex> battlehexes;
bool alignToBottom() const;
bool waitForSound() const;
bool forceOnTop() const;
bool screenFill() const;
void onEffectFinished();
void onSoundFinished();
void clearEffect();
void playSound();
void playEffect();
public:
enum EEffectFlags
{
ALIGN_TO_BOTTOM = 1,
2022-12-12 22:04:25 +02:00
WAIT_FOR_SOUND = 2, // Unused, can be removed
FORCE_ON_TOP = 4,
SCREEN_FILL = 8,
};
/// Create animation with screen-wide effect
2022-12-12 22:04:25 +02:00
PointEffectAnimation(BattleInterface & owner, std::string soundName, std::string animationName, int effects = 0);
/// Create animation positioned at point(s). Note that positions must be are absolute, including battleint position offset
2022-12-12 22:04:25 +02:00
PointEffectAnimation(BattleInterface & owner, std::string soundName, std::string animationName, Point pos , int effects = 0);
PointEffectAnimation(BattleInterface & owner, std::string soundName, std::string animationName, std::vector<Point> pos , int effects = 0);
/// Create animation positioned at certain hex(es)
2022-12-12 22:04:25 +02:00
PointEffectAnimation(BattleInterface & owner, std::string soundName, std::string animationName, BattleHex hex , int effects = 0);
PointEffectAnimation(BattleInterface & owner, std::string soundName, std::string animationName, std::vector<BattleHex> hex, int effects = 0);
2022-12-12 22:04:25 +02:00
PointEffectAnimation(BattleInterface & owner, std::string soundName, std::string animationName, Point pos, BattleHex hex, int effects = 0);
~PointEffectAnimation();
bool init() override;
void nextFrame() override;
};
/// Class that waits till projectile of certain shooter hits a target
2022-12-12 22:04:25 +02:00
class WaitingProjectileAnimation : public BattleAnimation
{
const CStack * shooter;
public:
2022-12-12 22:04:25 +02:00
WaitingProjectileAnimation(BattleInterface & owner, const CStack * shooter);
Spells configuration version 2 (effect-based) * Indirect spell effects loading * Json serializer improvements * spell->canBeCastAt do not allow useless cast for any spell * Added proxy caster class for spell-created obstacles * Handle damage from spell-created obstacles inside mechanics * Experimental GameState integration/regression tests * Ignore mod settings and load only "vcmi" mod when running tests * fixed https://bugs.vcmi.eu/view.php?id=2765 (with tests) * Huge improvements of BattleAI regarding spell casts * AI can cast almost any combat spell except TELEPORT, SACRIFICE and obstacle placement spells. * Possible fix for https://bugs.vcmi.eu/view.php?id=1811 * CStack factored out to several classes * [Battle] Allowed RETURN_AFTER_STRIKE effect on server side to be optional * [Battle] Allowed BattleAction have multiple destinations * [Spells] Converted limit|immunity to target condition * [Spells] Use partial configuration reload for backward compatibility handling * [Tests] Started tests for CUnitState * Partial fixes of fire shield effect * [Battle] Do HP calculations in 64 bits * [BattleAI] Use threading for spell cast evaluation * [BattleAI] Made AI be able to evaluate modified turn order (on hypothetical battle state) * Implemented https://bugs.vcmi.eu/view.php?id=2811 * plug rare freeze when hypnotized unit shots vertically * Correctly apply ONLY_MELEE_FIGHT / ONLY_DISTANCE_FIGHT for unit damage, attack & defense * [BattleAI] Try to not waste a cast if battle is actually won already * Extended JsonSerializeFormat API * fixed https://bugs.vcmi.eu/view.php?id=2847 * Any unit effect can be now chained (not only damage like Chain Lightning) ** only damage effect for now actually uses "chainFactor" * Possible quick fix for https://bugs.vcmi.eu/view.php?id=2860
2017-07-20 06:08:49 +02:00
2022-12-12 22:04:25 +02:00
void nextFrame() override;
bool init() override;
};