资源简介
基于VC6的MFC框架开发的贪吃蛇游戏,可计分可更改移动速度。
代码片段和文件信息
// GreedyWorm.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “GreedyWorm.h“
#include “MainFrm.h“
#include “GreedyWormDoc.h“
#include “GreedyWormView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGreedyWormApp
BEGIN_MESSAGE_MAP(CGreedyWormApp CWinApp)
//{{AFX_MSG_MAP(CGreedyWormApp)
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()
/////////////////////////////////////////////////////////////////////////////
// CGreedyWormApp construction
CGreedyWormApp::CGreedyWormApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CGreedyWormApp object
CGreedyWormApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CGreedyWormApp initialization
BOOL CGreedyWormApp::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(CGreedyWormDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CGreedyWormView));
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->ShowW
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-01-10 09:27 GreedyWorm\
目录 0 2018-01-10 09:27 GreedyWorm\Debug\
文件 5096448 2018-01-10 08:59 GreedyWorm\Debug\GreedyWorm.bsc
文件 122948 2018-01-10 08:59 GreedyWorm\Debug\GreedyWorm.exe
文件 434772 2018-01-10 08:59 GreedyWorm\Debug\GreedyWorm.ilk
文件 23440 2018-01-09 21:50 GreedyWorm\Debug\GreedyWorm.obj
文件 6932716 2018-01-09 15:23 GreedyWorm\Debug\GreedyWorm.pch
文件 500736 2018-01-10 08:59 GreedyWorm\Debug\GreedyWorm.pdb
文件 7608 2018-01-10 08:59 GreedyWorm\Debug\GreedyWorm.res
文件 0 2018-01-09 21:50 GreedyWorm\Debug\GreedyWorm.sbr
文件 14890 2018-01-09 15:23 GreedyWorm\Debug\GreedyWormDoc.obj
文件 0 2018-01-09 15:23 GreedyWorm\Debug\GreedyWormDoc.sbr
文件 34073 2018-01-10 08:59 GreedyWorm\Debug\GreedyWormView.obj
文件 0 2018-01-10 08:59 GreedyWorm\Debug\GreedyWormView.sbr
文件 19892 2018-01-09 15:23 GreedyWorm\Debug\MainFrm.obj
文件 0 2018-01-09 15:23 GreedyWorm\Debug\MainFrm.sbr
文件 105622 2018-01-09 15:23 GreedyWorm\Debug\StdAfx.obj
文件 1375184 2018-01-09 15:23 GreedyWorm\Debug\StdAfx.sbr
文件 222208 2018-01-10 08:59 GreedyWorm\Debug\vc60.idb
文件 372736 2018-01-10 08:59 GreedyWorm\Debug\vc60.pdb
文件 29044 2018-01-09 23:19 GreedyWorm\GreedyWorm.aps
文件 2347 2018-01-09 23:19 GreedyWorm\GreedyWorm.clw
文件 4350 2018-01-09 10:30 GreedyWorm\GreedyWorm.cpp
文件 4640 2018-01-09 14:29 GreedyWorm\GreedyWorm.dsp
文件 528 2018-01-09 10:17 GreedyWorm\GreedyWorm.dsw
文件 1400 2018-01-09 10:17 GreedyWorm\GreedyWorm.h
文件 66560 2018-01-10 09:26 GreedyWorm\GreedyWorm.ncb
文件 49664 2018-01-10 09:26 GreedyWorm\GreedyWorm.opt
文件 1614 2018-01-10 08:59 GreedyWorm\GreedyWorm.plg
文件 11731 2018-01-10 08:59 GreedyWorm\GreedyWorm.rc
文件 1822 2018-01-09 10:17 GreedyWorm\GreedyWormDoc.cpp
............此处省略15个文件信息
- 上一篇:MFC vc++ 指针时钟 闹钟,非常好用。
- 下一篇:图书管理系统VC6 MFC
相关资源
- 图书管理系统VC6 MFC
- MFC vc++ 指针时钟 闹钟,非常好用。
- C++ MFC 学生和教师信息系统
- VC6.0的使用工具AddOpen插件、字体/颜色
- 餐饮管理资源源代码
- VC/MFC启动及登录界面设计
- 火车订票系统mfc+sql希望能对大家有所
- 用MFC制作的车票管理系统
- c++ 时区时钟
- 图书管理系统 visual c++ 6.0,access开发
- MFC代码大全经典+技巧
- vc6下 完整的文本编辑器源码
- MFC绘图板源代码及设计报告
- C++读取Excel,就两个文件,里面有,可
- MFC单文档应用程模拟交通红绿灯
- MFC图书管理系统代码及程序 可用作毕
- CMFCToolBarVS2010
- MFC 一维码生成+打印 支持多种编码1
- MD5算法源代码(MFC)
- 基于MFC的TCP通信程序
- MFC学生成绩管理系统
- 基于C++语言编写的宠物管理系统(V
- vc6鼠标低级钩子源码 直接编译运行即
- matlab下的基于高斯混合模型的说话人
- 从DEM数据中提取等高线——MFC编写
- mfc编写的通讯录小程序
- MFC Csocket实现点对点文件传输
- MFC VC6.0 简单贪吃蛇
- Opencv+VC6.0实现摄像头视频的监控
- VC6通过dll读写excel文件,不需要安装
评论
共有 条评论