]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/q3map2/shaders.c
audit all uses of ClipWindingEpsilon and choose the strict variant or not, and explai...
[xonotic/netradiant.git] / tools / quake3 / q3map2 / shaders.c
1 /* -------------------------------------------------------------------------------
2
3 Copyright (C) 1999-2007 id Software, Inc. and contributors.
4 For a list of contributors, see the accompanying CONTRIBUTORS file.
5
6 This file is part of GtkRadiant.
7
8 GtkRadiant is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 GtkRadiant is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GtkRadiant; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
22 ----------------------------------------------------------------------------------
23
24 This code has been altered significantly from its original form, to support
25 several games based on the Quake III Arena engine, in the form of "Q3Map2."
26
27 ------------------------------------------------------------------------------- */
28
29
30
31 /* marker */
32 #define SHADERS_C
33
34
35
36 /* dependencies */
37 #include "q3map2.h"
38
39
40
41 /*
42 ColorMod()
43 routines for dealing with vertex color/alpha modification
44 */
45
46 void ColorMod( colorMod_t *cm, int numVerts, bspDrawVert_t *drawVerts )
47 {
48         int                             i, j, k;
49         float                   c;
50         vec4_t                  mult, add;
51         bspDrawVert_t   *dv;
52         colorMod_t              *cm2;
53         
54         
55         /* dummy check */
56         if( cm == NULL || numVerts < 1 || drawVerts == NULL )
57                 return;
58         
59         
60         /* walk vertex list */
61         for( i = 0; i < numVerts; i++ )
62         {
63                 /* get vertex */
64                 dv = &drawVerts[ i ];
65                 
66                 /* walk colorMod list */
67                 for( cm2 = cm; cm2 != NULL; cm2 = cm2->next )
68                 {
69                         /* default */
70                         VectorSet( mult, 1.0f, 1.0f, 1.0f );
71                         mult[ 3 ] = 1.0f;
72                         VectorSet( add, 0.0f, 0.0f, 0.0f );
73                         mult[ 3 ] = 0.0f;
74                         
75                         /* switch on type */
76                         switch( cm2->type )
77                         {
78                                 case CM_COLOR_SET:
79                                         VectorClear( mult );
80                                         VectorScale( cm2->data, 255.0f, add );
81                                         break;
82                                 
83                                 case CM_ALPHA_SET:
84                                         mult[ 3 ] = 0.0f;
85                                         add[ 3 ] = cm2->data[ 0 ] * 255.0f;
86                                         break;
87                                 
88                                 case CM_COLOR_SCALE:
89                                         VectorCopy( cm2->data, mult );
90                                         break;
91                                 
92                                 case CM_ALPHA_SCALE:
93                                         mult[ 3 ] = cm2->data[ 0 ];
94                                         break;
95                                 
96                                 case CM_COLOR_DOT_PRODUCT:
97                                         c = DotProduct( dv->normal, cm2->data );
98                                         VectorSet( mult, c, c, c );
99                                         break;
100                                 
101                                 case CM_COLOR_DOT_PRODUCT_SCALE:
102                                         c = DotProduct( dv->normal, cm2->data );
103                                         c = (c - cm2->data[3]) / (cm2->data[4] - cm2->data[3]);
104                                         VectorSet( mult, c, c, c );
105                                         break;
106                                 
107                                 case CM_ALPHA_DOT_PRODUCT:
108                                         mult[ 3 ] = DotProduct( dv->normal, cm2->data );
109                                         break;
110                                 
111                                 case CM_ALPHA_DOT_PRODUCT_SCALE:
112                                         c = DotProduct( dv->normal, cm2->data );
113                                         c = (c - cm2->data[3]) / (cm2->data[4] - cm2->data[3]);
114                                         mult[ 3 ] = c;
115                                         break;
116                                 
117                                 case CM_COLOR_DOT_PRODUCT_2:
118                                         c = DotProduct( dv->normal, cm2->data );
119                                         c *= c;
120                                         VectorSet( mult, c, c, c );
121                                         break;
122                                 
123                                 case CM_COLOR_DOT_PRODUCT_2_SCALE:
124                                         c = DotProduct( dv->normal, cm2->data );
125                                         c *= c;
126                                         c = (c - cm2->data[3]) / (cm2->data[4] - cm2->data[3]);
127                                         VectorSet( mult, c, c, c );
128                                         break;
129                                 
130                                 case CM_ALPHA_DOT_PRODUCT_2:
131                                         mult[ 3 ] = DotProduct( dv->normal, cm2->data );
132                                         mult[ 3 ] *= mult[ 3 ];
133                                         break;
134                                 
135                                 case CM_ALPHA_DOT_PRODUCT_2_SCALE:
136                                         c = DotProduct( dv->normal, cm2->data );
137                                         c *= c;
138                                         c = (c - cm2->data[3]) / (cm2->data[4] - cm2->data[3]);
139                                         mult[ 3 ] = c;
140                                         break;
141                                 
142                                 default:
143                                         break;
144                         }
145                         
146                         /* apply mod */
147                         for( j = 0; j < MAX_LIGHTMAPS; j++ )
148                         {
149                                 for( k = 0; k < 4; k++ )
150                                 {
151                                         c = (mult[ k ] * dv->color[ j ][ k ]) + add[ k ];
152                                         if( c < 0 )
153                                                 c = 0;
154                                         else if( c > 255 )
155                                                 c = 255;
156                                         dv->color[ j ][ k ] = c;
157                                 }
158                         }
159                 }
160         }
161 }
162
163
164
165 /*
166 TCMod*()
167 routines for dealing with a 3x3 texture mod matrix
168 */
169
170 void TCMod( tcMod_t mod, float st[ 2 ] )
171 {
172         float   old[ 2 ];
173         
174         
175         old[ 0 ] = st[ 0 ];
176         old[ 1 ] = st[ 1 ];
177         st[ 0 ] = (mod[ 0 ][ 0 ] * old[ 0 ]) + (mod[ 0 ][ 1 ] * old[ 1 ]) + mod[ 0 ][ 2 ];
178         st[ 1 ] = (mod[ 1 ][ 0 ] * old[ 0 ]) + (mod[ 1 ][ 1 ] * old[ 1 ]) + mod[ 1 ][ 2 ];
179 }
180
181
182 void TCModIdentity( tcMod_t mod )
183 {
184         mod[ 0 ][ 0 ] = 1.0f;   mod[ 0 ][ 1 ] = 0.0f;   mod[ 0 ][ 2 ] = 0.0f;
185         mod[ 1 ][ 0 ] = 0.0f;   mod[ 1 ][ 1 ] = 1.0f;   mod[ 1 ][ 2 ] = 0.0f;
186         mod[ 2 ][ 0 ] = 0.0f;   mod[ 2 ][ 1 ] = 0.0f;   mod[ 2 ][ 2 ] = 1.0f;   /* this row is only used for multiples, not transformation */
187 }
188
189
190 void TCModMultiply( tcMod_t a, tcMod_t b, tcMod_t out )
191 {
192         int             i;
193         
194         
195         for( i = 0; i < 3; i++ )
196         {
197                 out[ i ][ 0 ] = (a[ i ][ 0 ] * b[ 0 ][ 0 ]) + (a[ i ][ 1 ] * b[ 1 ][ 0 ]) + (a[ i ][ 2 ] * b[ 2 ][ 0 ]);
198                 out[ i ][ 1 ] = (a[ i ][ 0 ] * b[ 0 ][ 1 ]) + (a[ i ][ 1 ] * b[ 1 ][ 1 ]) + (a[ i ][ 2 ] * b[ 2 ][ 1 ]);
199                 out[ i ][ 2 ] = (a[ i ][ 0 ] * b[ 0 ][ 2 ]) + (a[ i ][ 1 ] * b[ 1 ][ 2 ]) + (a[ i ][ 2 ] * b[ 2 ][ 2 ]);
200         }
201 }
202
203
204 void TCModTranslate( tcMod_t mod, float s, float t )
205 {
206         mod[ 0 ][ 2 ] += s;
207         mod[ 1 ][ 2 ] += t;
208 }
209
210
211 void TCModScale( tcMod_t mod, float s, float t )
212 {
213         mod[ 0 ][ 0 ] *= s;
214         mod[ 1 ][ 1 ] *= t;
215 }
216
217
218 void TCModRotate( tcMod_t mod, float euler )
219 {
220         tcMod_t old, temp;
221         float   radians, sinv, cosv;
222         
223         
224         memcpy( old, mod, sizeof( tcMod_t ) );
225         TCModIdentity( temp );
226
227         radians = euler / 180 * Q_PI;
228         sinv = sin( radians );
229         cosv = cos( radians );
230
231         temp[ 0 ][ 0 ] = cosv;  temp[ 0 ][ 1 ] = -sinv;
232         temp[ 1 ][ 0 ] = sinv;  temp[ 1 ][ 1 ] = cosv;
233         
234         TCModMultiply( old, temp, mod );
235 }
236
237
238
239 /*
240 ApplySurfaceParm() - ydnar
241 applies a named surfaceparm to the supplied flags
242 */
243
244 qboolean ApplySurfaceParm( char *name, int *contentFlags, int *surfaceFlags, int *compileFlags )
245 {
246         int                             i, fake;
247         surfaceParm_t   *sp;
248         
249         
250         /* dummy check */
251         if( name == NULL )
252                 name = "";
253         if( contentFlags == NULL )
254                 contentFlags = &fake;
255         if( surfaceFlags == NULL )
256                 surfaceFlags = &fake;
257         if( compileFlags == NULL )
258                 compileFlags = &fake;
259         
260         /* walk the current game's surfaceparms */
261         sp = game->surfaceParms;
262         while( sp->name != NULL )
263         {
264                 /* match? */
265                 if( !Q_stricmp( name, sp->name ) )
266                 {
267                         /* clear and set flags */
268                         *contentFlags &= ~(sp->contentFlagsClear);
269                         *contentFlags |= sp->contentFlags;
270                         *surfaceFlags &= ~(sp->surfaceFlagsClear);
271                         *surfaceFlags |= sp->surfaceFlags;
272                         *compileFlags &= ~(sp->compileFlagsClear);
273                         *compileFlags |= sp->compileFlags;
274                         
275                         /* return ok */
276                         return qtrue;
277                 }
278                 
279                 /* next */
280                 sp++;
281         }
282         
283         /* check custom info parms */
284         for( i = 0; i < numCustSurfaceParms; i++ )
285         {
286                 /* get surfaceparm */
287                 sp = &custSurfaceParms[ i ];
288                 
289                 /* match? */
290                 if( !Q_stricmp( name, sp->name ) )
291                 {
292                         /* clear and set flags */
293                         *contentFlags &= ~(sp->contentFlagsClear);
294                         *contentFlags |= sp->contentFlags;
295                         *surfaceFlags &= ~(sp->surfaceFlagsClear);
296                         *surfaceFlags |= sp->surfaceFlags;
297                         *compileFlags &= ~(sp->compileFlagsClear);
298                         *compileFlags |= sp->compileFlags;
299                         
300                         /* return ok */
301                         return qtrue;
302                 }
303         }
304         
305         /* no matching surfaceparm found */
306         return qfalse;
307 }
308
309
310
311 /*
312 BeginMapShaderFile() - ydnar
313 erases and starts a new map shader script
314 */
315
316 void BeginMapShaderFile( const char *mapFile )
317 {
318         char    base[ 1024 ];
319         int             len;
320         
321
322         /* dummy check */
323         mapName[ 0 ] = '\0';
324         mapShaderFile[ 0 ] = '\0';
325         if( mapFile == NULL || mapFile[ 0 ] == '\0' )
326                 return;
327         
328         /* copy map name */
329         strcpy( base, mapFile );
330         StripExtension( base );
331         
332         /* extract map name */
333         len = strlen( base ) - 1;
334         while( len > 0 && base[ len ] != '/' && base[ len ] != '\\' )
335                 len--;
336         strcpy( mapName, &base[ len + 1 ] );
337         base[ len ] = '\0';
338         if( len <= 0 )
339                 return;
340         
341         /* append ../scripts/q3map2_<mapname>.shader */
342         sprintf( mapShaderFile, "%s/../%s/q3map2_%s.shader", base, game->shaderPath, mapName );
343         Sys_FPrintf( SYS_VRB, "Map has shader script %s\n", mapShaderFile );
344         
345         /* remove it */
346         remove( mapShaderFile );
347         
348         /* stop making warnings about missing images */
349         warnImage = qfalse;
350 }
351
352
353
354 /*
355 WriteMapShaderFile() - ydnar
356 writes a shader to the map shader script
357 */
358
359 void WriteMapShaderFile( void )
360 {
361         FILE                    *file;
362         shaderInfo_t    *si;
363         int                             i, num;
364         
365         
366         /* dummy check */
367         if( mapShaderFile[ 0 ] == '\0' )
368                 return;
369         
370         /* are there any custom shaders? */
371         for( i = 0, num = 0; i < numShaderInfo; i++ )
372         {
373                 if( shaderInfo[ i ].custom ) 
374                         break;
375         }
376         if( i == numShaderInfo )
377                 return;
378         
379         /* note it */
380         Sys_FPrintf( SYS_VRB, "--- WriteMapShaderFile ---\n");
381         Sys_FPrintf( SYS_VRB, "Writing %s", mapShaderFile );
382         
383         /* open shader file */
384         file = fopen( mapShaderFile, "w" );
385         if( file == NULL )
386         {
387                 Sys_Printf( "WARNING: Unable to open map shader file %s for writing\n", mapShaderFile );
388                 return;
389         }
390         
391         /* print header */
392         fprintf( file,
393                 "// Custom shader file for %s.bsp\n"
394                 "// Generated by Q3Map2 (ydnar)\n"
395                 "// Do not edit! This file is overwritten on recompiles.\n\n",
396                 mapName );
397         
398         /* walk the shader list */
399         for( i = 0, num = 0; i < numShaderInfo; i++ )
400         {
401                 /* get the shader and print it */
402                 si = &shaderInfo[ i ];
403                 if( si->custom == qfalse || si->shaderText == NULL || si->shaderText[ 0 ] == '\0' )
404                         continue;
405                 num++;
406
407                 /* print it to the file */
408                 fprintf( file, "%s%s\n", si->shader, si->shaderText );
409                 //Sys_Printf( "%s%s\n", si->shader, si->shaderText ); /* FIXME: remove debugging code */
410                 
411                 Sys_FPrintf( SYS_VRB, "." );
412         }
413         
414         /* close the shader */
415         fflush( file );
416         fclose( file );
417         
418         Sys_FPrintf( SYS_VRB, "\n" );
419         
420         /* print some stats */
421         Sys_Printf( "%9d custom shaders emitted\n", num );
422 }
423
424
425
426 /*
427 CustomShader() - ydnar
428 sets up a custom map shader
429 */
430
431 shaderInfo_t *CustomShader( shaderInfo_t *si, char *find, char *replace )
432 {
433         shaderInfo_t    *csi;
434         char                    shader[ MAX_QPATH ];
435         char                    *s;
436         int                             loc;
437         byte                    digest[ 16 ];
438         char                    *srcShaderText, temp[ 8192 ], shaderText[ 8192 ];       /* ydnar: fixme (make this bigger?) */
439         
440         
441         /* dummy check */
442         if( si == NULL )
443                 return ShaderInfoForShader( "default" );
444         
445         /* default shader text source */
446         srcShaderText = si->shaderText;
447         
448         /* et: implicitMap */
449         if( si->implicitMap == IM_OPAQUE )
450         {
451                 srcShaderText = temp;
452                 sprintf( temp, "\n"
453                         "{ // Q3Map2 defaulted (implicitMap)\n"
454                         "\t{\n"
455                         "\t\tmap $lightmap\n"
456                         "\t\trgbGen identity\n"
457                         "\t}\n"
458                         "\tq3map_styleMarker\n"
459                         "\t{\n"
460                         "\t\tmap %s\n"
461                         "\t\tblendFunc GL_DST_COLOR GL_ZERO\n"
462                         "\t\trgbGen identity\n"
463                         "\t}\n"
464                         "}\n",
465                         si->implicitImagePath );
466         }
467         
468         /* et: implicitMask */
469         else if( si->implicitMap == IM_MASKED )
470         {
471                 srcShaderText = temp;
472                 sprintf( temp, "\n"
473                         "{ // Q3Map2 defaulted (implicitMask)\n"
474                         "\tcull none\n"
475                         "\t{\n"
476                         "\t\tmap %s\n"
477                         "\t\talphaFunc GE128\n"
478                         "\t\tdepthWrite\n"
479                         "\t}\n"
480                         "\t{\n"
481                         "\t\tmap $lightmap\n"
482                         "\t\trgbGen identity\n"
483                         "\t\tdepthFunc equal\n"
484                         "\t}\n"
485                         "\tq3map_styleMarker\n"
486                         "\t{\n"
487                         "\t\tmap %s\n"
488                         "\t\tblendFunc GL_DST_COLOR GL_ZERO\n"
489                         "\t\tdepthFunc equal\n"
490                         "\t\trgbGen identity\n"
491                         "\t}\n"
492                         "}\n",
493                         si->implicitImagePath,
494                         si->implicitImagePath );
495         }
496         
497         /* et: implicitBlend */
498         else if( si->implicitMap == IM_BLEND )
499         {
500                 srcShaderText = temp;
501                 sprintf( temp, "\n"
502                         "{ // Q3Map2 defaulted (implicitBlend)\n"
503                         "\tcull none\n"
504                         "\t{\n"
505                         "\t\tmap %s\n"
506                         "\t\tblendFunc GL_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA\n"
507                         "\t}\n"
508                         "\t{\n"
509                         "\t\tmap $lightmap\n"
510                         "\t\trgbGen identity\n"
511                         "\t\tblendFunc GL_DST_COLOR GL_ZERO\n"
512                         "\t}\n"
513                         "\tq3map_styleMarker\n"
514                         "}\n",
515                         si->implicitImagePath );
516         }
517         
518         /* default shader text */
519         else if( srcShaderText == NULL )
520         {
521                 srcShaderText = temp;
522                 sprintf( temp, "\n"
523                         "{ // Q3Map2 defaulted\n"
524                         "\t{\n"
525                         "\t\tmap $lightmap\n"
526                         "\t\trgbGen identity\n"
527                         "\t}\n"
528                         "\tq3map_styleMarker\n"
529                         "\t{\n"
530                         "\t\tmap %s.tga\n"
531                         "\t\tblendFunc GL_DST_COLOR GL_ZERO\n"
532                         "\t\trgbGen identity\n"
533                         "\t}\n"
534                         "}\n",
535                         si->shader );
536         }
537         
538         /* error check */
539         if( (strlen( mapName ) + 1 + 32) > MAX_QPATH )
540                 Error( "Custom shader name length (%d) exceeded. Shorten your map name.\n", MAX_QPATH );
541         
542         /* do some bad find-replace */
543         s = strstr( srcShaderText, find );
544         if( s == NULL )
545                 //%     strcpy( shaderText, srcShaderText );
546                 return si;      /* testing just using the existing shader if this fails */
547         else
548         {
549                 /* substitute 'find' with 'replace' */
550                 loc = s - srcShaderText;
551                 strcpy( shaderText, srcShaderText );
552                 shaderText[ loc ] = '\0';
553                 strcat( shaderText, replace );
554                 strcat( shaderText, &srcShaderText[ loc + strlen( find ) ] );
555         }
556         
557         /* make md4 hash of the shader text */
558         Com_BlockFullChecksum(shaderText, strlen(shaderText), digest);
559         
560         /* mangle hash into a shader name */
561         sprintf( shader, "%s/%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X", mapName,
562                 digest[ 0 ], digest[ 1 ], digest[ 2 ], digest[ 3 ], digest[ 4 ], digest[ 5 ], digest[ 6 ], digest[ 7 ], 
563                 digest[ 8 ], digest[ 9 ], digest[ 10 ], digest[ 11 ], digest[ 12 ], digest[ 13 ], digest[ 14 ], digest[ 15 ] );
564         
565         /* get shader */
566         csi = ShaderInfoForShader( shader );
567         
568         /* might be a preexisting shader */
569         if( csi->custom )
570                 return csi;
571         
572         /* clone the existing shader and rename */
573         memcpy( csi, si, sizeof( shaderInfo_t ) );
574         strcpy( csi->shader, shader );
575         csi->custom = qtrue;
576         
577         /* store new shader text */
578         csi->shaderText = safe_malloc( strlen( shaderText ) + 1 );
579         strcpy( csi->shaderText, shaderText );  /* LEAK! */
580         
581         /* return it */
582         return csi;
583 }
584
585
586
587 /*
588 EmitVertexRemapShader()
589 adds a vertexremapshader key/value pair to worldspawn
590 */
591
592 void EmitVertexRemapShader( char *from, char *to )
593 {
594         byte                    digest[ 16 ];
595         char                    key[ 64 ], value[ 256 ];
596         
597         
598         /* dummy check */
599         if( from == NULL || from[ 0 ] == '\0' ||
600                 to == NULL || to[ 0 ] == '\0' )
601                 return;
602         
603         /* build value */
604         sprintf( value, "%s;%s", from, to );
605         
606         /* make md4 hash */
607         Com_BlockFullChecksum(value, strlen(value), digest);
608
609         /* make key (this is annoying, as vertexremapshader is precisely 17 characters,
610            which is one too long, so we leave off the last byte of the md5 digest) */
611         sprintf( key, "vertexremapshader%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
612                 digest[ 0 ], digest[ 1 ], digest[ 2 ], digest[ 3 ], digest[ 4 ], digest[ 5 ], digest[ 6 ], digest[ 7 ], 
613                 digest[ 8 ], digest[ 9 ], digest[ 10 ], digest[ 11 ], digest[ 12 ], digest[ 13 ], digest[ 14 ] );       /* no: digest[ 15 ] */
614         
615         /* add key/value pair to worldspawn */
616         SetKeyValue( &entities[ 0 ], key, value );
617 }
618
619
620
621 /*
622 AllocShaderInfo()
623 allocates and initializes a new shader
624 */
625
626 static shaderInfo_t     *AllocShaderInfo( void )
627 {
628         shaderInfo_t    *si;
629         
630         
631         /* allocate? */
632         if( shaderInfo == NULL )
633         {
634                 shaderInfo = safe_malloc( sizeof( shaderInfo_t ) * MAX_SHADER_INFO );
635                 numShaderInfo = 0;
636         }
637         
638         /* bounds check */
639         if( numShaderInfo == MAX_SHADER_INFO )
640                 Error( "MAX_SHADER_INFO exceeded. Remove some PK3 files or shader scripts from shaderlist.txt and try again." );
641         si = &shaderInfo[ numShaderInfo ];
642         numShaderInfo++;
643         
644         /* ydnar: clear to 0 first */
645         memset( si, 0, sizeof( shaderInfo_t ) );
646         
647         /* set defaults */
648         ApplySurfaceParm( "default", &si->contentFlags, &si->surfaceFlags, &si->compileFlags );
649         
650         si->backsplashFraction = DEF_BACKSPLASH_FRACTION;
651         si->backsplashDistance = DEF_BACKSPLASH_DISTANCE;
652         
653         si->bounceScale = DEF_RADIOSITY_BOUNCE;
654         
655         si->lightStyle = LS_NORMAL;
656         
657         si->polygonOffset = qfalse;
658         
659         si->shadeAngleDegrees = 0.0f;
660         si->lightmapSampleSize = 0;
661         si->lightmapSampleOffset = DEFAULT_LIGHTMAP_SAMPLE_OFFSET;
662         si->patchShadows = qfalse;
663         si->vertexShadows = qtrue;      /* ydnar: changed default behavior */
664         si->forceSunlight = qfalse;
665         si->vertexScale = 1.0;
666         si->notjunc = qfalse;
667         
668         /* ydnar: set texture coordinate transform matrix to identity */
669         TCModIdentity( si->mod );
670         
671         /* ydnar: lightmaps can now be > 128x128 in certain games or an externally generated tga */
672         si->lmCustomWidth = lmCustomSize;
673         si->lmCustomHeight = lmCustomSize;
674         
675         /* return to sender */
676         return si;
677 }
678
679
680
681 /*
682 FinishShader() - ydnar
683 sets a shader's width and height among other things
684 */
685
686 void FinishShader( shaderInfo_t *si )
687 {
688         int             x, y;
689         float   st[ 2 ], o[ 2 ], dist, bestDist;
690         vec4_t  color, delta;
691         
692
693         /* don't double-dip */
694         if( si->finished )
695                 return;
696         
697         /* if they're explicitly set, copy from image size */
698         if( si->shaderWidth == 0 && si->shaderHeight == 0 )
699         {
700                 si->shaderWidth = si->shaderImage->width;
701                 si->shaderHeight = si->shaderImage->height;
702         }
703         
704         /* legacy terrain has explicit image-sized texture projection */
705         if( si->legacyTerrain && si->tcGen == qfalse )
706         {
707                 /* set xy texture projection */
708                 si->tcGen = qtrue;
709                 VectorSet( si->vecs[ 0 ], (1.0f / (si->shaderWidth * 0.5f)), 0, 0 );
710                 VectorSet( si->vecs[ 1 ], 0, (1.0f / (si->shaderHeight * 0.5f)), 0 );
711         }
712         
713         /* find pixel coordinates best matching the average color of the image */
714         bestDist = 99999999;
715         o[ 0 ] = 1.0f / si->shaderImage->width;
716         o[ 1 ] = 1.0f / si->shaderImage->height;
717         for( y = 0, st[ 1 ] = 0.0f; y < si->shaderImage->height; y++, st[ 1 ] += o[ 1 ] )
718         {
719                 for( x = 0, st[ 0 ] = 0.0f; x < si->shaderImage->width; x++, st[ 0 ] += o[ 0 ] )
720                 {
721                         /* sample the shader image */
722                         RadSampleImage( si->shaderImage->pixels, si->shaderImage->width, si->shaderImage->height, st, color );
723                         
724                         /* determine error squared */
725                         VectorSubtract( color, si->averageColor, delta );
726                         delta[ 3 ] = color[ 3 ] - si->averageColor[ 3 ];
727                         dist = delta[ 0 ] * delta[ 0 ] + delta[ 1 ] * delta[ 1 ] + delta[ 2 ] * delta[ 2 ] + delta[ 3 ] * delta[ 3 ];
728                         if( dist < bestDist )
729                         {
730                                 si->stFlat[ 0 ] = st[ 0 ];
731                                 si->stFlat[ 1 ] = st[ 1 ];
732                         }
733                 }
734         }
735         
736         /* set to finished */
737         si->finished = qtrue;
738 }
739
740
741
742 /*
743 LoadShaderImages()
744 loads a shader's images
745 ydnar: image.c made this a bit simpler
746 */
747
748 static void LoadShaderImages( shaderInfo_t *si )
749 {
750         int                     i, count;
751         float           color[ 4 ];
752         
753         
754         /* nodraw shaders don't need images */
755         if( si->compileFlags & C_NODRAW )
756                 si->shaderImage = ImageLoad( DEFAULT_IMAGE );
757         else
758         {
759                 /* try to load editor image first */
760                 si->shaderImage = ImageLoad( si->editorImagePath );
761                 
762                 /* then try shadername */
763                 if( si->shaderImage == NULL )
764                         si->shaderImage = ImageLoad( si->shader );
765                 
766                 /* then try implicit image path (note: new behavior!) */
767                 if( si->shaderImage == NULL )
768                         si->shaderImage = ImageLoad( si->implicitImagePath );
769                 
770                 /* then try lightimage (note: new behavior!) */
771                 if( si->shaderImage == NULL )
772                         si->shaderImage = ImageLoad( si->lightImagePath );
773                 
774                 /* otherwise, use default image */
775                 if( si->shaderImage == NULL )
776                 {
777                         si->shaderImage = ImageLoad( DEFAULT_IMAGE );
778                         if( warnImage && strcmp( si->shader, "noshader" ) )
779                                 Sys_Printf( "WARNING: Couldn't find image for shader %s\n", si->shader );
780                 }
781                 
782                 /* load light image */
783                 si->lightImage = ImageLoad( si->lightImagePath );
784                 
785                 /* load normalmap image (ok if this is NULL) */
786                 si->normalImage = ImageLoad( si->normalImagePath );
787                 if( si->normalImage != NULL )
788                 {
789                         Sys_FPrintf( SYS_VRB, "Shader %s has\n"
790                                                                   "    NM %s\n", si->shader, si->normalImagePath );
791                 }
792         }
793         
794         /* if no light image, use shader image */
795         if( si->lightImage == NULL )
796                 si->lightImage = ImageLoad( si->shaderImage->name );
797         
798         /* create default and average colors */
799         count = si->lightImage->width * si->lightImage->height;
800         VectorClear( color );
801         color[ 3 ] = 0.0f;
802         for( i = 0; i < count; i++ )
803         {
804                 color[ 0 ] += si->lightImage->pixels[ i * 4 + 0 ];
805                 color[ 1 ] += si->lightImage->pixels[ i * 4 + 1 ];
806                 color[ 2 ] += si->lightImage->pixels[ i * 4 + 2 ];
807                 color[ 3 ] += si->lightImage->pixels[ i * 4 + 3 ];
808         }
809         
810         if( VectorLength( si->color ) <= 0.0f )
811         {
812                 ColorNormalize( color, si->color );
813                 VectorScale( color, (1.0f / count), si->averageColor );
814         }
815         else
816         {
817                 VectorCopy( si->color, si->averageColor );
818         }
819 }
820
821
822
823 /*
824 ShaderInfoForShader()
825 finds a shaderinfo for a named shader
826 */
827
828 #define MAX_SHADER_DEPRECATION_DEPTH 16
829
830 shaderInfo_t *ShaderInfoForShader( const char *shaderName )
831 {
832         int                             i;
833         int                             deprecationDepth;
834         shaderInfo_t    *si;
835         char                    shader[ MAX_QPATH ];
836
837         /* dummy check */
838         if( shaderName == NULL || shaderName[ 0 ] == '\0' )
839         {
840                 Sys_Printf( "WARNING: Null or empty shader name\n" );
841                 shaderName = "missing";
842         }
843         
844         /* strip off extension */
845         strcpy( shader, shaderName );
846         StripExtension( shader );
847         
848         /* search for it */
849         deprecationDepth = 0;
850         for( i = 0; i < numShaderInfo; i++ )
851         {
852                 si = &shaderInfo[ i ];
853                 if( !Q_stricmp( shader, si->shader ) )
854                 {
855                         /* check if shader is deprecated */
856                         if (deprecationDepth < MAX_SHADER_DEPRECATION_DEPTH && si->deprecateShader && si->deprecateShader[ 0 ] )
857                         {
858                                 /* override name */
859                                 strcpy( shader, si->deprecateShader );
860                                 StripExtension( shader );
861                                 /* increase deprecation depth */
862                                 deprecationDepth++;
863                                 if (deprecationDepth == MAX_SHADER_DEPRECATION_DEPTH)
864                                         Sys_Printf("WARNING: Max deprecation depth of %i is reached on shader '%s'\n", MAX_SHADER_DEPRECATION_DEPTH, shader);
865                                 /* search again from beginning */
866                                 i = -1;
867                                 continue;
868                         }
869
870                         /* load image if necessary */
871                         if( si->finished == qfalse )
872                         {
873                                 LoadShaderImages( si );
874                                 FinishShader( si );
875                         }
876                         
877                         /* return it */
878                         return si;
879                 }
880         }
881         
882         /* allocate a default shader */
883         si = AllocShaderInfo();
884         strcpy( si->shader, shader );
885         LoadShaderImages( si );
886         FinishShader( si );
887         
888         /* return it */
889         return si;
890 }
891
892
893
894 /*
895 GetTokenAppend() - ydnar
896 gets a token and appends its text to the specified buffer
897 */
898
899 static int      oldScriptLine = 0;
900 static int      tabDepth = 0;
901
902 qboolean GetTokenAppend( char *buffer, qboolean crossline )
903 {
904         qboolean        r;
905         int                     i;
906         
907         
908         /* get the token */
909         r = GetToken( crossline );
910         if( r == qfalse || buffer == NULL || token[ 0 ] == '\0' )
911                 return r;
912         
913         /* pre-tabstops */
914         if( token[ 0 ] == '}' )
915                 tabDepth--;
916         
917         /* append? */
918         if( oldScriptLine != scriptline )
919         {
920                 strcat( buffer, "\n" );
921                 for( i = 0; i < tabDepth; i++ )
922                         strcat( buffer, "\t" );
923         }
924         else
925                 strcat( buffer, " " );
926         oldScriptLine = scriptline;
927         strcat( buffer, token );
928         
929         /* post-tabstops */
930         if( token[ 0 ] == '{' )
931                 tabDepth++;
932         
933         /* return */
934         return r;
935 }
936
937
938 void Parse1DMatrixAppend( char *buffer, int x, vec_t *m )
939 {
940         int             i;
941         
942         
943         if( !GetTokenAppend( buffer, qtrue ) || strcmp( token, "(" ) )
944                 Error( "Parse1DMatrixAppend(): line %d: ( not found!", scriptline );
945         for( i = 0; i < x; i++ )
946         {
947                 if( !GetTokenAppend( buffer, qfalse ) )
948                         Error( "Parse1DMatrixAppend(): line %d: Number not found!", scriptline );
949                 m[ i ] = atof( token );
950         }
951         if( !GetTokenAppend( buffer, qtrue ) || strcmp( token, ")" ) )
952                 Error( "Parse1DMatrixAppend(): line %d: ) not found!", scriptline );
953 }
954
955
956
957
958 /*
959 ParseShaderFile()
960 parses a shader file into discrete shaderInfo_t
961 */
962
963 static void ParseShaderFile( const char *filename )
964 {
965         int                             i, val;
966         shaderInfo_t    *si;
967         char                    *suffix, temp[ 1024 ];
968         char                    shaderText[ 8192 ];     /* ydnar: fixme (make this bigger?) */
969         
970         
971         /* init */
972         si = NULL;
973         shaderText[ 0 ] = '\0';
974         
975         /* load the shader */
976         LoadScriptFile( filename, 0 );
977         
978         /* tokenize it */
979         while( 1 )
980         {
981                 /* copy shader text to the shaderinfo */
982                 if( si != NULL && shaderText[ 0 ] != '\0' )
983                 {
984                         strcat( shaderText, "\n" );
985                         si->shaderText = safe_malloc( strlen( shaderText ) + 1 );
986                         strcpy( si->shaderText, shaderText );
987                         //%     if( VectorLength( si->vecs[ 0 ] ) )
988                         //%             Sys_Printf( "%s\n", shaderText );
989                 }
990                 
991                 /* ydnar: clear shader text buffer */
992                 shaderText[ 0 ] = '\0';
993                 
994                 /* test for end of file */
995                 if( !GetToken( qtrue ) )
996                         break;
997                 
998                 /* shader name is initial token */
999                 si = AllocShaderInfo();
1000                 strcpy( si->shader, token );
1001                 
1002                 /* ignore ":q3map" suffix */
1003                 suffix = strstr( si->shader, ":q3map" );
1004                 if( suffix != NULL )
1005                         *suffix = '\0';
1006                 
1007                 /* handle { } section */
1008                 if( !GetTokenAppend( shaderText, qtrue ) )
1009                         break;
1010                 if( strcmp( token, "{" ) )
1011                 {
1012                         if( si != NULL )
1013                                 Error( "ParseShaderFile(): %s, line %d: { not found!\nFound instead: %s\nLast known shader: %s",
1014                                         filename, scriptline, token, si->shader );
1015                         else
1016                                 Error( "ParseShaderFile(): %s, line %d: { not found!\nFound instead: %s",
1017                                         filename, scriptline, token );
1018                 }
1019                 
1020                 while( 1 )
1021                 {
1022                         /* get the next token */
1023                         if( !GetTokenAppend( shaderText, qtrue ) )
1024                                 break;
1025                         if( !strcmp( token, "}" ) )
1026                                 break;
1027                         
1028                         
1029                         /* -----------------------------------------------------------------
1030                            shader stages (passes)
1031                            ----------------------------------------------------------------- */
1032                         
1033                         /* parse stage directives */
1034                         if( !strcmp( token, "{" ) )
1035                         {
1036                                 si->hasPasses = qtrue;
1037                                 while( 1 )
1038                                 {
1039                                         if( !GetTokenAppend( shaderText, qtrue ) )
1040                                                 break;
1041                                         if( !strcmp( token, "}" ) )
1042                                                 break;
1043                                         
1044                                         /* only care about images if we don't have a editor/light image */
1045                                         if( si->editorImagePath[ 0 ] == '\0' && si->lightImagePath[ 0 ] == '\0' && si->implicitImagePath[ 0 ] == '\0' )
1046                                         {
1047                                                 /* digest any images */
1048                                                 if( !Q_stricmp( token, "map" ) ||
1049                                                         !Q_stricmp( token, "clampMap" ) ||
1050                                                         !Q_stricmp( token, "animMap" ) ||
1051                                                         !Q_stricmp( token, "clampAnimMap" ) ||
1052                                                         !Q_stricmp( token, "clampMap" ) ||
1053                                                         !Q_stricmp( token, "mapComp" ) ||
1054                                                         !Q_stricmp( token, "mapNoComp" ) )
1055                                                 {
1056                                                         /* skip one token for animated stages */
1057                                                         if( !Q_stricmp( token, "animMap" ) || !Q_stricmp( token, "clampAnimMap" ) )
1058                                                                 GetTokenAppend( shaderText, qfalse );
1059                                                         
1060                                                         /* get an image */
1061                                                         GetTokenAppend( shaderText, qfalse );
1062                                                         if( token[ 0 ] != '*' && token[ 0 ] != '$' )
1063                                                         {
1064                                                                 strcpy( si->lightImagePath, token );
1065                                                                 DefaultExtension( si->lightImagePath, ".tga" );
1066                                                                 
1067                                                                 /* debug code */
1068                                                                 //%     Sys_FPrintf( SYS_VRB, "Deduced shader image: %s\n", si->lightImagePath );
1069                                                         }
1070                                                 }
1071                                         }
1072                                 }
1073                         }
1074                         
1075                         
1076                         /* -----------------------------------------------------------------
1077                            surfaceparm * directives
1078                            ----------------------------------------------------------------- */
1079                         
1080                         /* match surfaceparm */
1081                         else if( !Q_stricmp( token, "surfaceparm" ) )
1082                         {
1083                                 GetTokenAppend( shaderText, qfalse );
1084                                 if( ApplySurfaceParm( token, &si->contentFlags, &si->surfaceFlags, &si->compileFlags ) == qfalse )
1085                                         Sys_Printf( "WARNING: Unknown surfaceparm: \"%s\"\n", token );
1086                         }
1087                         
1088                         
1089                         /* -----------------------------------------------------------------
1090                            game-related shader directives
1091                            ----------------------------------------------------------------- */
1092                         
1093                         /* ydnar: fogparms (for determining fog volumes) */
1094                         else if( !Q_stricmp( token, "fogparms" ) )
1095                                 si->fogParms = qtrue;
1096                         
1097                         /* ydnar: polygonoffset (for no culling) */
1098                         else if( !Q_stricmp( token, "polygonoffset" ) )
1099                                 si->polygonOffset = qtrue;
1100                         
1101                         /* tesssize is used to force liquid surfaces to subdivide */
1102                         else if( !Q_stricmp( token, "tessSize" ) || !Q_stricmp( token, "q3map_tessSize" ) /* sof2 */ )
1103                         {
1104                                 GetTokenAppend( shaderText, qfalse );
1105                                 si->subdivisions = atof( token );
1106                         }
1107                         
1108                         /* cull none will set twoSided (ydnar: added disable too) */
1109                         else if ( !Q_stricmp( token, "cull" ) )
1110                         {
1111                                 GetTokenAppend( shaderText, qfalse );
1112                                 if( !Q_stricmp( token, "none" ) || !Q_stricmp( token, "disable" ) || !Q_stricmp( token, "twosided" ) )
1113                                         si->twoSided = qtrue;
1114                         }
1115                         
1116                         /* deformVertexes autosprite[ 2 ]
1117                            we catch this so autosprited surfaces become point
1118                            lights instead of area lights */
1119                         else if( !Q_stricmp( token, "deformVertexes" ) )
1120                         {
1121                                 GetTokenAppend( shaderText, qfalse );
1122                                 
1123                                 /* deformVertexes autosprite(2) */
1124                                 if( !Q_strncasecmp( token, "autosprite", 10 ) )
1125                                 {
1126                                         /* set it as autosprite and detail */
1127                                         si->autosprite = qtrue;
1128                                         ApplySurfaceParm( "detail", &si->contentFlags, &si->surfaceFlags, &si->compileFlags );
1129                                         
1130                                         /* ydnar: gs mods: added these useful things */
1131                                         si->noClip = qtrue;
1132                                         si->notjunc = qtrue;
1133                                 }
1134                                 
1135                                 /* deformVertexes move <x> <y> <z> <func> <base> <amplitude> <phase> <freq> (ydnar: for particle studio support) */
1136                                 if( !Q_stricmp( token, "move") )
1137                                 {
1138                                         vec3_t  amt, mins, maxs;
1139                                         float   base, amp;
1140                                         
1141                                         
1142                                         /* get move amount */
1143                                         GetTokenAppend( shaderText, qfalse );   amt[ 0 ] = atof( token );
1144                                         GetTokenAppend( shaderText, qfalse );   amt[ 1 ] = atof( token );
1145                                         GetTokenAppend( shaderText, qfalse );   amt[ 2 ] = atof( token );
1146                                         
1147                                         /* skip func */
1148                                         GetTokenAppend( shaderText, qfalse );
1149                                         
1150                                         /* get base and amplitude */
1151                                         GetTokenAppend( shaderText, qfalse );   base = atof( token );
1152                                         GetTokenAppend( shaderText, qfalse );   amp = atof( token );
1153                                         
1154                                         /* calculate */
1155                                         VectorScale( amt, base, mins );
1156                                         VectorMA( mins, amp, amt, maxs );
1157                                         VectorAdd( si->mins, mins, si->mins );
1158                                         VectorAdd( si->maxs, maxs, si->maxs );
1159                                 } 
1160                         }
1161                         
1162                         /* light <value> (old-style flare specification) */
1163                         else if( !Q_stricmp( token, "light" ) )
1164                         {
1165                                 GetTokenAppend( shaderText, qfalse );
1166                                 si->flareShader = game->flareShader;
1167                         }
1168                         
1169                         /* ydnar: damageShader <shader> <health> (sof2 mods) */
1170                         else if( !Q_stricmp( token, "damageShader" ) )
1171                         {
1172                                 GetTokenAppend( shaderText, qfalse );
1173                                 if( token[ 0 ] != '\0' )
1174                                 {
1175                                         si->damageShader = safe_malloc( strlen( token ) + 1 );
1176                                         strcpy( si->damageShader, token );
1177                                 }
1178                                 GetTokenAppend( shaderText, qfalse );   /* don't do anything with health */
1179                         }
1180                         
1181                         /* ydnar: enemy territory implicit shaders */
1182                         else if( !Q_stricmp( token, "implicitMap" ) )
1183                         {
1184                                 si->implicitMap = IM_OPAQUE;
1185                                 GetTokenAppend( shaderText, qfalse );
1186                                 if( token[ 0 ] == '-' && token[ 1 ] == '\0' )
1187                                         sprintf( si->implicitImagePath, "%s.tga", si->shader );
1188                                 else
1189                                         strcpy( si->implicitImagePath, token );
1190                         }
1191
1192                         else if( !Q_stricmp( token, "implicitMask" ) )
1193                         {
1194                                 si->implicitMap = IM_MASKED;
1195                                 GetTokenAppend( shaderText, qfalse );
1196                                 if( token[ 0 ] == '-' && token[ 1 ] == '\0' )
1197                                         sprintf( si->implicitImagePath, "%s.tga", si->shader );
1198                                 else
1199                                         strcpy( si->implicitImagePath, token );
1200                         }
1201
1202                         else if( !Q_stricmp( token, "implicitBlend" ) )
1203                         {
1204                                 si->implicitMap = IM_MASKED;
1205                                 GetTokenAppend( shaderText, qfalse );
1206                                 if( token[ 0 ] == '-' && token[ 1 ] == '\0' )
1207                                         sprintf( si->implicitImagePath, "%s.tga", si->shader );
1208                                 else
1209                                         strcpy( si->implicitImagePath, token );
1210                         }
1211                         
1212                         
1213                         /* -----------------------------------------------------------------
1214                            image directives
1215                            ----------------------------------------------------------------- */
1216                         
1217                         /* qer_editorimage <image> */
1218                         else if( !Q_stricmp( token, "qer_editorImage" ) )
1219                         {
1220                                 GetTokenAppend( shaderText, qfalse );
1221                                 strcpy( si->editorImagePath, token );
1222                                 DefaultExtension( si->editorImagePath, ".tga" );
1223                         }
1224                         
1225                         /* ydnar: q3map_normalimage <image> (bumpmapping normal map) */
1226                         else if( !Q_stricmp( token, "q3map_normalImage" ) )
1227                         {
1228                                 GetTokenAppend( shaderText, qfalse );
1229                                 strcpy( si->normalImagePath, token );
1230                                 DefaultExtension( si->normalImagePath, ".tga" );
1231                         }
1232                         
1233                         /* q3map_lightimage <image> */
1234                         else if( !Q_stricmp( token, "q3map_lightImage" ) )
1235                         {
1236                                 GetTokenAppend( shaderText, qfalse );
1237                                 strcpy( si->lightImagePath, token );
1238                                 DefaultExtension( si->lightImagePath, ".tga" );
1239                         }
1240                         
1241                         /* ydnar: skyparms <outer image> <cloud height> <inner image> */
1242                         else if( !Q_stricmp( token, "skyParms" ) )
1243                         {
1244                                 /* get image base */
1245                                 GetTokenAppend( shaderText, qfalse );
1246                                 
1247                                 /* ignore bogus paths */
1248                                 if( Q_stricmp( token, "-" ) && Q_stricmp( token, "full" ) )
1249                                 {
1250                                         strcpy( si->skyParmsImageBase, token );
1251                                         
1252                                         /* use top image as sky light image */
1253                                         if( si->lightImagePath[ 0 ] == '\0' )
1254                                                 sprintf( si->lightImagePath, "%s_up.tga", si->skyParmsImageBase );
1255                                 }
1256                                 
1257                                 /* skip rest of line */
1258                                 GetTokenAppend( shaderText, qfalse );
1259                                 GetTokenAppend( shaderText, qfalse );
1260                         }
1261                         
1262                         /* -----------------------------------------------------------------
1263                            q3map_* directives
1264                            ----------------------------------------------------------------- */
1265                         
1266                         /* q3map_sun <red> <green> <blue> <intensity> <degrees> <elevation>
1267                            color will be normalized, so it doesn't matter what range you use
1268                            intensity falls off with angle but not distance 100 is a fairly bright sun
1269                            degree of 0 = from the east, 90 = north, etc.  altitude of 0 = sunrise/set, 90 = noon
1270                            ydnar: sof2map has bareword 'sun' token, so we support that as well */
1271                         else if( !Q_stricmp( token, "sun" ) /* sof2 */ || !Q_stricmp( token, "q3map_sun" ) || !Q_stricmp( token, "q3map_sunExt" ) )
1272                         {
1273                                 float           a, b;
1274                                 sun_t           *sun;
1275                                 qboolean        ext;
1276                                 
1277                                 
1278                                 /* ydnar: extended sun directive? */
1279                                 if( !Q_stricmp( token, "q3map_sunext" ) )
1280                                         ext = qtrue;
1281                                 
1282                                 /* allocate sun */
1283                                 sun = safe_malloc( sizeof( *sun ) );
1284                                 memset( sun, 0, sizeof( *sun ) );
1285                                 
1286                                 /* set style */
1287                                 sun->style = si->lightStyle;
1288                                 
1289                                 /* get color */
1290                                 GetTokenAppend( shaderText, qfalse );
1291                                 sun->color[ 0 ] = atof( token );
1292                                 GetTokenAppend( shaderText, qfalse );
1293                                 sun->color[ 1 ] = atof( token );
1294                                 GetTokenAppend( shaderText, qfalse );
1295                                 sun->color[ 2 ] = atof( token );
1296                                 
1297                                 /* normalize it */
1298                                 VectorNormalize( sun->color, sun->color );
1299                                 
1300                                 /* scale color by brightness */
1301                                 GetTokenAppend( shaderText, qfalse );
1302                                 sun->photons = atof( token );
1303                                 
1304                                 /* get sun angle/elevation */
1305                                 GetTokenAppend( shaderText, qfalse );
1306                                 a = atof( token );
1307                                 a = a / 180.0f * Q_PI;
1308                                 
1309                                 GetTokenAppend( shaderText, qfalse );
1310                                 b = atof( token );
1311                                 b = b / 180.0f * Q_PI;
1312                                 
1313                                 sun->direction[ 0 ] = cos( a ) * cos( b );
1314                                 sun->direction[ 1 ] = sin( a ) * cos( b );
1315                                 sun->direction[ 2 ] = sin( b );
1316                                 
1317                                 /* get filter radius from shader */
1318                                 sun->filterRadius = si->lightFilterRadius;
1319                                 
1320                                 /* ydnar: get sun angular deviance/samples */
1321                                 if( ext && TokenAvailable() )
1322                                 {
1323                                         GetTokenAppend( shaderText, qfalse );
1324                                         sun->deviance = atof( token );
1325                                         sun->deviance = sun->deviance / 180.0f * Q_PI;
1326                                         
1327                                         GetTokenAppend( shaderText, qfalse );
1328                                         sun->numSamples = atoi( token );
1329                                 }
1330                                 
1331                                 /* store sun */
1332                                 sun->next = si->sun;
1333                                 si->sun = sun;
1334                                 
1335                                 /* apply sky surfaceparm */
1336                                 ApplySurfaceParm( "sky", &si->contentFlags, &si->surfaceFlags, &si->compileFlags );
1337                                 
1338                                 /* don't process any more tokens on this line */
1339                                 continue;
1340                         }
1341
1342                         /* match q3map_ */
1343                         else if( !Q_strncasecmp( token, "q3map_", 6 ) )
1344                         {
1345                                 /* ydnar: q3map_baseShader <shader> (inherit this shader's parameters) */
1346                                 if( !Q_stricmp( token, "q3map_baseShader" ) )
1347                                 {
1348                                         shaderInfo_t    *si2;
1349                                         qboolean                oldWarnImage;
1350                                         
1351                                         
1352                                         /* get shader */
1353                                         GetTokenAppend( shaderText, qfalse );
1354                                         //%     Sys_FPrintf( SYS_VRB, "Shader %s has base shader %s\n", si->shader, token );
1355                                         oldWarnImage = warnImage;
1356                                         warnImage = qfalse;
1357                                         si2 = ShaderInfoForShader( token );
1358                                         warnImage = oldWarnImage;
1359                                         
1360                                         /* subclass it */
1361                                         if( si2 != NULL )
1362                                         {
1363                                                 /* preserve name */
1364                                                 strcpy( temp, si->shader );
1365                                                 
1366                                                 /* copy shader */
1367                                                 memcpy( si, si2, sizeof( *si ) );
1368                                                 
1369                                                 /* restore name and set to unfinished */
1370                                                 strcpy( si->shader, temp );
1371                                                 si->shaderWidth = 0;
1372                                                 si->shaderHeight = 0;
1373                                                 si->finished = qfalse;
1374                                         }
1375                                 }
1376                                 
1377                                 /* ydnar: q3map_surfacemodel <path to model> <density> <min scale> <max scale> <min angle> <max angle> <oriented (0 or 1)> */
1378                                 else if( !Q_stricmp( token, "q3map_surfacemodel" ) )
1379                                 {
1380                                         surfaceModel_t  *model;
1381                                         
1382                                         /* allocate new model and attach it */
1383                                         model = safe_malloc( sizeof( *model ) );
1384                                         memset( model, 0, sizeof( *model ) );
1385                                         model->next = si->surfaceModel;
1386                                         si->surfaceModel = model;
1387                                                 
1388                                         /* get parameters */
1389                                         GetTokenAppend( shaderText, qfalse );
1390                                         strcpy( model->model, token );
1391                                         
1392                                         GetTokenAppend( shaderText, qfalse );
1393                                         model->density = atof( token );
1394                                         GetTokenAppend( shaderText, qfalse );
1395                                         model->odds = atof( token );
1396                                         
1397                                         GetTokenAppend( shaderText, qfalse );
1398                                         model->minScale = atof( token );
1399                                         GetTokenAppend( shaderText, qfalse );
1400                                         model->maxScale = atof( token );
1401                                         
1402                                         GetTokenAppend( shaderText, qfalse );
1403                                         model->minAngle = atof( token );
1404                                         GetTokenAppend( shaderText, qfalse );
1405                                         model->maxAngle = atof( token );
1406                                         
1407                                         GetTokenAppend( shaderText, qfalse );
1408                                         model->oriented = (token[ 0 ] == '1' ? qtrue : qfalse);
1409                                 }
1410                                 
1411                                 /* ydnar/sd: q3map_foliage <path to model> <scale> <density> <odds> <invert alpha (1 or 0)> */
1412                                 else if( !Q_stricmp( token, "q3map_foliage" ) )
1413                                 {
1414                                         foliage_t       *foliage;
1415                                         
1416                                         
1417                                         /* allocate new foliage struct and attach it */
1418                                         foliage = safe_malloc( sizeof( *foliage ) );
1419                                         memset( foliage, 0, sizeof( *foliage ) );
1420                                         foliage->next = si->foliage;
1421                                         si->foliage = foliage;
1422                                         
1423                                         /* get parameters */
1424                                         GetTokenAppend( shaderText, qfalse );
1425                                         strcpy( foliage->model, token );
1426                                         
1427                                         GetTokenAppend( shaderText, qfalse );
1428                                         foliage->scale = atof( token );
1429                                         GetTokenAppend( shaderText, qfalse );
1430                                         foliage->density = atof( token );
1431                                         GetTokenAppend( shaderText, qfalse );
1432                                         foliage->odds = atof( token );
1433                                         GetTokenAppend( shaderText, qfalse );
1434                                         foliage->inverseAlpha = atoi( token );
1435                                 }
1436                                 
1437                                 /* ydnar: q3map_bounce <value> (fraction of light to re-emit during radiosity passes) */
1438                                 else if( !Q_stricmp( token, "q3map_bounce" ) || !Q_stricmp( token, "q3map_bounceScale" ) )
1439                                 {
1440                                         GetTokenAppend( shaderText, qfalse );
1441                                         si->bounceScale = atof( token );
1442                                 }
1443
1444                                 /* ydnar/splashdamage: q3map_skyLight <value> <iterations> */
1445                                 else if( !Q_stricmp( token, "q3map_skyLight" )  )
1446                                 {
1447                                         GetTokenAppend( shaderText, qfalse );
1448                                         si->skyLightValue = atof( token );
1449                                         GetTokenAppend( shaderText, qfalse );
1450                                         si->skyLightIterations = atoi( token );
1451                                         
1452                                         /* clamp */
1453                                         if( si->skyLightValue < 0.0f )
1454                                                 si->skyLightValue = 0.0f;
1455                                         if( si->skyLightIterations < 2 )
1456                                                 si->skyLightIterations = 2;
1457                                 }
1458                                 
1459                                 /* q3map_surfacelight <value> */
1460                                 else if( !Q_stricmp( token, "q3map_surfacelight" )  )
1461                                 {
1462                                         GetTokenAppend( shaderText, qfalse );
1463                                         si->value = atof( token );
1464                                 }
1465                                 
1466                                 /* q3map_lightStyle (sof2/jk2 lightstyle) */
1467                                 else if( !Q_stricmp( token, "q3map_lightStyle" ) )
1468                                 {
1469                                         GetTokenAppend( shaderText, qfalse );
1470                                         val = atoi( token );
1471                                         if( val < 0 )
1472                                                 val = 0;
1473                                         else if( val > LS_NONE )
1474                                                 val = LS_NONE;
1475                                         si->lightStyle = val;
1476                                 }
1477                                 
1478                                 /* wolf: q3map_lightRGB <red> <green> <blue> */
1479                                 else if( !Q_stricmp( token, "q3map_lightRGB" ) )
1480                                 {
1481                                         VectorClear( si->color );
1482                                         GetTokenAppend( shaderText, qfalse );
1483                                         si->color[ 0 ] = atof( token );
1484                                         GetTokenAppend( shaderText, qfalse );
1485                                         si->color[ 1 ] = atof( token );
1486                                         GetTokenAppend( shaderText, qfalse );
1487                                         si->color[ 2 ] = atof( token );
1488                                         ColorNormalize( si->color, si->color );
1489                                 }
1490                                 
1491                                 /* q3map_lightSubdivide <value> */
1492                                 else if( !Q_stricmp( token, "q3map_lightSubdivide" )  )
1493                                 {
1494                                         GetTokenAppend( shaderText, qfalse );
1495                                         si->lightSubdivide = atoi( token );
1496                                 }
1497                                 
1498                                 /* q3map_backsplash <percent> <distance> */
1499                                 else if( !Q_stricmp( token, "q3map_backsplash" ) )
1500                                 {
1501                                         GetTokenAppend( shaderText, qfalse );
1502                                         si->backsplashFraction = atof( token ) * 0.01f;
1503                                         GetTokenAppend( shaderText, qfalse );
1504                                         si->backsplashDistance = atof( token );
1505                                 }
1506
1507                                 /* q3map_floodLight <r> <g> <b> <diste> <intensity> <light_direction_power> */
1508                                 else if( !Q_stricmp( token, "q3map_floodLight" ) )
1509                                 {
1510                                         /* get color */
1511                                         GetTokenAppend( shaderText, qfalse );
1512                                         si->floodlightRGB[ 0 ] = atof( token );
1513                                         GetTokenAppend( shaderText, qfalse );
1514                                         si->floodlightRGB[ 1 ] = atof( token );
1515                                         GetTokenAppend( shaderText, qfalse );
1516                                         si->floodlightRGB[ 2 ] = atof( token );
1517                                         GetTokenAppend( shaderText, qfalse );
1518                                         si->floodlightDistance = atof( token ); 
1519                                         GetTokenAppend( shaderText, qfalse );
1520                                         si->floodlightIntensity = atof( token ); 
1521                                         GetTokenAppend( shaderText, qfalse );
1522                                         si->floodlightDirectionScale = atof( token ); 
1523                                 }
1524
1525                                 /* jal: q3map_nodirty : skip dirty */
1526                                 else if( !Q_stricmp( token, "q3map_nodirty" ) )
1527                                 {
1528                                         si->noDirty = qtrue;
1529                                 }
1530                                 
1531                                 /* q3map_lightmapSampleSize <value> */
1532                                 else if( !Q_stricmp( token, "q3map_lightmapSampleSize" ) )
1533                                 {
1534                                         GetTokenAppend( shaderText, qfalse );
1535                                         si->lightmapSampleSize = atoi( token );
1536                                 }
1537                                 
1538                                 /* q3map_lightmapSampleOffset <value> */
1539                                 else if( !Q_stricmp( token, "q3map_lightmapSampleOffset" ) )
1540                                 {
1541                                         GetTokenAppend( shaderText, qfalse );
1542                                         si->lightmapSampleOffset = atof( token );
1543                                 }
1544                                 
1545                                 /* ydnar: q3map_lightmapFilterRadius <self> <other> */
1546                                 else if( !Q_stricmp( token, "q3map_lightmapFilterRadius" ) )
1547                                 {
1548                                         GetTokenAppend( shaderText, qfalse );
1549                                         si->lmFilterRadius = atof( token );
1550                                         GetTokenAppend( shaderText, qfalse );
1551                                         si->lightFilterRadius = atof( token );
1552                                 }
1553                                 
1554                                 /* ydnar: q3map_lightmapAxis [xyz] */
1555                                 else if( !Q_stricmp( token, "q3map_lightmapAxis" ) )
1556                                 {
1557                                         GetTokenAppend( shaderText, qfalse );
1558                                         if( !Q_stricmp( token, "x" ) )
1559                                                 VectorSet( si->lightmapAxis, 1, 0, 0 );
1560                                         else if( !Q_stricmp( token, "y" ) )
1561                                                 VectorSet( si->lightmapAxis, 0, 1, 0 );
1562                                         else if( !Q_stricmp( token, "z" ) )
1563                                                 VectorSet( si->lightmapAxis, 0, 0, 1 );
1564                                         else
1565                                         {
1566                                                 Sys_Printf( "WARNING: Unknown value for lightmap axis: %s\n", token );
1567                                                 VectorClear( si->lightmapAxis );
1568                                         }
1569                                 }
1570                                 
1571                                 /* ydnar: q3map_lightmapSize <width> <height> (for autogenerated shaders + external tga lightmaps) */
1572                                 else if( !Q_stricmp( token, "q3map_lightmapSize" ) )
1573                                 {
1574                                         GetTokenAppend( shaderText, qfalse );
1575                                         si->lmCustomWidth = atoi( token );
1576                                         GetTokenAppend( shaderText, qfalse );
1577                                         si->lmCustomHeight = atoi( token );
1578                                         
1579                                         /* must be a power of 2 */
1580                                         if( ((si->lmCustomWidth - 1) & si->lmCustomWidth) ||
1581                                                 ((si->lmCustomHeight - 1) & si->lmCustomHeight) )
1582                                         {
1583                                                 Sys_Printf( "WARNING: Non power-of-two lightmap size specified (%d, %d)\n",
1584                                                          si->lmCustomWidth, si->lmCustomHeight );
1585                                                 si->lmCustomWidth = lmCustomSize;
1586                                                 si->lmCustomHeight = lmCustomSize;
1587                                         }
1588                                 }
1589
1590                                 /* ydnar: q3map_lightmapBrightness N (for autogenerated shaders + external tga lightmaps) */
1591                                 else if( !Q_stricmp( token, "q3map_lightmapBrightness" ) || !Q_stricmp( token, "q3map_lightmapGamma" ) )
1592                                 {
1593                                         GetTokenAppend( shaderText, qfalse );
1594                                         si->lmBrightness = atof( token );
1595                                         if( si->lmBrightness < 0 )
1596                                                 si->lmBrightness = 1.0;
1597                                 }
1598                                 
1599                                 /* q3map_vertexScale (scale vertex lighting by this fraction) */
1600                                 else if( !Q_stricmp( token, "q3map_vertexScale" ) )
1601                                 {
1602                                         GetTokenAppend( shaderText, qfalse );
1603                                         si->vertexScale = atof( token );
1604                                 }
1605                                 
1606                                 /* q3map_noVertexLight */
1607                                 else if( !Q_stricmp( token, "q3map_noVertexLight" )  )
1608                                 {
1609                                         si->noVertexLight = qtrue;
1610                                 }
1611                                 
1612                                 /* q3map_flare[Shader] <shader> */
1613                                 else if( !Q_stricmp( token, "q3map_flare" ) || !Q_stricmp( token, "q3map_flareShader" ) )
1614                                 {
1615                                         GetTokenAppend( shaderText, qfalse );
1616                                         if( token[ 0 ] != '\0' )
1617                                         {
1618                                                 si->flareShader = safe_malloc( strlen( token ) + 1 );
1619                                                 strcpy( si->flareShader, token );
1620                                         }
1621                                 }
1622                                 
1623                                 /* q3map_backShader <shader> */
1624                                 else if( !Q_stricmp( token, "q3map_backShader" ) )
1625                                 {
1626                                         GetTokenAppend( shaderText, qfalse );
1627                                         if( token[ 0 ] != '\0' )
1628                                         {
1629                                                 si->backShader = safe_malloc( strlen( token ) + 1 );
1630                                                 strcpy( si->backShader, token );
1631                                         }
1632                                 }
1633                                 
1634                                 /* ydnar: q3map_cloneShader <shader> */
1635                                 else if ( !Q_stricmp( token, "q3map_cloneShader" ) )
1636                                 {
1637                                         GetTokenAppend( shaderText, qfalse );
1638                                         if( token[ 0 ] != '\0' )
1639                                         {
1640                                                 si->cloneShader = safe_malloc( strlen( token ) + 1 );
1641                                                 strcpy( si->cloneShader, token );
1642                                         }
1643                                 }
1644                                 
1645                                 /* q3map_remapShader <shader> */
1646                                 else if( !Q_stricmp( token, "q3map_remapShader" ) )
1647                                 {
1648                                         GetTokenAppend( shaderText, qfalse );
1649                                         if( token[ 0 ] != '\0' )
1650                                         {
1651                                                 si->remapShader = safe_malloc( strlen( token ) + 1 );
1652                                                 strcpy( si->remapShader, token );
1653                                         }
1654                                 }
1655
1656                                 /* q3map_deprecateShader <shader> */
1657                                 else if( !Q_stricmp( token, "q3map_deprecateShader" ) )
1658                                 {
1659                                         GetTokenAppend( shaderText, qfalse );
1660                                         if( token[ 0 ] != '\0' )
1661                                         {
1662
1663                                                 si->deprecateShader = safe_malloc( strlen( token ) + 1 );
1664                                                 strcpy( si->deprecateShader, token );
1665                                         }
1666                                 }
1667                                 
1668                                 /* ydnar: q3map_offset <value> */
1669                                 else if( !Q_stricmp( token, "q3map_offset" ) )
1670                                 {
1671                                         GetTokenAppend( shaderText, qfalse );
1672                                         si->offset = atof( token );
1673                                 }
1674                                 
1675                                 /* ydnar: q3map_fur <numlayers> <offset> <fade> */
1676                                 else if( !Q_stricmp( token, "q3map_fur" ) )
1677                                 {
1678                                         GetTokenAppend( shaderText, qfalse );
1679                                         si->furNumLayers = atoi( token );
1680                                         GetTokenAppend( shaderText, qfalse );
1681                                         si->furOffset = atof( token );
1682                                         GetTokenAppend( shaderText, qfalse );
1683                                         si->furFade = atof( token );
1684                                 }
1685                                 
1686                                 /* ydnar: gs mods: legacy support for terrain/terrain2 shaders */
1687                                 else if( !Q_stricmp( token, "q3map_terrain" ) )
1688                                 {
1689                                         /* team arena terrain is assumed to be nonplanar, with full normal averaging,
1690                                            passed through the metatriangle surface pipeline, with a lightmap axis on z */
1691                                         si->legacyTerrain = qtrue;
1692                                         si->noClip = qtrue;
1693                                         si->notjunc = qtrue;
1694                                         si->indexed = qtrue;
1695                                         si->nonplanar = qtrue;
1696                                         si->forceMeta = qtrue;
1697                                         si->shadeAngleDegrees = 179.0f;
1698                                         //%     VectorSet( si->lightmapAxis, 0, 0, 1 ); /* ydnar 2002-09-21: turning this off for better lightmapping of cliff faces */
1699                                 }
1700                                 
1701                                 /* ydnar: picomodel: q3map_forceMeta (forces brush faces and/or triangle models to go through the metasurface pipeline) */
1702                                 else if( !Q_stricmp( token, "q3map_forceMeta" ) )
1703                                 {
1704                                         si->forceMeta = qtrue;
1705                                 }
1706                                 
1707                                 /* ydnar: gs mods: q3map_shadeAngle <degrees> */
1708                                 else if( !Q_stricmp( token, "q3map_shadeAngle" ) )
1709                                 {
1710                                         GetTokenAppend( shaderText, qfalse );
1711                                         si->shadeAngleDegrees = atof( token );
1712                                 }
1713                                 
1714                                 /* ydnar: q3map_textureSize <width> <height> (substitute for q3map_lightimage derivation for terrain) */
1715                                 else if( !Q_stricmp( token, "q3map_textureSize" ) )
1716                                 {
1717                                         GetTokenAppend( shaderText, qfalse );
1718                                         si->shaderWidth = atoi( token );
1719                                         GetTokenAppend( shaderText, qfalse );
1720                                         si->shaderHeight = atoi( token );
1721                                 }
1722                                 
1723                                 /* ydnar: gs mods: q3map_tcGen <style> <parameters> */
1724                                 else if( !Q_stricmp( token, "q3map_tcGen" ) )
1725                                 {
1726                                         si->tcGen = qtrue;
1727                                         GetTokenAppend( shaderText, qfalse );
1728                                         
1729                                         /* q3map_tcGen vector <s vector> <t vector> */
1730                                         if( !Q_stricmp( token, "vector" ) )
1731                                         {
1732                                                 Parse1DMatrixAppend( shaderText, 3, si->vecs[ 0 ] );
1733                                                 Parse1DMatrixAppend( shaderText, 3, si->vecs[ 1 ] );
1734                                         }
1735                                         
1736                                         /* q3map_tcGen ivector <1.0/s vector> <1.0/t vector> (inverse vector, easier for mappers to understand) */
1737                                         else if( !Q_stricmp( token, "ivector" ) )
1738                                         {
1739                                                 Parse1DMatrixAppend( shaderText, 3, si->vecs[ 0 ] );
1740                                                 Parse1DMatrixAppend( shaderText, 3, si->vecs[ 1 ] );
1741                                                 for( i = 0; i < 3; i++ )
1742                                                 {
1743                                                         si->vecs[ 0 ][ i ] = si->vecs[ 0 ][ i ] ? 1.0 / si->vecs[ 0 ][ i ] : 0;
1744                                                         si->vecs[ 1 ][ i ] = si->vecs[ 1 ][ i ] ? 1.0 / si->vecs[ 1 ][ i ] : 0;
1745                                                 }
1746                                         }
1747                                         else
1748                                         {
1749                                                 Sys_Printf( "WARNING: Unknown q3map_tcGen method: %s\n", token );
1750                                                 VectorClear( si->vecs[ 0 ] );
1751                                                 VectorClear( si->vecs[ 1 ] );
1752                                         }
1753                                 }
1754                                 
1755                                 /* ydnar: gs mods: q3map_[color|rgb|alpha][Gen|Mod] <style> <parameters> */
1756                                 else if( !Q_stricmp( token, "q3map_colorGen" ) || !Q_stricmp( token, "q3map_colorMod" ) ||
1757                                         !Q_stricmp( token, "q3map_rgbGen" ) || !Q_stricmp( token, "q3map_rgbMod" ) ||
1758                                         !Q_stricmp( token, "q3map_alphaGen" ) || !Q_stricmp( token, "q3map_alphaMod" ) )
1759                                 {
1760                                         colorMod_t      *cm, *cm2;
1761                                         int                     alpha;
1762                                         
1763                                         
1764                                         /* alphamods are colormod + 1 */
1765                                         alpha = (!Q_stricmp( token, "q3map_alphaGen" ) || !Q_stricmp( token, "q3map_alphaMod" )) ? 1 : 0;
1766                                         
1767                                         /* allocate new colormod */
1768                                         cm = safe_malloc( sizeof( *cm ) );
1769                                         memset( cm, 0, sizeof( *cm ) );
1770                                         
1771                                         /* attach to shader */
1772                                         if( si->colorMod == NULL )
1773                                                 si->colorMod = cm;
1774                                         else
1775                                         {
1776                                                 for( cm2 = si->colorMod; cm2 != NULL; cm2 = cm2->next )
1777                                                 {
1778                                                         if( cm2->next == NULL )
1779                                                         {
1780                                                                 cm2->next = cm;
1781                                                                 break;
1782                                                         }
1783                                                 }
1784                                         }
1785                                         
1786                                         /* get type */
1787                                         GetTokenAppend( shaderText, qfalse );
1788                                         
1789                                         /* alpha set|const A */
1790                                         if( alpha && (!Q_stricmp( token, "set" ) || !Q_stricmp( token, "const" )) )
1791                                         {
1792                                                 cm->type = CM_ALPHA_SET;
1793                                                 GetTokenAppend( shaderText, qfalse );
1794                                                 cm->data[ 0 ] = atof( token );
1795                                         }
1796                                         
1797                                         /* color|rgb set|const ( X Y Z ) */
1798                                         else if( !Q_stricmp( token, "set" ) || !Q_stricmp( token, "const" ) )
1799                                         {
1800                                                 cm->type = CM_COLOR_SET;
1801                                                 Parse1DMatrixAppend( shaderText, 3, cm->data );
1802                                         }
1803                                         
1804                                         /* alpha scale A */
1805                                         else if( alpha && !Q_stricmp( token, "scale" ) )
1806                                         {
1807                                                 cm->type = CM_ALPHA_SCALE;
1808                                                 GetTokenAppend( shaderText, qfalse );
1809                                                 cm->data[ 0 ] = atof( token );
1810                                         }
1811                                         
1812                                         /* color|rgb scale ( X Y Z ) */
1813                                         else if( !Q_stricmp( token, "scale" ) )
1814                                         {
1815                                                 cm->type = CM_COLOR_SCALE;
1816                                                 Parse1DMatrixAppend( shaderText, 3, cm->data );
1817                                         }
1818                                         
1819                                         /* dotProduct ( X Y Z ) */
1820                                         else if( !Q_stricmp( token, "dotProduct" ) )
1821                                         {
1822                                                 cm->type = CM_COLOR_DOT_PRODUCT + alpha;
1823                                                 Parse1DMatrixAppend( shaderText, 3, cm->data );
1824                                         }
1825                                         
1826                                         /* dotProductScale ( X Y Z MIN MAX ) */
1827                                         else if( !Q_stricmp( token, "dotProductScale" ) )
1828                                         {
1829                                                 cm->type = CM_COLOR_DOT_PRODUCT_SCALE + alpha;
1830                                                 Parse1DMatrixAppend( shaderText, 5, cm->data );
1831                                         }
1832                                         
1833                                         /* dotProduct2 ( X Y Z ) */
1834                                         else if( !Q_stricmp( token, "dotProduct2" ) )
1835                                         {
1836                                                 cm->type = CM_COLOR_DOT_PRODUCT_2 + alpha;
1837                                                 Parse1DMatrixAppend( shaderText, 3, cm->data );
1838                                         }
1839                                         
1840                                         /* dotProduct2scale ( X Y Z MIN MAX ) */
1841                                         else if( !Q_stricmp( token, "dotProduct2scale" ) )
1842                                         {
1843                                                 cm->type = CM_COLOR_DOT_PRODUCT_2_SCALE + alpha;
1844                                                 Parse1DMatrixAppend( shaderText, 5, cm->data );
1845                                         }
1846                                         
1847                                         /* volume */
1848                                         else if( !Q_stricmp( token, "volume" ) )
1849                                         {
1850                                                 /* special stub mode for flagging volume brushes */
1851                                                 cm->type = CM_VOLUME;
1852                                         }
1853                                         
1854                                         /* unknown */
1855                                         else
1856                                                 Sys_Printf( "WARNING: Unknown colorMod method: %s\n", token );
1857                                 }
1858                                 
1859                                 /* ydnar: gs mods: q3map_tcMod <style> <parameters> */
1860                                 else if( !Q_stricmp( token, "q3map_tcMod" ) )
1861                                 {
1862                                         float   a, b;
1863                                         
1864                                         
1865                                         GetTokenAppend( shaderText, qfalse );
1866                                         
1867                                         /* q3map_tcMod [translate | shift | offset] <s> <t> */
1868                                         if( !Q_stricmp( token, "translate" ) || !Q_stricmp( token, "shift" ) || !Q_stricmp( token, "offset" ) )
1869                                         {
1870                                                 GetTokenAppend( shaderText, qfalse );
1871                                                 a = atof( token );
1872                                                 GetTokenAppend( shaderText, qfalse );
1873                                                 b = atof( token );
1874                                                 
1875                                                 TCModTranslate( si->mod, a, b );
1876                                         }
1877
1878                                         /* q3map_tcMod scale <s> <t> */
1879                                         else if( !Q_stricmp( token, "scale" ) )
1880                                         {
1881                                                 GetTokenAppend( shaderText, qfalse );
1882                                                 a = atof( token );
1883                                                 GetTokenAppend( shaderText, qfalse );
1884                                                 b = atof( token );
1885                                                 
1886                                                 TCModScale( si->mod, a, b );
1887                                         }
1888                                         
1889                                         /* q3map_tcMod rotate <s> <t> (fixme: make this communitive) */
1890                                         else if( !Q_stricmp( token, "rotate" ) )
1891                                         {
1892                                                 GetTokenAppend( shaderText, qfalse );
1893                                                 a = atof( token );
1894                                                 TCModRotate( si->mod, a );
1895                                         }
1896                                         else
1897                                                 Sys_Printf( "WARNING: Unknown q3map_tcMod method: %s\n", token );
1898                                 }
1899                                 
1900                                 /* q3map_fogDir (direction a fog shader fades from transparent to opaque) */
1901                                 else if( !Q_stricmp( token, "q3map_fogDir" ) )
1902                                 {
1903                                         Parse1DMatrixAppend( shaderText, 3, si->fogDir );
1904                                         VectorNormalize( si->fogDir, si->fogDir );
1905                                 }
1906                                 
1907                                 /* q3map_globaltexture */
1908                                 else if( !Q_stricmp( token, "q3map_globaltexture" )  )
1909                                         si->globalTexture = qtrue;
1910                                 
1911                                 /* ydnar: gs mods: q3map_nonplanar (make it a nonplanar merge candidate for meta surfaces) */
1912                                 else if( !Q_stricmp( token, "q3map_nonplanar" ) )
1913                                         si->nonplanar = qtrue;
1914                                 
1915                                 /* ydnar: gs mods: q3map_noclip (preserve original face winding, don't clip by bsp tree) */
1916                                 else if( !Q_stricmp( token, "q3map_noclip" ) )
1917                                         si->noClip = qtrue;
1918                                 
1919                                 /* q3map_notjunc */
1920                                 else if( !Q_stricmp( token, "q3map_notjunc" ) )
1921                                         si->notjunc = qtrue;
1922                                 
1923                                 /* q3map_nofog */
1924                                 else if( !Q_stricmp( token, "q3map_nofog" ) )
1925                                         si->noFog = qtrue;
1926                                 
1927                                 /* ydnar: gs mods: q3map_indexed (for explicit terrain-style indexed mapping) */
1928                                 else if( !Q_stricmp( token, "q3map_indexed" ) )
1929                                         si->indexed = qtrue;
1930                                 
1931                                 /* ydnar: q3map_invert (inverts a drawsurface's facing) */
1932                                 else if( !Q_stricmp( token, "q3map_invert" ) )
1933                                         si->invert = qtrue;
1934                                 
1935                                 /* ydnar: gs mods: q3map_lightmapMergable (ok to merge non-planar */
1936                                 else if( !Q_stricmp( token, "q3map_lightmapMergable" ) )
1937                                         si->lmMergable = qtrue;
1938                                 
1939                                 /* ydnar: q3map_nofast */
1940                                 else if( !Q_stricmp( token, "q3map_noFast" ) )
1941                                         si->noFast = qtrue;
1942                                 
1943                                 /* q3map_patchshadows */
1944                                 else if( !Q_stricmp( token, "q3map_patchShadows" ) )
1945                                         si->patchShadows = qtrue;
1946                                 
1947                                 /* q3map_vertexshadows */
1948                                 else if( !Q_stricmp( token, "q3map_vertexShadows" ) )
1949                                         si->vertexShadows = qtrue;      /* ydnar */
1950                                 
1951                                 /* q3map_novertexshadows */
1952                                 else if( !Q_stricmp( token, "q3map_noVertexShadows" ) )
1953                                         si->vertexShadows = qfalse;     /* ydnar */
1954                                 
1955                                 /* q3map_splotchfix (filter dark lightmap luxels on lightmapped models) */
1956                                 else if( !Q_stricmp( token, "q3map_splotchfix" ) )
1957                                         si->splotchFix = qtrue; /* ydnar */
1958                                 
1959                                 /* q3map_forcesunlight */
1960                                 else if( !Q_stricmp( token, "q3map_forceSunlight" ) )
1961                                         si->forceSunlight = qtrue;
1962                                 
1963                                 /* q3map_onlyvertexlighting (sof2) */
1964                                 else if( !Q_stricmp( token, "q3map_onlyVertexLighting" ) )
1965                                         ApplySurfaceParm( "pointlight", &si->contentFlags, &si->surfaceFlags, &si->compileFlags );
1966                                 
1967                                 /* q3map_material (sof2) */
1968                                 else if( !Q_stricmp( token, "q3map_material" ) )
1969                                 {
1970                                         GetTokenAppend( shaderText, qfalse );
1971                                         sprintf( temp, "*mat_%s", token );
1972                                         if( ApplySurfaceParm( temp, &si->contentFlags, &si->surfaceFlags, &si->compileFlags ) == qfalse )
1973                                                 Sys_Printf( "WARNING: Unknown material \"%s\"\n", token );
1974                                 }
1975                                 
1976                                 /* ydnar: q3map_clipmodel (autogenerate clip brushes for model triangles using this shader) */
1977                                 else if( !Q_stricmp( token, "q3map_clipmodel" )  )
1978                                         si->clipModel = qtrue;
1979                                 
1980                                 /* ydnar: q3map_styleMarker[2] */
1981                                 else if( !Q_stricmp( token, "q3map_styleMarker" ) )
1982                                         si->styleMarker = 1;
1983                                 else if( !Q_stricmp( token, "q3map_styleMarker2" ) )    /* uses depthFunc equal */
1984                                         si->styleMarker = 2;
1985                                 
1986                                 /* ydnar: default to searching for q3map_<surfaceparm> */
1987 #if 0
1988                                 else
1989                                 {
1990                                         Sys_FPrintf( SYS_VRB, "Attempting to match %s with a known surfaceparm\n", token );
1991                                         if( ApplySurfaceParm( &token[ 6 ], &si->contentFlags, &si->surfaceFlags, &si->compileFlags ) == qfalse )
1992                                                 Sys_Printf( "WARNING: Unknown q3map_* directive \"%s\"\n", token );
1993                                 }
1994 #endif
1995                         }
1996                         
1997                         
1998                         /* -----------------------------------------------------------------
1999                            skip
2000                            ----------------------------------------------------------------- */
2001                         
2002                         /* ignore all other tokens on the line */
2003                         while( TokenAvailable() && GetTokenAppend( shaderText, qfalse ) );
2004                 }                       
2005         }
2006 }
2007
2008
2009
2010 /*
2011 ParseCustomInfoParms() - rr2do2
2012 loads custom info parms file for mods
2013 */
2014
2015 static void ParseCustomInfoParms( void )
2016 {
2017         qboolean parsedContent, parsedSurface;
2018         
2019         
2020         /* file exists? */
2021         if( vfsGetFileCount( "scripts/custinfoparms.txt" ) == 0 )
2022                 return;
2023         
2024         /* load it */
2025         LoadScriptFile( "scripts/custinfoparms.txt", 0 );
2026         
2027         /* clear the array */
2028         memset( custSurfaceParms, 0, sizeof( custSurfaceParms ) );
2029         numCustSurfaceParms = 0;
2030         parsedContent = parsedSurface = qfalse;
2031         
2032         /* parse custom contentflags */
2033         MatchToken( "{" );
2034         while ( 1 )
2035         {
2036                 if ( !GetToken( qtrue ) )
2037                         break;
2038
2039                 if ( !strcmp( token, "}" ) ) {
2040                         parsedContent = qtrue;
2041                         break;
2042                 }
2043
2044                 custSurfaceParms[ numCustSurfaceParms ].name = safe_malloc( MAX_OS_PATH );
2045                 strcpy( custSurfaceParms[ numCustSurfaceParms ].name, token );
2046                 GetToken( qfalse );
2047                 sscanf( token, "%x", &custSurfaceParms[ numCustSurfaceParms ].contentFlags );
2048                 numCustSurfaceParms++;
2049         }
2050         
2051         /* any content? */
2052         if( !parsedContent )
2053         {
2054                 Sys_Printf( "WARNING: Couldn't find valid custom contentsflag section\n" );
2055                 return;
2056         }
2057         
2058         /* parse custom surfaceflags */
2059         MatchToken( "{" );
2060         while( 1 )
2061         {
2062                 if( !GetToken( qtrue ) )
2063                         break;
2064
2065                 if( !strcmp( token, "}" ) )
2066                 {
2067                         parsedSurface = qtrue;
2068                         break;
2069                 }
2070
2071                 custSurfaceParms[ numCustSurfaceParms ].name = safe_malloc( MAX_OS_PATH );
2072                 strcpy( custSurfaceParms[ numCustSurfaceParms ].name, token );
2073                 GetToken( qfalse );
2074                 sscanf( token, "%x", &custSurfaceParms[ numCustSurfaceParms ].surfaceFlags );
2075                 numCustSurfaceParms++;
2076         }
2077         
2078         /* any content? */
2079         if( !parsedContent )
2080                 Sys_Printf( "WARNING: Couldn't find valid custom surfaceflag section\n" );
2081 }
2082
2083         
2084
2085 /*
2086 LoadShaderInfo()
2087 the shaders are parsed out of shaderlist.txt from a main directory
2088 that is, if using -fs_game we ignore the shader scripts that might be in baseq3/
2089 on linux there's an additional twist, we actually merge the stuff from ~/.q3a/ and from the base dir
2090 */
2091
2092 #define MAX_SHADER_FILES        1024
2093
2094 void LoadShaderInfo( void )
2095 {
2096         int                             i, j, numShaderFiles, count;
2097         char                    filename[ 1024 ];
2098         char                    *shaderFiles[ MAX_SHADER_FILES ];
2099         
2100         
2101         /* rr2do2: parse custom infoparms first */
2102         if( useCustomInfoParms )
2103                 ParseCustomInfoParms();
2104         
2105         /* start with zero */
2106         numShaderFiles = 0;
2107         
2108         /* we can pile up several shader files, the one in baseq3 and ones in the mod dir or other spots */
2109         sprintf( filename, "%s/shaderlist.txt", game->shaderPath );
2110         count = vfsGetFileCount( filename );
2111         
2112         /* load them all */
2113         for( i = 0; i < count; i++ )
2114         {
2115                 /* load shader list */
2116                 sprintf( filename, "%s/shaderlist.txt", game->shaderPath );
2117                 LoadScriptFile( filename, i );
2118                 
2119                 /* parse it */
2120                 while( GetToken( qtrue ) )
2121                 {
2122                         /* check for duplicate entries */
2123                         for( j = 0; j < numShaderFiles; j++ )
2124                                 if( !strcmp( shaderFiles[ j ], token ) )
2125                                         break;
2126                         
2127                         /* test limit */
2128                         if( j >= MAX_SHADER_FILES )
2129                                 Error( "MAX_SHADER_FILES (%d) reached, trim your shaderlist.txt!", (int) MAX_SHADER_FILES );
2130                         
2131                         /* new shader file */
2132                         if( j == numShaderFiles )
2133                         {
2134                                 shaderFiles[ numShaderFiles ] = safe_malloc( MAX_OS_PATH );
2135                                 strcpy( shaderFiles[ numShaderFiles ], token );
2136                                 numShaderFiles++;
2137                         }
2138                 }
2139         }
2140         
2141         /* parse the shader files */
2142         for( i = 0; i < numShaderFiles; i++ )
2143         {
2144                 sprintf( filename, "%s/%s.shader", game->shaderPath, shaderFiles[ i ] );
2145                 ParseShaderFile( filename );
2146                 free( shaderFiles[ i ] );
2147         }
2148         
2149         /* emit some statistics */
2150         Sys_FPrintf( SYS_VRB, "%9d shaderInfo\n", numShaderInfo );
2151 }