mirror of
https://github.com/UberGames/EF2GameSource.git
synced 2024-11-10 06:31:42 +00:00
44 lines
1.6 KiB
C
44 lines
1.6 KiB
C
// Copyright (C) 1999-2000 Id Software, Inc.
|
|
//
|
|
|
|
/*****************************************************************************
|
|
* name: ai_dmnet.h
|
|
*
|
|
* desc: Quake3 bot AI
|
|
*
|
|
* $Archive: /Code/DLLs/game/ai_dmnet.h $
|
|
* $Author: Jwaters $
|
|
* $Revision: 1 $
|
|
* $Modtime: 7/25/02 11:48a $
|
|
* $Date: 7/30/02 1:10p $
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#define MAX_NODESWITCHES 50
|
|
|
|
void AIEnter_Intermission(bot_state_t* bs, const char* s);
|
|
void AIEnter_Observer(bot_state_t* bs, const char* s);
|
|
void AIEnter_Respawn(bot_state_t* bs, const char* s);
|
|
void AIEnter_Stand(bot_state_t* bs, const char* s);
|
|
void AIEnter_Seek_ActivateEntity(bot_state_t* bs, const char* s);
|
|
void AIEnter_Seek_NBG(bot_state_t* bs, const char* s);
|
|
void AIEnter_Seek_LTG(bot_state_t* bs, const char* s);
|
|
void AIEnter_Battle_Fight(bot_state_t* bs, const char* s);
|
|
void AIEnter_Battle_Chase(bot_state_t* bs, const char* s);
|
|
void AIEnter_Battle_Retreat(bot_state_t* bs, const char* s);
|
|
void AIEnter_Battle_NBG(bot_state_t* bs, const char* s);
|
|
int AINode_Intermission(bot_state_t* bs);
|
|
int AINode_Observer(bot_state_t* bs);
|
|
int AINode_Respawn(bot_state_t* bs);
|
|
int AINode_Stand(bot_state_t* bs);
|
|
int AINode_Seek_ActivateEntity(bot_state_t* bs);
|
|
int AINode_Seek_NBG(bot_state_t* bs);
|
|
int AINode_Seek_LTG(bot_state_t* bs);
|
|
int AINode_Battle_Fight(bot_state_t* bs);
|
|
int AINode_Battle_Chase(bot_state_t* bs);
|
|
int AINode_Battle_Retreat(bot_state_t* bs);
|
|
int AINode_Battle_NBG(bot_state_t* bs);
|
|
|
|
void BotResetNodeSwitches(void);
|
|
void BotDumpNodeSwitches(bot_state_t* bs);
|
|
|