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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llocationhistory.h
  3.  * @brief Typed locations 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. #ifndef LL_LLLOCATIONHISTORY_H
  33. #define LL_LLLOCATIONHISTORY_H
  34. #include "llsingleton.h" // for LLSingleton
  35. #include <vector>
  36. #include <string>
  37. #include <map>
  38. #include <boost/function.hpp>
  39. class LLSD;
  40. enum ELocationType {
  41.  TYPED_REGION_SURL//region name or surl 
  42. ,LANDMARK  // name of landmark
  43. ,TELEPORT_HISTORY 
  44. };
  45. class LLLocationHistoryItem {
  46. public:
  47. LLLocationHistoryItem(){}
  48. LLLocationHistoryItem(std::string typed_location, 
  49. LLVector3d global_position, std::string tooltip,ELocationType type ):
  50. mLocation(typed_location),
  51. mGlobalPos(global_position),
  52. mToolTip(tooltip),
  53. mType(type)
  54. {}
  55. LLLocationHistoryItem(const LLLocationHistoryItem& item):
  56. mGlobalPos(item.mGlobalPos),
  57. mToolTip(item.mToolTip),
  58. mLocation(item.mLocation),
  59. mType(item.mType)
  60. {}
  61. LLLocationHistoryItem(const LLSD& data):
  62. mLocation(data["location"]),
  63. mGlobalPos(data["global_pos"]),
  64. mToolTip(data["tooltip"]),
  65. mType(ELocationType(data["item_type"].asInteger()))
  66. {}
  67. bool operator==(const LLLocationHistoryItem& item)
  68. {
  69. // do not compare  mGlobalPos, 
  70. // because of a rounding off , the history  can contain duplicates
  71. return mLocation == item.mLocation && (mType == item.mType); 
  72. }
  73. bool operator!=(const LLLocationHistoryItem& item)
  74. {
  75. return ! (*this == item);
  76. }
  77. LLSD toLLSD() const
  78. {
  79. LLSD val;
  80. val["location"]= mLocation;
  81. val["global_pos"] = mGlobalPos.getValue();
  82. val["tooltip"] = mToolTip;
  83. val["item_type"] = mType;
  84. return val;
  85. }
  86. const std::string& getLocation() const { return mLocation; };
  87. const std::string& getToolTip() const { return mToolTip; };
  88. //static bool equalByRegionParcel(const LLLocationHistoryItem& item1, const LLLocationHistoryItem& item2);
  89. static bool equalByLocation(const LLLocationHistoryItem& item1, const std::string& item_location)
  90. {
  91. return  item1.getLocation() == item_location;
  92. }
  93. LLVector3d mGlobalPos; // global position
  94. std::string mToolTip;// SURL
  95. std::string mLocation;// typed_location
  96. ELocationType mType;
  97. };
  98. class LLLocationHistory: public LLSingleton<LLLocationHistory>
  99. {
  100. LOG_CLASS(LLLocationHistory);
  101. public:
  102. typedef std::vector<LLLocationHistoryItem> location_list_t;
  103. typedef boost::function<void()> loaded_callback_t;
  104. typedef boost::signals2::signal<void()> loaded_signal_t;
  105. LLLocationHistory();
  106. void addItem(const LLLocationHistoryItem& item);
  107. bool touchItem(const LLLocationHistoryItem& item);
  108. void                    removeItems();
  109. size_t getItemCount() const { return mItems.size(); }
  110. const location_list_t& getItems() const { return mItems; }
  111. bool getMatchingItems(std::string substring, location_list_t& result) const;
  112. boost::signals2::connection setLoadedCallback(loaded_callback_t cb) { return mLoadedSignal.connect(cb); }
  113. void save() const;
  114. void load();
  115. void dump() const;
  116. private:
  117. location_list_t mItems;
  118. std::string mFilename; /// File to store the history to.
  119. loaded_signal_t mLoadedSignal;
  120. };
  121. #endif