2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
gl_model_fullbright.c
|
|
|
|
|
2002-08-25 14:25:38 +00:00
|
|
|
fullbright skin handling
|
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
|
|
|
|
|
2005-08-04 15:27:09 +00:00
|
|
|
static __attribute__ ((used)) const char rcsid[] =
|
2003-01-15 15:31:36 +00:00
|
|
|
"$Id$";
|
|
|
|
|
2001-05-10 06:01:11 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2001-06-24 09:25:55 +00:00
|
|
|
#include "QF/GL/qf_textures.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/checksum.h"
|
|
|
|
#include "QF/qendian.h"
|
|
|
|
#include "QF/sys.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-10 06:01:11 +00:00
|
|
|
#include "r_local.h"
|
|
|
|
|
2002-08-22 19:16:44 +00:00
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE int
|
2001-02-19 21:15:25 +00:00
|
|
|
Mod_CalcFullbright (byte *in, byte *out, int pixels)
|
|
|
|
{
|
2002-08-22 19:16:44 +00:00
|
|
|
int fb = 0;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
while (pixels--) {
|
|
|
|
if (*in >= 256 - 32) {
|
|
|
|
fb = 1;
|
|
|
|
*out++ = *in++;
|
|
|
|
} else {
|
|
|
|
*out++ = 255;
|
|
|
|
in++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fb;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-08-22 19:16:44 +00:00
|
|
|
Mod_Fullbright (byte *skin, int width, int height, char *name)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-08-22 19:16:44 +00:00
|
|
|
byte *ptexels;
|
|
|
|
int pixels;
|
|
|
|
int texnum = 0;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
pixels = width * height;
|
|
|
|
|
2002-08-22 19:16:44 +00:00
|
|
|
// ptexels = Hunk_Alloc(s);
|
2001-02-19 21:15:25 +00:00
|
|
|
ptexels = malloc (pixels);
|
2002-05-14 06:37:28 +00:00
|
|
|
SYS_CHECKMEM (ptexels);
|
2002-08-22 19:16:44 +00:00
|
|
|
|
2002-08-25 14:25:38 +00:00
|
|
|
// Check for fullbright pixels
|
2001-02-19 21:15:25 +00:00
|
|
|
if (Mod_CalcFullbright (skin, ptexels, pixels)) {
|
2010-11-23 05:09:30 +00:00
|
|
|
Sys_MaskPrintf (SYS_DEV, "FB Model ID: '%s'\n", name);
|
2001-02-19 21:15:25 +00:00
|
|
|
texnum = GL_LoadTexture (name, width, height, ptexels, true, true, 1);
|
|
|
|
}
|
2002-08-25 14:25:38 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
free (ptexels);
|
|
|
|
return texnum;
|
|
|
|
}
|