2008-07-25 07:31:37 +00:00
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
Copyright (C) 1999-2007 id Software, Inc. and contributors.
|
|
|
|
For a list of contributors, see the accompanying CONTRIBUTORS file.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
This file is part of GtkRadiant.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
GtkRadiant 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.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
GtkRadiant 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.
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GtkRadiant; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
----------------------------------------------------------------------------------
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
This code has been altered significantly from its original form, to support
|
|
|
|
several games based on the Quake III Arena engine, in the form of "Q3Map2."
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* marker */
|
|
|
|
#define SURFACE_FUR_C
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* dependencies */
|
|
|
|
#include "q3map2.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------
|
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
ydnar: fur module
|
2007-11-04 03:34:51 +00:00
|
|
|
|
2012-03-17 20:01:54 +00:00
|
|
|
------------------------------------------------------------------------------- */
|
2007-11-04 03:34:51 +00:00
|
|
|
|
|
|
|
/*
|
2012-03-17 20:01:54 +00:00
|
|
|
Fur()
|
|
|
|
runs the fur processing algorithm on a map drawsurface
|
|
|
|
*/
|
|
|
|
|
|
|
|
void Fur( mapDrawSurface_t *ds ){
|
|
|
|
int i, j, k, numLayers;
|
|
|
|
float offset, fade, a;
|
|
|
|
mapDrawSurface_t *fur;
|
|
|
|
bspDrawVert_t *dv;
|
|
|
|
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* dummy check */
|
2012-03-17 20:01:54 +00:00
|
|
|
if ( ds == NULL || ds->fur || ds->shaderInfo->furNumLayers < 1 ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
return;
|
2012-03-17 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* get basic info */
|
|
|
|
numLayers = ds->shaderInfo->furNumLayers;
|
|
|
|
offset = ds->shaderInfo->furOffset;
|
|
|
|
fade = ds->shaderInfo->furFade * 255.0f;
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* debug code */
|
|
|
|
//% Sys_FPrintf( SYS_VRB, "Fur(): layers: %d offset: %f fade: %f %s\n",
|
|
|
|
//% numLayers, offset, fade, ds->shaderInfo->shader );
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* initial offset */
|
2012-03-17 20:01:54 +00:00
|
|
|
for ( j = 0; j < ds->numVerts; j++ )
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
|
|
|
/* get surface vert */
|
|
|
|
dv = &ds->verts[ j ];
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* offset is scaled by original vertex alpha */
|
|
|
|
a = (float) dv->color[ 0 ][ 3 ] / 255.0;
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* offset it */
|
2012-03-17 20:01:54 +00:00
|
|
|
VectorMA( dv->xyz, ( offset * a ), dv->normal, dv->xyz );
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* wash, rinse, repeat */
|
2012-03-17 20:01:54 +00:00
|
|
|
for ( i = 1; i < numLayers; i++ )
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
|
|
|
/* clone the surface */
|
|
|
|
fur = CloneSurface( ds, ds->shaderInfo );
|
2012-03-17 20:01:54 +00:00
|
|
|
if ( fur == NULL ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
return;
|
2012-03-17 20:01:54 +00:00
|
|
|
}
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* set it to fur */
|
|
|
|
fur->fur = qtrue;
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* walk the verts */
|
2012-03-17 20:01:54 +00:00
|
|
|
for ( j = 0; j < fur->numVerts; j++ )
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
|
|
|
/* get surface vert */
|
|
|
|
dv = &ds->verts[ j ];
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* offset is scaled by original vertex alpha */
|
|
|
|
a = (float) dv->color[ 0 ][ 3 ] / 255.0;
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* get fur vert */
|
|
|
|
dv = &fur->verts[ j ];
|
2012-03-17 20:01:54 +00:00
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* offset it */
|
2012-03-17 20:01:54 +00:00
|
|
|
VectorMA( dv->xyz, ( offset * a * i ), dv->normal, dv->xyz );
|
|
|
|
|
2007-11-04 03:34:51 +00:00
|
|
|
/* fade alpha */
|
2012-03-17 20:01:54 +00:00
|
|
|
for ( k = 0; k < MAX_LIGHTMAPS; k++ )
|
2007-11-04 03:34:51 +00:00
|
|
|
{
|
|
|
|
a = (float) dv->color[ k ][ 3 ] - fade;
|
2012-03-17 20:01:54 +00:00
|
|
|
if ( a > 255.0f ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
dv->color[ k ][ 3 ] = 255;
|
2012-03-17 20:01:54 +00:00
|
|
|
}
|
|
|
|
else if ( a < 0 ) {
|
2007-11-04 03:34:51 +00:00
|
|
|
dv->color[ k ][ 3 ] = 0;
|
2012-03-17 20:01:54 +00:00
|
|
|
}
|
|
|
|
else{
|
2007-11-04 03:34:51 +00:00
|
|
|
dv->color[ k ][ 3 ] = a;
|
2012-03-17 20:01:54 +00:00
|
|
|
}
|
2007-11-04 03:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|