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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llface.inl
  3.  * @brief Inline functions for LLFace
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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. #ifndef LL_LLFACE_INL
  33. #define LL_LLFACE_INL
  34. #include "llglheaders.h"
  35. #include "llrender.h"
  36. inline BOOL LLFace::getDirty() const
  37. return (mGeneration != mDrawPoolp->mGeneration); 
  38. }
  39. inline void LLFace::clearDirty()
  40. {
  41. mGeneration = mDrawPoolp->mGeneration;
  42. }
  43. inline const LLTextureEntry* LLFace::getTextureEntry()   const
  44. {
  45. return mVObjp->getTE(mTEOffset);
  46. }
  47. inline LLDrawPool* LLFace::getPool()     const
  48. {
  49. return mDrawPoolp;
  50. }
  51. inline S32 LLFace::getStride()   const
  52. {
  53. return mDrawPoolp->getStride();
  54. }
  55. inline LLDrawable* LLFace::getDrawable() const
  56. {
  57. return mDrawablep;
  58. }
  59. inline LLViewerObject* LLFace::getViewerObject() const
  60. {
  61. return mVObjp;
  62. }
  63. inline S32 LLFace::getColors     (LLStrider<LLColor4U> &colors)
  64. {
  65. if (!mGeomCount)
  66. {
  67. return -1;
  68. }
  69. LLColor4U *colorp = NULL;
  70. if (isState(BACKLIST))
  71. {
  72. if (!mBackupMem)
  73. {
  74. printDebugInfo();
  75. llerrs << "No backup memory for face" << llendl;
  76. }
  77. colorp = (LLColor4U*)(mBackupMem + (4 * mIndicesCount) + (mGeomCount * mDrawPoolp->getStride()));
  78. colors = colorp;
  79. return 0;
  80. }
  81. else
  82. {
  83. llassert(mGeomIndex >= 0);
  84. if (!mDrawPoolp->getColorStrider(colors, mGeomIndex))
  85. {
  86. printDebugInfo();
  87. llerrs << "No color pointer for a color strider!" << llendl;
  88. }
  89. mDrawPoolp->setDirtyColors();
  90. return mGeomIndex;
  91. }
  92. }
  93. inline S32 LLFace::getTexCoords  (LLStrider<LLVector2> &texCoords, S32 pass )
  94. {
  95. if (!mGeomCount)
  96. {
  97. return -1;
  98. }
  99. if (isState(BACKLIST))
  100. {
  101. if (!mBackupMem)
  102. {
  103. printDebugInfo();
  104. llerrs << "No backup memory for face" << llendl;
  105. }
  106. texCoords = (LLVector2*)(mBackupMem + (4 * mIndicesCount) + mDrawPoolp->mDataOffsets[LLDrawPool::DATA_TEX_COORDS0 + pass]);
  107. texCoords.setStride( mDrawPoolp->getStride());
  108. return 0;
  109. }
  110. else
  111. {
  112. llassert(mGeomIndex >= 0);
  113. mDrawPoolp->getTexCoordStrider(texCoords, mGeomIndex, pass );
  114. mDrawPoolp->setDirty();
  115. return mGeomIndex;
  116. }
  117. }
  118. inline S32 LLFace::getIndices    (U32*  &indicesp)
  119. {
  120. if (isState(BACKLIST))
  121. {
  122. indicesp = (U32*)mBackupMem;
  123. return 0;
  124. }
  125. else
  126. {
  127. indicesp = mDrawPoolp->getIndices(mIndicesIndex);
  128. llassert(mGeomIndex >= 0);
  129. return mGeomIndex;
  130. }
  131. }
  132. inline const U32* LLFace::getRawIndices() const
  133. {
  134. llassert(!isState(BACKLIST));
  135. return &mDrawPoolp->mIndices[mIndicesIndex];
  136. }
  137. inline void LLFace::bindTexture(S32 stage) const
  138. {
  139. if (mTexture)
  140. {
  141. mTexture->bindTexture(stage);
  142. }
  143. else
  144. {
  145. LLImageGL::unbindTexture(stage, GL_TEXTURE_2D);
  146. }
  147. }
  148. #endif