ROAMSphere.h
上传用户:ghyvgy
上传日期:2009-05-26
资源大小:547k
文件大小:4k
源码类别:

其他游戏

开发平台:

Python

  1. /*
  2. s_p_oneil@hotmail.com
  3. Copyright (c) 2000, Sean O'Neil
  4. All rights reserved.
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions are met:
  7. * Redistributions of source code must retain the above copyright notice,
  8.   this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright notice,
  10.   this list of conditions and the following disclaimer in the documentation
  11.   and/or other materials provided with the distribution.
  12. * Neither the name of this project nor the names of its contributors
  13.   may be used to endorse or promote products derived from this software
  14.   without specific prior written permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  19. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifndef __ROAMSphere_h__
  28. #define __ROAMSphere_h__
  29. #include "SurfaceMap.h"
  30. #include "ROAMDiamond.h"
  31. /****************************************************************************
  32. * Class: CROAMSphere
  33. *****************************************************************************
  34. * This class implements the spherical ROAM algorithm. It keeps lists of the
  35. * vertices, triangles, and diamonds. Because it is currently used to implement
  36. * a fractal-based planet, it also has a member variable of the CFractal class
  37. * and a number of others for defining the planet's basic properties. Its main
  38. * methods are Init(), Update(), and Draw(). Init() initializes the planet
  39. * with a random seed and certain parameters, like radius and roughness.
  40. * Update() updates the priority lists and performs any necessary splits or
  41. * merges in the mesh. Draw() draws the mesh using either smooth or flat shading.
  42. ****************************************************************************/
  43. class CROAMSphere
  44. {
  45. protected:
  46. static unsigned short m_nIndex[128*1024*3];
  47. static int m_nStart[6];
  48. static int m_nEnd[6];
  49. CROAMTriangleList m_llTriangle[6];
  50. CROAMDiamondList m_llDiamond;
  51. CHeightMap *m_pHeightMap;
  52. CSurfaceMap *m_pSurfaceMap;
  53. int m_nTriangles;
  54. float m_fMaxError;
  55. void RebuildEdgeList();
  56. void BuildCube();
  57. void UpdateTriangleOffset(CROAMTriangle *pTriangle);
  58. bool Split(CROAMTriangle *pTriangle);
  59. void Merge(CROAMDiamond *pDiamond);
  60. public:
  61. CROAMSphere()
  62. {
  63. m_fMaxError = 0.001f;
  64. m_nTriangles = 0;
  65. }
  66. ~CROAMSphere()
  67. {
  68. }
  69. int GetTriangleCount() { return m_nTriangles; }
  70. void Init(CHeightMap *pHeightMap, CSurfaceMap *pSurfaceMap=NULL);
  71. void Update(CVector vPosition, CVector vHeading, float fHorizon, float fMaxError);
  72. void BuildIndexList()
  73. {
  74. m_nTriangles = 0;
  75. CROAMTriangle *pTriangle;
  76. int nFace, nIndex = 0;
  77. for(nFace=0; nFace<6; nFace++)
  78. {
  79. m_nStart[nFace] = nIndex;
  80. for(pTriangle=m_llTriangle[nFace].GetHead(); pTriangle->IsInList(); pTriangle = pTriangle->GetNext())
  81. {
  82. pTriangle->Draw(m_nIndex, nIndex);
  83. m_nTriangles++;
  84. }
  85. m_nEnd[nFace] = nIndex;
  86. }
  87. }
  88. void Draw()
  89. {
  90. int nFace;
  91. BuildIndexList();
  92. for(nFace=0; nFace<6; nFace++)
  93. DrawFace(nFace);
  94. }
  95. void DrawFace(int nFace)
  96. {
  97. int nStart = m_nStart[nFace];
  98. int nSize = m_nEnd[nFace] - nStart;
  99. while(nSize > 60000)
  100. {
  101. glDrawElements(GL_TRIANGLES, 60000, GL_UNSIGNED_SHORT, &m_nIndex[nStart]);
  102. nSize -= 60000;
  103. nStart += 60000;
  104. }
  105. glDrawElements(GL_TRIANGLES, nSize, GL_UNSIGNED_SHORT, &m_nIndex[nStart]);
  106. }
  107. };
  108. #endif // __ROAMSphere_h__