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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llimhandler.cpp
  3.  * @brief Notification Handler Class for IM notifications
  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 "llagentdata.h"
  35. #include "llnotifications.h"
  36. #include "lltoastimpanel.h"
  37. #include "llviewerwindow.h"
  38. using namespace LLNotificationsUI;
  39. //--------------------------------------------------------------------------
  40. LLIMHandler::LLIMHandler(e_notification_type type, const LLSD& id)
  41. {
  42. mType = type;
  43. // Getting a Channel for our notifications
  44. mChannel = LLChannelManager::getInstance()->createNotificationChannel();
  45. }
  46. //--------------------------------------------------------------------------
  47. LLIMHandler::~LLIMHandler()
  48. {
  49. }
  50. //--------------------------------------------------------------------------
  51. void LLIMHandler::initChannel()
  52. {
  53. S32 channel_right_bound = gViewerWindow->getWorldViewRectScaled().mRight - gSavedSettings.getS32("NotificationChannelRightMargin"); 
  54. S32 channel_width = gSavedSettings.getS32("NotifyBoxWidth");
  55. mChannel->init(channel_right_bound - channel_width, channel_right_bound);
  56. }
  57. //--------------------------------------------------------------------------
  58. bool LLIMHandler::processNotification(const LLSD& notify)
  59. {
  60. if(!mChannel)
  61. {
  62. return false;
  63. }
  64. LLNotificationPtr notification = LLNotifications::instance().find(notify["id"].asUUID());
  65. if(!notification)
  66. return false;
  67. // arrange a channel on a screen
  68. if(!mChannel->getVisible())
  69. {
  70. initChannel();
  71. }
  72. if(notify["sigtype"].asString() == "add" || notify["sigtype"].asString() == "change")
  73. {
  74. LLSD substitutions = notification->getSubstitutions();
  75. // According to comments in LLIMMgr::addMessage(), if we get message
  76. // from ourselves, the sender id is set to null. This fixes EXT-875.
  77. LLUUID avatar_id = substitutions["FROM_ID"].asUUID();
  78. if (avatar_id.isNull())
  79. avatar_id = gAgentID;
  80. LLToastIMPanel::Params im_p;
  81. im_p.notification = notification;
  82. im_p.avatar_id = avatar_id;
  83. im_p.from = substitutions["FROM"].asString();
  84. im_p.time = substitutions["TIME"].asString();
  85. im_p.message = substitutions["MESSAGE"].asString();
  86. im_p.session_id = substitutions["SESSION_ID"].asUUID();
  87. LLToastIMPanel* im_box = new LLToastIMPanel(im_p);
  88. LLToast::Params p;
  89. p.notif_id = notification->getID();
  90. p.session_id = im_p.session_id;
  91. p.notification = notification;
  92. p.panel = im_box;
  93. p.can_be_stored = false;
  94. p.on_delete_toast = boost::bind(&LLIMHandler::onDeleteToast, this, _1);
  95. LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel);
  96. if(channel)
  97. channel->addToast(p);
  98. // send a signal to the counter manager;
  99. mNewNotificationSignal();
  100. }
  101. else if (notify["sigtype"].asString() == "delete")
  102. {
  103. mChannel->killToastByNotificationID(notification->getID());
  104. }
  105. return true;
  106. }
  107. //--------------------------------------------------------------------------
  108. void LLIMHandler::onDeleteToast(LLToast* toast)
  109. {
  110. // send a signal to the counter manager
  111. mDelNotificationSignal();
  112. }
  113. //--------------------------------------------------------------------------