You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.6 KiB
113 lines
2.6 KiB
5 years ago
|
#include "shaderlib/cshader.h"
|
||
|
class eyes_flashlight_ps30_Static_Index
|
||
|
{
|
||
|
private:
|
||
|
int m_nFLASHLIGHTDEPTHFILTERMODE;
|
||
|
#ifdef _DEBUG
|
||
|
bool m_bFLASHLIGHTDEPTHFILTERMODE;
|
||
|
#endif
|
||
|
public:
|
||
|
void SetFLASHLIGHTDEPTHFILTERMODE( int i )
|
||
|
{
|
||
|
Assert( i >= 0 && i <= 2 );
|
||
|
m_nFLASHLIGHTDEPTHFILTERMODE = i;
|
||
|
#ifdef _DEBUG
|
||
|
m_bFLASHLIGHTDEPTHFILTERMODE = true;
|
||
|
#endif
|
||
|
}
|
||
|
void SetFLASHLIGHTDEPTHFILTERMODE( bool i )
|
||
|
{
|
||
|
m_nFLASHLIGHTDEPTHFILTERMODE = i ? 1 : 0;
|
||
|
#ifdef _DEBUG
|
||
|
m_bFLASHLIGHTDEPTHFILTERMODE = true;
|
||
|
#endif
|
||
|
}
|
||
|
public:
|
||
|
eyes_flashlight_ps30_Static_Index( )
|
||
|
{
|
||
|
#ifdef _DEBUG
|
||
|
m_bFLASHLIGHTDEPTHFILTERMODE = false;
|
||
|
#endif // _DEBUG
|
||
|
m_nFLASHLIGHTDEPTHFILTERMODE = 0;
|
||
|
}
|
||
|
int GetIndex()
|
||
|
{
|
||
|
// Asserts to make sure that we aren't using any skipped combinations.
|
||
|
// Asserts to make sure that we are setting all of the combination vars.
|
||
|
#ifdef _DEBUG
|
||
|
bool bAllStaticVarsDefined = m_bFLASHLIGHTDEPTHFILTERMODE;
|
||
|
Assert( bAllStaticVarsDefined );
|
||
|
#endif // _DEBUG
|
||
|
return ( 4 * m_nFLASHLIGHTDEPTHFILTERMODE ) + 0;
|
||
|
}
|
||
|
};
|
||
|
#define shaderStaticTest_eyes_flashlight_ps30 psh_forgot_to_set_static_FLASHLIGHTDEPTHFILTERMODE + 0
|
||
|
class eyes_flashlight_ps30_Dynamic_Index
|
||
|
{
|
||
|
private:
|
||
|
int m_nPIXELFOGTYPE;
|
||
|
#ifdef _DEBUG
|
||
|
bool m_bPIXELFOGTYPE;
|
||
|
#endif
|
||
|
public:
|
||
|
void SetPIXELFOGTYPE( int i )
|
||
|
{
|
||
|
Assert( i >= 0 && i <= 1 );
|
||
|
m_nPIXELFOGTYPE = i;
|
||
|
#ifdef _DEBUG
|
||
|
m_bPIXELFOGTYPE = true;
|
||
|
#endif
|
||
|
}
|
||
|
void SetPIXELFOGTYPE( bool i )
|
||
|
{
|
||
|
m_nPIXELFOGTYPE = i ? 1 : 0;
|
||
|
#ifdef _DEBUG
|
||
|
m_bPIXELFOGTYPE = true;
|
||
|
#endif
|
||
|
}
|
||
|
private:
|
||
|
int m_nFLASHLIGHTSHADOWS;
|
||
|
#ifdef _DEBUG
|
||
|
bool m_bFLASHLIGHTSHADOWS;
|
||
|
#endif
|
||
|
public:
|
||
|
void SetFLASHLIGHTSHADOWS( int i )
|
||
|
{
|
||
|
Assert( i >= 0 && i <= 1 );
|
||
|
m_nFLASHLIGHTSHADOWS = i;
|
||
|
#ifdef _DEBUG
|
||
|
m_bFLASHLIGHTSHADOWS = true;
|
||
|
#endif
|
||
|
}
|
||
|
void SetFLASHLIGHTSHADOWS( bool i )
|
||
|
{
|
||
|
m_nFLASHLIGHTSHADOWS = i ? 1 : 0;
|
||
|
#ifdef _DEBUG
|
||
|
m_bFLASHLIGHTSHADOWS = true;
|
||
|
#endif
|
||
|
}
|
||
|
public:
|
||
|
eyes_flashlight_ps30_Dynamic_Index()
|
||
|
{
|
||
|
#ifdef _DEBUG
|
||
|
m_bPIXELFOGTYPE = false;
|
||
|
#endif // _DEBUG
|
||
|
m_nPIXELFOGTYPE = 0;
|
||
|
#ifdef _DEBUG
|
||
|
m_bFLASHLIGHTSHADOWS = false;
|
||
|
#endif // _DEBUG
|
||
|
m_nFLASHLIGHTSHADOWS = 0;
|
||
|
}
|
||
|
int GetIndex()
|
||
|
{
|
||
|
// Asserts to make sure that we aren't using any skipped combinations.
|
||
|
// Asserts to make sure that we are setting all of the combination vars.
|
||
|
#ifdef _DEBUG
|
||
|
bool bAllDynamicVarsDefined = m_bPIXELFOGTYPE && m_bFLASHLIGHTSHADOWS;
|
||
|
Assert( bAllDynamicVarsDefined );
|
||
|
#endif // _DEBUG
|
||
|
return ( 1 * m_nPIXELFOGTYPE ) + ( 2 * m_nFLASHLIGHTSHADOWS ) + 0;
|
||
|
}
|
||
|
};
|
||
|
#define shaderDynamicTest_eyes_flashlight_ps30 psh_forgot_to_set_dynamic_PIXELFOGTYPE + psh_forgot_to_set_dynamic_FLASHLIGHTSHADOWS + 0
|