StarSystem.cpp
上传用户: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. #include "Master.h"
  28. #include "StarSystem.h"
  29. void CStarSystem::Init(CInfo &info)
  30. {
  31. char szKey[_MAX_PATH];
  32. CStar::Init(info);
  33. m_nPlanets = info.GetIntValue("Planets");
  34. m_pPlanets = new CPlanet[m_nPlanets];
  35. for(int i=0; i<m_nPlanets; i++)
  36. {
  37. sprintf(szKey, "%s.%d", m_szName, i+1);
  38. m_pPlanets[i].SetParent(this);
  39. m_pPlanets[i].Init(CInfo(info, szKey));
  40. }
  41. }
  42. void CStarSystem::Cleanup()
  43. {
  44. if(m_pPlanets)
  45. {
  46. delete[] m_pPlanets;
  47. m_pPlanets = NULL;
  48. }
  49. }
  50. void CStarSystem::Update(C3DObject *pCamera, float fSeconds, int nPolygonMode, float fMaxError, bool bUpdate, bool bTexture)
  51. {
  52. m_llPlanets.RemoveAll();
  53. // Handle collision detection and distance-based sorting
  54. CPlanet *pCollision = NULL;
  55. for(int i=0; i<GetPlanetCount(); i++)
  56. {
  57. CPlanet *pPlanet = GetPlanet(i);
  58. for(int j=0; j<=pPlanet->GetMoonCount(); j++)
  59. {
  60. CPlanet *pCurrent = (j < pPlanet->GetMoonCount()) ? pPlanet->GetMoon(j) : pPlanet;
  61. if(pCurrent->CollisionCheck(pCamera))
  62. pCollision = pCurrent;
  63. for(CPtrListNode *pNode=m_llPlanets.GetHead(); pNode->IsInList(); pNode = pNode->GetNext())
  64. {
  65. if(((CPlanet *)pNode->GetData())->GetHeight() > pCurrent->GetHeight())
  66. break;
  67. }
  68. pNode->InsertBefore(pCurrent);
  69. }
  70. }
  71. if(pCollision)
  72. {
  73. // Very cheesy collision response for now
  74. pCamera->SetVelocity(-pCamera->GetVelocity());
  75. CDoubleVector v = pCamera->GetPosition() - pCollision->GetPosition();
  76. double dScale = (DELTA - pCollision->GetHeight()) / v.Magnitude();
  77. v *= dScale;
  78. pCamera->SetPosition(pCamera->GetPosition() + v);
  79. }
  80. for(CPtrListNode *pNode=m_llPlanets.GetHead(); pNode->IsInList(); pNode = pNode->GetNext())
  81. {
  82. CPlanet *pPlanet = (CPlanet *)pNode->GetData();
  83. if(pPlanet->GetImpostorError(pCamera) >= 0.00002f)
  84. {
  85. if(pPlanet->GetImpostorScreenSpace(pCamera) > 1.0f)
  86. {
  87. pPlanet->ClearFlags(CImpostor::Enabled | CImpostor::NeedsUpdate);
  88. pPlanet->SetViewpoint(pCamera, 0);
  89. }
  90. else
  91. {
  92. pPlanet->SetFlags(CImpostor::Enabled | CImpostor::NeedsUpdate);
  93. CMatrix mView;
  94. pPlanet->GetImpostorViewMatrix(pCamera, mView);
  95. mView.Transpose();
  96. C3DObject objView(mView);
  97. objView.SetPosition(pCamera->GetPosition());
  98. pPlanet->SetViewpoint(&objView, 0);
  99. }
  100. if(bUpdate)
  101. pPlanet->Update(fMaxError);
  102. }
  103. }
  104. }
  105. void CStarSystem::Draw(C3DObject *pCamera, float fSeconds, int nPolygonMode, float fMaxError, bool bUpdate, bool bTexture)
  106. {
  107. CPtrListNode *pNode;
  108. CPlanet *pPlanet;
  109. GLUtil()->BeginVertexArray();
  110. // Start by updating any impostors that need to be updated
  111. GLUtil()->BeginPBuffer();
  112. glPolygonMode(GL_FRONT, nPolygonMode);
  113. for(pNode=GetHeadPlanet(); pNode->IsInList(); pNode = pNode->GetNext())
  114. {
  115. pPlanet = (CPlanet *)pNode->GetData();
  116. if(pPlanet->GetFlags(CImpostor::NeedsUpdate) != 0)
  117. {
  118. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  119. pPlanet->InitImpostorRender(pCamera);
  120. pPlanet->Draw(pCamera, this, bTexture, true);
  121. pPlanet->FinishImpostorRender();
  122. }
  123. }
  124. glPolygonMode(GL_FRONT, GL_FILL);
  125. GLUtil()->EndPBuffer();
  126. // Draw the billboards in the star system
  127. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  128. glDisable(GL_LIGHTING);
  129. glDisable(GL_DEPTH_TEST);
  130. CStar::Draw(pCamera);
  131. for(pNode = GetTailPlanet(); pNode->IsInList(); pNode = pNode->GetPrevious())
  132. {
  133. pPlanet = (CPlanet *)pNode->GetData();
  134. if(pPlanet->GetFlags(CImpostor::Enabled))
  135. pPlanet->DrawImpostor(pCamera);
  136. }
  137. glEnable(GL_DEPTH_TEST);
  138. glEnable(GL_LIGHTING);
  139. // If the nearest planet is being rendered normally, render it here
  140. pPlanet = (CPlanet *)GetHeadPlanet()->GetData();
  141. if(pPlanet->GetFlags(CImpostor::Enabled) == 0)
  142. {
  143. glPolygonMode(GL_FRONT, nPolygonMode);
  144. pPlanet->Draw(pCamera, this, bTexture, false);
  145. glPolygonMode(GL_FRONT, GL_FILL);
  146. }
  147. GLUtil()->EndVertexArray();
  148. }