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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llhudmanager.cpp
  3.  * @brief LLHUDManager class implementation
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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 "llhudmanager.h"
  34. #include "message.h"
  35. #include "object_flags.h"
  36. #include "llagent.h"
  37. #include "llhudeffect.h"
  38. #include "pipeline.h"
  39. #include "llui.h"
  40. #include "llviewercontrol.h"
  41. #include "llviewerobjectlist.h"
  42. extern BOOL gNoRender;
  43. // These are loaded from saved settings.
  44. LLColor4 LLHUDManager::sParentColor;
  45. LLColor4 LLHUDManager::sChildColor;
  46. LLHUDManager::LLHUDManager()
  47. {
  48. LLHUDManager::sParentColor = LLUIColorTable::instance().getColor("FocusColor");
  49. // rdw commented out since it's not used.  Also removed from colors_base.xml
  50. //LLHUDManager::sChildColor =LLUIColorTable::instance().getColor("FocusSecondaryColor");
  51. }
  52. LLHUDManager::~LLHUDManager()
  53. {
  54. }
  55. static LLFastTimer::DeclareTimer FTM_HUD_EFFECTS("Hud Effects");
  56. void LLHUDManager::updateEffects()
  57. {
  58. LLFastTimer ftm(FTM_HUD_EFFECTS);
  59. S32 i;
  60. for (i = 0; i < mHUDEffects.count(); i++)
  61. {
  62. LLHUDEffect *hep = mHUDEffects[i];
  63. if (hep->isDead())
  64. {
  65. continue;
  66. }
  67. hep->update();
  68. }
  69. }
  70. void LLHUDManager::sendEffects()
  71. {
  72. S32 i;
  73. for (i = 0; i < mHUDEffects.count(); i++)
  74. {
  75. LLHUDEffect *hep = mHUDEffects[i];
  76. if (hep->isDead())
  77. {
  78. llwarns << "Trying to send dead effect!" << llendl;
  79. continue;
  80. }
  81. if (hep->mType < LLHUDObject::LL_HUD_EFFECT_BEAM)
  82. {
  83. llwarns << "Trying to send effect of type " << hep->mType << " which isn't really an effect and shouldn't be in this list!" << llendl;
  84. continue;
  85. }
  86. if (hep->getNeedsSendToSim() && hep->getOriginatedHere())
  87. {
  88. LLMessageSystem* msg = gMessageSystem;
  89. msg->newMessageFast(_PREHASH_ViewerEffect);
  90. msg->nextBlockFast(_PREHASH_AgentData);
  91. msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID());
  92. msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID());
  93. msg->nextBlockFast(_PREHASH_Effect);
  94. hep->packData(msg);
  95. hep->setNeedsSendToSim(FALSE);
  96. gAgent.sendMessage();
  97. }
  98. }
  99. }
  100. //static
  101. void LLHUDManager::shutdownClass()
  102. {
  103. getInstance()->mHUDEffects.reset();
  104. }
  105. void LLHUDManager::cleanupEffects()
  106. {
  107. S32 i = 0;
  108. while (i < mHUDEffects.count())
  109. {
  110. if (mHUDEffects[i]->isDead())
  111. {
  112. mHUDEffects.remove(i);
  113. }
  114. else
  115. {
  116. i++;
  117. }
  118. }
  119. }
  120. LLHUDEffect *LLHUDManager::createViewerEffect(const U8 type, BOOL send_to_sim, BOOL originated_here)
  121. {
  122. // SJB: DO NOT USE addHUDObject!!! Not all LLHUDObjects are LLHUDEffects!
  123. LLHUDEffect *hep = LLHUDObject::addHUDEffect(type);
  124. if (!hep)
  125. {
  126. return NULL;
  127. }
  128. LLUUID tmp;
  129. tmp.generate();
  130. hep->setID(tmp);
  131. hep->setNeedsSendToSim(send_to_sim);
  132. hep->setOriginatedHere(originated_here);
  133. mHUDEffects.put(hep);
  134. return hep;
  135. }
  136. //static
  137. void LLHUDManager::processViewerEffect(LLMessageSystem *mesgsys, void **user_data)
  138. {
  139. if (gNoRender)
  140. {
  141. return;
  142. }
  143. LLHUDEffect *effectp = NULL;
  144. LLUUID effect_id;
  145. U8 effect_type = 0;
  146. S32 number_blocks = mesgsys->getNumberOfBlocksFast(_PREHASH_Effect);
  147. S32 k;
  148. for (k = 0; k < number_blocks; k++)
  149. {
  150. effectp = NULL;
  151. LLHUDEffect::getIDType(mesgsys, k, effect_id, effect_type);
  152. S32 i;
  153. for (i = 0; i < LLHUDManager::getInstance()->mHUDEffects.count(); i++)
  154. {
  155. LLHUDEffect *cur_effectp = LLHUDManager::getInstance()->mHUDEffects[i];
  156. if (!cur_effectp)
  157. {
  158. llwarns << "Null effect in effect manager, skipping" << llendl;
  159. LLHUDManager::getInstance()->mHUDEffects.remove(i);
  160. i--;
  161. continue;
  162. }
  163. if (cur_effectp->isDead())
  164. {
  165. // llwarns << "Dead effect in effect manager, removing" << llendl;
  166. LLHUDManager::getInstance()->mHUDEffects.remove(i);
  167. i--;
  168. continue;
  169. }
  170. if (cur_effectp->getID() == effect_id)
  171. {
  172. if (cur_effectp->getType() != effect_type)
  173. {
  174. llwarns << "Viewer effect update doesn't match old type!" << llendl;
  175. }
  176. effectp = cur_effectp;
  177. break;
  178. }
  179. }
  180. if (effect_type)
  181. {
  182. if (!effectp)
  183. {
  184. effectp = LLHUDManager::getInstance()->createViewerEffect(effect_type, FALSE, FALSE);
  185. }
  186. if (effectp)
  187. {
  188. effectp->unpackData(mesgsys, k);
  189. }
  190. }
  191. else
  192. {
  193. llwarns << "Received viewer effect of type " << effect_type << " which isn't really an effect!" << llendl;
  194. }
  195. }
  196. //llinfos << "Got viewer effect: " << effect_id << llendl;
  197. }