From 1d38ad9de0a056b3dedefaf11f00bec45fd9652d Mon Sep 17 00:00:00 2001 From: Tyrann Date: Sun, 12 Aug 2007 09:16:05 +0930 Subject: [PATCH] [PATCH] Use FLT_MAX macros when bounds checking Just in case some wierd model or other file is thrown at us where the surface extents or similar are outside of (-9999, 9999), use the FLT_MAX macro to ensure we catch everything. I'm yet to see this actually happen in a compiled BSP, but I do remember being bitten in the qbsp compiler code a while back. Signed-off-by: Tyrann --- NQ/pr_cmds.c | 6 ++++-- NQ/world.c | 4 ++-- QW/server/model.c | 6 ++++-- common/d_sprite.c | 6 ++++-- common/gl_model.c | 6 ++++-- common/gl_warp.c | 6 ++++-- common/model.c | 5 +++-- 7 files changed, 25 insertions(+), 14 deletions(-) diff --git a/NQ/pr_cmds.c b/NQ/pr_cmds.c index 2be27c9..d6e6c5f 100644 --- a/NQ/pr_cmds.c +++ b/NQ/pr_cmds.c @@ -18,6 +18,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include + #include "quakedef.h" #include "host.h" #include "progs.h" @@ -192,8 +194,8 @@ SetMinMaxSize(edict_t *e, float *min, float *max, qboolean rotate) VectorCopy(min, bounds[0]); VectorCopy(max, bounds[1]); - rmin[0] = rmin[1] = rmin[2] = 9999; - rmax[0] = rmax[1] = rmax[2] = -9999; + rmin[0] = rmin[1] = rmin[2] = FLT_MAX; + rmax[0] = rmax[1] = rmax[2] = -FLT_MAX; for (i = 0; i <= 1; i++) { base[0] = bounds[i][0]; diff --git a/NQ/world.c b/NQ/world.c index f0946dc..555172e 100644 --- a/NQ/world.c +++ b/NQ/world.c @@ -842,8 +842,8 @@ SV_MoveBounds(vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, { #if 0 // debug to test against everything - boxmins[0] = boxmins[1] = boxmins[2] = -9999; - boxmaxs[0] = boxmaxs[1] = boxmaxs[2] = 9999; + boxmins[0] = boxmins[1] = boxmins[2] = -FLT_MAX; + boxmaxs[0] = boxmaxs[1] = boxmaxs[2] = FLT_MAX; #else int i; diff --git a/QW/server/model.c b/QW/server/model.c index cfd0bb3..2baaa73 100644 --- a/QW/server/model.c +++ b/QW/server/model.c @@ -22,6 +22,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // models are the only shared resource between a client and server running // on the same machine. +#include + #include "common.h" #include "model.h" #include "qtypes.h" @@ -621,8 +623,8 @@ CalcSurfaceExtents(msurface_t *s) mtexinfo_t *tex; int bmins[2], bmaxs[2]; - mins[0] = mins[1] = 999999; - maxs[0] = maxs[1] = -99999; + mins[0] = mins[1] = FLT_MAX; + maxs[0] = maxs[1] = -FLT_MAX; tex = s->texinfo; diff --git a/common/d_sprite.c b/common/d_sprite.c index df85e28..066c150 100644 --- a/common/d_sprite.c +++ b/common/d_sprite.c @@ -20,6 +20,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // d_sprite.c: software top-level rasterization driver module for drawing // sprites +#include + #include "quakedef.h" #include "d_local.h" @@ -387,8 +389,8 @@ D_DrawSprite(void) // find the top and bottom vertices, and make sure there's at least one scan to // draw - ymin = 999999.9; - ymax = -999999.9; + ymin = FLT_MAX; + ymax = -FLT_MAX; pverts = r_spritedesc.pverts; for (i = 0; i < r_spritedesc.nump; i++) { diff --git a/common/gl_model.c b/common/gl_model.c index 72d412d..708ec66 100644 --- a/common/gl_model.c +++ b/common/gl_model.c @@ -22,6 +22,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // models are the only shared resource between a client and server running // on the same machine. +#include + #include "console.h" #include "crc.h" #include "glquake.h" @@ -706,8 +708,8 @@ CalcSurfaceExtents(msurface_t *s) mtexinfo_t *tex; int bmins[2], bmaxs[2]; - mins[0] = mins[1] = 999999; - maxs[0] = maxs[1] = -99999; + mins[0] = mins[1] = FLT_MAX; + maxs[0] = maxs[1] = -FLT_MAX; tex = s->texinfo; diff --git a/common/gl_warp.c b/common/gl_warp.c index a7cd1b1..36abfc2 100644 --- a/common/gl_warp.c +++ b/common/gl_warp.c @@ -19,6 +19,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // gl_warp.c -- sky and water polygons +#include + #include "console.h" #include "gl_model.h" #include "glquake.h" @@ -47,8 +49,8 @@ BoundPoly(int numverts, float *verts, vec3_t mins, vec3_t maxs) int i, j; float *v; - mins[0] = mins[1] = mins[2] = 9999; - maxs[0] = maxs[1] = maxs[2] = -9999; + mins[0] = mins[1] = mins[2] = FLT_MAX; + maxs[0] = maxs[1] = maxs[2] = -FLT_MAX; v = verts; for (i = 0; i < numverts; i++) for (j = 0; j < 3; j++, v++) { diff --git a/common/model.c b/common/model.c index 0ab6383..b27765f 100644 --- a/common/model.c +++ b/common/model.c @@ -22,6 +22,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // models are the only shared resource between a client and server running // on the same machine. +#include #include #include "console.h" @@ -688,8 +689,8 @@ CalcSurfaceExtents(msurface_t *s) mtexinfo_t *tex; int bmins[2], bmaxs[2]; - mins[0] = mins[1] = 999999; - maxs[0] = maxs[1] = -99999; + mins[0] = mins[1] = FLT_MAX; + maxs[0] = maxs[1] = -FLT_MAX; tex = s->texinfo;