blob: dfbc52a76f25e90eea1996ba3bb8dbff36c74162 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
//========= Copyright Valve Corporation, All rights reserved. ============//
// tf_bot_generator.h
// Entity to spawn a collection of TFBots
// Michael Booth, September 2009
#ifndef TF_BOT_GENERATOR_H
#define TF_BOT_GENERATOR_H
#include "bot/tf_bot.h"
class CTFBotGenerator : public CPointEntity
{
public:
DECLARE_CLASS( CTFBotGenerator, CPointEntity );
DECLARE_DATADESC();
CTFBotGenerator( void );
virtual ~CTFBotGenerator() { }
virtual void Activate();
void GeneratorThink( void );
void SpawnBot( void );
// Input.
void InputEnable( inputdata_t &inputdata );
void InputDisable( inputdata_t &inputdata );
void InputSetSuppressFire( inputdata_t &inputdata );
void InputSetDisableDodge( inputdata_t &inputdata );
void InputSetDifficulty( inputdata_t &inputdata );
void InputCommandGotoActionPoint( inputdata_t &inputdata );
void InputSetAttentionFocus( inputdata_t &inputdata );
void InputClearAttentionFocus( inputdata_t &inputdata );
void InputSpawnBot( inputdata_t &inputdata );
void InputRemoveBots( inputdata_t &inputdata );
// Output
void OnBotKilled( CTFBot *pBot );
private:
bool m_bBotChoosesClass;
bool m_bSuppressFire;
bool m_bDisableDodge;
bool m_bUseTeamSpawnpoint;
bool m_bRetainBuildings;
bool m_bExpended;
int m_iOnDeathAction;
int m_spawnCount;
int m_spawnCountRemaining;
int m_maxActiveCount;
float m_spawnInterval;
string_t m_className;
string_t m_teamName;
string_t m_actionPointName;
string_t m_initialCommand;
CHandle< CBaseEntity > m_moveGoal;
int m_difficulty;
bool m_bSpawnOnlyWhenTriggered;
bool m_bEnabled;
COutputEvent m_onSpawned;
COutputEvent m_onExpended;
COutputEvent m_onBotKilled;
CUtlVector< CHandle< CTFBot > > m_spawnedBotVector;
};
//---------------------------------------------------------------
//
// Bot generator may have one of these as an argument, which
// means "tell the bot I created to move here and do what this node says".
// Things like "stay here", "move to <next task point>", "face towards <X>", "shoot at <Y>", etc
//
class CTFBotActionPoint : public CPointEntity
{
DECLARE_CLASS( CTFBotActionPoint, CPointEntity );
public:
DECLARE_DATADESC();
CTFBotActionPoint( void );
virtual ~CTFBotActionPoint() { }
virtual void Activate();
bool IsWithinRange( CBaseEntity *entity );
void ReachedActionPoint( CTFBot* pBot );
CHandle< CBaseEntity > m_moveGoal;
// reflected
float m_stayTime;
float m_desiredDistance;
string_t m_nextActionPointName;
string_t m_command;
COutputEvent m_onReachedActionPoint;
};
#endif // TF_BOT_GENERATOR_H
|