斗地主.cpp
上传用户:may_xy
上传日期:2007-08-09
资源大小:1519k
文件大小:4k
源码类别:

游戏

开发平台:

C/C++

  1. // 斗地主.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "斗地主.h"
  5. #include "MainFrm.h"
  6. #include "Dlg_Start.h"
  7. #include "Game.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. {
  40. if (!AfxSocketInit())
  41. {
  42. // AfxMessageBox(CG_IDS_SOCKETS_INIT_FAILED);
  43. return FALSE;
  44. }
  45. }
  46. #ifdef _AFXDLL
  47. Enable3dControls(); // Call this when using MFC in a shared DLL
  48. #else
  49. Enable3dControlsStatic(); // Call this when linking to MFC statically
  50. #endif
  51. // Change the registry key under which our settings are stored.
  52. // TODO: You should modify this string to be something appropriate
  53. // such as the name of your company or organization.
  54. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  55. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  56. // Register the application's document templates.  Document templates
  57. //  serve as the connection between documents, frame windows and views.
  58. srand(GetTickCount());   //播下随机种子;
  59. CDlg_Start dlg;
  60. // m_pMainWnd = &dlg;
  61. int nResponse = dlg.DoModal();
  62. if (nResponse == IDOK)
  63. {
  64. m_pMainWnd = new CMainFrame;
  65. m_pMainWnd->ShowWindow(SW_SHOW);
  66. m_pMainWnd->UpdateWindow();
  67. }
  68. else if (nResponse == IDCANCEL)
  69. {
  70. // TODO: Place code here to handle when the dialog is
  71. //  dismissed with Cancel
  72. // AfxMessageBox("");
  73. }
  74. return TRUE;
  75. }
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CAboutDlg dialog used for App About
  78. class CAboutDlg : public CDialog
  79. {
  80. public:
  81. CAboutDlg();
  82. // Dialog Data
  83. //{{AFX_DATA(CAboutDlg)
  84. enum { IDD = IDD_ABOUTBOX };
  85. //}}AFX_DATA
  86. // ClassWizard generated virtual function overrides
  87. //{{AFX_VIRTUAL(CAboutDlg)
  88. protected:
  89. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  90. //}}AFX_VIRTUAL
  91. // Implementation
  92. protected:
  93. //{{AFX_MSG(CAboutDlg)
  94. // No message handlers
  95. //}}AFX_MSG
  96. DECLARE_MESSAGE_MAP()
  97. };
  98. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  99. {
  100. //{{AFX_DATA_INIT(CAboutDlg)
  101. //}}AFX_DATA_INIT
  102. }
  103. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  104. {
  105. CDialog::DoDataExchange(pDX);
  106. //{{AFX_DATA_MAP(CAboutDlg)
  107. //}}AFX_DATA_MAP
  108. }
  109. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  110. //{{AFX_MSG_MAP(CAboutDlg)
  111. // No message handlers
  112. //}}AFX_MSG_MAP
  113. END_MESSAGE_MAP()
  114. // App command to run the dialog
  115. void CMyApp::OnAppAbout()
  116. {
  117. CAboutDlg aboutDlg;
  118. aboutDlg.DoModal();
  119. }
  120. /////////////////////////////////////////////////////////////////////////////
  121. // CMyApp message handlers