diff options
author | Tim Angus <tim@ngus.net> | 2003-02-08 00:23:19 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2003-02-08 00:23:19 +0000 |
commit | b42b7e09abf0d06d602ab7556f5928da8dbc53eb (patch) | |
tree | 906cad9ca4a17da7a8890971007ab673e80cb4e7 /src/game | |
parent | 6d9a746801ad3261ed57627758429fff4d19fd9c (diff) |
* Added utility function CG_DrawBoundingBox to um.. draw bounding boxes
* G_Printf now outputs to the TA UI console as well as the regular one
* Light flares now have an extra test to fix the "seeing through thin brushes" bug
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_main.c | 2 | ||||
-rw-r--r-- | src/game/g_misc.c | 44 |
2 files changed, 46 insertions, 0 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c index edefb98d..d77abc86 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -241,6 +241,8 @@ void QDECL G_Printf( const char *fmt, ... ) vsprintf( text, fmt, argptr ); va_end( argptr ); + trap_SendServerCommand( -1, va( "gprintf \"%s\"", text ) ); + trap_Printf( text ); } diff --git a/src/game/g_misc.c b/src/game/g_misc.c index 2d35e73c..7004d041 100644 --- a/src/game/g_misc.c +++ b/src/game/g_misc.c @@ -458,12 +458,56 @@ void SP_use_light_flare( gentity_t *self, gentity_t *other, gentity_t *activator self->s.eFlags ^= EF_NODRAW; } +//TA: finds an empty spot radius units from origin +static void findEmptySpot( vec3_t origin, float radius, vec3_t spot ) +{ + int i, j, k; + vec3_t delta, test, total; + trace_t tr; + + VectorClear( total ); + + //54(!) traces to test for empty spots + for( i = -1; i <= 1; i++ ) + { + for( j = -1; j <= 1; j++ ) + { + for( k = -1; k <= 1; k++ ) + { + VectorSet( delta, ( i * radius ), + ( j * radius ), + ( k * radius ) ); + + VectorAdd( origin, delta, test ); + + trap_Trace( &tr, test, NULL, NULL, test, -1, MASK_SOLID ); + + if( !tr.allsolid ) + { + trap_Trace( &tr, test, NULL, NULL, origin, -1, MASK_SOLID ); + VectorScale( delta, tr.fraction, delta ); + VectorAdd( total, delta, total ); + } + } + } + } + + VectorNormalize( total ); + VectorScale( total, radius, total ); + VectorAdd( origin, total, spot ); +} + //TA: spawn function for light flares void SP_misc_light_flare( gentity_t *self ) { self->s.eType = ET_LIGHTFLARE; self->s.modelindex = G_ShaderIndex( self->targetShaderName ); VectorCopy( self->pos2, self->s.origin2 ); + + //try to find a spot near to the flare which is empty. This + //is used to facilitate visibility testing + findEmptySpot( self->s.origin, 8.0f, self->s.angles2 ); + self->use = SP_use_light_flare; G_SpawnFloat( "speed", "200", &self->speed ); |