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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llrecentpeople.h
  3.  * @brief List of people with which the user has recently interacted.
  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_LLRECENTPEOPLE_H
  33. #define LL_LLRECENTPEOPLE_H
  34. #include "llevent.h"
  35. #include "llsingleton.h"
  36. #include "lluuid.h"
  37. #include <vector>
  38. #include <set>
  39. #include <boost/signals2.hpp>
  40. class LLDate;
  41. /**
  42.  * List of people the agent recently interacted with.
  43.  * 
  44.  * Includes: anyone with whom the user IM'd or called
  45.  * (1:1 and ad-hoc but not SL Group chat),
  46.  * anyone with whom the user has had a transaction
  47.  * (inventory offer, friend request, etc),
  48.  * and anyone that has chatted within chat range of the user in-world. 
  49.  * 
  50.  *TODO: purge least recently added items? 
  51.  */
  52. class LLRecentPeople: public LLSingleton<LLRecentPeople>, public LLOldEvents::LLSimpleListener
  53. {
  54. LOG_CLASS(LLRecentPeople);
  55. public:
  56. typedef boost::signals2::signal<void ()> signal_t;
  57. /**
  58.  * Add specified avatar to the list if it's not there already.
  59.  *
  60.  * @param id avatar to add.
  61.  * @return false if the avatar is in the list already, true otherwise
  62.  */
  63. bool add(const LLUUID& id);
  64. /**
  65.  * @param id avatar to search.
  66.  * @return true if the avatar is in the list, false otherwise.
  67.  */
  68. bool contains(const LLUUID& id) const;
  69. /**
  70.  * Get the whole list.
  71.  * 
  72.  * @param result where to put the result.
  73.  */
  74. void get(std::vector<LLUUID>& result) const;
  75. const LLDate& getDate(const LLUUID& id) const;
  76. /**
  77.  * Set callback to be called when the list changed.
  78.  * 
  79.  * Multiple callbacks can be set.
  80.  * 
  81.  * @return no connection; use boost::bind + boost::signals2::trackable to disconnect slots.
  82.  */
  83. void setChangedCallback(const signal_t::slot_type& cb) { mChangedSignal.connect(cb); }
  84. /**
  85.  * LLSimpleListener interface.
  86.  */
  87. /*virtual*/ bool handleEvent(LLPointer<LLOldEvents::LLEvent> event, const LLSD& userdata);
  88. private:
  89. typedef std::map<LLUUID, LLDate> recent_people_t;
  90. recent_people_t mPeople;
  91. signal_t mChangedSignal;
  92. };
  93. #endif // LL_LLRECENTPEOPLE_H