2012-08-04 10:54:37 +00:00
|
|
|
// Copyright (C) 1999-2000 Id Software, Inc.
|
2012-01-22 21:34:33 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* name: ai_chat.h
|
|
|
|
*
|
|
|
|
* desc: Quake3 bot AI
|
|
|
|
*
|
2012-08-04 10:54:37 +00:00
|
|
|
* $Archive: /StarTrek/Code-DM/game/ai_chat.h $
|
|
|
|
* $Author: Jmonroe $
|
|
|
|
* $Revision: 1 $
|
|
|
|
* $Modtime: 1/21/00 10:12p $
|
|
|
|
* $Date: 1/25/00 6:26p $
|
2012-01-22 21:34:33 +00:00
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
//
|
|
|
|
int BotChat_EnterGame(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_ExitGame(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_StartLevel(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_EndLevel(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_HitTalking(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_HitNoDeath(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_HitNoKill(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_Death(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_Kill(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_EnemySuicide(bot_state_t *bs);
|
|
|
|
//
|
|
|
|
int BotChat_Random(bot_state_t *bs);
|
2012-08-04 10:54:37 +00:00
|
|
|
//! time the selected chat takes to type in
|
2012-01-22 21:34:33 +00:00
|
|
|
float BotChatTime(bot_state_t *bs);
|
2012-08-04 10:54:37 +00:00
|
|
|
//! returns true if the bot can chat at the current position
|
2012-01-22 21:34:33 +00:00
|
|
|
int BotValidChatPosition(bot_state_t *bs);
|
2012-08-04 10:54:37 +00:00
|
|
|
//! test the initial bot chats
|
2012-01-22 21:34:33 +00:00
|
|
|
void BotChatTest(bot_state_t *bs);
|
|
|
|
|