资源简介
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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 111812 2008-11-22 03:47 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.aps
文件 1270 2008-11-22 04:30 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.clw
文件 2049 2008-11-21 05:37 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.cpp
文件 5072 2008-11-22 03:54 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.dsp
文件 535 2008-11-21 05:37 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.dsw
文件 1336 2008-11-21 05:50 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.h
文件 107520 2008-11-22 04:32 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.ncb
文件 57856 2008-11-22 04:32 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.opt
文件 3451 2008-11-22 04:30 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.plg
文件 5319 2008-11-22 03:20 vc编写中国象棋详细源码注释·rar32·9MB\chess\chess.rc
文件 10718 2008-11-22 03:51 vc编写中国象棋详细源码注释·rar32·9MB\chess\chessDlg.cpp
文件 2263 2008-11-22 03:18 vc编写中国象棋详细源码注释·rar32·9MB\chess\chessDlg.h
文件 49152 2003-03-10 23:43 vc编写中国象棋详细源码注释·rar32·9MB\chess\ClassXP.dll
文件 1129 2008-11-22 04:30 vc编写中国象棋详细源码注释·rar32·9MB\chess\define.h
文件 21342 2008-11-22 01:16 vc编写中国象棋详细源码注释·rar32·9MB\chess\Eveluation.cpp
文件 1976 2008-11-21 23:51 vc编写中国象棋详细源码注释·rar32·9MB\chess\Eveluation.h
文件 16423 2008-11-21 10:19 vc编写中国象棋详细源码注释·rar32·9MB\chess\MoveGenerator.cpp
文件 2013 2008-11-21 06:43 vc编写中国象棋详细源码注释·rar32·9MB\chess\MoveGenerator.h
文件 2049 2008-11-21 11:46 vc编写中国象棋详细源码注释·rar32·9MB\chess\NegaMaxEngine.cpp
文件 793 2008-11-21 11:21 vc编写中国象棋详细源码注释·rar32·9MB\chess\NegaMaxEngine.h
文件 1603 2008-11-22 01:55 vc编写中国象棋详细源码注释·rar32·9MB\chess\NewGame.cpp
文件 1632 2008-11-22 01:30 vc编写中国象棋详细源码注释·rar32·9MB\chess\NewGame.h
文件 3561 2008-11-21 05:37 vc编写中国象棋详细源码注释·rar32·9MB\chess\ReadMe.txt
文件 3262 2008-11-22 03:19 vc编写中国象棋详细源码注释·rar32·9MB\chess\res\1.ico
文件 79222 2008-11-22 01:40 vc编写中国象棋详细源码注释·rar32·9MB\chess\res\bitmap1.bmp
文件 9190 2008-11-22 01:40 vc编写中国象棋详细源码注释·rar32·9MB\chess\res\bmp00001.bmp
文件 1078 2008-11-21 05:37 vc编写中国象棋详细源码注释·rar32·9MB\chess\res\chess.ico
文件 397 2008-11-21 05:37 vc编写中国象棋详细源码注释·rar32·9MB\chess\res\chess.rc2
..A.SH. 9728 2008-11-27 11:02 vc编写中国象棋详细源码注释·rar32·9MB\chess\res\Thumbs.db
目录 0 2008-11-27 11:02 vc编写中国象棋详细源码注释·rar32·9MB\chess\res
............此处省略16个文件信息
评论
共有 条评论