Removed legacy AAS from Doom, cleaned up naming.

This commit is contained in:
Justin Marshall
2026-05-22 22:26:19 -07:00
parent b0788b922e
commit 164a6e1f48
53 changed files with 912 additions and 613 deletions
+7 -7
View File
@@ -142,11 +142,11 @@ class rvmBotAIBotActionBase;
#define BLERR_NOERROR 0 //no error
#define BLERR_LIBRARYNOTSETUP 1 //library not setup
#define BLERR_INVALIDENTITYNUMBER 2 //invalid entity number
#define BLERR_NOAASFILE 3 //no AAS file available
#define BLERR_CANNOTOPENAASFILE 4 //cannot open AAS file
#define BLERR_WRONGAASFILEID 5 //incorrect AAS file id
#define BLERR_WRONGAASFILEVERSION 6 //incorrect AAS file version
#define BLERR_CANNOTREADAASLUMP 7 //cannot read AAS file lump
#define BLERR_NONAVFILE 3 //no NAV file available
#define BLERR_CANNOTOPENNAVFILE 4 //cannot open NAV file
#define BLERR_WRONGNAVFILEID 5 //incorrect NAV file id
#define BLERR_WRONGNAVFILEVERSION 6 //incorrect NAV file version
#define BLERR_CANNOTREADNAVLUMP 7 //cannot read NAV file lump
#define BLERR_CANNOTLOADICHAT 8 //cannot load initial chats
#define BLERR_CANNOTLOADITEMWEIGHTS 9 //cannot load item weights
#define BLERR_CANNOTLOADITEMCONFIG 10 //cannot load item config
@@ -688,7 +688,7 @@ void BotInitLevelItems( void );
void BotChooseWeapon( bot_state_t* bs );
inline float AAS_Time()
inline float NAV_Time()
{
return floattime;
}
@@ -928,7 +928,7 @@ private:
stateResult_t state_SeekLTG(stateParms_t* parms);
stateResult_t state_Attacked(stateParms_t* parms);
private:
idAAS* aas;
idNAV* aas;
};
extern idCVar bot_skill;