ClientDlg.cpp
资源名称:毕业论文--五子棋.zip [点击查看]
上传用户:fjjkzlh
上传日期:2010-04-06
资源大小:469k
文件大小:4k
源码类别:
棋牌游戏
开发平台:
Visual C++
- // ClientDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "five.h"
- #include "Table.h"
- #include "ClientDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CClientDlg dialog
- CClientDlg::CClientDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CClientDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CClientDlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void CClientDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CClientDlg)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CClientDlg, CDialog)
- //{{AFX_MSG_MAP(CClientDlg)
- ON_BN_CLICKED(IDC_BTN_CONNECT, OnBtnConnect)
- ON_BN_CLICKED(IDC_BTN_OUT, OnBtnOut)
- ON_EN_UPDATE(IDC_EDIT_HOST, OnUpdateEditHost)
- ON_WM_TIMER()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CClientDlg message handlers
- void CClientDlg::OnOK()
- {
- // 屏蔽OnOK,使按回车的时候不退出
- }
- void CClientDlg::OnBtnConnect()
- {
- // TODO: Add your control notification handler code here
- CString strHost;
- // 获取主机名称
- GetDlgItemText( IDC_EDIT_HOST, strHost );
- // 设置超时时间
- m_nTimer = 5;
- // 初始化连接状态
- m_pTable->m_bConnected = FALSE;
- // 设置控件生效状态
- GetDlgItem( IDC_BTN_CONNECT )->EnableWindow( FALSE );
- GetDlgItem( IDC_EDIT_HOST )->EnableWindow( FALSE );
- // 创建套接字并连接
- m_pTable->m_conn.Create();
- m_pTable->m_conn.Connect( strHost, 20000 );
- // 开始计时
- SetTimer( 1, 1000, NULL );
- }
- void CClientDlg::OnBtnOut()
- {
- // TODO: Add your control notification handler code here
- KillTimer( 1 );
- OnCancel();
- }
- void CClientDlg::OnUpdateEditHost()
- {
- // TODO: If this is a RICHEDIT control, the control will not
- // send this notification unless you override the CDialog::OnInitDialog()
- // function to send the EM_SETEVENTMASK message to the control
- // with the ENM_UPDATE flag ORed into the lParam mask.
- // TODO: Add your control notification handler code here
- // 如果无主机名,则使“连接”按钮失效
- CString str;
- GetDlgItemText( IDC_EDIT_HOST, str );
- GetDlgItem( IDC_BTN_CONNECT )->EnableWindow( !str.IsEmpty() );
- }
- BOOL CClientDlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // TODO: Add extra initialization here
- SetDlgItemText( IDC_ST_TIMER, _T("") );
- m_pTable = (CTable *)GetParent()->GetDlgItem( IDC_TABLE );
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void CClientDlg::OnTimer(UINT nIDEvent)
- {
- // TODO: Add your message handler code here and/or call default
- if ( 1 == nIDEvent )
- {
- if ( m_pTable->m_bConnected )
- {
- KillTimer( 1 );
- EndDialog( IDOK );
- }
- else if ( 0 == m_nTimer )
- {
- KillTimer( 1 );
- MessageBox( _T("连接对方失败,请检查主机名或IP地址是否正确,以及网络连接是否正常。"),
- _T("连接失败"), MB_ICONERROR );
- SetDlgItemText( IDC_ST_TIMER, _T("") );
- GetDlgItem( IDC_EDIT_HOST )->EnableWindow();
- SetDlgItemText( IDC_EDIT_HOST, _T("") );
- GetDlgItem( IDC_EDIT_HOST )->SetFocus();
- }
- else
- {
- CString str;
- str.Format( _T("正在连接...(%d)"), m_nTimer-- );
- SetDlgItemText( IDC_ST_TIMER, str);
- }
- }
- CDialog::OnTimer(nIDEvent);
- }