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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2. * @file lldateutil.cpp
  3. *
  4. * $LicenseInfo:firstyear=2009&license=viewergpl$
  5. * Copyright (c) 2009-2010, Linden Research, Inc.
  6. * Second Life Viewer Source Code
  7. * The source code in this file ("Source Code") is provided by Linden Lab
  8. * to you under the terms of the GNU General Public License, version 2.0
  9. * ("GPL"), unless you have obtained a separate licensing agreement
  10. * ("Other License"), formally executed by you and Linden Lab.  Terms of
  11. * the GPL can be found in doc/GPL-license.txt in this distribution, or
  12. * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  13. * There are special exceptions to the terms and conditions of the GPL as
  14. * it is applied to this Source Code. View the full text of the exception
  15. * in the file doc/FLOSS-exception.txt in this software distribution, or
  16. * online at
  17. * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  18. * By copying, modifying or distributing this software, you acknowledge
  19. * that you have read and understood your obligations described above,
  20. * and agree to abide by those obligations.
  21. * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  22. * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  23. * COMPLETENESS OR PERFORMANCE.
  24. * $/LicenseInfo$
  25. */
  26. #include "llviewerprecompiledheaders.h"
  27. #include "lldateutil.h"
  28. // Linden libraries
  29. #include "lltrans.h"
  30. #include "llui.h"
  31. static S32 DAYS_PER_MONTH_NOLEAP[] =
  32. { 31, 28, 21, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  33. static S32 DAYS_PER_MONTH_LEAP[] =
  34. { 31, 29, 21, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  35. static S32 days_from_month(S32 year, S32 month)
  36. {
  37. llassert_always(1 <= month);
  38. llassert_always(month <= 12);
  39. if (year % 4 == 0 
  40. && year % 100 != 0)
  41. {
  42. // leap year
  43. return DAYS_PER_MONTH_LEAP[month - 1];
  44. }
  45. else
  46. {
  47. return DAYS_PER_MONTH_NOLEAP[month - 1];
  48. }
  49. }
  50. std::string LLDateUtil::ageFromDate(const std::string& date_string,
  51. const LLDate& now)
  52. {
  53. S32 born_month, born_day, born_year;
  54. S32 matched = sscanf(date_string.c_str(), "%d/%d/%d", &born_month, &born_day, &born_year);
  55. if (matched != 3) return "???";
  56. LLDate born_date;
  57. born_date.fromYMDHMS(born_year, born_month, born_day);
  58. F64 born_date_secs_since_epoch = born_date.secondsSinceEpoch();
  59. // Correct for the fact that account creation dates are in Pacific time,
  60. // == UTC - 8
  61. born_date_secs_since_epoch += 8.0 * 60.0 * 60.0;
  62. born_date.secondsSinceEpoch(born_date_secs_since_epoch);
  63. // explode out to month/day/year again
  64. born_date.split(&born_year, &born_month, &born_day);
  65. S32 now_year, now_month, now_day;
  66. now.split(&now_year, &now_month, &now_day);
  67. // Do grade-school subtraction, from right-to-left, borrowing from the left
  68. // when things go negative
  69. S32 age_days = (now_day - born_day);
  70. if (age_days < 0)
  71. {
  72. now_month -= 1;
  73. if (now_month == 0)
  74. {
  75. now_year -= 1;
  76. now_month = 12;
  77. }
  78. age_days += days_from_month(now_year, now_month);
  79. }
  80. S32 age_months = (now_month - born_month);
  81. if (age_months < 0)
  82. {
  83. now_year -= 1;
  84. age_months += 12;
  85. }
  86. S32 age_years = (now_year - born_year);
  87. // Noun pluralization depends on language
  88. std::string lang = LLUI::getLanguage();
  89. // Try for age in round number of years
  90. LLStringUtil::format_map_t args;
  91. if (age_months > 0 || age_years > 0)
  92. {
  93. args["[AGEYEARS]"] =
  94. LLTrans::getCountString(lang, "AgeYears", age_years);
  95. args["[AGEMONTHS]"] =
  96. LLTrans::getCountString(lang, "AgeMonths", age_months);
  97. // We want to display times like:
  98. // 2 year 2 months
  99. // 2 years (implicitly 0 months)
  100. // 11 months
  101. if (age_years > 0)
  102. {
  103. if (age_months > 0)
  104. {
  105. return LLTrans::getString("YearsMonthsOld", args);
  106. }
  107. else
  108. {
  109. return LLTrans::getString("YearsOld", args);
  110. }
  111. }
  112. else // age_years == 0
  113. {
  114. return LLTrans::getString("MonthsOld", args);
  115. }
  116. }
  117. // you're 0 months old, display in weeks or days
  118. // Now for age in weeks
  119. S32 age_weeks = age_days / 7;
  120. age_days = age_days % 7;
  121. if (age_weeks > 0)
  122. {
  123. args["[AGEWEEKS]"] = 
  124. LLTrans::getCountString(lang, "AgeWeeks", age_weeks);
  125. return LLTrans::getString("WeeksOld", args);
  126. }
  127. // Down to days now
  128. if (age_days > 0)
  129. {
  130. args["[AGEDAYS]"] =
  131. LLTrans::getCountString(lang, "AgeDays", age_days);
  132. return LLTrans::getString("DaysOld", args);
  133. }
  134. return LLTrans::getString("TodayOld");
  135. }
  136. std::string LLDateUtil::ageFromDate(const std::string& date_string)
  137. {
  138. return ageFromDate(date_string, LLDate::now());
  139. }