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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lleventnotifier.cpp
  3.  * @brief Viewer code for managing event notifications
  4.  *
  5.  * $LicenseInfo:firstyear=2004&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2004-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 "lleventnotifier.h"
  34. #include "llnotificationsutil.h"
  35. #include "message.h"
  36. #include "lleventinfo.h"
  37. #include "llfloaterreg.h"
  38. #include "llfloaterworldmap.h"
  39. #include "llagent.h"
  40. LLEventNotifier gEventNotifier;
  41. LLEventNotifier::LLEventNotifier()
  42. {
  43. }
  44. LLEventNotifier::~LLEventNotifier()
  45. {
  46. en_map::iterator iter;
  47. for (iter = mEventNotifications.begin();
  48.  iter != mEventNotifications.end();
  49.  iter++)
  50. {
  51. delete iter->second;
  52. }
  53. }
  54. void LLEventNotifier::update()
  55. {
  56. if (mNotificationTimer.getElapsedTimeF32() > 30.f)
  57. {
  58. // Check our notifications again and send out updates
  59. // if they happen.
  60. time_t alert_time = time_corrected() + 5 * 60;
  61. en_map::iterator iter;
  62. for (iter = mEventNotifications.begin();
  63.  iter != mEventNotifications.end();)
  64. {
  65. LLEventNotification *np = iter->second;
  66. if (np->getEventDate() < (alert_time))
  67. {
  68. LLSD args;
  69. args["NAME"] = np->getEventName();
  70. args["DATE"] = np->getEventDateStr();
  71. LLNotificationsUtil::add("EventNotification", args, LLSD(),
  72. boost::bind(&LLEventNotification::handleResponse, np, _1, _2));
  73. mEventNotifications.erase(iter++);
  74. }
  75. else
  76. {
  77. iter++;
  78. }
  79. }
  80. mNotificationTimer.reset();
  81. }
  82. }
  83. void LLEventNotifier::load(const LLSD& event_options)
  84. {
  85. for(LLSD::array_const_iterator resp_it = event_options.beginArray(),
  86. end = event_options.endArray(); resp_it != end; ++resp_it)
  87. {
  88. LLSD response = *resp_it;
  89. LLEventNotification *new_enp = new LLEventNotification();
  90. if(!new_enp->load(response))
  91. {
  92. delete new_enp;
  93. continue;
  94. }
  95. mEventNotifications[new_enp->getEventID()] = new_enp;
  96. }
  97. }
  98. BOOL LLEventNotifier::hasNotification(const U32 event_id)
  99. {
  100. if (mEventNotifications.find(event_id) != mEventNotifications.end())
  101. {
  102. return TRUE;
  103. }
  104. return FALSE;
  105. }
  106. void LLEventNotifier::add(LLEventInfo &event_info)
  107. {
  108. // We need to tell the simulator that we want to pay attention to
  109. // this event, as well as add it to our list.
  110. if (mEventNotifications.find(event_info.mID) != mEventNotifications.end())
  111. {
  112. // We already have a notification for this event, don't bother.
  113. return;
  114. }
  115. // Push up a message to tell the server we have this notification.
  116. gMessageSystem->newMessage("EventNotificationAddRequest");
  117. gMessageSystem->nextBlockFast(_PREHASH_AgentData);
  118. gMessageSystem->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
  119. gMessageSystem->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID());
  120. gMessageSystem->nextBlock("EventData");
  121. gMessageSystem->addU32("EventID", event_info.mID);
  122. gAgent.sendReliableMessage();
  123. LLEventNotification *enp = new LLEventNotification;
  124. enp->load(event_info);
  125. mEventNotifications[event_info.mID] = enp;
  126. }
  127. void LLEventNotifier::remove(const U32 event_id)
  128. {
  129. en_map::iterator iter;
  130. iter = mEventNotifications.find(event_id);
  131. if (iter == mEventNotifications.end())
  132. {
  133. // We don't have a notification for this event, don't bother.
  134. return;
  135. }
  136. // Push up a message to tell the server to remove this notification.
  137. gMessageSystem->newMessage("EventNotificationRemoveRequest");
  138. gMessageSystem->nextBlockFast(_PREHASH_AgentData);
  139. gMessageSystem->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
  140. gMessageSystem->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID());
  141. gMessageSystem->nextBlock("EventData");
  142. gMessageSystem->addU32("EventID", event_id);
  143. gAgent.sendReliableMessage();
  144. delete iter->second;
  145. mEventNotifications.erase(iter);
  146. }
  147. LLEventNotification::LLEventNotification() :
  148. mEventID(0),
  149. mEventDate(0),
  150. mEventName("")
  151. {
  152. }
  153. LLEventNotification::~LLEventNotification()
  154. {
  155. }
  156. bool LLEventNotification::handleResponse(const LLSD& notification, const LLSD& response)
  157. {
  158. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  159. switch (option)
  160. {
  161. case 0:
  162. {
  163. gAgent.teleportViaLocation(getEventPosGlobal());
  164. LLFloaterWorldMap* floater_world_map = LLFloaterWorldMap::getInstance();
  165. if(floater_world_map) floater_world_map->trackLocation(getEventPosGlobal());
  166. break;
  167. }
  168. case 1:
  169. LLFloaterReg::showInstance("search", LLSD().with("category", "events").with("id", S32(getEventID())));
  170. break;
  171. case 2:
  172. break;
  173. }
  174. // We could clean up the notification on the server now if we really wanted to.
  175. return false;
  176. }
  177. BOOL LLEventNotification::load(const LLSD& response)
  178. {
  179. BOOL event_ok = TRUE;
  180. LLSD option = response.get("event_id");
  181. if (option.isDefined())
  182. {
  183. mEventID = option.asInteger();
  184. }
  185. else
  186. {
  187. event_ok = FALSE;
  188. }
  189. option = response.get("event_name");
  190. if (option.isDefined())
  191. {
  192. llinfos << "Event: " << option.asString() << llendl;
  193. mEventName = option.asString();
  194. }
  195. else
  196. {
  197. event_ok = FALSE;
  198. }
  199. option = response.get("event_date");
  200. if (option.isDefined())
  201. {
  202. llinfos << "EventDate: " << option.asString() << llendl;
  203. mEventDateStr = option.asString();
  204. }
  205. else
  206. {
  207. event_ok = FALSE;
  208. }
  209. option = response.get("event_date_ut");
  210. if (option.isDefined())
  211. {
  212. llinfos << "EventDate: " << option.asString() << llendl;
  213. mEventDate = strtoul(option.asString().c_str(), NULL, 10);
  214. }
  215. else
  216. {
  217. event_ok = FALSE;
  218. }
  219. S32 grid_x = 0;
  220. S32 grid_y = 0;
  221. S32 x_region = 0;
  222. S32 y_region = 0;
  223. option = response.get("grid_x");
  224. if (option.isDefined())
  225. {
  226. llinfos << "GridX: " << option.asInteger() << llendl;
  227. grid_x= option.asInteger();
  228. }
  229. else
  230. {
  231. event_ok = FALSE;
  232. }
  233. option = response.get("grid_y");
  234. if (option.isDefined())
  235. {
  236. llinfos << "GridY: " << option.asInteger() << llendl;
  237. grid_y = option.asInteger();
  238. }
  239. else
  240. {
  241. event_ok = FALSE;
  242. }
  243. option = response.get("x_region");
  244. if (option.isDefined())
  245. {
  246. llinfos << "RegionX: " << option.asInteger() << llendl;
  247. x_region = option.asInteger();
  248. }
  249. else
  250. {
  251. event_ok = FALSE;
  252. }
  253. option = response.get("y_region");
  254. if (option.isDefined())
  255. {
  256. llinfos << "RegionY: " << option.asInteger() << llendl;
  257. y_region = option.asInteger();
  258. }
  259. else
  260. {
  261. event_ok = FALSE;
  262. }
  263. mEventPosGlobal.mdV[VX] = grid_x * 256 + x_region;
  264. mEventPosGlobal.mdV[VY] = grid_y * 256 + y_region;
  265. mEventPosGlobal.mdV[VZ] = 0.f;
  266. return event_ok;
  267. }
  268. BOOL LLEventNotification::load(const LLEventInfo &event_info)
  269. {
  270. mEventID = event_info.mID;
  271. mEventName = event_info.mName;
  272. mEventDateStr = event_info.mTimeStr;
  273. mEventDate = event_info.mUnixTime;
  274. mEventPosGlobal = event_info.mPosGlobal;
  275. return TRUE;
  276. }