u64.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file u64.cpp
  3.  * @brief Utilities to deal with U64s.
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "u64.h"
  34. U64 str_to_U64(const std::string& str)
  35. {
  36. U64 result = 0;
  37. const char *aptr = strpbrk(str.c_str(),"0123456789");
  38. if (!aptr)
  39. {
  40. llwarns << "str_to_U64: Bad string to U64 conversion attempt: formatn" << llendl;
  41. }
  42. else
  43. {
  44. while ((*aptr >= '0') && (*aptr <= '9'))
  45. {
  46. result = result*10 + (*aptr++ - '0');
  47. }
  48. }
  49. return (result);
  50. }
  51. std::string U64_to_str(U64 value) 
  52. {
  53. std::string res;
  54. U32 part1,part2,part3;
  55. part3 = (U32)(value % (U64)10000000);
  56. value /= 10000000;
  57. part2 = (U32)(value % (U64)10000000);
  58. value /= 10000000;
  59. part1 = (U32)(value % (U64)10000000);
  60. // three cases to avoid leading zeroes unless necessary
  61. if (part1)
  62. {
  63. res = llformat("%u%07u%07u",part1,part2,part3);
  64. }
  65. else if (part2)
  66. {
  67. res = llformat("%u%07u",part2,part3);
  68. }
  69. else
  70. {
  71. res = llformat("%u",part3);
  72. }
  73. return res;
  74. char* U64_to_str(U64 value, char* result, S32 result_size) 
  75. {
  76. std::string res = U64_to_str(value);
  77. LLStringUtil::copy(result, res.c_str(), result_size);
  78. return result;
  79. }
  80. F64 U64_to_F64(const U64 value)
  81. {
  82. S64 top_bits = (S64)(value >> 1);
  83. F64 result = (F64)top_bits;
  84. result *= 2.f;
  85. result += (U32)(value & 0x01);
  86. return result;
  87. }
  88. U64 llstrtou64(const char* str, char** end, S32 base)
  89. {
  90. #ifdef LL_WINDOWS
  91. return _strtoui64(str,end,base);
  92. #else
  93. return strtoull(str,end,base);
  94. #endif
  95. }