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

棋牌游戏

开发平台:

Visual C++

  1. // 重做斗地主.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "重做斗地主.h"
  5. #include "MainFrm.h"
  6. #include "重做斗地主Doc.h"
  7. #include "重做斗地主View.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMyApp
  15. BEGIN_MESSAGE_MAP(CMyApp, CWinApp)
  16. //{{AFX_MSG_MAP(CMyApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CMyApp construction
  27. CMyApp::CMyApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CMyApp object
  34. CMyApp theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CMyApp initialization
  37. BOOL CMyApp::InitInstance()
  38. {
  39. AfxEnableControlContainer();
  40. // Standard initialization
  41. // If you are not using these features and wish to reduce the size
  42. //  of your final executable, you should remove from the following
  43. //  the specific initialization routines you do not need.
  44. // Change the registry key under which our settings are stored.
  45. // TODO: You should modify this string to be something appropriate
  46. // such as the name of your company or organization.
  47. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  48. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  49. // Register the application's document templates.  Document templates
  50. //  serve as the connection between documents, frame windows and views.
  51. CSingleDocTemplate* pDocTemplate;
  52. pDocTemplate = new CSingleDocTemplate(
  53. IDR_MAINFRAME,
  54. RUNTIME_CLASS(CMyDoc),
  55. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  56. RUNTIME_CLASS(CMyView));
  57. AddDocTemplate(pDocTemplate);
  58. // Parse command line for standard shell commands, DDE, file open
  59. CCommandLineInfo cmdInfo;
  60. ParseCommandLine(cmdInfo);
  61. // Dispatch commands specified on the command line
  62. if (!ProcessShellCommand(cmdInfo))
  63. return FALSE;
  64. // The one and only window has been initialized, so show and update it.
  65. m_pMainWnd->ShowWindow(SW_SHOW);
  66. m_pMainWnd->UpdateWindow();
  67. return TRUE;
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // CAboutDlg dialog used for App About
  71. class CAboutDlg : public CDialog
  72. {
  73. public:
  74. CAboutDlg();
  75. // Dialog Data
  76. //{{AFX_DATA(CAboutDlg)
  77. enum { IDD = IDD_ABOUTBOX };
  78. //}}AFX_DATA
  79. // ClassWizard generated virtual function overrides
  80. //{{AFX_VIRTUAL(CAboutDlg)
  81. protected:
  82. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  83. //}}AFX_VIRTUAL
  84. // Implementation
  85. protected:
  86. //{{AFX_MSG(CAboutDlg)
  87. // No message handlers
  88. //}}AFX_MSG
  89. DECLARE_MESSAGE_MAP()
  90. };
  91. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  92. {
  93. //{{AFX_DATA_INIT(CAboutDlg)
  94. //}}AFX_DATA_INIT
  95. }
  96. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  97. {
  98. CDialog::DoDataExchange(pDX);
  99. //{{AFX_DATA_MAP(CAboutDlg)
  100. //}}AFX_DATA_MAP
  101. }
  102. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  103. //{{AFX_MSG_MAP(CAboutDlg)
  104. // No message handlers
  105. //}}AFX_MSG_MAP
  106. END_MESSAGE_MAP()
  107. // App command to run the dialog
  108. void CMyApp::OnAppAbout()
  109. {
  110. CAboutDlg aboutDlg;
  111. aboutDlg.DoModal();
  112. }
  113. /////////////////////////////////////////////////////////////////////////////
  114. // CMyApp message handlers