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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llnotificationofferhandler.cpp
  3.  * @brief Notification Handler Class for Simple Notifications and Notification Tips
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-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" // must be first include
  33. #include "llnotificationhandler.h"
  34. #include "lltoastnotifypanel.h"
  35. #include "llviewercontrol.h"
  36. #include "llviewerwindow.h"
  37. #include "llnotificationmanager.h"
  38. #include "llnotifications.h"
  39. #include "llscriptfloater.h"
  40. #include "llimview.h"
  41. #include "llnotificationsutil.h"
  42. using namespace LLNotificationsUI;
  43. //--------------------------------------------------------------------------
  44. LLOfferHandler::LLOfferHandler(e_notification_type type, const LLSD& id)
  45. {
  46. mType = type;
  47. // Getting a Channel for our notifications
  48. mChannel = LLChannelManager::getInstance()->createNotificationChannel();
  49. mChannel->setControlHovering(true);
  50. LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel);
  51. if(channel)
  52. channel->setOnRejectToastCallback(boost::bind(&LLOfferHandler::onRejectToast, this, _1));
  53. }
  54. //--------------------------------------------------------------------------
  55. LLOfferHandler::~LLOfferHandler()
  56. {
  57. }
  58. //--------------------------------------------------------------------------
  59. void LLOfferHandler::initChannel()
  60. {
  61. S32 channel_right_bound = gViewerWindow->getWorldViewRectScaled().mRight - gSavedSettings.getS32("NotificationChannelRightMargin");
  62. S32 channel_width = gSavedSettings.getS32("NotifyBoxWidth");
  63. mChannel->init(channel_right_bound - channel_width, channel_right_bound);
  64. }
  65. //--------------------------------------------------------------------------
  66. bool LLOfferHandler::processNotification(const LLSD& notify)
  67. {
  68. if(!mChannel)
  69. {
  70. return false;
  71. }
  72. LLNotificationPtr notification = LLNotifications::instance().find(notify["id"].asUUID());
  73. if(!notification)
  74. return false;
  75. // arrange a channel on a screen
  76. if(!mChannel->getVisible())
  77. {
  78. initChannel();
  79. }
  80. if(notify["sigtype"].asString() == "add" || notify["sigtype"].asString() == "change")
  81. {
  82. if( notification->getPayload().has("give_inventory_notification")
  83. && !notification->getPayload()["give_inventory_notification"] )
  84. {
  85. // This is an original inventory offer, so add a script floater
  86. LLScriptFloaterManager::instance().onAddNotification(notification->getID());
  87. }
  88. else
  89. {
  90. LLUUID session_id;
  91. if (LLHandlerUtil::canSpawnIMSession(notification))
  92. {
  93. const std::string name = LLHandlerUtil::getSubstitutionName(notification);
  94. LLUUID from_id = notification->getPayload()["from_id"];
  95. session_id = LLHandlerUtil::spawnIMSession(name, from_id);
  96. }
  97. if (LLHandlerUtil::canAddNotifPanelToIM(notification))
  98. {
  99. LLHandlerUtil::addNotifPanelToIM(notification);
  100. LLHandlerUtil::logToIMP2P(notification, true);
  101. }
  102. else if (notification->getPayload().has("SUPPRESS_TOAST")
  103. && notification->getPayload()["SUPPRESS_TOAST"])
  104. {
  105. LLHandlerUtil::logToIMP2P(notification);
  106. LLNotificationsUtil::cancel(notification);
  107. }
  108. else
  109. {
  110. LLToastNotifyPanel* notify_box = new LLToastNotifyPanel(notification);
  111. LLToast::Params p;
  112. p.notif_id = notification->getID();
  113. p.notification = notification;
  114. p.panel = notify_box;
  115. p.on_delete_toast = boost::bind(&LLOfferHandler::onDeleteToast, this, _1);
  116. LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel);
  117. if(channel)
  118. channel->addToast(p);
  119. LLHandlerUtil::logToIMP2P(notification);
  120. // send a signal to the counter manager
  121. mNewNotificationSignal();
  122. }
  123. }
  124. }
  125. else if (notify["sigtype"].asString() == "delete")
  126. {
  127. if( notification->getPayload().has("give_inventory_notification")
  128. && !notification->getPayload()["give_inventory_notification"] )
  129. {
  130. // Remove original inventory offer script floater
  131. LLScriptFloaterManager::instance().onRemoveNotification(notification->getID());
  132. }
  133. else
  134. {
  135. mChannel->killToastByNotificationID(notification->getID());
  136. }
  137. }
  138. return true;
  139. }
  140. //--------------------------------------------------------------------------
  141. void LLOfferHandler::onDeleteToast(LLToast* toast)
  142. {
  143. // send a signal to the counter manager
  144. mDelNotificationSignal();
  145. // send a signal to a listener to let him perform some action
  146. // in this case listener is a SysWellWindow and it will remove a corresponding item from its list
  147. mNotificationIDSignal(toast->getNotificationID());
  148. }
  149. //--------------------------------------------------------------------------
  150. void LLOfferHandler::onRejectToast(LLUUID& id)
  151. {
  152. LLNotificationPtr notification = LLNotifications::instance().find(id);
  153. if (notification
  154. && LLNotificationManager::getInstance()->getHandlerForNotification(
  155. notification->getType()) == this)
  156. {
  157. LLNotifications::instance().cancel(notification);
  158. }
  159. }