blob: 1f001f0f844e764e0c149f25cfe3677f21779c59 (
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
37
38
39
40
41
42
43
44
45
46
47
|
/* Project Starshatter 4.5
Destroyer Studios LLC
Copyright © 1997-2004. All Rights Reserved.
SUBSYSTEM: Stars.exe
FILE: StarshipTacticalAI.h
AUTHOR: John DiCamillo
OVERVIEW
========
Starship-specific mid-level (tactical) AI
*/
#ifndef StarshipTacticalAI_h
#define StarshipTacticalAI_h
#include "Types.h"
#include "TacticalAI.h"
// +--------------------------------------------------------------------+
class StarshipTacticalAI : public TacticalAI
{
public:
StarshipTacticalAI(ShipAI* ai);
virtual ~StarshipTacticalAI();
virtual void ExecFrame(double seconds);
protected:
virtual void FindThreat();
virtual void FindSupport();
virtual void CheckBugOut(Ship* c_ship, double range);
DWORD THREAT_REACTION_TIME;
int ai_level;
double drop_time;
double initial_integrity;
bool bugout;
};
// +--------------------------------------------------------------------+
#endif StarshipTacticalAI_h
|