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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llavatarpropertiesprocessor.h
  3.  * @brief LLAvatatIconCtrl base class
  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. #ifndef LL_LLAVATARPROPERTIESPROCESSOR_H
  33. #define LL_LLAVATARPROPERTIESPROCESSOR_H
  34. #include "lluuid.h"
  35. #include "llsingleton.h"
  36. #include "v3dmath.h" // LLVector3d
  37. #include <list>
  38. #include <map>
  39. /*
  40. *TODO Vadim: This needs some refactoring:
  41. - Remove EAvatarProcessorType in favor of separate observers, derived from a common parent (to get rid of void*).
  42. */
  43. class LLMessageSystem;
  44. enum EAvatarProcessorType
  45. {
  46. APT_PROPERTIES,
  47. APT_NOTES,
  48. APT_GROUPS,
  49. APT_PICKS,
  50. APT_PICK_INFO,
  51. APT_TEXTURES,
  52. APT_CLASSIFIEDS,
  53. APT_CLASSIFIED_INFO
  54. };
  55. struct LLAvatarData
  56. {
  57. LLUUID  agent_id;
  58. LLUUID avatar_id; //target id
  59. LLUUID image_id;
  60. LLUUID fl_image_id;
  61. LLUUID partner_id;
  62. std::string about_text;
  63. std::string fl_about_text;
  64. std::string born_on;
  65. std::string profile_url;
  66. U8 caption_index;
  67. std::string caption_text;
  68. U32 flags;
  69. BOOL allow_publish;
  70. };
  71. struct LLAvatarPicks
  72. {
  73. LLUUID agent_id;
  74. LLUUID target_id; //target id
  75. typedef std::pair<LLUUID,std::string> pick_data_t;
  76. typedef std::list< pick_data_t> picks_list_t;
  77. picks_list_t picks_list;
  78. };
  79. struct LLPickData
  80. {
  81. LLUUID agent_id;
  82. LLUUID pick_id;
  83. LLUUID creator_id;
  84. BOOL top_pick;
  85. LLUUID parcel_id;
  86. std::string name;
  87. std::string desc;
  88. LLUUID snapshot_id;
  89. LLVector3d pos_global;
  90. S32 sort_order;
  91. BOOL enabled;
  92. //used only in read requests
  93. std::string user_name;
  94. std::string original_name;
  95. std::string sim_name;
  96. //used only in write (update) requests
  97. LLUUID session_id;
  98. };
  99. struct LLAvatarNotes
  100. {
  101. LLUUID agent_id;
  102. LLUUID target_id; //target id
  103. std::string notes;
  104. };
  105. struct LLAvatarGroups
  106. {
  107. LLUUID agent_id;
  108. LLUUID avatar_id; //target id
  109. BOOL list_in_profile;
  110. struct LLGroupData;
  111. typedef std::list<LLGroupData> group_list_t;
  112. group_list_t group_list;
  113. struct LLGroupData
  114. {
  115. U64 group_powers;
  116. BOOL accept_notices;
  117. std::string group_title;
  118. LLUUID group_id;
  119. std::string group_name;
  120. LLUUID group_insignia_id;
  121. };
  122. };
  123. struct LLAvatarClassifieds
  124. {
  125. LLUUID agent_id;
  126. LLUUID target_id;
  127. struct classified_data;
  128. typedef std::list<classified_data> classifieds_list_t;
  129. classifieds_list_t classifieds_list;
  130. struct classified_data
  131. {
  132. LLUUID classified_id;
  133. std::string name;
  134. };
  135. };
  136. struct LLAvatarClassifiedInfo
  137. {
  138. LLUUID agent_id;
  139. LLUUID classified_id;
  140. LLUUID creator_id;
  141. U32 creation_date;
  142. U32 expiration_date;
  143. U32 category;
  144. std::string name;
  145. std::string description;
  146. LLUUID parcel_id;
  147. U32 parent_estate;
  148. LLUUID snapshot_id;
  149. std::string sim_name;
  150. LLVector3d pos_global;
  151. std::string parcel_name;
  152. U8 flags;
  153. S32 price_for_listing;
  154. };
  155. class LLAvatarPropertiesObserver
  156. {
  157. public:
  158. virtual ~LLAvatarPropertiesObserver() {}
  159. virtual void processProperties(void* data, EAvatarProcessorType type) = 0;
  160. };
  161. class LLAvatarPropertiesProcessor
  162. : public LLSingleton<LLAvatarPropertiesProcessor>
  163. {
  164. public:
  165. LLAvatarPropertiesProcessor();
  166. virtual ~LLAvatarPropertiesProcessor();
  167. void addObserver(const LLUUID& avatar_id, LLAvatarPropertiesObserver* observer);
  168. void removeObserver(const LLUUID& avatar_id, LLAvatarPropertiesObserver* observer);
  169. // Request various types of avatar data.  Duplicate requests will be
  170. // suppressed while waiting for a response from the network.
  171. void sendAvatarPropertiesRequest(const LLUUID& avatar_id);
  172. void sendAvatarPicksRequest(const LLUUID& avatar_id);
  173. void sendAvatarNotesRequest(const LLUUID& avatar_id);
  174. void sendAvatarGroupsRequest(const LLUUID& avatar_id);
  175. void sendAvatarTexturesRequest(const LLUUID& avatar_id);
  176. void sendAvatarClassifiedsRequest(const LLUUID& avatar_id);
  177. // Duplicate pick info requests are not suppressed.
  178. void sendPickInfoRequest(const LLUUID& creator_id, const LLUUID& pick_id);
  179. void sendClassifiedInfoRequest(const LLUUID& classified_id);
  180. void sendAvatarPropertiesUpdate(const LLAvatarData* avatar_props);
  181. void sendPickInfoUpdate(const LLPickData* new_pick);
  182. void sendClassifiedInfoUpdate(const LLAvatarClassifiedInfo* c_data);
  183. void sendFriendRights(const LLUUID& avatar_id, S32 rights);
  184. void sendNotes(const LLUUID& avatar_id, const std::string notes);
  185. void sendPickDelete(const LLUUID& pick_id);
  186. void sendClassifiedDelete(const LLUUID& classified_id);
  187. // Returns translated, human readable string for account type, such
  188. // as "Resident" or "Linden Employee".  Used for profiles, inspectors.
  189. static std::string accountType(const LLAvatarData* avatar_data);
  190. // Returns translated, human readable string for payment info, such
  191. // as "Payment Info on File" or "Payment Info Used".
  192. // Used for profiles, inspectors.
  193. static std::string paymentInfo(const LLAvatarData* avatar_data);
  194. static void processAvatarPropertiesReply(LLMessageSystem* msg, void**);
  195. static void processAvatarInterestsReply(LLMessageSystem* msg, void**);
  196. static void processAvatarClassifiedsReply(LLMessageSystem* msg, void**);
  197. static void processClassifiedInfoReply(LLMessageSystem* msg, void**);
  198. static void processAvatarGroupsReply(LLMessageSystem* msg, void**);
  199. static void processAvatarNotesReply(LLMessageSystem* msg, void**);
  200. static void processAvatarPicksReply(LLMessageSystem* msg, void**);
  201. static void processPickInfoReply(LLMessageSystem* msg, void**);
  202. protected:
  203. void sendGenericRequest(const LLUUID& avatar_id, EAvatarProcessorType type, const std::string method);
  204. void notifyObservers(const LLUUID& id,void* data, EAvatarProcessorType type);
  205. // Is there a pending, not timed out, request for this avatar's data?
  206. // Use this to suppress duplicate requests for data when a request is
  207. // pending.
  208. bool isPendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type);
  209. // Call this when a request has been sent
  210. void addPendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type);
  211. // Call this when the reply to the request is received
  212. void removePendingRequest(const LLUUID& avatar_id, EAvatarProcessorType type);
  213. typedef void* (*processor_method_t)(LLMessageSystem*);
  214. static processor_method_t getProcessor(EAvatarProcessorType type);
  215. protected:
  216. typedef std::multimap<LLUUID, LLAvatarPropertiesObserver*> observer_multimap_t;
  217. observer_multimap_t mObservers;
  218. // Keep track of pending requests for data by avatar id and type.
  219. // Maintain a timestamp for each request so a request that receives no reply
  220. // does not block future requests forever.
  221. // Map avatar_id+request_type -> U32 timestamp in seconds
  222. typedef std::map< std::pair<LLUUID, EAvatarProcessorType>, U32> timestamp_map_t;
  223. timestamp_map_t mRequestTimestamps;
  224. };
  225. #endif  // LL_LLAVATARPROPERTIESPROCESSOR_H