资源简介
删除了debug,文件小点,自己运行下实例就好。
运行很简单,先运行chess服务器实例,点击联机。然后运行客户端输入ip,点击链接主机。黑棋由服务器端先下。
各种闪屏等bug都处理掉了,废了一点力的。。。AI和保存棋局还没加入,下次我会做个高级点的AI算法一起上传,这次就先传网络对战的。
10分好少啊,想要20分的(客户端,服务器分开传就有20分了,O(∩_∩)O哈哈)想想你们不方便就算了,嘿。。。
代码片段和文件信息
// chess.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “chess.h“
#include “MainFrm.h“
#include “chessDoc.h“
#include “chessView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChessApp
BEGIN_MESSAGE_MAP(CChessApp CWinApp)
//{{AFX_MSG_MAP(CChessApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChessApp construction
CChessApp::CChessApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CChessApp object
CChessApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CChessApp initialization
BOOL CChessApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CChessDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CChessView));
AddDocTemplate(pDocTemplate);
// Enable DDE Execute open
EnableShellOpen();
RegisterShellFileTypes(TRUE);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALS
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 44888 2011-10-25 21:17 五子棋\chess\chess.aps
文件 2654 2011-11-05 18:16 五子棋\chess\chess.clw
文件 4431 2011-10-25 14:50 五子棋\chess\chess.cpp
文件 4596 2011-10-25 14:50 五子棋\chess\chess.dsp
文件 730 2011-11-04 15:37 五子棋\chess\chess.dsw
文件 1345 2011-10-25 14:50 五子棋\chess\chess.h
文件 123904 2011-11-05 19:29 五子棋\chess\chess.ncb
文件 66048 2011-11-05 19:29 五子棋\chess\chess.opt
文件 244 2011-11-05 18:06 五子棋\chess\chess.plg
文件 1321 2011-11-05 19:29 五子棋\chess\chess.positions
文件 12400 2011-10-25 21:17 五子棋\chess\chess.rc
文件 1722 2011-10-25 14:50 五子棋\chess\chessDoc.cpp
文件 1464 2011-10-25 14:50 五子棋\chess\chessDoc.h
文件 13752 2011-11-04 18:14 五子棋\chess\chessView.cpp
文件 2866 2011-11-04 17:27 五子棋\chess\chessView.h
文件 2738 2011-10-25 19:42 五子棋\chess\MainFrm.cpp
文件 1581 2011-10-25 14:50 五子棋\chess\MainFrm.h
文件 4576 2011-10-25 14:50 五子棋\chess\ReadMe.txt
文件 1078 2011-10-25 14:50 五子棋\chess\res\chess.ico
文件 397 2011-10-25 14:50 五子棋\chess\res\chess.rc2
文件 1078 2011-10-25 14:50 五子棋\chess\res\chessDoc.ico
文件 1078 2011-10-25 14:50 五子棋\chess\res\Toolbar.bmp
文件 958 2011-10-25 21:17 五子棋\chess\resource.h
文件 207 2011-10-25 14:50 五子棋\chess\StdAfx.cpp
文件 1102 2011-10-25 14:50 五子棋\chess\StdAfx.h
文件 45336 2011-11-05 18:18 五子棋\chessclient\chessclient.aps
文件 2872 2011-11-05 18:24 五子棋\chessclient\chessclient.clw
文件 4539 2011-10-26 11:48 五子棋\chessclient\chessclient.cpp
文件 4728 2011-10-26 11:48 五子棋\chessclient\chessclient.dsp
文件 724 2011-10-26 11:54 五子棋\chessclient\chessclient.dsw
............此处省略27个文件信息
- 上一篇:Elgamal算法,加密算法,各算法比较
- 下一篇:移动的球体MFC制作
相关资源
- 移动的球体MFC制作
- 基于C++的简易FTP服务/客户端源码
- MFC程序设计,使用鼠标画图程序,包
- D2D显示图片(MFC)
- C++ 利用EasyX库绘制五子棋功能
- MFC gridctrl表格控件的简单
- STK与VC++ 6.0联合编程
- VC++MFC串口调试助手完整编辑过程介绍
- 20C++MFC课程设计之吹泡泡游戏
- 重写MFC treectrl控件的一个
- TCP、UDP端口及ICMP网络扫描工具
- Drcom账号密码读取
- 图书管理系统MFC+SQL+VC
- mfc 物业管理系统
- MFC用树控件制作简单通讯录
- 鼠标左键准确定位MFC基于对话框的滑
- 鼠标左键准确定位MFC基于对话框的滑
- vc++ mfc 基于udp协议在不同ip地址之间
- 基于LIBPCAP的网络流量实时采集与信息
- 基于MFCVC6.0的简单计算器程序
- c语言五子棋小游戏课程设计报告
- Visual C++程序设计与应用教程课后习题
- MFC实时网络连接装状况监测代码
- VC++基于mfc 实现对话框打开读取txt文件
- 巴特沃斯低通滤波器的MFC程序
- MFC创建UI线程
- mfc矩阵运算器
- 基于MFC的BMP图像处理
- VC++之MFC类库中文手册一怀去意---
- PE文件格式解析MFCC++源码
评论
共有 条评论