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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltexlayerglobalcolor.cpp
  3.  * @brief SERAPH - ADD IN
  4.  *
  5.  * $LicenseInfo:firstyear=2008&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2008-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 "llagent.h"
  34. #include "lltexlayer.h"
  35. #include "llvoavatar.h"
  36. #include "llwearable.h"
  37. #include "lltexglobalcolor.h"
  38. //-----------------------------------------------------------------------------
  39. // LLTexGlobalColor
  40. //-----------------------------------------------------------------------------
  41. LLTexGlobalColor::LLTexGlobalColor(LLVOAvatar* avatar) 
  42. :
  43. mAvatar(avatar),
  44. mInfo(NULL)
  45. {
  46. }
  47. LLTexGlobalColor::~LLTexGlobalColor()
  48. {
  49. // mParamColorList are LLViewerVisualParam's and get deleted with ~LLCharacter()
  50. //std::for_each(mParamColorList.begin(), mParamColorList.end(), DeletePointer());
  51. }
  52. BOOL LLTexGlobalColor::setInfo(LLTexGlobalColorInfo *info)
  53. {
  54. llassert(mInfo == NULL);
  55. mInfo = info;
  56. //mID = info->mID; // No ID
  57. mParamGlobalColorList.reserve(mInfo->mParamColorInfoList.size());
  58. for (param_color_info_list_t::iterator iter = mInfo->mParamColorInfoList.begin(); 
  59.  iter != mInfo->mParamColorInfoList.end(); 
  60.  iter++)
  61. {
  62. LLTexParamGlobalColor* param_color = new LLTexParamGlobalColor(this);
  63. if (!param_color->setInfo(*iter, TRUE))
  64. {
  65. mInfo = NULL;
  66. return FALSE;
  67. }
  68. mParamGlobalColorList.push_back(param_color);
  69. }
  70. return TRUE;
  71. }
  72. LLColor4 LLTexGlobalColor::getColor() const
  73. {
  74. // Sum of color params
  75. if (mParamGlobalColorList.empty())
  76. return LLColor4(1.f, 1.f, 1.f, 1.f);
  77. LLColor4 net_color(0.f, 0.f, 0.f, 0.f);
  78. LLTexLayer::calculateTexLayerColor(mParamGlobalColorList, net_color);
  79. return net_color;
  80. }
  81. const std::string& LLTexGlobalColor::getName() const
  82. return mInfo->mName; 
  83. }
  84. //-----------------------------------------------------------------------------
  85. // LLTexParamGlobalColor
  86. //-----------------------------------------------------------------------------
  87. LLTexParamGlobalColor::LLTexParamGlobalColor(LLTexGlobalColor* tex_global_color) :
  88. LLTexLayerParamColor(tex_global_color->getAvatar()),
  89. mTexGlobalColor(tex_global_color)
  90. {
  91. }
  92. /*virtual*/ LLViewerVisualParam* LLTexParamGlobalColor::cloneParam(LLWearable* wearable) const
  93. {
  94. LLTexParamGlobalColor *new_param = new LLTexParamGlobalColor(mTexGlobalColor);
  95. *new_param = *this;
  96. return new_param;
  97. }
  98. void LLTexParamGlobalColor::onGlobalColorChanged(bool upload_bake)
  99. {
  100. mAvatar->onGlobalColorChanged(mTexGlobalColor, upload_bake);
  101. }
  102. //-----------------------------------------------------------------------------
  103. // LLTexGlobalColorInfo
  104. //-----------------------------------------------------------------------------
  105. LLTexGlobalColorInfo::LLTexGlobalColorInfo()
  106. {
  107. }
  108. LLTexGlobalColorInfo::~LLTexGlobalColorInfo()
  109. {
  110. for_each(mParamColorInfoList.begin(), mParamColorInfoList.end(), DeletePointer());
  111. }
  112. BOOL LLTexGlobalColorInfo::parseXml(LLXmlTreeNode* node)
  113. {
  114. // name attribute
  115. static LLStdStringHandle name_string = LLXmlTree::addAttributeString("name");
  116. if (!node->getFastAttributeString(name_string, mName))
  117. {
  118. llwarns << "<global_color> element is missing name attribute." << llendl;
  119. return FALSE;
  120. }
  121. // <param> sub-element
  122. for (LLXmlTreeNode* child = node->getChildByName("param");
  123.  child;
  124.  child = node->getNextNamedChild())
  125. {
  126. if (child->getChildByName("param_color"))
  127. {
  128. // <param><param_color/></param>
  129. LLTexLayerParamColorInfo* info = new LLTexLayerParamColorInfo();
  130. if (!info->parseXml(child))
  131. {
  132. delete info;
  133. return FALSE;
  134. }
  135. mParamColorInfoList.push_back(info);
  136. }
  137. }
  138. return TRUE;
  139. }