ServerProtocol.h
上传用户:bsw_2008
上传日期:2013-07-09
资源大小:2446k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // ServerProtocol.h: interface for the CServerProtocol class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SERVERPROTOCOL_H__DA71DD10_9CE7_4E48_B5FB_E48A98D5ECF4__INCLUDED_)
  5. #define AFX_SERVERPROTOCOL_H__DA71DD10_9CE7_4E48_B5FB_E48A98D5ECF4__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CServerProtocol  
  10. {
  11. typedef struct POS{
  12. int x,y;
  13. };
  14. public:
  15. CString message;
  16. CString toString(char k,int DESK=-1,int  DIRECT=-1,int fromX=-1,int fromY=-1,int toX=-1,int toY=-1);
  17. char Analasys(CString str);
  18. int direct;
  19. int desk;
  20. int board[17][17];
  21. CString code,name;
  22. CString chat,sex;
  23. POS from,to;
  24. CServerProtocol();
  25. virtual ~CServerProtocol();
  26. protected:
  27. void toMove(CString str,int i);
  28. void toBoard(CString str,int i);
  29. };
  30. #endif // !defined(AFX_SERVERPROTOCOL_H__DA71DD10_9CE7_4E48_B5FB_E48A98D5ECF4__INCLUDED_)