ClientDlg.cpp
上传用户:fjjkzlh
上传日期:2010-04-06
资源大小:469k
文件大小:4k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // ClientDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "five.h"
  5. #include "Table.h"
  6. #include "ClientDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CClientDlg dialog
  14. CClientDlg::CClientDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CClientDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CClientDlg)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. void CClientDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CClientDlg)
  25. // NOTE: the ClassWizard will add DDX and DDV calls here
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CClientDlg, CDialog)
  29. //{{AFX_MSG_MAP(CClientDlg)
  30. ON_BN_CLICKED(IDC_BTN_CONNECT, OnBtnConnect)
  31. ON_BN_CLICKED(IDC_BTN_OUT, OnBtnOut)
  32. ON_EN_UPDATE(IDC_EDIT_HOST, OnUpdateEditHost)
  33. ON_WM_TIMER()
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CClientDlg message handlers
  38. void CClientDlg::OnOK() 
  39. {
  40.     // 屏蔽OnOK,使按回车的时候不退出
  41. }
  42. void CClientDlg::OnBtnConnect() 
  43. {
  44.     // TODO: Add your control notification handler code here
  45.     CString strHost;
  46.     // 获取主机名称
  47.     GetDlgItemText( IDC_EDIT_HOST, strHost );
  48.     // 设置超时时间
  49.     m_nTimer = 5;
  50.     // 初始化连接状态
  51.     m_pTable->m_bConnected = FALSE;
  52.     // 设置控件生效状态
  53.     GetDlgItem( IDC_BTN_CONNECT )->EnableWindow( FALSE );
  54.     GetDlgItem( IDC_EDIT_HOST )->EnableWindow( FALSE );
  55.     // 创建套接字并连接
  56.     m_pTable->m_conn.Create();
  57.     m_pTable->m_conn.Connect( strHost, 20000 );
  58.     // 开始计时
  59.     SetTimer( 1, 1000, NULL );
  60. }
  61. void CClientDlg::OnBtnOut() 
  62. {
  63. // TODO: Add your control notification handler code here
  64.     KillTimer( 1 );
  65. OnCancel();
  66. }
  67. void CClientDlg::OnUpdateEditHost() 
  68. {
  69. // TODO: If this is a RICHEDIT control, the control will not
  70. // send this notification unless you override the CDialog::OnInitDialog()
  71. // function to send the EM_SETEVENTMASK message to the control
  72. // with the ENM_UPDATE flag ORed into the lParam mask.
  73. // TODO: Add your control notification handler code here
  74.     // 如果无主机名,则使“连接”按钮失效
  75. CString str;
  76.     GetDlgItemText( IDC_EDIT_HOST, str );
  77.     GetDlgItem( IDC_BTN_CONNECT )->EnableWindow( !str.IsEmpty() );
  78. }
  79. BOOL CClientDlg::OnInitDialog() 
  80. {
  81. CDialog::OnInitDialog();
  82. // TODO: Add extra initialization here
  83.     SetDlgItemText( IDC_ST_TIMER, _T("") );
  84.     m_pTable = (CTable *)GetParent()->GetDlgItem( IDC_TABLE );
  85.     return TRUE;  // return TRUE unless you set the focus to a control
  86.               // EXCEPTION: OCX Property Pages should return FALSE
  87. }
  88. void CClientDlg::OnTimer(UINT nIDEvent) 
  89. {
  90. // TODO: Add your message handler code here and/or call default
  91. if ( 1 == nIDEvent )
  92.     {
  93.         if ( m_pTable->m_bConnected )
  94.         {
  95.             KillTimer( 1 );
  96.             EndDialog( IDOK );
  97.         }
  98.         else if ( 0 == m_nTimer )
  99.         {
  100.             KillTimer( 1 );
  101.             MessageBox( _T("连接对方失败,请检查主机名或IP地址是否正确,以及网络连接是否正常。"),
  102.                 _T("连接失败"), MB_ICONERROR );
  103.             SetDlgItemText( IDC_ST_TIMER, _T("") );
  104.             GetDlgItem( IDC_EDIT_HOST )->EnableWindow();
  105.             SetDlgItemText( IDC_EDIT_HOST, _T("") );
  106.             GetDlgItem( IDC_EDIT_HOST )->SetFocus();
  107.         }
  108.         else
  109.         {
  110.             CString str;
  111.             str.Format( _T("正在连接...(%d)"), m_nTimer-- );
  112.             SetDlgItemText( IDC_ST_TIMER, str);
  113.         }
  114.     }
  115. CDialog::OnTimer(nIDEvent);
  116. }