• 大小: 4.25MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-28
  • 语言: 其他
  • 标签: 贪吃蛇  

资源简介

基于MFC框架写的,里面有详细的注释,基本每个IT人员在学生时代都会写这些程序,所以我也写了,现在贴上了

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “GreedySnake.h“

#include “MainFrm.h“
#include “GreedySnakeDoc.h“
#include “GreedySnakeView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CGreedySnakeApp

BEGIN_MESSAGE_MAP(CGreedySnakeApp CWinApp)
//{{AFX_MSG_MAP(CGreedySnakeApp)
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()

/////////////////////////////////////////////////////////////////////////////
// CGreedySnakeApp construction

CGreedySnakeApp::CGreedySnakeApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CGreedySnakeApp object

CGreedySnakeApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CGreedySnakeApp initialization

BOOL CGreedySnakeApp::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(CGreedySnakeDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CGreedySnakeView));
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

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

     文件    1921024  2012-02-05 21:33  GreedySnake.exe

     文件    2056287  2012-02-05 21:36  GreedySnake\Debug\GreedySnake.exe

     文件     331776  2012-02-05 21:36  GreedySnake\Debug\GreedySnake.ilk

     文件      23493  2012-02-05 21:36  GreedySnake\Debug\GreedySnake.obj

     文件    5502384  2012-02-05 21:36  GreedySnake\Debug\GreedySnake.pch

     文件     353280  2012-02-05 21:36  GreedySnake\Debug\GreedySnake.pdb

     文件    1607268  2012-02-05 21:36  GreedySnake\Debug\GreedySnake.res

     文件      15234  2012-02-05 21:36  GreedySnake\Debug\GreedySnakeDoc.obj

     文件      53547  2012-02-05 21:36  GreedySnake\Debug\GreedySnakeView.obj

     文件      19379  2012-02-05 21:36  GreedySnake\Debug\MainFrm.obj

     文件     105861  2012-02-05 21:36  GreedySnake\Debug\StdAfx.obj

     文件     205824  2012-02-05 21:36  GreedySnake\Debug\vc60.idb

     文件     364544  2012-02-05 21:36  GreedySnake\Debug\vc60.pdb

     文件    1629604  2012-02-05 21:36  GreedySnake\GreedySnake.aps

     文件       2010  2012-02-05 21:37  GreedySnake\GreedySnake.clw

     文件       4299  2012-01-16 11:54  GreedySnake\GreedySnake.cpp

     文件       4904  2012-02-05 21:34  GreedySnake\GreedySnake.dsp

     文件        530  2012-01-16 11:54  GreedySnake\GreedySnake.dsw

     文件       1411  2012-01-16 11:54  GreedySnake\GreedySnake.h

     文件      91136  2012-02-05 21:37  GreedySnake\GreedySnake.ncb

     文件      49664  2012-02-05 21:37  GreedySnake\GreedySnake.opt

     文件       2162  2012-02-05 21:36  GreedySnake\GreedySnake.plg

     文件      11165  2012-02-05 20:53  GreedySnake\GreedySnake.rc

     文件       1842  2012-01-16 11:54  GreedySnake\GreedySnakeDoc.cpp

     文件       1530  2012-01-16 11:54  GreedySnake\GreedySnakeDoc.h

     文件      16037  2012-02-05 21:30  GreedySnake\GreedySnakeView.cpp

     文件       3274  2012-02-05 20:44  GreedySnake\GreedySnakeView.h

     文件       2606  2012-01-17 22:07  GreedySnake\MainFrm.cpp

     文件       1582  2012-01-17 12:23  GreedySnake\MainFrm.h

     文件       4431  2012-01-16 11:54  GreedySnake\ReadMe.txt

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

评论

共有 条评论