/*----------------------------------------------------------------------------------------------- The MIT License (MIT) Copyright (c) 2014-2015 Kim Kulling Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -----------------------------------------------------------------------------------------------*/ #pragma once #include BEGIN_ODDLPARSER_NS template inline bool isUpperCase( T in ) { return ( in >= 'A' && in <= 'Z' ); } template inline bool isLowerCase( T in ) { return ( in >= 'a' && in <= 'z' ); } template inline bool isSpace( const T in ) { return ( ' ' == in || '\t' == in ); } template inline bool isNewLine( const T in ) { return ( '\n' == in || ( '\r' == in ) ); } template inline bool isSeparator( T in ) { if( isSpace( in ) || ',' == in || '{' == in || '}' == in || '[' == in || '(' == in || ')' == in ) { return true; } return false; } template inline bool isNumeric( const T in ) { return ( in >= '0' && in <= '9' ); } template inline bool isNotEndOfToken( T *in, T *end ) { return ( '}' != *in && ',' != *in && !isSpace( *in ) && ')' != *in && in != end ); } template inline bool isInteger( T *in, T *end ) { if( in != end ) { if( *in == '-' ) { ++in; } } bool result( false ); while( isNotEndOfToken( in, end ) ) { result = isNumeric( *in ); if( !result ) { break; } ++in; } return result; } template inline bool isFloat( T *in, T *end ) { if( in != end ) { if( *in == '-' ) { ++in; } } // check for <1>.0f bool result( false ); while( isNotEndOfToken( in, end ) ) { if( *in == '.' ) { result = true; break; } result = isNumeric( *in ); if( !result ) { return false; } ++in; } // check for 1<.>0f if( *in == '.' ) { ++in; } else { return false; } // check for 1.<0>f while( isNotEndOfToken( in, end ) ) { result = isNumeric( *in ); if( !result ) { return false; } ++in; } return result; } template inline bool isCharacter( const T in ) { return ( ( in >= 'a' && in <= 'z' ) || ( in >= 'A' && in <= 'Z' ) ); } template inline bool isStringLiteral( const T in ) { return ( in == '\"' ); } template inline bool isHexLiteral( T *in, T *end ) { if( *in == '0' ) { if( in + 1 != end ) { if( *( in + 1 ) == 'x' || *( in + 1 ) == 'X' ) { return true; } } } return false; } template inline bool isReference( T *in, T *end ) { if( *in == 'r' ) { if( *(in+1) == 'e' ) { if( *(in+2) == 'f' ) { if( ( in + 2 ) != end ) { return true; } } } } return false; } template inline bool isEndofLine( const T in ) { return ( '\n' == in ); } template inline static T *getNextSeparator( T *in, T *end ) { while( !isSeparator( *in ) || in == end ) { ++in; } return in; } static const int ErrorHex2Decimal = 9999999; inline int hex2Decimal( char in ) { if( isNumeric( in ) ) { return ( in - 48 ); } char hexCodeLower( 'a' ), hexCodeUpper( 'A' ); for( int i = 0; i<16; i++ ) { if( in == hexCodeLower + i || in == hexCodeUpper + i ) { return ( i+10 ); } } return ErrorHex2Decimal; } template inline bool isComment( T *in, T *end ) { if ( *in=='/' ) { if ( in+1!=end ) { if ( *( in+1 )=='/' ) { char *drive( ( in+2 ) ); if ( (isUpperCase( *drive )||isLowerCase( *drive ))&&*( drive+1 )=='/' ) { return false; } else { return true; } } } } return false; } template inline bool isCommentOpenTag(T *in, T *end ) { if (*in == '/') { if (in + 1 != end) { if (*(in + 1) == '*') { return true; } } } return false; } template inline bool isCommentCloseTag(T *in, T *end) { if (*in == '*') { if (in + 1 != end) { if (*(in + 1) == '/') { return true; } } } return false; } END_ODDLPARSER_NS