2011-12-23 03:19:13 +00:00
|
|
|
/*
|
|
|
|
glsl_model_brush.c
|
|
|
|
|
|
|
|
Brush model mesh processing for GLSL
|
|
|
|
|
|
|
|
Copyright (C) 2011 Bill Currie <bill@taniwha.org>
|
|
|
|
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2011/12/23
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2013-01-22 05:09:41 +00:00
|
|
|
#include "qfalloca.h"
|
|
|
|
|
2011-12-23 03:19:13 +00:00
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/dstring.h"
|
|
|
|
#include "QF/image.h"
|
|
|
|
#include "QF/qendian.h"
|
|
|
|
#include "QF/quakefs.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/va.h"
|
|
|
|
#include "QF/vid.h"
|
2012-01-11 12:09:57 +00:00
|
|
|
#include "QF/GLSL/defines.h"
|
|
|
|
#include "QF/GLSL/funcs.h"
|
2012-01-07 09:05:54 +00:00
|
|
|
#include "QF/GLSL/qf_textures.h"
|
2011-12-23 03:19:13 +00:00
|
|
|
|
|
|
|
#include "compat.h"
|
2012-02-14 12:25:19 +00:00
|
|
|
#include "mod_internal.h"
|
2011-12-23 03:19:13 +00:00
|
|
|
|
2012-01-29 13:32:35 +00:00
|
|
|
static void
|
|
|
|
glsl_brush_clear (model_t *m)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
m->needload = true;
|
|
|
|
for (i = 0; i < m->numtextures; i++) {
|
2012-01-31 00:51:44 +00:00
|
|
|
// NOTE: some maps (eg e1m2) have empty texture slots
|
|
|
|
if (m->textures[i] && m->textures[i]->gl_texturenum) {
|
2012-02-17 09:57:13 +00:00
|
|
|
GLSL_ReleaseTexture (m->textures[i]->gl_texturenum);
|
2012-09-05 05:02:44 +00:00
|
|
|
GLSL_ReleaseTexture (m->textures[i]->sky_tex[0]);
|
|
|
|
GLSL_ReleaseTexture (m->textures[i]->sky_tex[1]);
|
2012-01-29 13:32:35 +00:00
|
|
|
m->textures[i]->gl_texturenum = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i < m->numsurfaces; i++) {
|
|
|
|
if (m->surfaces[i].polys) {
|
|
|
|
free (m->surfaces[i].polys);
|
|
|
|
m->surfaces[i].polys = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-05 05:02:44 +00:00
|
|
|
static int
|
|
|
|
load_skytex (texture_t *tx, byte *data)
|
|
|
|
{
|
|
|
|
int tex;
|
|
|
|
|
|
|
|
tex = GLSL_LoadQuakeTexture (tx->name, tx->height, tx->height, data);
|
|
|
|
// GLSL_LoadQuakeTexture () leaves the texture bound
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
|
|
|
return tex;
|
|
|
|
}
|
|
|
|
|
2011-12-23 03:19:13 +00:00
|
|
|
void
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_ProcessTexture (texture_t *tx)
|
2011-12-23 03:19:13 +00:00
|
|
|
{
|
2012-01-11 12:09:57 +00:00
|
|
|
if (!strncmp (tx->name, "sky", 3)) {
|
|
|
|
// sky textures need to be loaded as two separate textures to allow
|
|
|
|
// wrapping on both sky layers.
|
|
|
|
byte *data;
|
|
|
|
byte *tx_data;
|
2012-09-05 05:02:44 +00:00
|
|
|
int tx_w, tx_h;
|
2012-01-11 12:09:57 +00:00
|
|
|
int i, j;
|
|
|
|
|
2012-09-05 05:02:44 +00:00
|
|
|
tx_w = tx->width;
|
|
|
|
tx_h = tx->height;
|
2012-01-11 12:09:57 +00:00
|
|
|
tx_data = (byte *)tx + tx->offsets[0];
|
2012-09-05 05:02:44 +00:00
|
|
|
|
|
|
|
if (tx_w == tx_h) {
|
|
|
|
// a square sky texture probably means it's black, but just in
|
|
|
|
// case some other magic is being done, duplicate the square to
|
|
|
|
// both sky layers.
|
|
|
|
tx->sky_tex[0] = load_skytex (tx, tx_data);
|
|
|
|
tx->sky_tex[1] = tx->sky_tex[0];
|
|
|
|
} else if (tx_w == 2 * tx_h) {
|
|
|
|
data = alloca (tx_h * tx_h);
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
for (j = 0; j < tx_h; j++)
|
|
|
|
memcpy (&data[j * tx_h], &tx_data[j * tx_w + i * tx_h],
|
|
|
|
tx_h);
|
|
|
|
tx->sky_tex[i] = load_skytex (tx, data);
|
|
|
|
}
|
|
|
|
tx->gl_texturenum = 0;
|
|
|
|
} else {
|
|
|
|
Sys_Error ("Mod_ProcessTexture: invalid sky texture: %dx%d\n",
|
|
|
|
tx_w, tx_h);
|
2012-01-11 12:09:57 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-02-17 09:57:13 +00:00
|
|
|
tx->gl_texturenum = GLSL_LoadQuakeMipTex (tx);
|
2012-01-11 12:09:57 +00:00
|
|
|
}
|
2011-12-23 03:19:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_LoadExternalTextures (model_t *mod)
|
2011-12-23 03:19:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_LoadLighting (bsp_t *bsp)
|
2011-12-23 03:19:13 +00:00
|
|
|
{
|
2012-01-29 13:32:35 +00:00
|
|
|
// a big hacky, but it's as good a place as any
|
|
|
|
loadmodel->clear = glsl_brush_clear;
|
2011-12-25 02:35:32 +00:00
|
|
|
mod_lightmap_bytes = 1;
|
|
|
|
if (!bsp->lightdatasize) {
|
|
|
|
loadmodel->lightdata = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
loadmodel->lightdata = Hunk_AllocName (bsp->lightdatasize, loadname);
|
|
|
|
memcpy (loadmodel->lightdata, bsp->lightdata, bsp->lightdatasize);
|
2011-12-23 03:19:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_SubdivideSurface (msurface_t *fa)
|
2011-12-23 03:19:13 +00:00
|
|
|
{
|
|
|
|
}
|