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

游戏引擎

开发平台:

Visual C++

  1. // CoverManager.cpp: implementation of the CCoverManager class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "CoverManager.h"
  6. #include "stdio.h"
  7. //////////////////////////////////////////////////////////////////////
  8. // Construction/Destruction
  9. //////////////////////////////////////////////////////////////////////
  10. CCoverManager::CCoverManager()
  11. {
  12. }
  13. CCoverManager::~CCoverManager()
  14. {
  15. }
  16. bool  CCoverManager::InitCoverManager()
  17. {
  18. /* //////////// Translate plant map
  19. for(int z=0;z<256;z++)
  20. for(int x=0;x<256;x++)
  21. {
  22. if(m_cHmap.m_pCovermap[z*256+x]==100) //////stone
  23. m_cHmap.m_pCovermap[z*256+x]=20;
  24. if(m_cHmap.m_pCovermap[z*256+x]==150) //////grass
  25. m_cHmap.m_pCovermap[z*256+x]=30;
  26. if(m_cHmap.m_pCovermap[z*256+x]==200) //////bushA
  27. m_cHmap.m_pCovermap[z*256+x]=32;
  28. if(m_cHmap.m_pCovermap[z*256+x]==250) //////bushB
  29. m_cHmap.m_pCovermap[z*256+x]=41;
  30. }
  31.     ////////////////////////////////
  32. // if(!m_cPlant.InitPlant())return false;*/
  33. return true;
  34. }
  35. void CCoverManager::DrawCover(int type,float xpos,float ypos,float zpos,int distance)
  36. {
  37. // m_cPlant.DrawPlant( type, xpos, ypos, zpos, distance);
  38. }