Bots now know about weapon modes. Just for grenades so far.

This commit is contained in:
Andrei Drexler 2002-05-19 15:43:51 +00:00
parent 275e4a8821
commit 57fc38ae14
2 changed files with 125 additions and 13 deletions

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.35 2002/05/19 15:43:51 makro
// Bots now know about weapon modes. Just for grenades so far.
//
// Revision 1.34 2002/05/18 14:52:16 makro
// Bot stuff. Other stuff. Just... stuff :p
//
@ -203,11 +206,11 @@ int blue_numaltroutegoals;
//Makro - the vector located on the line from src to dest dist units away
void VectorTargetDist(vec3_t src, vec3_t dest, int dist, vec3_t final) {
VectorClear(final);
VectorSubtract(src, dest, final);
VectorNormalize(final);
VectorScale(final, dist, final);
VectorAdd(final, src, final);
VectorMA(src, dist, final, final);
//VectorScale(final, dist, final);
//VectorAdd(final, src, final);
}
/*
@ -356,6 +359,81 @@ void BotMoveTowardsEnt(bot_state_t *bs, vec3_t dest, int dist) {
trap_BotMoveInDirection(bs->ms, dir, 400, MOVE_WALK);
}
/*
==================
RQ3_Bot_GetWeaponMode
Added by Makro
==================
*/
int RQ3_Bot_GetWeaponMode(bot_state_t *bs, int weapon)
{
switch (weapon) {
case WP_GRENADE:
{
//long range
if ( (bs->cur_ps.persistant[PERS_WEAPONMODES] & RQ3_GRENMED) == RQ3_GRENMED &&
(bs->cur_ps.persistant[PERS_WEAPONMODES] & RQ3_GRENSHORT) == RQ3_GRENSHORT ) {
return 2;
//medium range
} else if ( (bs->cur_ps.persistant[PERS_WEAPONMODES] & RQ3_GRENMED) == RQ3_GRENMED ) {
return 1;
//short range
} else {
return 0;
}
}
default:
return 0;
}
}
/*
==================
RQ3_Bot_SetWeaponMode
Added by Makro
==================
*/
void RQ3_Bot_SetWeaponMode(bot_state_t *bs, int weapon, int mode) {
int i, modeCount, oldMode, press;
//not holding the right weapon
if (weapon != bs->cur_ps.weapon)
return;
switch (bs->cur_ps.weapon) {
case WP_PISTOL:
case WP_KNIFE:
modeCount = 2;
break;
case WP_MP5:
case WP_M4:
case WP_SSG3000:
case WP_GRENADE:
modeCount = 3;
break;
default:
modeCount = 1;
break;
}
//no modes available
if (modeCount <= 1)
return;
mode = mode % modeCount;
oldMode = RQ3_Bot_GetWeaponMode(bs, weapon) % modeCount;
press = mode - oldMode;
if (press < 0)
press += modeCount;
//use the weapon command "press" times
for (i = 0; i < press; i++) {
Cmd_Weapon( &g_entities[bs->entitynum] );
}
}
/*
==================
RQ3_Bot_GetWeaponInfo
@ -363,7 +441,7 @@ RQ3_Bot_GetWeaponInfo
Added by Makro
==================
*/
//TODO: - set spreads here depending on what the player is doing - crouching, running etc.
//TODO: - set spreads here depending on what the player is doing - crouching, running etc. ?
qboolean RQ3_Bot_GetWeaponInfo(bot_state_t *bs, int weaponstate, int weapon, void *weaponinfo) {
//if the weapon is not valid
@ -378,18 +456,20 @@ qboolean RQ3_Bot_GetWeaponInfo(bot_state_t *bs, int weaponstate, int weapon, voi
#endif
} else {
weaponinfo_t *wi;
int weaponMode = 0;
trap_BotGetWeaponInfo(weaponstate, weapon, weaponinfo);
wi = (weaponinfo_t*) weaponinfo;
if (!wi) return qfalse;
if (!wi->valid) return qfalse;
weaponMode = RQ3_Bot_GetWeaponMode(bs, wi->number);
if (wi->number == WP_GRENADE) {
//long range
if ( (bs->cur_ps.persistant[PERS_WEAPONMODES] & RQ3_GRENMED) == RQ3_GRENMED &&
(bs->cur_ps.persistant[PERS_WEAPONMODES] & RQ3_GRENSHORT) == RQ3_GRENSHORT ) {
if (weaponMode == 2) {
wi->speed = GRENADE_LONG_SPEED;
//medium range
} else if ( (bs->cur_ps.persistant[PERS_WEAPONMODES] & RQ3_GRENMED) == RQ3_GRENMED ) {
} else if (weaponMode == 1) {
wi->speed = GRENADE_MEDIUM_SPEED;
//short range
} else {
@ -1955,8 +2035,8 @@ that the trap calls don't seem to
float RQ3_Bot_WeaponFitness(bot_state_t *bs, int weapon)
{
int dist = bs->inventory[ENEMY_HORIZONTAL_DIST] * bs->inventory[ENEMY_HORIZONTAL_DIST] +
bs->inventory[ENEMY_HEIGHT] * bs->inventory[ENEMY_HEIGHT];
int dist = sqrt(bs->inventory[ENEMY_HORIZONTAL_DIST] * bs->inventory[ENEMY_HORIZONTAL_DIST] +
bs->inventory[ENEMY_HEIGHT] * bs->inventory[ENEMY_HEIGHT]);
if (dist <= 0) {
dist = 8;
}
@ -2016,6 +2096,12 @@ BotChooseWeapon
*/
void BotChooseWeapon(bot_state_t *bs) {
int newweaponnum;
//distance from the enemy
int dist = sqrt(bs->inventory[ENEMY_HORIZONTAL_DIST] * bs->inventory[ENEMY_HORIZONTAL_DIST] +
bs->inventory[ENEMY_HEIGHT] * bs->inventory[ENEMY_HEIGHT]);
if (dist <= 0) {
dist = 8;
}
//Makro - don't change weapons while bandaging
if (bs->cur_ps.weaponstate == WEAPON_BANDAGING) {
@ -2026,6 +2112,19 @@ void BotChooseWeapon(bot_state_t *bs) {
bs->cur_ps.weaponstate == WEAPON_DROPPING)
{
trap_EA_SelectWeapon(bs->client, bs->weaponnum);
//Makro - choose weapon mode
if (bs->weaponnum == WP_GRENADE) {
//long range
if (dist > 800) {
RQ3_Bot_SetWeaponMode(bs, WP_GRENADE, 2);
//medium range
} else if (dist > 400) {
RQ3_Bot_SetWeaponMode(bs, WP_GRENADE, 1);
//short range
} else {
RQ3_Bot_SetWeaponMode(bs, WP_GRENADE, 0);
}
}
}
else {
//Makro - new function
@ -2038,6 +2137,19 @@ void BotChooseWeapon(bot_state_t *bs) {
//bs->weaponnum = WP_PISTOL;
//BotAI_Print(PRT_MESSAGE, "bs->weaponnum = %d\n", bs->weaponnum);
trap_EA_SelectWeapon(bs->client, bs->weaponnum);
//Makro - choose weapon mode
if (bs->weaponnum == WP_GRENADE) {
//long range
if (dist > 800) {
RQ3_Bot_SetWeaponMode(bs, WP_GRENADE, 2);
//medium range
} else if (dist > 400) {
RQ3_Bot_SetWeaponMode(bs, WP_GRENADE, 1);
//short range
} else {
RQ3_Bot_SetWeaponMode(bs, WP_GRENADE, 0);
}
}
}
}

View file

@ -6,13 +6,13 @@
--------------------Configuration: game - Win32 Release--------------------
</h3>
<h3>Command Lines</h3>
Creating temporary file "D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP169.tmp" with contents
Creating temporary file "D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP262.tmp" with contents
[
/nologo /G6 /ML /W4 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /FR"c:\reactionoutput/" /Fp"c:\reactionoutput/game.pch" /YX /Fo"c:\reactionoutput/" /Fd"c:\reactionoutput/" /FD /c
"C:\Games\Quake3\rq3source\reaction\game\ai_dmq3.c"
]
Creating command line "cl.exe @D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP169.tmp"
Creating temporary file "D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP16A.tmp" with contents
Creating command line "cl.exe @D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP262.tmp"
Creating temporary file "D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP263.tmp" with contents
[
kernel32.lib user32.lib winmm.lib /nologo /base:"0x20000000" /subsystem:windows /dll /incremental:no /pdb:"c:\reactionoutput/qagamex86.pdb" /map:"c:\reactionoutput/qagamex86.map" /machine:I386 /def:".\game.def" /out:"..\Release/qagamex86.dll" /implib:"c:\reactionoutput/qagamex86.lib"
\reactionoutput\ai_chat.obj
@ -55,7 +55,7 @@ kernel32.lib user32.lib winmm.lib /nologo /base:"0x20000000" /subsystem:windows
\reactionoutput\zcam.obj
\reactionoutput\zcam_target.obj
]
Creating command line "link.exe @D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP16A.tmp"
Creating command line "link.exe @D:\DOCUME~1\Andrei\LOCALS~1\Temp\RSP263.tmp"
<h3>Output Window</h3>
Compiling...
ai_dmq3.c