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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file   llbboxlocal_test.cpp
  3.  * @author Martin Reddy
  4.  * @date   2009-06-25
  5.  * @brief  Test for llbboxlocal.cpp.
  6.  * 
  7.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  8.  * 
  9.  * Copyright (c) 2009-2010, Linden Research, Inc.
  10.  * 
  11.  * Second Life Viewer Source Code
  12.  * The source code in this file ("Source Code") is provided by Linden Lab
  13.  * to you under the terms of the GNU General Public License, version 2.0
  14.  * ("GPL"), unless you have obtained a separate licensing agreement
  15.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  16.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  17.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  18.  * 
  19.  * There are special exceptions to the terms and conditions of the GPL as
  20.  * it is applied to this Source Code. View the full text of the exception
  21.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  22.  * online at
  23.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  24.  * 
  25.  * By copying, modifying or distributing this software, you acknowledge
  26.  * that you have read and understood your obligations described above,
  27.  * and agree to abide by those obligations.
  28.  * 
  29.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  30.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  31.  * COMPLETENESS OR PERFORMANCE.
  32.  * $/LicenseInfo$
  33.  */
  34. #include "linden_common.h"
  35. #include "../test/lltut.h"
  36. #include "../llbboxlocal.h"
  37. namespace tut
  38. {
  39. struct LLBBoxLocalData
  40. {
  41. };
  42. typedef test_group<LLBBoxLocalData> factory;
  43. typedef factory::object object;
  44. }
  45. namespace
  46. {
  47. tut::factory llbboxlocal_test_factory("LLBBoxLocal");
  48. }
  49. namespace tut
  50. {
  51. template<> template<>
  52. void object::test<1>()
  53. {
  54. //
  55. // test the default constructor
  56. //
  57. LLBBoxLocal bbox1;
  58. ensure_equals("Default bbox min", bbox1.getMin(), LLVector3(0.0f, 0.0f, 0.0f));
  59. ensure_equals("Default bbox max", bbox1.getMax(), LLVector3(0.0f, 0.0f, 0.0f));
  60. }
  61. template<> template<>
  62. void object::test<2>()
  63. {
  64. //
  65. // test the non-default constructor
  66. //
  67. LLBBoxLocal bbox2(LLVector3(-1.0f, -2.0f, 0.0f), LLVector3(1.0f, 2.0f, 3.0f));
  68. ensure_equals("Custom bbox min", bbox2.getMin(), LLVector3(-1.0f, -2.0f, 0.0f));
  69. ensure_equals("Custom bbox max", bbox2.getMax(), LLVector3(1.0f, 2.0f, 3.0f));
  70. }
  71. template<> template<>
  72. void object::test<3>()
  73. {
  74. //
  75. // test the setMin()
  76. //
  77. // N.B. no validation is currently performed to ensure that the min
  78. // and max vectors are actually the min/max values.
  79. //
  80. LLBBoxLocal bbox2;
  81. bbox2.setMin(LLVector3(1.0f, 2.0f, 3.0f));
  82. ensure_equals("Custom bbox min (2)", bbox2.getMin(), LLVector3(1.0f, 2.0f, 3.0f));
  83. }
  84. template<> template<>
  85. void object::test<4>()
  86. {
  87. //
  88. // test the setMax()
  89. //
  90. // N.B. no validation is currently performed to ensure that the min
  91. // and max vectors are actually the min/max values.
  92. //
  93. LLBBoxLocal bbox2;
  94. bbox2.setMax(LLVector3(10.0f, 20.0f, 30.0f));
  95. ensure_equals("Custom bbox max (2)", bbox2.getMax(), LLVector3(10.0f, 20.0f, 30.0f));
  96. }
  97. template<> template<>
  98. void object::test<5>()
  99. {
  100. //
  101. // test the getCenter() method
  102. //
  103. ensure_equals("Default bbox center", LLBBoxLocal().getCenter(), LLVector3(0.0f, 0.0f, 0.0f));
  104. LLBBoxLocal bbox1(LLVector3(-1.0f, -1.0f, -1.0f), LLVector3(0.0f, 0.0f, 0.0f));
  105. ensure_equals("Custom bbox center", bbox1.getCenter(), LLVector3(-0.5f, -0.5f, -0.5f));
  106. LLBBoxLocal bbox2(LLVector3(0.0f, 0.0f, 0.0f), LLVector3(-1.0f, -1.0f, -1.0f));
  107. ensure_equals("Invalid bbox center", bbox2.getCenter(), LLVector3(-0.5f, -0.5f, -0.5f));
  108. }
  109. template<> template<>
  110. void object::test<6>()
  111. {
  112. //
  113. // test the getExtent() method
  114. //
  115. LLBBoxLocal bbox2(LLVector3(0.0f, 0.0f, 0.0f), LLVector3(-1.0f, -1.0f, -1.0f));
  116. ensure_equals("Default bbox extent", LLBBoxLocal().getExtent(), LLVector3(0.0f, 0.0f, 0.0f));
  117. LLBBoxLocal bbox3(LLVector3(-1.0f, -1.0f, -1.0f), LLVector3(1.0f, 2.0f, 0.0f));
  118. ensure_equals("Custom bbox extent", bbox3.getExtent(), LLVector3(2.0f, 3.0f, 1.0f));
  119. }
  120. template<> template<>
  121. void object::test<7>()
  122. {
  123. //
  124. // test the addPoint() method
  125. //
  126. // N.B. if you create an empty bbox and then add points,
  127. // the vector (0, 0, 0) will always be part of the bbox.
  128. // (Fixing this would require adding a bool to the class size).
  129. //
  130. LLBBoxLocal bbox1;
  131. bbox1.addPoint(LLVector3(-1.0f, -2.0f, -3.0f));
  132. bbox1.addPoint(LLVector3(3.0f, 4.0f, 5.0f));
  133. ensure_equals("Custom BBox center (1)", bbox1.getCenter(), LLVector3(1.0f, 1.0f, 1.0f));
  134. ensure_equals("Custom BBox min (1)", bbox1.getMin(), LLVector3(-1.0f, -2.0f, -3.0f));
  135. ensure_equals("Custom BBox max (1)", bbox1.getMax(), LLVector3(3.0f, 4.0f, 5.0f));
  136. bbox1.addPoint(LLVector3(0.0f, 0.0f, 0.0f));
  137. bbox1.addPoint(LLVector3(1.0f, 2.0f, 3.0f));
  138. bbox1.addPoint(LLVector3(2.0f, 2.0f, 2.0f));
  139. ensure_equals("Custom BBox center (2)", bbox1.getCenter(), LLVector3(1.0f, 1.0f, 1.0f));
  140. ensure_equals("Custom BBox min (2)", bbox1.getMin(), LLVector3(-1.0f, -2.0f, -3.0f));
  141. ensure_equals("Custom BBox max (2)", bbox1.getMax(), LLVector3(3.0f, 4.0f, 5.0f));
  142. bbox1.addPoint(LLVector3(5.0f, 5.0f, 5.0f));
  143. ensure_equals("Custom BBox center (3)", bbox1.getCenter(), LLVector3(2.0f, 1.5f, 1.0f));
  144. ensure_equals("Custom BBox min (3)", bbox1.getMin(), LLVector3(-1.0f, -2.0f, -3.0f));
  145. ensure_equals("Custom BBox max (3)", bbox1.getMax(), LLVector3(5.0f, 5.0f, 5.0f));
  146. }
  147. template<> template<>
  148. void object::test<8>()
  149. {
  150. //
  151. // test the addBBox() methods
  152. //
  153. // N.B. if you create an empty bbox and then add points,
  154. // the vector (0, 0, 0) will always be part of the bbox.
  155. // (Fixing this would require adding a bool to the class size).
  156. //
  157. LLBBoxLocal bbox2(LLVector3(1.0f, 1.0f, 1.0f), LLVector3(2.0f, 2.0f, 2.0f));
  158. bbox2.addBBox(LLBBoxLocal(LLVector3(1.5f, 1.5f, 1.5f), LLVector3(3.0f, 3.0f, 3.0f)));
  159. ensure_equals("Custom BBox center (4)", bbox2.getCenter(), LLVector3(2.0f, 2.0f, 2.0f));
  160. ensure_equals("Custom BBox min (4)", bbox2.getMin(), LLVector3(1.0f, 1.0f, 1.0f));
  161. ensure_equals("Custom BBox max (4)", bbox2.getMax(), LLVector3(3.0f, 3.0f, 3.0f));
  162. bbox2.addBBox(LLBBoxLocal(LLVector3(-1.0f, -1.0f, -1.0f), LLVector3(0.0f, 0.0f, 0.0f)));
  163. ensure_equals("Custom BBox center (5)", bbox2.getCenter(), LLVector3(1.0f, 1.0f, 1.0f));
  164. ensure_equals("Custom BBox min (5)", bbox2.getMin(), LLVector3(-1.0f, -1.0f, -1.0f));
  165. ensure_equals("Custom BBox max (5)", bbox2.getMax(), LLVector3(3.0f, 3.0f, 3.0f));
  166. }
  167. template<> template<>
  168. void object::test<9>()
  169. {
  170. //
  171. // test the expand() method
  172. //
  173. LLBBoxLocal bbox1;
  174. bbox1.expand(0.0f);
  175. ensure_equals("Zero-expanded Default BBox center", bbox1.getCenter(), LLVector3(0.0f, 0.0f, 0.0f));
  176. LLBBoxLocal bbox2(LLVector3(1.0f, 2.0f, 3.0f), LLVector3(3.0f, 4.0f, 5.0f));
  177. bbox2.expand(0.0f);
  178. ensure_equals("Zero-expanded BBox center", bbox2.getCenter(), LLVector3(2.0f, 3.0f, 4.0f));
  179. ensure_equals("Zero-expanded BBox min", bbox2.getMin(), LLVector3(1.0f, 2.0f, 3.0f));
  180. ensure_equals("Zero-expanded BBox max", bbox2.getMax(), LLVector3(3.0f, 4.0f, 5.0f));
  181. bbox2.expand(0.5f);
  182. ensure_equals("Positive-expanded BBox center", bbox2.getCenter(), LLVector3(2.0f, 3.0f, 4.0f));
  183. ensure_equals("Positive-expanded BBox min", bbox2.getMin(), LLVector3(0.5f, 1.5f, 2.5f));
  184. ensure_equals("Positive-expanded BBox max", bbox2.getMax(), LLVector3(3.5f, 4.5f, 5.5f));
  185. bbox2.expand(-1.0f);
  186. ensure_equals("Negative-expanded BBox center", bbox2.getCenter(), LLVector3(2.0f, 3.0f, 4.0f));
  187. ensure_equals("Negative-expanded BBox min", bbox2.getMin(), LLVector3(1.5f, 2.5f, 3.5f));
  188. ensure_equals("Negative-expanded BBox max", bbox2.getMax(), LLVector3(2.5f, 3.5f, 4.5f));
  189. }
  190. }