blob: dd6b19588de882888c97b56c2443254aead036c9 (
plain)
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
32
33
34
35
36
|
#pragma once
#include "Goal.h"
class Level;
class PathfinderMob;
class Path;
class MeleeAttackGoal : public Goal
{
private:
Level *level;
PathfinderMob *mob; // Owner of this goal
int attackTime;
double speedModifier;
bool trackTarget;
Path *path;
eINSTANCEOF attackType;
int timeToRecalcPath;
void _init(PathfinderMob *mob, double speedModifier, bool trackTarget);
public:
MeleeAttackGoal(PathfinderMob *mob, eINSTANCEOF attackType, double speedModifier, bool trackTarget);
MeleeAttackGoal(PathfinderMob *mob, double speedModifier, bool trackTarget);
~MeleeAttackGoal();
virtual bool canUse();
virtual bool canContinueToUse();
virtual void start();
virtual void stop();
virtual void tick();
// 4J Added override to update ai elements when loading entity from schematics
virtual void setLevel(Level *level) { this->level = level; }
};
|