Camera.cpp
上传用户:dfjhuyju
上传日期:2013-03-13
资源大小:11035k
文件大小:7k
源码类别:

OpenGL

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "Camera.h"
  3. #define kSpeed 50.0f
  4. float g_FrameInterval = 0.0f;
  5. //  下面的函数的功能是计算帧率
  6. /*void CalculateFrameRate()
  7. {
  8. static float framesPerSecond    = 0.0f; // 保存帧率
  9.     static float lastTime = 0.0f; // 最好帧显示的时刻
  10. static char strFrameRate[50] = {0}; // 窗口标题字符串
  11. static float frameTime = 0.0f;
  12. // 获得当前系统时间
  13.     float currentTime = timeGetTime() * 0.001f;
  14. //  获得时间间隔
  15.   g_FrameInterval = currentTime - frameTime;
  16. frameTime = currentTime;
  17. // 帧计数器递增
  18.     ++framesPerSecond;
  19. //  时间是否超过1秒
  20.     if( currentTime - lastTime > 1.0f )
  21.     {
  22. // 设置当前时间
  23.     lastTime = currentTime;
  24. // 打印标题
  25. sprintf(strFrameRate, "地形模拟 当前帧率:每秒 %d 帧", int(framesPerSecond));
  26. // 设置窗口标题
  27. // SetWindowText(g_hWnd, strFrameRate);
  28. // 帧计数器复位
  29.         framesPerSecond = 0;
  30.     }
  31. }
  32. */
  33. //  下面的函数的功能是计算个矢量的叉积,即求与两个矢量都垂直的矢量
  34. CVector3 Cross(CVector3 vVector1, CVector3 vVector2)
  35. {
  36. CVector3 vNormal;
  37. // 计算垂直矢量
  38. vNormal.x = ((vVector1.y * vVector2.z) - (vVector1.z * vVector2.y));
  39. vNormal.y = ((vVector1.z * vVector2.x) - (vVector1.x * vVector2.z));
  40. vNormal.z = ((vVector1.x * vVector2.y) - (vVector1.y * vVector2.x));
  41. // 返回结果
  42. return vNormal;  
  43. }
  44. //  下面的函数的功能是求矢量的长度
  45. float Magnitude(CVector3 vNormal)
  46. {
  47. return (float)sqrt( (vNormal.x * vNormal.x) + 
  48. (vNormal.y * vNormal.y) + 
  49. (vNormal.z * vNormal.z) );
  50. }
  51. //  下面的函数的功能是将矢量单位化
  52. CVector3 Normalize(CVector3 vVector)
  53. {
  54. // 获得矢量的长度
  55. float magnitude = Magnitude(vVector);
  56. vVector = vVector / magnitude;
  57. return vVector;
  58. }
  59. //  下面的函数是类CCamera的构造函数
  60. CCamera::CCamera()
  61. {
  62. CVector3 vZero = CVector3(0.0, 0.0, 0.0); // 初始化摄像机位置
  63. CVector3 vView = CVector3(0.0, 1.0, 0.5); // 初始化摄像机方向 
  64. CVector3 vUp   = CVector3(0.0, 0.0, 1.0); // 初始化摄像机的向上方向
  65. m_vPosition = vZero;
  66. m_vView = vView;
  67. m_vUpVector = vUp;
  68. }
  69. //  设置摄像机的位置、方向
  70. void CCamera::PositionCamera(float positionX, float positionY, float positionZ,
  71.         float viewX,     float viewY,     float viewZ,
  72.  float upVectorX, float upVectorY, float upVectorZ)
  73. {
  74. CVector3 vPosition = CVector3(positionX, positionY, positionZ);
  75. CVector3 vView = CVector3(viewX, viewY, viewZ);
  76. CVector3 vUpVector = CVector3(upVectorX, upVectorY, upVectorZ);
  77. m_vPosition = vPosition;
  78. m_vView     = vView;
  79. m_vUpVector = vUpVector;
  80. }
  81. //  下面的函数的功能是通过鼠标设置视点
  82. void CCamera::SetViewByMouse()
  83. {
  84. POINT mousePos;
  85. int middleX = SCREEN_WIDTH  >> 1;
  86. int middleY = SCREEN_HEIGHT >> 1;
  87. float angleY = 0.0f;
  88. float angleZ = 0.0f;
  89. static float currentRotX = 0.0f;
  90. // 获得鼠标的当前位置
  91. GetCursorPos(&mousePos);
  92. // 如果鼠标位于窗口的正中央,则返回
  93. if( (mousePos.x == middleX) && (mousePos.y == middleY) ) return;
  94. // 设置鼠标的位置为窗口正中央
  95. SetCursorPos(middleX, middleY);
  96. // 计算角度
  97. angleY = (float)( (middleX - mousePos.x) ) / 500.0f;
  98. angleZ = (float)( (middleY - mousePos.y) ) / 500.0f;
  99. currentRotX -= angleZ;  
  100. if(currentRotX > 1.0f)
  101. currentRotX = 1.0f;
  102. else if(currentRotX < -1.0f)
  103. currentRotX = -1.0f;
  104. // 旋转观察方向
  105. else
  106. {
  107. CVector3 vAxis = Cross(m_vView - m_vPosition, m_vUpVector);
  108. vAxis = Normalize(vAxis);
  109. RotateView(angleZ, vAxis.x, vAxis.y, vAxis.z);
  110. RotateView(angleY, 0, 1, 0);
  111. }
  112. }
  113. //  下面的函数的功能是将摄像机的观察方向绕某个方向轴旋转一定的角度
  114. void CCamera::RotateView(float angle, float x, float y, float z)
  115. {
  116. CVector3 vNewView;
  117. // 获得观察方向矢量
  118. CVector3 vView = m_vView - m_vPosition;
  119. // 计算角度的cos和sin值
  120. float cosTheta = (float)cos(angle);
  121. float sinTheta = (float)sin(angle);
  122. // 计算新的观察点坐标X
  123. vNewView.x  = (cosTheta + (1 - cosTheta) * x * x) * vView.x;
  124. vNewView.x += ((1 - cosTheta) * x * y - z * sinTheta) * vView.y;
  125. vNewView.x += ((1 - cosTheta) * x * z + y * sinTheta) * vView.z;
  126. // 计算新的观察点坐标Y
  127. vNewView.y  = ((1 - cosTheta) * x * y + z * sinTheta) * vView.x;
  128. vNewView.y += (cosTheta + (1 - cosTheta) * y * y) * vView.y;
  129. vNewView.y += ((1 - cosTheta) * y * z - x * sinTheta) * vView.z;
  130. // 计算新的观察点坐标Z
  131. vNewView.z  = ((1 - cosTheta) * x * z - y * sinTheta) * vView.x;
  132. vNewView.z += ((1 - cosTheta) * y * z + x * sinTheta) * vView.y;
  133. vNewView.z += (cosTheta + (1 - cosTheta) * z * z) * vView.z;
  134. m_vView = m_vPosition + vNewView;
  135. }
  136. //  下面的函数的功能是向左向右移动摄像机
  137. void CCamera::StrafeCamera(float speed)
  138. {
  139. // Add the strafe vector to our position
  140. m_vPosition.x += m_vStrafe.x * speed;
  141. m_vPosition.z += m_vStrafe.z * speed;
  142. // Add the strafe vector to our view
  143. m_vView.x += m_vStrafe.x * speed;
  144. m_vView.z += m_vStrafe.z * speed;
  145. }
  146. //  下面的函数的功能是根据一定的速度前后移动摄像机
  147. void CCamera::MoveCamera(float speed)
  148. {
  149. // 获得当前摄像机方向
  150. CVector3 vVector = m_vView - m_vPosition;
  151. vVector = Normalize(vVector);
  152. m_vPosition.x += vVector.x * speed; // 移动摄像机的位置坐标X
  153. m_vPosition.y += vVector.y * speed; // 移动摄像机的位置坐标Y
  154. m_vPosition.z += vVector.z * speed; // 移动摄像机的位置坐标Z
  155. m_vView.x += vVector.x * speed; // 摄像机X方向移动
  156. m_vView.y += vVector.y * speed; // 摄像机Y方向移动
  157. m_vView.z += vVector.z * speed; // 摄像机Z方向移动
  158. }
  159. //  下面的函数的功能是根据不同的按键,移动摄像机
  160. void CCamera::CheckForMovement()
  161. {
  162. // 获得当前帧率
  163. float speed = kSpeed * g_FrameInterval;
  164. // 是否按下UP箭头键或'W'键
  165. if(GetKeyState(VK_UP) & 0x80 || GetKeyState('W') & 0x80) {
  166. // 移动摄像机
  167. MoveCamera(speed);
  168. }
  169. // 是否按下DOWN键或'S'键
  170. if(GetKeyState(VK_DOWN) & 0x80 || GetKeyState('S') & 0x80) {
  171. // 移动摄像机
  172. MoveCamera(-speed);
  173. }
  174. // 是否按下LEFT箭头键或'A'键
  175. if(GetKeyState(VK_LEFT) & 0x80 || GetKeyState('A') & 0x80) {
  176. // 移动摄像机
  177. StrafeCamera(-speed);
  178. }
  179. // 是否按下RIGHT箭头键或'D'键
  180. if(GetKeyState(VK_RIGHT) & 0x80 || GetKeyState('D') & 0x80) {
  181. // 移动摄像机
  182. StrafeCamera(speed);
  183. }
  184. }
  185. //  下面的函数的功能是更新摄像机方向
  186. void CCamera::Update() 
  187. {
  188. // 初始化变量
  189. CVector3 vCross = Cross(m_vView - m_vPosition, m_vUpVector);
  190. // 规范化矢量
  191. m_vStrafe = Normalize(vCross);
  192. // 移动摄像机方向
  193. SetViewByMouse();
  194. // 判断是否有按键
  195. CheckForMovement();
  196. // 计算帧率
  197. // CalculateFrameRate();
  198. }
  199. //  下面的函数的功能是设置投影变换
  200. void CCamera::Look()
  201. {
  202. // 根据摄像机的位置、方向和上下方向设置投影变换
  203. gluLookAt(m_vPosition.x, m_vPosition.y, m_vPosition.z,
  204.   m_vView.x,  m_vView.y,     m_vView.z,
  205.   m_vUpVector.x, m_vUpVector.y, m_vUpVector.z);
  206. }