重做斗地主View.h
上传用户:xyf7799
上传日期:2022-08-01
资源大小:2008k
文件大小:2k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // 重做斗地主View.h : interface of the CMyView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIEW_H__8551F6F1_362F_4B3D_9C87_A8017BFE7ACB__INCLUDED_)
  5. #define AFX_VIEW_H__8551F6F1_362F_4B3D_9C87_A8017BFE7ACB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "om1.h"
  10. #include "om2.h"
  11. #include "Player.h"
  12. #include "Last.h"
  13. #include "FanRen.h"
  14. class CMyView : public CView
  15. {
  16. protected: // create from serialization only
  17. CMyView();
  18. DECLARE_DYNCREATE(CMyView)
  19. // Attributes
  20. public:
  21. CMyDoc* GetDocument();
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CMyView)
  27. public:
  28. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. protected:
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CMyView();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CMyView)
  43. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  44. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  45. afx_msg void OnBanStart();
  46. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. private:
  50. void AllQingKong();
  51. int nIsDiZhu;
  52. int nZongZiJin[3];
  53. void BuYao();
  54. BOOL NoJokerF(int);
  55. int YuanShuF(int);
  56. int MagicF(int);
  57. int YuanShuL(int);
  58. int MagicL(int);
  59. int nLastFormWho;
  60. BOOL ChuPaiRule();
  61. int nCusor[20];
  62. int nIsWho;
  63. void TransparentBitmap(HDC hdc, HBITMAP hBitmap,short xStart, short yStart,
  64. short xadd,short yadd, COLORREF cTransparentColor);
  65. void PaiXu(int );
  66. int FoundationCompile(int x);
  67. Com1 C1[20];
  68. Com2 C2[20];
  69. Player P[20];
  70. Last L[20];
  71. FanRen F[20];
  72. CBitmap bmpPai[54];
  73. CBitmap bmpTable;
  74. CBitmap bmpCusor;
  75. CBitmap bmpNull;
  76. CBitmap bmpTurn[3];
  77. CBitmap bmpZheDang;
  78. };
  79. #ifndef _DEBUG  // debug version in 重做斗地主View.cpp
  80. inline CMyDoc* CMyView::GetDocument()
  81.    { return (CMyDoc*)m_pDocument; }
  82. #endif
  83. /////////////////////////////////////////////////////////////////////////////
  84. //{{AFX_INSERT_LOCATION}}
  85. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  86. #endif // !defined(AFX_VIEW_H__8551F6F1_362F_4B3D_9C87_A8017BFE7ACB__INCLUDED_)