five.cpp
上传用户:kkzhu_0
上传日期:2007-01-05
资源大小:214k
文件大小:4k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // five.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "game.h"
  5. #include "five.h"
  6. #include "MainFrm.h"
  7. #include "fiveDoc.h"
  8. #include "fiveView.h"
  9. #include "welcomdlg.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CFiveApp
  17. BEGIN_MESSAGE_MAP(CFiveApp, CWinApp)
  18. //{{AFX_MSG_MAP(CFiveApp)
  19. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG_MAP
  23. // Standard file based document commands
  24. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  25. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CFiveApp construction
  29. CFiveApp::CFiveApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CFiveApp object
  36. CFiveApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CFiveApp initialization
  39. BOOL CFiveApp::InitInstance()
  40. {
  41. // Standard initialization
  42. // If you are not using these features and wish to reduce the size
  43. //  of your final executable, you should remove from the following
  44. //  the specific initialization routines you do not need.
  45. #ifdef _AFXDLL
  46. Enable3dControls(); // Call this when using MFC in a shared DLL
  47. #else
  48. Enable3dControlsStatic(); // Call this when linking to MFC statically
  49. #endif
  50. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  51. // Register the application's document templates.  Document templates
  52. //  serve as the connection between documents, frame windows and views.
  53. CSingleDocTemplate* pDocTemplate;
  54. pDocTemplate = new CSingleDocTemplate(
  55. IDR_MAINFRAME,
  56. RUNTIME_CLASS(CFiveDoc),
  57. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  58. RUNTIME_CLASS(CFiveView));
  59. AddDocTemplate(pDocTemplate);
  60. // Parse command line for standard shell commands, DDE, file open
  61. // CCommandLineInfo cmdInfo;
  62. // ParseCommandLine(cmdInfo);
  63. // Dispatch commands specified on the command line
  64. // if (!ProcessShellCommand(cmdInfo))
  65. // return FALSE;
  66. OnFileNew();
  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_DIALOG_ABOUT };
  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. virtual BOOL OnInitDialog();
  88. virtual void OnOK();
  89. //}}AFX_MSG
  90. DECLARE_MESSAGE_MAP()
  91. };
  92. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  93. {
  94. //{{AFX_DATA_INIT(CAboutDlg)
  95. //}}AFX_DATA_INIT
  96. }
  97. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  98. {
  99. CDialog::DoDataExchange(pDX);
  100. //{{AFX_DATA_MAP(CAboutDlg)
  101. //}}AFX_DATA_MAP
  102. }
  103. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  104. //{{AFX_MSG_MAP(CAboutDlg)
  105. //}}AFX_MSG_MAP
  106. END_MESSAGE_MAP()
  107. // App command to run the dialog
  108. void CFiveApp::OnAppAbout()
  109. {
  110. CAboutDlg aboutDlg;
  111. aboutDlg.DoModal();
  112. }
  113. /////////////////////////////////////////////////////////////////////////////
  114. // CFiveApp commands
  115. BOOL CAboutDlg::OnInitDialog() 
  116. {
  117. CString name;
  118. CDialog::OnInitDialog();
  119. // TODO: Add extra initialization here
  120. return TRUE;  // return TRUE unless you set the focus to a control
  121.               // EXCEPTION: OCX Property Pages should return FALSE
  122. }
  123. void CAboutDlg::OnOK() 
  124. {
  125. // TODO: Add extra validation here
  126. CDialog::OnOK();
  127. }