MapFace.cpp
上传用户:onward9999
上传日期:2022-06-27
资源大小:989k
文件大小:1k
源码类别:

其他游戏

开发平台:

Visual C++

  1. // MapFace.cpp: implementation of the CMapFace class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "chess.h"
  6. #include "MapFace.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CMapFace::CMapFace()
  16. {
  17. }
  18. CMapFace::~CMapFace()
  19. {
  20. }
  21. void CMapFace::FixManMap()
  22. {
  23. for(int i=0;i<11;i++)
  24. for(int j=0;j<12;j++)m_nManMap[i][j]=32;
  25. for(i=0;i<32;i++)
  26. {
  27. if(m_Face.man[i].x)
  28. m_nManMap[m_Face.man[i].x][m_Face.man[i].y]=i;
  29. }
  30. }