Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

220 righe
6.3 KiB

  1. /*
  2. Open Asset Import Library (assimp)
  3. ----------------------------------------------------------------------
  4. Copyright (c) 2006-2012, assimp team
  5. All rights reserved.
  6. Redistribution and use of this software in source and binary forms,
  7. with or without modification, are permitted provided that the
  8. following conditions are met:
  9. * Redistributions of source code must retain the above
  10. copyright notice, this list of conditions and the
  11. following disclaimer.
  12. * Redistributions in binary form must reproduce the above
  13. copyright notice, this list of conditions and the
  14. following disclaimer in the documentation and/or other
  15. materials provided with the distribution.
  16. * Neither the name of the assimp team, nor the names of its
  17. contributors may be used to endorse or promote products
  18. derived from this software without specific prior
  19. written permission of the assimp team.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. ----------------------------------------------------------------------
  32. */
  33. /** @file Definition of platform independent string workers:
  34. ASSIMP_itoa10
  35. ASSIMP_stricmp
  36. ASSIMP_strincmp
  37. These functions are not consistently available on all platforms,
  38. or the provided implementations behave too differently.
  39. */
  40. #ifndef INCLUDED_AI_STRING_WORKERS_H
  41. #define INCLUDED_AI_STRING_WORKERS_H
  42. #include "../include/assimp/ai_assert.h"
  43. namespace Assimp {
  44. // -------------------------------------------------------------------------------
  45. /** @brief itoa with a fixed base 10
  46. * 'itoa' is not consistently available on all platforms so it is quite useful
  47. * to have a small replacement function here. No need to use a full sprintf()
  48. * if we just want to print a number ...
  49. * @param out Output buffer
  50. * @param max Maximum number of characters to be written, including '\0'.
  51. * This parameter may not be 0.
  52. * @param number Number to be written
  53. * @return Length of the output string, excluding the '\0'
  54. */
  55. inline unsigned int ASSIMP_itoa10( char* out, unsigned int max, int32_t number)
  56. {
  57. ai_assert(NULL != out);
  58. // write the unary minus to indicate we have a negative number
  59. unsigned int written = 1u;
  60. if (number < 0 && written < max) {
  61. *out++ = '-';
  62. ++written;
  63. number = -number;
  64. }
  65. // We begin with the largest number that is not zero.
  66. int32_t cur = 1000000000; // 2147483648
  67. bool mustPrint = false;
  68. while (written < max) {
  69. const unsigned int digit = number / cur;
  70. if (mustPrint || digit > 0 || 1 == cur) {
  71. // print all future zeroes from now
  72. mustPrint = true;
  73. *out++ = '0'+static_cast<char>(digit);
  74. ++written;
  75. number -= digit*cur;
  76. if (1 == cur) {
  77. break;
  78. }
  79. }
  80. cur /= 10;
  81. }
  82. // append a terminal zero
  83. *out++ = '\0';
  84. return written-1;
  85. }
  86. // -------------------------------------------------------------------------------
  87. /** @brief itoa with a fixed base 10 (Secure template overload)
  88. * The compiler should choose this function if he or she is able to determine the
  89. * size of the array automatically.
  90. */
  91. template <size_t length>
  92. inline unsigned int ASSIMP_itoa10( char(& out)[length], int32_t number)
  93. {
  94. return ASSIMP_itoa10(out,length,number);
  95. }
  96. // -------------------------------------------------------------------------------
  97. /** @brief Helper function to do platform independent string comparison.
  98. *
  99. * This is required since stricmp() is not consistently available on
  100. * all platforms. Some platforms use the '_' prefix, others don't even
  101. * have such a function.
  102. *
  103. * @param s1 First input string
  104. * @param s2 Second input string
  105. * @return 0 if the given strings are identical
  106. */
  107. inline int ASSIMP_stricmp(const char *s1, const char *s2)
  108. {
  109. ai_assert(NULL != s1 && NULL != s2);
  110. #if (defined _MSC_VER)
  111. return ::_stricmp(s1,s2);
  112. #elif defined( __GNUC__ )
  113. return ::strcasecmp(s1,s2);
  114. #else
  115. register char c1, c2;
  116. do {
  117. c1 = tolower(*s1++);
  118. c2 = tolower(*s2++);
  119. }
  120. while ( c1 && (c1 == c2) );
  121. return c1 - c2;
  122. #endif
  123. }
  124. // -------------------------------------------------------------------------------
  125. /** @brief Case independent comparison of two std::strings
  126. *
  127. * @param a First string
  128. * @param b Second string
  129. * @return 0 if a == b
  130. */
  131. inline int ASSIMP_stricmp(const std::string& a, const std::string& b)
  132. {
  133. register int i = (int)b.length()-(int)a.length();
  134. return (i ? i : ASSIMP_stricmp(a.c_str(),b.c_str()));
  135. }
  136. // -------------------------------------------------------------------------------
  137. /** @brief Helper function to do platform independent string comparison.
  138. *
  139. * This is required since strincmp() is not consistently available on
  140. * all platforms. Some platforms use the '_' prefix, others don't even
  141. * have such a function.
  142. *
  143. * @param s1 First input string
  144. * @param s2 Second input string
  145. * @param n Macimum number of characters to compare
  146. * @return 0 if the given strings are identical
  147. */
  148. inline int ASSIMP_strincmp(const char *s1, const char *s2, unsigned int n)
  149. {
  150. ai_assert(NULL != s1 && NULL != s2);
  151. if (!n)return 0;
  152. #if (defined _MSC_VER)
  153. return ::_strnicmp(s1,s2,n);
  154. #elif defined( __GNUC__ )
  155. return ::strncasecmp(s1,s2, n);
  156. #else
  157. register char c1, c2;
  158. unsigned int p = 0;
  159. do
  160. {
  161. if (p++ >= n)return 0;
  162. c1 = tolower(*s1++);
  163. c2 = tolower(*s2++);
  164. }
  165. while ( c1 && (c1 == c2) );
  166. return c1 - c2;
  167. #endif
  168. }
  169. // -------------------------------------------------------------------------------
  170. /** @brief Evaluates an integer power
  171. *
  172. * todo: move somewhere where it fits better in than here
  173. */
  174. inline unsigned int integer_pow (unsigned int base, unsigned int power)
  175. {
  176. unsigned int res = 1;
  177. for (unsigned int i = 0; i < power;++i)
  178. res *= base;
  179. return res;
  180. }
  181. } // end of namespace
  182. #endif // ! AI_STRINGCOMPARISON_H_INC