blob: ca2ad577bcbfb6b5e5b7491de20001b740fb1f21 (
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
|
// The mob is agressive toward specific mobtypes, or toward the player.
// This Behavior has a dependency on BehaviorChaser.
#pragma once
class cPawn;
class cMonster;
class cBehaviorChaser;
class cBehaviorAggressive
{
public:
cBehaviorAggressive(cMonster * a_Parent);
// cBehaviorAggressive(cMonster * a_Parent, bool a_HatesPlayer);
// TODO agression toward specific players, and specific mobtypes, etc
// Agression under specific conditions (nighttime, etc)
// Functions our host Monster should invoke:
bool ActiveTick();
void Destroyed();
private:
cPawn * FindNewTarget();
// Our parent
cMonster * m_Parent;
cBehaviorChaser * m_ParentChaser;
// The mob we want to attack
cPawn * m_Target;
};
|