diff options
author | Tim Angus <tim@ngus.net> | 2002-08-13 19:01:26 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2002-08-13 19:01:26 +0000 |
commit | e4818e143ad3e37d9e7111eb9c3b7f5032e821fe (patch) | |
tree | f44339395feecdc24f08e1540b1c8326e0125bc4 /src/game | |
parent | 54889ef139348822cbbcbc111863379f8da68eb4 (diff) |
* Added ownerdrawn FPS, timer, snapshots and lagometer
* Fixed bugs in selection after buying/selling upgrades
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_misc.c | 1 | ||||
-rw-r--r-- | src/game/bg_public.h | 1 | ||||
-rw-r--r-- | src/game/g_cmds.c | 25 |
3 files changed, 26 insertions, 1 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index c6a46353..3f60271b 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -3368,6 +3368,7 @@ char *eventnames[] = { "EV_NOAMMO", "EV_CHANGE_WEAPON", + "EV_NEXT_WEAPON", "EV_FIRE_WEAPON", "EV_FIRE_WEAPON2", "EV_FIRE_WEAPONBOTH", diff --git a/src/game/bg_public.h b/src/game/bg_public.h index 7e8483de..2d59fe82 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -504,6 +504,7 @@ typedef enum { EV_NOAMMO, EV_CHANGE_WEAPON, + EV_NEXT_WEAPON, EV_FIRE_WEAPON, EV_FIRE_WEAPON2, EV_FIRE_WEAPONBOTH, diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index 66e0f16a..331326ae 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -1851,9 +1851,21 @@ void Cmd_Buy_f( gentity_t *ent ) int i; gentity_t *mcuEntity; qboolean nearMCU = qfalse; - int weapon, upgrade; + int weapon, upgrade, numItems = 0; int quan, clips, maxClips; + for( i = UP_NONE; i < UP_NUM_UPGRADES; i++ ) + { + if( BG_gotItem( i, ent->client->ps.stats ) ) + numItems++; + } + + for( i = WP_NONE; i < WP_NUM_WEAPONS; i++ ) + { + if( BG_gotWeapon( i, ent->client->ps.stats ) ) + numItems++; + } + trap_Argv( 1, s, sizeof( s ) ); //aliens don't buy stuff @@ -2029,6 +2041,9 @@ void Cmd_Buy_f( gentity_t *ent ) trap_SendServerCommand( ent-g_entities, va("print \"Unknown item\n\"" ) ); } + //if the buyer previously had no items at all, force a new selection + if( numItems == 0 ) + G_AddEvent( ent, EV_NEXT_WEAPON, 0 ); } @@ -2086,6 +2101,10 @@ void Cmd_Sell_f( gentity_t *ent ) //add to funds ent->client->ps.persistant[ PERS_CREDIT ] += BG_FindPriceForWeapon( weapon ); } + + //if we have this weapon selected, force a new selection + if( weapon == ent->client->ps.weapon ) + G_AddEvent( ent, EV_NEXT_WEAPON, 0 ); } else if( upgrade != UP_NONE ) { @@ -2097,6 +2116,10 @@ void Cmd_Sell_f( gentity_t *ent ) //add to funds ent->client->ps.persistant[ PERS_CREDIT ] += BG_FindPriceForUpgrade( upgrade ); } + + //if we have this upgrade selected, force a new selection + if( upgrade == ent->client->pers.cmd.weapon - 32 ) + G_AddEvent( ent, EV_NEXT_WEAPON, 0 ); } else { |