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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llteleporthistorystorage.cpp
  3.  * @brief Teleport history
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-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 "llviewerprecompiledheaders.h"
  33. #include "llteleporthistorystorage.h"
  34. #include "llsd.h"
  35. #include "llsdserialize.h"
  36. #include "lldir.h"
  37. #include "llteleporthistory.h"
  38. #include "llagent.h"
  39. // Max offset for two global positions to consider them as equal
  40. const F64 MAX_GLOBAL_POS_OFFSET = 5.0f;
  41. LLTeleportHistoryPersistentItem::LLTeleportHistoryPersistentItem(const LLSD& val)
  42. {
  43. mTitle = val["title"].asString();
  44. mGlobalPos.setValue(val["global_pos"]);
  45. mDate = val["date"];
  46. }
  47. LLSD LLTeleportHistoryPersistentItem::toLLSD() const
  48. {
  49. LLSD val;
  50. val["title"] = mTitle;
  51. val["global_pos"] = mGlobalPos.getValue();
  52. val["date"] = mDate;
  53. return val;
  54. }
  55. struct LLSortItemsByDate
  56. {
  57. bool operator()(const LLTeleportHistoryPersistentItem& a, const LLTeleportHistoryPersistentItem& b)
  58. {
  59. return a.mDate < b.mDate;
  60. }
  61. };
  62. LLTeleportHistoryStorage::LLTeleportHistoryStorage() :
  63. mFilename("teleport_history.txt")
  64. {
  65. LLTeleportHistory *th = LLTeleportHistory::getInstance();
  66. if (th)
  67. th->setHistoryChangedCallback(boost::bind(&LLTeleportHistoryStorage::onTeleportHistoryChange, this));
  68. load();
  69. }
  70. LLTeleportHistoryStorage::~LLTeleportHistoryStorage()
  71. {
  72. }
  73. void LLTeleportHistoryStorage::onTeleportHistoryChange()
  74. {
  75. LLTeleportHistory *th = LLTeleportHistory::getInstance();
  76. if (!th)
  77. return;
  78. const LLTeleportHistoryItem &item = th->getItems()[th->getCurrentItemIndex()];
  79. addItem(item.mTitle, item.mGlobalPos);
  80. save();
  81. }
  82. void LLTeleportHistoryStorage::purgeItems()
  83. {
  84. mItems.clear();
  85. mHistoryChangedSignal(-1);
  86. }
  87. void LLTeleportHistoryStorage::addItem(const std::string title, const LLVector3d& global_pos)
  88. {
  89. addItem(title, global_pos, LLDate::now());
  90. }
  91. bool LLTeleportHistoryStorage::compareByTitleAndGlobalPos(const LLTeleportHistoryPersistentItem& a, const LLTeleportHistoryPersistentItem& b)
  92. {
  93. return a.mTitle == b.mTitle && (a.mGlobalPos - b.mGlobalPos).length() < MAX_GLOBAL_POS_OFFSET;
  94. }
  95. void LLTeleportHistoryStorage::addItem(const std::string title, const LLVector3d& global_pos, const LLDate& date)
  96. {
  97. LLTeleportHistoryPersistentItem item(title, global_pos, date);
  98. slurl_list_t::iterator item_iter = std::find_if(mItems.begin(), mItems.end(),
  99.     boost::bind(&LLTeleportHistoryStorage::compareByTitleAndGlobalPos, this, _1, item));
  100. // If there is such item already, remove it, since new item is more recent
  101. S32 removed_index = -1;
  102. if (item_iter != mItems.end())
  103. {
  104. removed_index = item_iter - mItems.begin();
  105. mItems.erase(item_iter);
  106. }
  107. mItems.push_back(item);
  108. // Check whether sorting is needed
  109. if (mItems.size() > 1)
  110. {
  111. item_iter = mItems.end();
  112. item_iter--;
  113. item_iter--;
  114. // If second to last item is more recent than last, then resort items
  115. if (item_iter->mDate > item.mDate)
  116. {
  117. removed_index = -1;
  118. std::sort(mItems.begin(), mItems.end(), LLSortItemsByDate());
  119. }
  120. }
  121. mHistoryChangedSignal(removed_index);
  122. }
  123. void LLTeleportHistoryStorage::removeItem(S32 idx)
  124. {
  125. if (idx < 0 || idx >= (S32)mItems.size())
  126. return;
  127. mItems.erase (mItems.begin() + idx);
  128. }
  129. void LLTeleportHistoryStorage::save()
  130. {
  131.         // build filename for each user
  132. std::string resolvedFilename = gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, mFilename);
  133. // open the history file for writing
  134. llofstream file (resolvedFilename);
  135. if (!file.is_open())
  136. {
  137. llwarns << "can't open teleport history file "" << mFilename << "" for writing" << llendl;
  138. return;
  139. }
  140. for (size_t i=0; i<mItems.size(); i++)
  141. {
  142. LLSD s_item = mItems[i].toLLSD();
  143. file << LLSDOStreamer<LLSDNotationFormatter>(s_item) << std::endl;
  144. }
  145. file.close();
  146. }
  147. void LLTeleportHistoryStorage::load()
  148. {
  149.         // build filename for each user
  150. std::string resolved_filename = gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, mFilename);
  151. // open the history file for reading
  152. llifstream file(resolved_filename);
  153. if (!file.is_open())
  154. {
  155. llwarns << "can't load teleport history from file "" << mFilename << """ << llendl;
  156. return;
  157. }
  158. // remove current entries before we load over them
  159. mItems.clear();
  160. // the parser's destructor is protected so we cannot create in the stack.
  161. LLPointer<LLSDParser> parser = new LLSDNotationParser();
  162. std::string line;
  163. while (std::getline(file, line))
  164. {
  165. LLSD s_item;
  166. std::istringstream iss(line);
  167. if (parser->parse(iss, s_item, line.length()) == LLSDParser::PARSE_FAILURE)
  168. {
  169. llinfos << "Parsing saved teleport history failed" << llendl;
  170. break;
  171. }
  172. mItems.push_back(s_item);
  173. }
  174. file.close();
  175. std::sort(mItems.begin(), mItems.end(), LLSortItemsByDate());
  176. mHistoryChangedSignal(-1);
  177. }
  178. void LLTeleportHistoryStorage::dump() const
  179. {
  180. llinfos << "Teleport history storage dump (" << mItems.size() << " items):" << llendl;
  181. for (size_t i=0; i<mItems.size(); i++)
  182. {
  183. std::stringstream line;
  184. line << i << ": " << mItems[i].mTitle;
  185. line << " global pos: " << mItems[i].mGlobalPos;
  186. line << " date: " << mItems[i].mDate;
  187. llinfos << line.str() << llendl;
  188. }
  189. }
  190. boost::signals2::connection LLTeleportHistoryStorage::setHistoryChangedCallback(history_callback_t cb)
  191. {
  192. return mHistoryChangedSignal.connect(cb);
  193. }
  194. void LLTeleportHistoryStorage::goToItem(S32 idx)
  195. {
  196. // Validate specified index.
  197. if (idx < 0 || idx >= (S32)mItems.size())
  198. {
  199. llwarns << "Invalid teleport history index (" << idx << ") specified" << llendl;
  200. dump();
  201. return;
  202. }
  203. // Attempt to teleport to the requested item.
  204. gAgent.teleportViaLocation(mItems[idx].mGlobalPos);
  205. }