House.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // House.h: interface for the CHouse class.
  2. //作者:吴雪平  2002-6-17日修改
  3. //实现建筑,读取MS3D文件
  4. //////////////////////////////////////////////////////////////////////
  5. #if !defined(AFX_HOUSE_H__E6E520A1_6369_11D6_812C_5254AB37CDC9__INCLUDED_)
  6. #define AFX_HOUSE_H__E6E520A1_6369_11D6_812C_5254AB37CDC9__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #include "ms3dLoader.h"
  11. #include "heightmap.h"
  12. #include "particle.h"
  13. #include "cmath.h"
  14. class CHouse  
  15. {
  16. public:
  17. CHouse();
  18. virtual ~CHouse();
  19. bool InitHouse(VERTEX position);
  20. void DrawHouse();
  21. private:
  22. void CheckSunVisible();
  23. CMs3dLoader m_ms3dHouse;
  24. CHeightmap  m_cHmap;
  25. VERTEX      m_position;
  26.     CMath       m_cMath;
  27. CParticle     m_smoke;
  28. VERTEX        m_chimneyPos;
  29.     unsigned int  m_texParticles[5]; //for particles
  30. };
  31. #endif // !defined(AFX_HOUSE_H__E6E520A1_6369_11D6_812C_5254AB37CDC9__INCLUDED_)