资源简介
中国象棋对弈(MFC单机版),能实现两个玩家轮流行棋,支持悔一步棋,有倒计时60s功能,支持棋语显示,有声音音效,有作者邮箱,可以在线请教,欢迎与作者一起交流.
代码片段和文件信息
// chess.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “chess.h“
#include “MainFrm.h“
#include “chessDoc.h“
#include “chessView.h“
#include “Managers.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)
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()
{
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);
// 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 FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
m_pMainWnd->SetWindowText(“中国象棋对弈(单机版)“);
RECT rc;//单文档居中
::GetWindowRect( m_pMainWnd->m_
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 775292 2013-10-22 22:05 中国象棋对弈(MFC单机版)\chess.aps
文件 2259 2013-10-22 22:05 中国象棋对弈(MFC单机版)\chess.clw
文件 4519 2013-10-22 21:50 中国象棋对弈(MFC单机版)\chess.cpp
文件 5087 2013-10-22 21:54 中国象棋对弈(MFC单机版)\chess.dsp
文件 518 2013-09-16 15:13 中国象棋对弈(MFC单机版)\chess.dsw
文件 1345 2013-09-16 15:11 中国象棋对弈(MFC单机版)\chess.h
文件 254976 2013-10-22 22:05 中国象棋对弈(MFC单机版)\chess.ncb
文件 53760 2013-10-22 22:05 中国象棋对弈(MFC单机版)\chess.opt
文件 963 2013-10-22 22:05 中国象棋对弈(MFC单机版)\chess.plg
文件 9737 2013-10-22 22:05 中国象棋对弈(MFC单机版)\chess.rc
文件 1722 2013-09-16 15:11 中国象棋对弈(MFC单机版)\chessDoc.cpp
文件 1464 2013-09-16 15:11 中国象棋对弈(MFC单机版)\chessDoc.h
文件 13104 2013-10-22 21:53 中国象棋对弈(MFC单机版)\chessView.cpp
文件 2454 2013-10-22 21:53 中国象棋对弈(MFC单机版)\chessView.h
文件 1106000 2013-10-22 22:05 中国象棋对弈(MFC单机版)\Debug\chess.exe
文件 558008 2013-10-22 22:05 中国象棋对弈(MFC单机版)\Debug\chess.ilk
文件 28013 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\chess.obj
文件 5630356 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\chess.pch
文件 648192 2013-10-22 22:05 中国象棋对弈(MFC单机版)\Debug\chess.pdb
文件 738384 2013-10-22 22:05 中国象棋对弈(MFC单机版)\Debug\chess.res
文件 14696 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\chessDoc.obj
文件 58468 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\chessView.obj
文件 3989 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\hess.obj
文件 15544 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\MainFrm.obj
文件 332172 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\Managers.obj
文件 108880 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\StdAfx.obj
文件 222208 2013-10-22 22:05 中国象棋对弈(MFC单机版)\Debug\vc60.idb
文件 380928 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\vc60.pdb
文件 20563 2013-10-22 22:04 中国象棋对弈(MFC单机版)\Debug\WaveSound.obj
文件 516 2013-09-17 15:26 中国象棋对弈(MFC单机版)\hess.cpp
............此处省略42个文件信息
相关资源
- mfc 调用redis
- MFC视频播放器源码(支持avi/wma/mp3等格
- mfc绘图大全(画直线、矩形、椭圆)
- MFC控件重绘
- hook,捕获所有案件,查找所有窗口,
- (学习)VS2010之MFC入门到精通教程
- MFC文档_视图_框架_模板结构体系深入
- 简单员工管理系统(适合初学MFC)
- 智商超高的中国象棋游戏源码(C++版
- MFC五子棋游戏
- MFC UDP编程
- MFC的异步网络通讯应用程序
- C++MFC模块讲解,黑发程序员课程整理
- 一个简单而强大的基于MFC的web server源
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- MFCaccess.rar
- VC++MFC课程设计的学生成绩管理系统
- MFC 日历控件 万年历 Calendar自绘
- c++编写简略单机对战小游戏
- CrystalDiskInfo-HDD/SSD硬盘信息,SMART信息
- MFC自定义界面HUI,高效简单,含详细
- 仿射密码-Affine cipher
- c++MFC车牌自动识别定位,只能定位和
- mfc+sql 酒店客房管理系统
- 基于图割的图像分割OpenCV+MFC实现
- MFC绘制Bezier曲线B样条曲线曲线拟合
- MFC坦克大战
- VC++ 中国象棋经典游戏源代码
- 课程设计: MFC 学生信息管理系统
- MFC对ACCESS数据库的增加、删除、查找
评论
共有 条评论