1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
//========= Copyright Valve Corporation, All rights reserved. ============//
#include <windows.h>
#include "materialsystem/imaterialproxyfactory.h"
#include "materialsystem/imaterialvar.h"
#include "materialsystem/imaterialproxy.h"
class C_BaseEntity;
// Copied and bastardized a few material proxy classes from the TF client dll. The purpose here is
// to make TF materials for paintable items show the default paint color (using the SelectFirstIfNotZero proxy)
// and to completely hide the burn detail texture (fake BurnLevel proxy).
// Implemented a lame material proxy factory that only knows about these two proxies.
//-----------------------------------------------------------------------------
// Helper class to deal with floating point inputs
//-----------------------------------------------------------------------------
class CFloatInput
{
public:
bool Init( IMaterial *pMaterial, KeyValues *pKeyValues, const char *pKeyName, float flDefault = 0.0f );
float GetFloat() const;
private:
float m_flValue;
IMaterialVar *m_pFloatVar;
int m_FloatVecComp;
};
bool CFloatInput::Init( IMaterial *pMaterial, KeyValues *pKeyValues, const char *pKeyName, float flDefault )
{
m_pFloatVar = NULL;
KeyValues *pSection = pKeyValues->FindKey( pKeyName );
if (pSection)
{
if (pSection->GetDataType() == KeyValues::TYPE_STRING)
{
const char *pVarName = pSection->GetString();
// Look for numbers...
float flValue;
int nCount = sscanf( pVarName, "%f", &flValue );
if (nCount == 1)
{
m_flValue = flValue;
return true;
}
// Look for array specification...
char pTemp[256];
if (strchr(pVarName, '['))
{
// strip off the array...
Q_strncpy( pTemp, pVarName, 256 );
char *pArray = strchr( pTemp, '[' );
*pArray++ = 0;
char* pIEnd;
m_FloatVecComp = strtol( pArray, &pIEnd, 10 );
// Use the version without the array...
pVarName = pTemp;
}
else
{
m_FloatVecComp = -1;
}
bool bFoundVar;
m_pFloatVar = pMaterial->FindVar( pVarName, &bFoundVar, true );
if (!bFoundVar)
return false;
}
else
{
m_flValue = pSection->GetFloat();
}
}
else
{
m_flValue = flDefault;
}
return true;
}
float CFloatInput::GetFloat() const
{
if (!m_pFloatVar)
return m_flValue;
if( m_FloatVecComp < 0 )
return m_pFloatVar->GetFloatValue();
int iVecSize = m_pFloatVar->VectorSize();
if ( m_FloatVecComp >= iVecSize )
return 0;
float v[4];
m_pFloatVar->GetVecValue( v, iVecSize );
return v[m_FloatVecComp];
}
//-----------------------------------------------------------------------------
//
// Result proxy; a result (with vector friendliness)
//
//-----------------------------------------------------------------------------
class CResultProxy : public IMaterialProxy
{
public:
CResultProxy();
virtual ~CResultProxy();
virtual bool Init( IMaterial *pMaterial, KeyValues *pKeyValues );
virtual void Release( void ) { delete this; }
virtual IMaterial *GetMaterial();
protected:
C_BaseEntity *BindArgToEntity( void *pArg );
void SetFloatResult( float result );
IMaterialVar* m_pResult;
int m_ResultVecComp;
};
CResultProxy::CResultProxy() : m_pResult(0)
{
}
CResultProxy::~CResultProxy()
{
}
bool CResultProxy::Init( IMaterial *pMaterial, KeyValues *pKeyValues )
{
char const* pResult = pKeyValues->GetString( "resultVar" );
if( !pResult )
return false;
// Look for array specification...
char pTemp[256];
if (strchr(pResult, '['))
{
// strip off the array...
Q_strncpy( pTemp, pResult, 256 );
char *pArray = strchr( pTemp, '[' );
*pArray++ = 0;
char* pIEnd;
m_ResultVecComp = strtol( pArray, &pIEnd, 10 );
// Use the version without the array...
pResult = pTemp;
}
else
{
m_ResultVecComp = -1;
}
bool foundVar;
m_pResult = pMaterial->FindVar( pResult, &foundVar, true );
if( !foundVar )
return false;
return true;
}
//-----------------------------------------------------------------------------
// A little code to allow us to set single components of vectors
//-----------------------------------------------------------------------------
void CResultProxy::SetFloatResult( float result )
{
if (m_pResult->GetType() == MATERIAL_VAR_TYPE_VECTOR)
{
if ( m_ResultVecComp >= 0 )
{
m_pResult->SetVecComponentValue( result, m_ResultVecComp );
}
else
{
float v[4];
int vecSize = m_pResult->VectorSize();
for (int i = 0; i < vecSize; ++i)
v[i] = result;
m_pResult->SetVecValue( v, vecSize );
}
}
else
{
m_pResult->SetFloatValue( result );
}
}
C_BaseEntity *CResultProxy::BindArgToEntity( void *pArg )
{
return NULL;
/*
IClientRenderable *pRend = (IClientRenderable *)pArg;
return pRend->GetIClientUnknown()->GetBaseEntity();
*/
}
IMaterial *CResultProxy::GetMaterial()
{
return m_pResult->GetOwningMaterial();
}
//-----------------------------------------------------------------------------
//
// Base functional proxy; two sources (one is optional) and a result
//
//-----------------------------------------------------------------------------
class CFunctionProxy : public CResultProxy
{
public:
CFunctionProxy();
virtual ~CFunctionProxy();
virtual bool Init( IMaterial *pMaterial, KeyValues *pKeyValues );
protected:
void ComputeResultType( MaterialVarType_t& resultType, int& vecSize );
IMaterialVar* m_pSrc1;
IMaterialVar* m_pSrc2;
};
CFunctionProxy::CFunctionProxy() : m_pSrc1(0), m_pSrc2(0)
{
}
CFunctionProxy::~CFunctionProxy()
{
}
bool CFunctionProxy::Init( IMaterial *pMaterial, KeyValues *pKeyValues )
{
if (!CResultProxy::Init( pMaterial, pKeyValues ))
return false;
char const* pSrcVar1 = pKeyValues->GetString( "srcVar1" );
if( !pSrcVar1 )
return false;
bool foundVar;
m_pSrc1 = pMaterial->FindVar( pSrcVar1, &foundVar, true );
if( !foundVar )
return false;
// Source 2 is optional, some math ops may be single-input
char const* pSrcVar2 = pKeyValues->GetString( "srcVar2" );
if( pSrcVar2 && (*pSrcVar2) )
{
m_pSrc2 = pMaterial->FindVar( pSrcVar2, &foundVar, true );
if( !foundVar )
return false;
}
else
{
m_pSrc2 = 0;
}
return true;
}
void CFunctionProxy::ComputeResultType( MaterialVarType_t& resultType, int& vecSize )
{
// Feh, this is ugly. Basically, don't change the result type
// unless it's undefined.
resultType = m_pResult->GetType();
if (resultType == MATERIAL_VAR_TYPE_VECTOR)
{
if (m_ResultVecComp >= 0)
resultType = MATERIAL_VAR_TYPE_FLOAT;
vecSize = m_pResult->VectorSize();
}
else if (resultType == MATERIAL_VAR_TYPE_UNDEFINED)
{
resultType = m_pSrc1->GetType();
if (resultType == MATERIAL_VAR_TYPE_VECTOR)
{
vecSize = m_pSrc1->VectorSize();
}
else if ((resultType == MATERIAL_VAR_TYPE_UNDEFINED) && m_pSrc2)
{
resultType = m_pSrc2->GetType();
if (resultType == MATERIAL_VAR_TYPE_VECTOR)
{
vecSize = m_pSrc2->VectorSize();
}
}
}
}
class CFakeBurnLevelProxy : public CResultProxy
{
public:
virtual void OnBind( void *pC_BaseEntity )
{
// Slam burn level to 0 to avoid the burn detail texture showing through in modelbrowser.
Assert( m_pResult );
if ( m_pResult )
{
m_pResult->SetFloatValue( 0.0f );
}
}
};
//-----------------------------------------------------------------------------
// Selects the first var value if it's non-zero, otherwise goes with the second
//-----------------------------------------------------------------------------
class CSelectFirstIfNonZeroProxy : public CFunctionProxy
{
public:
virtual bool Init( IMaterial *pMaterial, KeyValues *pKeyValues );
virtual void OnBind( void *pC_BaseEntity );
};
bool CSelectFirstIfNonZeroProxy::Init( IMaterial *pMaterial, KeyValues *pKeyValues )
{
// Requires 2 args..
bool ok = CFunctionProxy::Init( pMaterial, pKeyValues );
ok = ok && m_pSrc2;
return ok;
}
void CSelectFirstIfNonZeroProxy::OnBind( void *pC_BaseEntity )
{
Assert( m_pSrc1 && m_pSrc2 && m_pResult );
MaterialVarType_t resultType;
int vecSize;
ComputeResultType( resultType, vecSize );
switch( resultType )
{
case MATERIAL_VAR_TYPE_VECTOR:
{
Vector a, b;
m_pSrc1->GetVecValue( a.Base(), vecSize );
m_pSrc2->GetVecValue( b.Base(), vecSize );
if ( !a.IsZero() )
{
m_pResult->SetVecValue( a.Base(), vecSize );
}
else
{
m_pResult->SetVecValue( b.Base(), vecSize );
}
}
break;
case MATERIAL_VAR_TYPE_FLOAT:
if ( m_pSrc1->GetFloatValue() )
{
SetFloatResult( m_pSrc1->GetFloatValue() );
}
else
{
SetFloatResult( m_pSrc2->GetFloatValue() );
}
break;
case MATERIAL_VAR_TYPE_INT:
if ( m_pSrc1->GetIntValue() )
{
m_pResult->SetFloatValue( m_pSrc1->GetIntValue() );
}
else
{
m_pResult->SetFloatValue( m_pSrc2->GetIntValue() );
}
break;
}
}
class CModelBrowserMaterialProxyFactory : public IMaterialProxyFactory
{
public:
virtual IMaterialProxy *CreateProxy( const char *proxyName )
{
if ( V_stricmp( proxyName, "SelectFirstIfNonZero" ) == 0 )
{
return new CSelectFirstIfNonZeroProxy;
}
else if ( V_stricmp( proxyName, "BurnLevel" ) == 0 )
{
return new CFakeBurnLevelProxy;
}
return NULL;
}
virtual void DeleteProxy( IMaterialProxy *pProxy )
{
if ( pProxy )
{
pProxy->Release();
}
}
};
|