RaceDlg.cpp
上传用户:bkierde
上传日期:2022-06-07
资源大小:1840k
文件大小:6k
源码类别:

其他游戏

开发平台:

Visual C++

  1. // RaceDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Race.h"
  5. #include "RaceDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CRaceDlg dialog
  50. CRaceDlg::CRaceDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CRaceDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CRaceDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. m_pctrls[0]=&m_p1;
  59. m_pctrls[1]=&m_p2;
  60. m_pctrls[2]=&m_p3;
  61. m_pctrls[3]=&m_p4;
  62. m_pctrls[4]=&m_p5;
  63. m_pctrls[5]=&m_p6;
  64. }
  65. void CRaceDlg::DoDataExchange(CDataExchange* pDX)
  66. {
  67. CDialog::DoDataExchange(pDX);
  68. //{{AFX_DATA_MAP(CRaceDlg)
  69. DDX_Control(pDX, IDC_PROGRESS6, m_p6);
  70. DDX_Control(pDX, IDC_PROGRESS5, m_p5);
  71. DDX_Control(pDX, IDC_PROGRESS4, m_p4);
  72. DDX_Control(pDX, IDC_PROGRESS3, m_p3);
  73. DDX_Control(pDX, IDC_PROGRESS2, m_p2);
  74. DDX_Control(pDX, IDC_PROGRESS1, m_p1);
  75. //}}AFX_DATA_MAP
  76. }
  77. BEGIN_MESSAGE_MAP(CRaceDlg, CDialog)
  78. //{{AFX_MSG_MAP(CRaceDlg)
  79. ON_WM_SYSCOMMAND()
  80. ON_WM_PAINT()
  81. ON_WM_QUERYDRAGICON()
  82. ON_BN_CLICKED(ID_START, OnStart)
  83. ON_BN_CLICKED(ID_EXIT, OnExitAll)
  84. //手动添加自定义消息响应
  85. //WM_USER+1000:运动员报告位置
  86. //WM_USER+1001:运动员到达终点
  87. ON_MESSAGE((WM_USER+1000),OnStep)
  88. ON_MESSAGE((WM_USER+1001),OnExit)
  89. //}}AFX_MSG_MAP
  90. END_MESSAGE_MAP()
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CRaceDlg message handlers
  93. BOOL CRaceDlg::OnInitDialog()
  94. {
  95. CDialog::OnInitDialog();
  96. // Add "About..." menu item to system menu.
  97. // IDM_ABOUTBOX must be in the system command range.
  98. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  99. ASSERT(IDM_ABOUTBOX < 0xF000);
  100. CMenu* pSysMenu = GetSystemMenu(FALSE);
  101. if (pSysMenu != NULL)
  102. {
  103. CString strAboutMenu;
  104. strAboutMenu.LoadString(IDS_ABOUTBOX);
  105. if (!strAboutMenu.IsEmpty())
  106. {
  107. pSysMenu->AppendMenu(MF_SEPARATOR);
  108. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  109. }
  110. }
  111. // Set the icon for this dialog.  The framework does this automatically
  112. //  when the application's main window is not a dialog
  113. SetIcon(m_hIcon, TRUE); // Set big icon
  114. SetIcon(m_hIcon, FALSE); // Set small icon
  115. // TODO: Add extra initialization here
  116. for (int i=0;i<6;i++)
  117. {
  118. m_pctrls[i]->SetRange(0,CRunner::lenght);
  119. }
  120. return TRUE;  // return TRUE  unless you set the focus to a control
  121. }
  122. void CRaceDlg::OnSysCommand(UINT nID, LPARAM lParam)
  123. {
  124. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  125. {
  126. CAboutDlg dlgAbout;
  127. dlgAbout.DoModal();
  128. }
  129. else
  130. {
  131. CDialog::OnSysCommand(nID, lParam);
  132. }
  133. }
  134. // If you add a minimize button to your dialog, you will need the code below
  135. //  to draw the icon.  For MFC applications using the document/view model,
  136. //  this is automatically done for you by the framework.
  137. void CRaceDlg::OnPaint() 
  138. {
  139. if (IsIconic())
  140. {
  141. CPaintDC dc(this); // device context for painting
  142. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  143. // Center icon in client rectangle
  144. int cxIcon = GetSystemMetrics(SM_CXICON);
  145. int cyIcon = GetSystemMetrics(SM_CYICON);
  146. CRect rect;
  147. GetClientRect(&rect);
  148. int x = (rect.Width() - cxIcon + 1) / 2;
  149. int y = (rect.Height() - cyIcon + 1) / 2;
  150. // Draw the icon
  151. dc.DrawIcon(x, y, m_hIcon);
  152. }
  153. else
  154. {
  155. CDialog::OnPaint();
  156. }
  157. }
  158. // The system calls this to obtain the cursor to display while the user drags
  159. //  the minimized window.
  160. HCURSOR CRaceDlg::OnQueryDragIcon()
  161. {
  162. return (HCURSOR) m_hIcon;
  163. }
  164. void CRaceDlg::OnStart() 
  165. {
  166. // 初始化起跑信号,初始化为未激活
  167. m_hTag=::CreateEvent(NULL,TRUE,FALSE,NULL);
  168. // 初始化比赛结束信号,初始化为未激活
  169. m_hExit=::CreateEvent(NULL,TRUE,FALSE,NULL);
  170. // 创建6个运动员线程,其运行后都开始进入预备状态,等待起跑命令
  171. memset(&m_stVar,0,sizeof(StThreadVar));
  172. m_stVar.hTag=m_hTag;
  173. m_stVar.hExit=m_hExit;
  174. m_stVar.pWnd=this;
  175. for (int i=0;i<6;i++)
  176. {
  177. m_stVar.index=i;
  178. m_runners[i].start(m_stVar);
  179. }
  180. //等待500毫秒,确保所有运动员都进入预备状态
  181. Sleep(500);
  182. //发出起跑命令
  183. SetEvent(m_hTag);
  184. //设置按钮响应状态
  185. GetDlgItem(ID_START)->EnableWindow(FALSE);
  186. GetDlgItem(ID_EXIT)->EnableWindow(TRUE);
  187. }
  188. void CRaceDlg::OnExitAll() 
  189. {
  190. OnCancel();
  191. }
  192. LRESULT CRaceDlg::OnStep(WPARAM w,LPARAM l) 
  193. {
  194. // 根据运动员报告的位置,图形化显示
  195. INT index=(INT)w;
  196. if(index<6 && index>=0)
  197. {
  198. INT step=(INT)l;
  199. m_pctrls[index]->SetPos(step);
  200. }
  201. return 0;
  202. }
  203. void CRaceDlg::OnCancel()
  204. {
  205. // 发出结束比赛命令
  206. SetEvent(m_hExit);
  207. CDialog::OnCancel();
  208. }
  209. LRESULT CRaceDlg::OnExit(WPARAM w,LPARAM l) 
  210. {
  211. // 发出结束比赛命令
  212. SetEvent(m_hExit);
  213. return 0;
  214. }