OGRE
1.11.6
Object-Oriented Graphics Rendering Engine
|
This is a simplistic C/C++-like preprocessor. More...
#include <OgreGLSLPreprocessor.h>
Public Types | |
typedef void(* | ErrorHandlerFunc) (void *iData, int iLine, const char *iError, const char *iToken, size_t iTokenLen) |
An error handler function type. More... | |
Public Member Functions | |
CPreprocessor () | |
Create an empty preprocessor object. More... | |
virtual | ~CPreprocessor () |
Destroy the preprocessor object. More... | |
void | Define (const char *iMacroName, size_t iMacroNameLen, const char *iMacroValue, size_t iMacroValueLen) |
Define a macro without parameters. More... | |
void | Define (const char *iMacroName, size_t iMacroNameLen, long iMacroValue) |
Define a numerical macro. More... | |
char * | Parse (const char *iSource, size_t iLength, size_t &oLength) |
Parse the input string and return a newly-allocated output string. More... | |
bool | Undef (const char *iMacroName, size_t iMacroNameLen) |
Undefine a macro. More... | |
Public Attributes | |
void * | ErrorData |
User-specific storage, passed to Error() More... | |
Static Public Attributes | |
static ErrorHandlerFunc | ErrorHandler |
A pointer to the preprocessor's error handler. More... | |
Friends | |
class | CPreprocessor::Macro |
This is a simplistic C/C++-like preprocessor.
It takes an non-zero-terminated string on input and outputs a non-zero-terminated string buffer.
This preprocessor was designed specifically for GLSL shaders, so if you want to use it for other purposes you might want to check if the feature set it provides is enough for you.
Here's a list of supported features:
#define:
Parametrized and non-parametrized macros. Invoking a macro with less arguments than it takes assignes empty values to missing arguments.#undef:
Forget defined macros#ifdef
/ #ifndef
/ #else
/ #endif:
Conditional suppression of parts of code.#if:
Supports numeric expression of any complexity, also supports the defined() pseudo-function. typedef void(* Ogre::CPreprocessor::ErrorHandlerFunc) (void *iData, int iLine, const char *iError, const char *iToken, size_t iTokenLen) |
An error handler function type.
The default implementation just drops a note to stderr and then the parser ends, returning NULL.
iData | User-specific pointer from the corresponding CPreprocessor object. |
iLine | The line at which the error happened. |
iError | The error string. |
iToken | If not NULL contains the erroneous token |
iTokenLen | The length of iToken. iToken is never zero-terminated! |
|
inline |
Create an empty preprocessor object.
References Define(), Undef(), and ~CPreprocessor().
|
virtual |
Destroy the preprocessor object.
Referenced by CPreprocessor().
void Ogre::CPreprocessor::Define | ( | const char * | iMacroName, |
size_t | iMacroNameLen, | ||
const char * | iMacroValue, | ||
size_t | iMacroValueLen | ||
) |
Define a macro without parameters.
iMacroName | The name of the defined macro |
iMacroNameLen | The length of the name of the defined macro |
iMacroValue | The value of the defined macro |
iMacroValueLen | The length of the value of the defined macro |
Referenced by CPreprocessor().
void Ogre::CPreprocessor::Define | ( | const char * | iMacroName, |
size_t | iMacroNameLen, | ||
long | iMacroValue | ||
) |
Define a numerical macro.
iMacroName | The name of the defined macro |
iMacroNameLen | The length of the name of the defined macro |
iMacroValue | The value of the defined macro |
bool Ogre::CPreprocessor::Undef | ( | const char * | iMacroName, |
size_t | iMacroNameLen | ||
) |
Undefine a macro.
iMacroName | The name of the macro to undefine |
iMacroNameLen | The length of the name of the macro to undefine |
Referenced by CPreprocessor().
char* Ogre::CPreprocessor::Parse | ( | const char * | iSource, |
size_t | iLength, | ||
size_t & | oLength | ||
) |
Parse the input string and return a newly-allocated output string.
iSource | The source text |
iLength | The length of the source text in characters |
oLength | The length of the output string. |
|
friend |
|
static |
A pointer to the preprocessor's error handler.
You can assign the address of your own function to this variable and implement your own error handling (e.g. throwing an exception etc).
void* Ogre::CPreprocessor::ErrorData |
User-specific storage, passed to Error()