diff options
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index e757653d..9b44d4c4 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -471,6 +471,16 @@ void G_PrintSpawnQueue( spawnQueue_t *sq ); #define MAX_DAMAGE_REGION_TEXT 8192 #define MAX_DAMAGE_REGIONS 16 +// power zone +typedef struct +{ + int active; + + int totalBuildPoints; + int queuedBuildPoints; + int nextQueueTime; +} zone_t; + // store locational damage regions typedef struct damageRegion_s { @@ -595,6 +605,8 @@ typedef struct int humanBuildPointQueue; int humanNextQueueTime; + zone_t *powerZones; + gentity_t *markedBuildables[ MAX_GENTITIES ]; int numBuildablesForRemoval; @@ -701,8 +713,6 @@ void G_Physics( gentity_t *ent, int msec ); #define MAX_ALIEN_BBOX 25 -#define MAX_ZONES 1024 - typedef enum { IBE_NONE, @@ -731,17 +741,6 @@ typedef enum IBE_MAXERRORS } itemBuildError_t; -typedef struct -{ - int active; - - int totalBuildPoints; - int queuedBuildPoints; - int nextQueueTime; -} zone_t; - -extern zone_t zones[MAX_ZONES]; - qboolean AHovel_Blocked( gentity_t *hovel, gentity_t *player, qboolean provideExit ); gentity_t *G_CheckSpawnPoint( int spawnNum, vec3_t origin, vec3_t normal, buildable_t spawn, vec3_t spawnOrigin ); |