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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llviewerlayer.cpp
  3.  * @brief LLViewerLayer 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 "llviewerlayer.h"
  34. #include "llerror.h"
  35. #include "llmath.h"
  36. LLViewerLayer::LLViewerLayer(const S32 width, const F32 scale)
  37. {
  38. mWidth = width;
  39. mScale = scale;
  40. mScaleInv = 1.f/scale;
  41. mDatap = new F32[width*width];
  42. for (S32 i = 0; i < width*width; i++)
  43. {
  44. *(mDatap + i) = 0.f;
  45. }
  46. }
  47. LLViewerLayer::~LLViewerLayer()
  48. {
  49. delete[] mDatap;
  50. mDatap = NULL;
  51. }
  52. F32 LLViewerLayer::getValue(const S32 x, const S32 y) const
  53. {
  54. // llassert(x >= 0);
  55. // llassert(x < mWidth);
  56. // llassert(y >= 0);
  57. // llassert(y < mWidth);
  58. return *(mDatap + x + y*mWidth);
  59. }
  60. F32 LLViewerLayer::getValueScaled(const F32 x, const F32 y) const
  61. {
  62. S32 x1, x2, y1, y2;
  63. F32 x_frac, y_frac;
  64. x_frac = x*mScaleInv;
  65. x1 = llfloor(x_frac);
  66. x2 = x1 + 1;
  67. x_frac -= x1;
  68. y_frac = y*mScaleInv;
  69. y1 = llfloor(y_frac);
  70. y2 = y1 + 1;
  71. y_frac -= y1;
  72. x1 = llmin((S32)mWidth-1, x1);
  73. x1 = llmax(0, x1);
  74. x2 = llmin((S32)mWidth-1, x2);
  75. x2 = llmax(0, x2);
  76. y1 = llmin((S32)mWidth-1, y1);
  77. y1 = llmax(0, y1);
  78. y2 = llmin((S32)mWidth-1, y2);
  79. y2 = llmax(0, y2);
  80. // Take weighted average of all four points (bilinear interpolation)
  81. S32 row1 = y1 * mWidth;
  82. S32 row2 = y2 * mWidth;
  83. // Access in squential order in memory, and don't use immediately.
  84. F32 row1_left  = mDatap[ row1 + x1 ];
  85. F32 row1_right = mDatap[ row1 + x2 ];
  86. F32 row2_left  = mDatap[ row2 + x1 ];
  87. F32 row2_right = mDatap[ row2 + x2 ];
  88. F32 row1_interp = row1_left - x_frac * (row1_left - row1_right);
  89. F32 row2_interp = row2_left - x_frac * (row2_left - row2_right);
  90. return row1_interp - y_frac * (row1_interp - row2_interp);
  91. }