~ubuntu-branches/debian/stretch/assaultcube-data/stretch

« back to all changes in this revision

Viewing changes to source/src/bot/ac_bot.h

  • Committer: Bazaar Package Importer
  • Author(s): Gonéri Le Bouder, Ansgar Burchardt, Gonéri Le Bouder
  • Date: 2010-04-02 23:37:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100402233755-kf74fxwlu634o6vg
Tags: 1.0.4+repack1-1
[ Ansgar Burchardt ]
* debian/control: fix typo in short description

[ Gonéri Le Bouder ]
* Upgrade to 1.0.4
* bump standards-version to 3.8.4
* Add Depends: ${misc:Depends} just to avoid a lintian warning
* Add a debian/source/format file for the same reason

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// C++ Implementation: bot
 
3
//
 
4
// Description:
 
5
//
 
6
// Header specific for AC_CUBE
 
7
//
 
8
// Author:  Rick <rickhelmus@gmail.com>
 
9
//
 
10
//
 
11
//
 
12
 
 
13
#ifndef AC_BOT_H
 
14
#define AC_BOT_H
 
15
 
 
16
#ifdef AC_CUBE
 
17
 
 
18
#define MAX_WEAPONS      7
 
19
 
 
20
class CACBot: public CBot
 
21
{
 
22
public:
 
23
     friend class CBotManager;
 
24
     friend class CWaypointClass;
 
25
 
 
26
     virtual void CheckItemPickup(void);
 
27
 
 
28
     // AI Functions
 
29
     virtual bool ChoosePreferredWeapon(void);
 
30
     void Reload(int Gun);
 
31
     virtual entity *SearchForEnts(bool bUseWPs, float flRange=9999.0f,
 
32
                                   float flMaxHeight=JUMP_HEIGHT);
 
33
     virtual bool HeadToTargetEnt(void);
 
34
     virtual bool DoSPStuff(void);
 
35
 
 
36
     virtual void Spawn(void);
 
37
};
 
38
 
 
39
inline void AddScreenText(const char *t, ...) {} // UNDONE
 
40
inline void AddDebugText(const char *t, ...) {} // UNDONE
 
41
 
 
42
#endif
 
43
 
 
44
#endif