资源简介
雷游戏是Windows操作系统自带的一款小游戏。在过去的几年里,Windows操作系统虽历经数次更新换代,变得越来越庞大、复杂,功能越来越齐全,但是这款小游戏依然保持着原来的容貌,可见这款小游戏很受广大用户的喜爱,所以在此基础上,我们准备在本次课程设计的时候,利用C++做一个扫雷小游戏,通过做这个小游戏来让我们课堂上所学到的知识用于实践。
代码片段和文件信息
// 2_1.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “2_1.h“
#include “MainFrm.h“
#include “2_1Doc.h“
#include “2_1View.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy2_1App
BEGIN_MESSAGE_MAP(CMy2_1App CWinApp)
//{{AFX_MSG_MAP(CMy2_1App)
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()
/////////////////////////////////////////////////////////////////////////////
// CMy2_1App construction
CMy2_1App::CMy2_1App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMy2_1App object
CMy2_1App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMy2_1App initialization
BOOL CMy2_1App::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(CMy2_1Doc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CMy2_1View));
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();
return TRUE;
}
/////////////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 235424 2019-12-23 11:22 c++\C++面向程序设计答辩.pptx
文件 2895952 2019-11-10 16:35 c++\VCMFC小游戏开发实例教程扫雷五子棋俄罗斯老鼠滚球.rar
文件 52316 2019-12-28 14:47 c++\扫雷\2_1\2_1.aps
文件 1936 2019-12-28 15:42 c++\扫雷\2_1\2_1.clw
文件 4183 2001-10-22 13:14 c++\扫雷\2_1\2_1.cpp
文件 6553 2019-12-21 16:29 c++\扫雷\2_1\2_1.dsp
文件 531 2001-10-22 13:14 c++\扫雷\2_1\2_1.dsw
文件 1333 2001-10-22 13:14 c++\扫雷\2_1\2_1.h
文件 140288 2019-12-28 15:43 c++\扫雷\2_1\2_1.ncb
文件 56832 2019-12-28 15:43 c++\扫雷\2_1\2_1.opt
文件 240 2019-12-28 15:22 c++\扫雷\2_1\2_1.plg
文件 11813 2019-12-28 14:47 c++\扫雷\2_1\2_1.rc
文件 1716 2001-10-22 13:14 c++\扫雷\2_1\2_1Doc.cpp
文件 1456 2001-10-22 13:14 c++\扫雷\2_1\2_1Doc.h
文件 14303 2019-12-28 14:40 c++\扫雷\2_1\2_1View.cpp
文件 2453 2019-12-28 12:35 c++\扫雷\2_1\2_1View.h
文件 4834304 2019-12-28 14:40 c++\扫雷\2_1\Debug\2_1.bsc
文件 131134 2019-12-28 14:47 c++\扫雷\2_1\Debug\2_1.exe
文件 389608 2019-12-28 14:47 c++\扫雷\2_1\Debug\2_1.ilk
文件 22872 2019-12-28 12:35 c++\扫雷\2_1\Debug\2_1.obj
文件 7064836 2019-12-27 21:56 c++\扫雷\2_1\Debug\2_1.pch
文件 500736 2019-12-28 14:47 c++\扫雷\2_1\Debug\2_1.pdb
文件 12188 2019-12-28 14:47 c++\扫雷\2_1\Debug\2_1.res
文件 0 2019-12-28 12:35 c++\扫雷\2_1\Debug\2_1.sbr
文件 14636 2019-12-27 21:56 c++\扫雷\2_1\Debug\2_1Doc.obj
文件 0 2019-12-27 21:56 c++\扫雷\2_1\Debug\2_1Doc.sbr
文件 43629 2019-12-28 14:40 c++\扫雷\2_1\Debug\2_1View.obj
文件 0 2019-12-28 14:40 c++\扫雷\2_1\Debug\2_1View.sbr
文件 18666 2019-12-27 21:56 c++\扫雷\2_1\Debug\MainFrm.obj
文件 0 2019-12-27 21:56 c++\扫雷\2_1\Debug\MainFrm.sbr
............此处省略53个文件信息
- 上一篇:基于IMU的AHRS
- 下一篇:C++ 网络爬虫代码
相关资源
- C++ 网络爬虫代码
- MFC树控件重绘
- c++实现图像扭曲、球面化灯变形
- 史上最全C++代码
- More Exceptional C++中文版高清完整.pdf
- 华为C&C++语言安全编程规范_V3.1.pdf
- essential c++ 中文版 侯捷 PDF
- 用C++mfc做的一系列小游戏
- Qt实现的迷宫与魔塔游戏 源码迷宫模
- 基于MFCC和SVM的说话人性别识别matlab代
- MFC制作SQLITE3操作界面
- C++课程设计,高校人员信息管理系统
- Visual C++代码 获取本地网络信息
- 基于C++的银行家算法模拟实现
- 相对定向 摄影测量 C++完整能运行代码
- opencv+c++实现人脸识别
- 免费:C++ Primer Plus 6th Edition英文版p
- 伐木工控制台小游戏源码VS2015 C++
- 基于OPENCV的完整图像处理程序
- 传智扫地僧王保明 讲义
- MFC+文档图书管理系统C++
- 图书管理系统软件设计C++源码
- C++11实现多线程电梯运行
- MFC下opencv的图像处理源码
- C++ 进程内存搜索,特征码极速定位,
- c++基础和进阶课堂讲义完整版
- Installshield for VC++ 6.0 安装包制作工具
- MFC模拟360悬浮窗加速球
- C++17 stl cook book 中文版
- visual C++ 7.0完整安装程序
评论
共有 条评论