blob: d33792ec26ec82aeacdda6306c7606240cd7ea66 (
plain) (
blame)
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
|
#pragma once
#include "Behavior.h"
/** Makes the mob run away from any other mob that damages it.
Connections to other behaviors:
- The mob should also have a cBehaviorAttacker, otherwise this behavior will not work.
- This behavior does not make sense in combination with BehaviorAggressive or cBehaviorBrave.
Special connections:
- None.
*/
class cBehaviorCoward : cBehavior
{
public:
cBehaviorCoward();
void AttachToMonster(cMonster & a_Parent);
bool IsControlDesired(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
bool ControlStarting(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
bool ControlEnding(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
void DoTakeDamage(TakeDamageInfo & a_TDI) override;
private:
cMonster * m_Parent; // Our Parent
cEntity * m_Attacker; // The entity we're running away from
};
|