//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield //Distributed under the terms of the GNU Library General Public License (LGPL) //as published by the Free Software Foundation. #ifndef OSG_BOUNDSCHECKING #define OSG_BOUNDSCHECKING 1 #include namespace osg { /** if value is greater than or equal to minValue do nothing - legal value, * otherwise clamp value to specified maximum value and return warning * with valueName specifying which variable was clamped.*/ template inline void clampGEQUAL(T& value,const T minValue,const char* valueName) { if (value inline void clampLEQUAL(T& value,const T maxValue,const char* valueName) { if (value>maxValue) { notify(WARN) << "Warning: "< inline void clampBetweenRange(T& value,const T minValue,const T maxValue,const char* valueName) { if (valuemaxValue) { notify(WARN) << "Warning: "< inline void clampArrayElementGEQUAL(A& value,unsigned int i,const T minValue,const char* valueName) { if (value[i] inline void clampArrayElementLEQUAL(A& value,unsigned int i,const T maxValue,const char* valueName) { if (value[i]>maxValue) { notify(WARN) << "Warning: "< inline void clampArrayElementBetweenRange(A& value,unsigned int i,const T minValue,const T maxValue,const char* valueName) { if (value[i]maxValue) { notify(WARN) << "Warning: "< inline void clampArrayElementsGEQUAL(A& value,unsigned int first,unsigned int last,const T minValue,const char* valueName) { for(unsigned int i=first;i<=last;++i) clampArrayElementGEQUAL(value,i,minValue,valueName); } /** if array elements are less than or equal to maxValue do nothing - legal value, * otherwise clamp value to specified maximum value and return warning * with valueName specifying which variable was clamped.*/ template inline void clampArrayElementsLEQUAL(A& value,unsigned int first,unsigned int last,const T maxValue,const char* valueName) { for(unsigned int i=first;i<=last;++i) clampArrayElementLEQUAL(value,i,maxValue,valueName); } /** if array elements are between or equal to minValue and maxValue do nothing - legal value, * otherwise clamp value to specified to range and return warning * with valueName specifying which variable was clamped. Equivalent to * calling clampGEQUAL(value,minValue,valueName); clampLEQUAL(value,maxValue,valueName); */ template inline void clampArrayElementsBetweenRange(A& value,unsigned int first,unsigned int last,const T minValue,const T maxValue,const char* valueName) { for(unsigned int i=first;i<=last;++i) clampArrayElementBetweenRange(value,i,minValue,maxValue,valueName); } /** if array4 elements are greater than or equal to minValue do nothing - legal value, * otherwise clamp value to specified maximum value and return warning * with valueName specifying which variable was clamped.*/ template inline void clampArray3GEQUAL(A& value,const T minValue,const char* valueName) { clampArrayElementsGEQUAL(value,0u,2u,minValue,valueName); } /** if array4 elements are is less than or equal to maxValue do nothing - legal value, * otherwise clamp value to specified maximum value and return warning * with valueName specifying which variable was clamped.*/ template inline void clampArray3LEQUAL(A& value,const T maxValue,const char* valueName) { clampArrayElementsLEQUAL(value,0u,2u,maxValue,valueName); } /** if array4 elements are between or equal to minValue and maxValue do nothing - legal value, * otherwise clamp value to specified to range and return warning * with valueName specifying which variable was clamped. Equivilant to * calling clampGEQUAL(value,minValue,valueName); clampLEQUAL(value,maxValue,valueName); */ template inline void clampArray3BetweenRange(A& value,const T minValue,const T maxValue,const char* valueName) { clampArrayElementsBetweenRange(value,0u,2u,minValue,maxValue,valueName); } /** if array4 elements are greater than or equal to minValue do nothing - legal value, * otherwise clamp value to specified maximum value and return warning * with valueName specifying which variable was clamped.*/ template inline void clampArray4GEQUAL(A& value,const T minValue,const char* valueName) { clampArrayElementsGEQUAL(value,0u,3u,minValue,valueName); } /** if array4 elements are is less than or equal to maxValue do nothing - legal value, * otherwise clamp value to specified maximum value and return warning * with valueName specifying which variable was clamped.*/ template inline void clampArray4LEQUAL(A& value,unsigned int first,unsigned int last,const T maxValue,const char* valueName) { clampArrayElementsLEQUAL(value,0u,3u,maxValue,valueName); } /** if array4 elements are between or equal to minValue and maxValue do nothing - legal value, * otherwise clamp value to specified to range and return warning * with valueName specifying which variable was clamped. Equivilant to * calling clampGEQUAL(value,minValue,valueName); clampLEQUAL(value,maxValue,valueName); */ template inline void clampArray4BetweenRange(A& value,const T minValue,const T maxValue,const char* valueName) { clampArrayElementsBetweenRange(value,0u,3u,minValue,maxValue,valueName); } } #endif