• 大小: 119KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-17
  • 语言: 其他
  • 标签: vc  中国象棋  

资源简介

学习vc的一个好例子,可以学习到中国象棋的算法等,详细的源代码程序,外加有注释,可以帮助学习好vc,

资源截图

代码片段和文件信息

// chess.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “chess.h“
#include “chessDlg.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)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
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

CChessDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        656  2008-11-24 18:15  vc编写中国象棋-详细源码+注释\MD5.txt

     文件        892  2008-11-27 11:02  vc编写中国象棋-详细源码+注释\教程说明.txt

     文件        675  2008-11-22 03:23  vc编写中国象棋-详细源码+注释\文件信息.txt

     文件     136394  2010-06-03 08:18  vc编写中国象棋-详细源码+注释\中国象棋\chess.exe

     文件      49152  2003-03-10 23:43  vc编写中国象棋-详细源码+注释\中国象棋\ClassXP.dll

     文件     111556  2010-07-27 20:21  vc编写中国象棋-详细源码+注释\chess\chess.aps

     文件       1270  2010-07-27 20:21  vc编写中国象棋-详细源码+注释\chess\chess.clw

     文件       2049  2008-11-21 05:37  vc编写中国象棋-详细源码+注释\chess\chess.cpp

     文件       5072  2008-11-22 03:54  vc编写中国象棋-详细源码+注释\chess\chess.dsp

     文件        535  2008-11-21 05:37  vc编写中国象棋-详细源码+注释\chess\chess.dsw

     文件       1336  2008-11-21 05:50  vc编写中国象棋-详细源码+注释\chess\chess.h

     文件     189440  2010-07-27 20:21  vc编写中国象棋-详细源码+注释\chess\chess.ncb

     文件      51712  2010-07-27 20:21  vc编写中国象棋-详细源码+注释\chess\chess.opt

     文件       2753  2008-12-20 21:10  vc编写中国象棋-详细源码+注释\chess\chess.plg

     文件       5319  2008-11-22 03:20  vc编写中国象棋-详细源码+注释\chess\chess.rc

     文件      10718  2008-11-22 03:51  vc编写中国象棋-详细源码+注释\chess\chessDlg.cpp

     文件       2263  2008-11-22 03:18  vc编写中国象棋-详细源码+注释\chess\chessDlg.h

     文件      49152  2003-03-10 23:43  vc编写中国象棋-详细源码+注释\chess\ClassXP.dll

     文件       1129  2008-11-22 04:30  vc编写中国象棋-详细源码+注释\chess\define.h

     文件      21342  2008-11-22 01:16  vc编写中国象棋-详细源码+注释\chess\Eveluation.cpp

     文件       1976  2008-11-21 23:51  vc编写中国象棋-详细源码+注释\chess\Eveluation.h

     文件      16423  2008-11-21 10:19  vc编写中国象棋-详细源码+注释\chess\MoveGenerator.cpp

     文件       2013  2008-11-21 06:43  vc编写中国象棋-详细源码+注释\chess\MoveGenerator.h

     文件       2049  2008-11-21 11:46  vc编写中国象棋-详细源码+注释\chess\NegaMaxEngine.cpp

     文件        793  2008-11-21 11:21  vc编写中国象棋-详细源码+注释\chess\NegaMaxEngine.h

     文件       1603  2008-11-22 01:55  vc编写中国象棋-详细源码+注释\chess\NewGame.cpp

     文件       1632  2008-11-22 01:30  vc编写中国象棋-详细源码+注释\chess\NewGame.h

     文件       3561  2008-11-21 05:37  vc编写中国象棋-详细源码+注释\chess\ReadMe.txt

     文件        864  2008-11-22 03:19  vc编写中国象棋-详细源码+注释\chess\Resource.h

     文件       2421  2008-11-21 12:03  vc编写中国象棋-详细源码+注释\chess\SearchEngine.cpp

............此处省略15个文件信息

评论

共有 条评论