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

其他游戏

开发平台:

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 __HeightMap_h__
  28. #define __HeightMap_h__
  29. #include "PlanetaryMap.h"
  30. class CCrater
  31. {
  32. public:
  33. float x, y, m_fRadius;
  34. CCrater()
  35. {
  36. }
  37. void Init()
  38. {
  39. x = ((float)rand()/(float)RAND_MAX)*0.5f + 0.25f;
  40. y = ((float)rand()/(float)RAND_MAX)*0.5f + 0.25f;
  41. m_fRadius = ((float)rand()/(float)RAND_MAX)*0.125f + 0.125f;
  42. }
  43. };
  44. class CCraterMap
  45. {
  46. protected:
  47. int m_nSeed;
  48. int m_nCraters;
  49. CCrater m_pCrater[20];
  50. public:
  51. enum {TopLeft=9, TopRight=99, BottomLeft=999, BottomRight=9999};
  52. CCraterMap() {}
  53. ~CCraterMap() {}
  54. void Init(int nSeed, int nCraters, bool bCreate=true)
  55. {
  56. m_nSeed = nSeed;
  57. srand(m_nSeed);
  58. m_nCraters = nCraters;
  59. for(int i=0; i<nCraters; i++)
  60. {
  61. if((float)rand()/(float)RAND_MAX < 0.5f)
  62. m_nCraters--;
  63. }
  64. for(i=0; i<m_nCraters; i++)
  65. m_pCrater[i].Init();
  66. }
  67. static int GetChildSeed(int nSeed, float &x, float &y)
  68. {
  69. nSeed = nSeed * 100;
  70. if(x < 0.5f)
  71. {
  72. if(y < 0.5f)
  73. nSeed += TopLeft;
  74. else
  75. {
  76. y -= 0.5f;
  77. nSeed += BottomLeft;
  78. }
  79. }
  80. else
  81. {
  82. if(y < 0.5f)
  83. {
  84. x -= 0.5f;
  85. nSeed += TopRight;
  86. }
  87. else
  88. {
  89. x -= 0.5f;
  90. y -= 0.5f;
  91. nSeed += BottomRight;
  92. }
  93. }
  94. x *= 2.0f;
  95. y *= 2.0f;
  96. return nSeed;
  97. }
  98. float GetDistance(int i, float x, float y)
  99. {
  100. float dx = x-m_pCrater[i].x;
  101. float dy = y-m_pCrater[i].y;
  102. dx *= dx;
  103. dy *= dy;
  104. return dx + dy;
  105. }
  106. float GetOffset(float x, float y, float fScale)
  107. {
  108. float fOffset = 0;
  109. for(int i=0; i<m_nCraters; i++)
  110. {
  111. float fDist = GetDistance(i, x, y);
  112. float fRadius = m_pCrater[i].m_fRadius * m_pCrater[i].m_fRadius;
  113. if(fDist < fRadius)
  114. {
  115. fDist /= fRadius;
  116. float fDist2 = fDist*fDist;
  117. //fOffset += (2.1f*fDist - 1.1f*fDist2*fDist2 - 1) * m_pCrater[i].m_fRadius;
  118. fOffset += ((fDist2 - 0.25f) * 4.0f * m_pCrater[i].m_fRadius) * (1-fDist);
  119. }
  120. }
  121. return fOffset * fScale;
  122. }
  123. };
  124. class CHeightMap : public CPlanetaryMap
  125. {
  126. protected:
  127. // Members for fractal routine
  128. CFractal m_frHeight;
  129. int m_nFractalSeed;
  130. float m_fOctaves;
  131. float m_fRoughness;
  132. // Members for crater routine
  133. int m_nCraterSeed;
  134. int m_nCraterTopLevel;
  135. int m_nCraterBottomLevel;
  136. int m_nCratersPerLevel;
  137. float m_fCraterScale[50];
  138. // Members for planet parameters
  139. float m_fRadius;
  140. float m_fMaxHeight;
  141. float m_fWaterLevel;
  142. public:
  143. CHeightMap() : CPlanetaryMap()
  144. {
  145. m_nFractalSeed = 0;
  146. m_nCraterSeed = 0;
  147. }
  148. float GetRadius() { return m_fRadius; }
  149. float GetMaxHeight() { return m_fMaxHeight; }
  150. float GetWaterLevel() { return m_fWaterLevel; }
  151. void InitCraters(int nSeed, int nCraterTopLevel, int nCraterBottomLevel, int nCratersPerLevel)
  152. {
  153. m_nCraterSeed = nSeed;
  154. m_nCraterTopLevel = nCraterTopLevel;
  155. m_nCraterBottomLevel = nCraterBottomLevel;
  156. m_nCratersPerLevel = nCratersPerLevel;
  157. }
  158. void InitFractal(int nSeed, float fOctaves, float fRoughness)
  159. {
  160. m_nFractalSeed = nSeed;
  161. m_fOctaves = fOctaves;
  162. m_fRoughness = fRoughness;
  163. m_frHeight.Init(3, m_nFractalSeed, 1.0f - m_fRoughness, 2.0f);
  164. }
  165. void Init(int nResolution, float fRadius, float fMaxHeight=0, float fWaterLevel=-1.0E10f);
  166. float GetHeightNormalized(const CVector &vNormalized);
  167. float GetHeight(const CVector &vPosition, float fHeight) { return GetHeightNormalized(vPosition / fHeight); }
  168. float GetHeightOffset(const CVector &vPosition, float fHeight) { return GetHeightNormalized(vPosition / fHeight) - fHeight; }
  169. float GetHeight(const CVector &vPosition) { return GetHeight(vPosition, vPosition.Magnitude()); }
  170. float GetHeightOffset(const CVector &vPosition) { return GetHeightOffset(vPosition, vPosition.Magnitude()); }
  171. };
  172. #endif // __HeightMap_h__