2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
gl_model_brush.c
|
|
|
|
|
2002-08-25 14:25:38 +00:00
|
|
|
gl support routines for model loading and caching
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software 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.
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
|
|
|
static __attribute__ ((unused)) const char rcsid[] =
|
|
|
|
"$Id$";
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2002-11-05 19:12:51 +00:00
|
|
|
#include "QF/cvar.h"
|
2003-05-08 23:24:02 +00:00
|
|
|
#include "QF/dstring.h"
|
2001-04-10 06:55:28 +00:00
|
|
|
#include "QF/model.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/qendian.h"
|
2002-08-27 07:16:28 +00:00
|
|
|
#include "QF/quakefs.h"
|
2001-09-21 04:22:46 +00:00
|
|
|
#include "QF/sys.h"
|
2002-01-16 01:02:50 +00:00
|
|
|
#include "QF/texture.h"
|
|
|
|
#include "QF/tga.h"
|
2002-09-06 21:37:22 +00:00
|
|
|
#include "QF/va.h"
|
2002-09-15 05:04:14 +00:00
|
|
|
#include "QF/vid.h"
|
2001-06-24 09:25:55 +00:00
|
|
|
#include "QF/GL/qf_textures.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-07-22 05:40:34 +00:00
|
|
|
#include "compat.h"
|
|
|
|
|
2002-05-25 15:29:22 +00:00
|
|
|
int mod_lightmap_bytes = 3;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
Mod_ProcessTexture (miptex_t *mt, texture_t *tx)
|
|
|
|
{
|
2002-08-22 20:06:30 +00:00
|
|
|
char name[32];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
snprintf (name, sizeof (name), "fb_%s", mt->name);
|
|
|
|
tx->gl_fb_texturenum =
|
|
|
|
Mod_Fullbright ((byte *) (tx + 1), tx->width, tx->height, name);
|
|
|
|
tx->gl_texturenum =
|
|
|
|
GL_LoadTexture (mt->name, tx->width, tx->height, (byte *) (tx + 1),
|
|
|
|
true, false, 1);
|
|
|
|
}
|
|
|
|
|
2002-01-16 01:02:50 +00:00
|
|
|
void
|
|
|
|
Mod_LoadExternalTextures (model_t *mod)
|
|
|
|
{
|
2002-09-06 21:37:22 +00:00
|
|
|
char *filename;
|
|
|
|
int i;
|
2002-08-22 20:06:30 +00:00
|
|
|
tex_t *targa;
|
|
|
|
texture_t *tx;
|
2002-08-27 07:16:28 +00:00
|
|
|
QFile *f;
|
2002-01-16 01:02:50 +00:00
|
|
|
|
2002-09-06 21:37:22 +00:00
|
|
|
for (i = 0; i < mod->numtextures; i++) {
|
2002-01-16 01:02:50 +00:00
|
|
|
tx = mod->textures[i];
|
2002-01-24 02:44:19 +00:00
|
|
|
if (!tx)
|
|
|
|
continue;
|
2002-01-17 16:31:34 +00:00
|
|
|
|
2003-02-19 17:41:16 +00:00
|
|
|
// FIXME: replace special flag characters with # or _?
|
|
|
|
if (tx->name[0] == '*') {
|
2003-02-19 21:41:37 +00:00
|
|
|
filename = va ("textures/%.*s/#%s.tga",
|
|
|
|
(int) strlen (mod->name + 5) - 4,
|
2003-02-19 17:41:16 +00:00
|
|
|
mod->name + 5, tx->name + 1);
|
|
|
|
QFS_FOpenFile (filename, &f);
|
|
|
|
if (!f) {
|
2002-09-10 23:40:13 +00:00
|
|
|
filename = va ("textures/#%s.tga", tx->name + 1);
|
2003-02-19 17:41:16 +00:00
|
|
|
QFS_FOpenFile (filename, &f);
|
2002-09-06 21:52:11 +00:00
|
|
|
}
|
2003-02-19 17:41:16 +00:00
|
|
|
if (!f) {
|
|
|
|
filename = va ("maps/#%s.tga", tx->name + 1);
|
|
|
|
QFS_FOpenFile (filename, &f);
|
|
|
|
}
|
|
|
|
} else {
|
2003-02-19 21:41:37 +00:00
|
|
|
filename = va ("textures/%.*s/%s.tga",
|
|
|
|
(int) strlen (mod->name + 5) - 4,
|
2003-02-19 17:41:16 +00:00
|
|
|
mod->name + 5, tx->name);
|
2003-02-14 19:46:07 +00:00
|
|
|
QFS_FOpenFile (filename, &f);
|
2003-02-19 17:41:16 +00:00
|
|
|
if (!f) {
|
|
|
|
filename = va ("textures/%s.tga", tx->name);
|
|
|
|
QFS_FOpenFile (filename, &f);
|
|
|
|
}
|
|
|
|
if (!f) {
|
|
|
|
filename = va ("maps/%s.tga", tx->name);
|
|
|
|
QFS_FOpenFile (filename, &f);
|
|
|
|
}
|
2002-09-06 21:52:11 +00:00
|
|
|
}
|
|
|
|
|
2002-01-16 01:02:50 +00:00
|
|
|
if (f) {
|
|
|
|
targa = LoadTGA (f);
|
|
|
|
Qclose (f);
|
2003-09-04 16:26:14 +00:00
|
|
|
if (targa->format < 4) {
|
|
|
|
tx->gl_texturenum =
|
|
|
|
GL_LoadTexture (tx->name, targa->width, targa->height,
|
|
|
|
targa->data, true, false, 3);
|
|
|
|
} else {
|
|
|
|
tx->gl_texturenum =
|
|
|
|
GL_LoadTexture (tx->name, targa->width, targa->height,
|
|
|
|
targa->data, true, false, 4);
|
|
|
|
}
|
2002-01-16 01:02:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
void
|
|
|
|
Mod_LoadLighting (lump_t *l)
|
|
|
|
{
|
|
|
|
byte d;
|
2002-08-22 20:06:30 +00:00
|
|
|
byte *in, *out, *data;
|
2003-05-08 23:24:02 +00:00
|
|
|
dstring_t *litfilename = dstring_new ();
|
2002-08-22 20:06:30 +00:00
|
|
|
int i;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2003-08-30 22:39:27 +00:00
|
|
|
dstring_copystr (litfilename, loadmodel->name);
|
2001-02-19 21:15:25 +00:00
|
|
|
loadmodel->lightdata = NULL;
|
2002-05-25 15:29:22 +00:00
|
|
|
if (mod_lightmap_bytes > 1) {
|
|
|
|
// LordHavoc: check for a .lit file to load
|
2003-05-08 23:24:02 +00:00
|
|
|
QFS_StripExtension (litfilename->str, litfilename->str);
|
|
|
|
dstring_appendstr (litfilename, ".lit");
|
|
|
|
data = (byte *) QFS_LoadHunkFile (litfilename->str);
|
2002-05-25 15:29:22 +00:00
|
|
|
if (data) {
|
|
|
|
if (data[0] == 'Q' && data[1] == 'L' && data[2] == 'I'
|
|
|
|
&& data[3] == 'T') {
|
|
|
|
i = LittleLong (((int *) data)[1]);
|
|
|
|
if (i == 1) {
|
2003-05-08 23:24:02 +00:00
|
|
|
Sys_DPrintf ("%s loaded", litfilename->str);
|
2002-05-25 15:29:22 +00:00
|
|
|
loadmodel->lightdata = data + 8;
|
|
|
|
return;
|
|
|
|
} else
|
|
|
|
Sys_Printf ("Unknown .lit file version (%d)\n", i);
|
2001-02-19 21:15:25 +00:00
|
|
|
} else
|
2002-05-25 15:29:22 +00:00
|
|
|
Sys_Printf ("Corrupt .lit file (old version?), ignoring\n");
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
// LordHavoc: oh well, expand the white lighting data
|
2003-05-08 23:24:02 +00:00
|
|
|
if (!l->filelen) {
|
|
|
|
dstring_delete (litfilename);
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
2003-05-08 23:24:02 +00:00
|
|
|
}
|
2002-05-25 15:29:22 +00:00
|
|
|
loadmodel->lightdata = Hunk_AllocName (l->filelen * mod_lightmap_bytes,
|
2003-05-08 23:24:02 +00:00
|
|
|
litfilename->str);
|
2002-04-23 17:23:18 +00:00
|
|
|
in = mod_base + l->fileofs;
|
2001-02-19 21:15:25 +00:00
|
|
|
out = loadmodel->lightdata;
|
2002-05-25 15:29:22 +00:00
|
|
|
|
2002-08-22 20:06:30 +00:00
|
|
|
if (mod_lightmap_bytes > 1)
|
2002-05-25 15:29:22 +00:00
|
|
|
for (i = 0; i < l->filelen ; i++) {
|
2002-09-15 05:04:14 +00:00
|
|
|
d = gammatable[*in++];
|
2002-05-25 15:29:22 +00:00
|
|
|
*out++ = d;
|
|
|
|
*out++ = d;
|
|
|
|
*out++ = d;
|
|
|
|
}
|
2002-08-22 20:06:30 +00:00
|
|
|
else
|
|
|
|
for (i = 0; i < l->filelen ; i++)
|
2002-09-15 05:04:14 +00:00
|
|
|
*out++ = gammatable[*in++];
|
2003-05-08 23:24:02 +00:00
|
|
|
dstring_delete (litfilename);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2002-11-05 19:12:51 +00:00
|
|
|
|
|
|
|
msurface_t *warpface;
|
|
|
|
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-11-05 19:12:51 +00:00
|
|
|
BoundPoly (int numverts, float *verts, vec3_t mins, vec3_t maxs)
|
|
|
|
{
|
|
|
|
float *v;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
mins[0] = mins[1] = mins[2] = 9999;
|
|
|
|
maxs[0] = maxs[1] = maxs[2] = -9999;
|
|
|
|
v = verts;
|
|
|
|
for (i = 0; i < numverts; i++)
|
|
|
|
for (j = 0; j < 3; j++, v++) {
|
|
|
|
if (*v < mins[j])
|
|
|
|
mins[j] = *v;
|
|
|
|
if (*v > maxs[j])
|
|
|
|
maxs[j] = *v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-11-05 19:12:51 +00:00
|
|
|
SubdividePolygon (int numverts, float *verts)
|
|
|
|
{
|
|
|
|
float frac, m, s, t;
|
|
|
|
float dist[64];
|
|
|
|
float *v;
|
|
|
|
int b, f, i, j, k;
|
|
|
|
glpoly_t *poly;
|
|
|
|
vec3_t mins, maxs;
|
|
|
|
vec3_t front[64], back[64];
|
|
|
|
|
|
|
|
if (numverts > 60)
|
|
|
|
Sys_Error ("numverts = %i", numverts);
|
|
|
|
|
|
|
|
BoundPoly (numverts, verts, mins, maxs);
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
m = (mins[i] + maxs[i]) * 0.5;
|
|
|
|
m = gl_subdivide_size->value * floor (m / gl_subdivide_size->value +
|
|
|
|
0.5);
|
|
|
|
if (maxs[i] - m < 8)
|
|
|
|
continue;
|
|
|
|
if (m - mins[i] < 8)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// cut it
|
|
|
|
v = verts + i;
|
|
|
|
for (j = 0; j < numverts; j++, v += 3)
|
|
|
|
dist[j] = *v - m;
|
|
|
|
|
|
|
|
// wrap cases
|
|
|
|
dist[j] = dist[0];
|
|
|
|
v -= i;
|
|
|
|
VectorCopy (verts, v);
|
|
|
|
|
|
|
|
f = b = 0;
|
|
|
|
v = verts;
|
|
|
|
for (j = 0; j < numverts; j++, v += 3) {
|
|
|
|
if (dist[j] >= 0) {
|
|
|
|
VectorCopy (v, front[f]);
|
|
|
|
f++;
|
|
|
|
}
|
|
|
|
if (dist[j] <= 0) {
|
|
|
|
VectorCopy (v, back[b]);
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
if (dist[j] == 0 || dist[j + 1] == 0)
|
|
|
|
continue;
|
|
|
|
if ((dist[j] > 0) != (dist[j + 1] > 0)) {
|
|
|
|
// clip point
|
|
|
|
frac = dist[j] / (dist[j] - dist[j + 1]);
|
|
|
|
for (k = 0; k < 3; k++)
|
|
|
|
front[f][k] = back[b][k] = v[k] + frac * (v[3 + k] - v[k]);
|
|
|
|
f++;
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SubdividePolygon (f, front[0]);
|
|
|
|
SubdividePolygon (b, back[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
poly = Hunk_Alloc (sizeof (glpoly_t) + (numverts - 4) * VERTEXSIZE *
|
|
|
|
sizeof (float));
|
|
|
|
poly->next = warpface->polys;
|
|
|
|
warpface->polys = poly;
|
|
|
|
poly->numverts = numverts;
|
|
|
|
for (i = 0; i < numverts; i++, verts += 3) {
|
|
|
|
VectorCopy (verts, poly->verts[i]);
|
|
|
|
s = DotProduct (verts, warpface->texinfo->vecs[0]);
|
|
|
|
t = DotProduct (verts, warpface->texinfo->vecs[1]);
|
|
|
|
poly->verts[i][3] = s;
|
|
|
|
poly->verts[i][4] = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Mod_SubdivideSurface
|
|
|
|
|
|
|
|
Breaks a polygon up along axial 64 unit
|
|
|
|
boundaries so that turbulent and sky warps
|
|
|
|
can be done reasonably.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Mod_SubdivideSurface (msurface_t *fa)
|
|
|
|
{
|
|
|
|
float *vec;
|
|
|
|
int lindex, numverts, i;
|
|
|
|
vec3_t verts[64];
|
|
|
|
|
|
|
|
warpface = fa;
|
|
|
|
|
|
|
|
// convert edges back to a normal polygon
|
|
|
|
numverts = 0;
|
|
|
|
for (i = 0; i < fa->numedges; i++) {
|
|
|
|
lindex = loadmodel->surfedges[fa->firstedge + i];
|
|
|
|
|
|
|
|
if (lindex > 0)
|
|
|
|
vec = loadmodel->vertexes[loadmodel->edges[lindex].v[0]].position;
|
|
|
|
else
|
|
|
|
vec = loadmodel->vertexes[loadmodel->edges[-lindex].v[1]].position;
|
|
|
|
VectorCopy (vec, verts[numverts]);
|
|
|
|
numverts++;
|
|
|
|
}
|
|
|
|
|
|
|
|
SubdividePolygon (numverts, verts[0]);
|
|
|
|
}
|