• 大小: 37KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-19
  • 语言: C/C++
  • 标签: 贪吃蛇  游戏  c++  mfc  

资源简介

c++编的mfc 贪吃蛇游戏 哦 非常有用的 啊

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “MFC_SNAKE.h“

#include “MainFrm.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMainframe

IMPLEMENT_DYNCREATE(CMainframe CframeWnd)

BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

static UINT indicators[] =
{
ID_SEPARATOR           // status line indicator
};

/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction

CMainframe::CMainframe()
{
// TODO: add member initialization code here

}

CMainframe::~CMainframe()
{
}

int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1;      // fail to create
}

if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
  sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1;      // fail to create
}

// TODO: Delete these three lines if you don‘t want the toolbar to
//  be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);

return 0;
}

BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
cs.cx=535;
cs.cy=605;
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics

#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}

void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers


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

     目录          0  2007-06-14 11:24  MFC_SNAKE\Debug

    ..A.SH.       272  2007-06-07 11:13  MFC_SNAKE\desktop.ini

     文件        200  2007-06-07 11:13  MFC_SNAKE\Folder Settings\Comment.htt

    ...DSH.         0  2007-06-07 11:13  MFC_SNAKE\Folder Settings

     文件       2474  2007-06-14 09:03  MFC_SNAKE\MainFrm.cpp

     文件       1581  2007-06-07 10:49  MFC_SNAKE\MainFrm.h

     文件      42824  2007-06-14 11:24  MFC_SNAKE\MFC_SNAKE.APS

     文件       1882  2007-06-14 11:23  MFC_SNAKE\MFC_SNAKE.clw

     文件       4263  2007-06-07 10:49  MFC_SNAKE\MFC_SNAKE.cpp

     文件       4618  2007-06-07 10:49  MFC_SNAKE\MFC_SNAKE.dsp

     文件        541  2007-06-07 10:49  MFC_SNAKE\MFC_SNAKE.dsw

     文件       1389  2007-06-07 10:49  MFC_SNAKE\MFC_SNAKE.h

     文件      66560  2007-06-14 11:25  MFC_SNAKE\MFC_SNAKE.ncb

     文件      53760  2007-06-14 11:25  MFC_SNAKE\MFC_SNAKE.opt

     文件       1327  2007-06-14 11:24  MFC_SNAKE\MFC_SNAKE.plg

     文件      10680  2007-06-14 11:24  MFC_SNAKE\MFC_SNAKE.rc

     文件       1802  2007-06-07 10:49  MFC_SNAKE\MFC_SNAKEDoc.cpp

     文件       1508  2007-06-07 10:49  MFC_SNAKE\MFC_SNAKEDoc.h

     文件       7997  2007-06-14 11:24  MFC_SNAKE\MFC_SNAKEView.cpp

     文件       2091  2007-06-14 11:23  MFC_SNAKE\MFC_SNAKEView.h

     文件       4383  2007-06-07 10:49  MFC_SNAKE\ReadMe.txt

     文件       1078  2007-06-07 10:49  MFC_SNAKE\res\MFC_SNAKE.ico

     文件        401  2007-06-07 10:49  MFC_SNAKE\res\MFC_SNAKE.rc2

     文件       1078  2007-06-07 10:49  MFC_SNAKE\res\MFC_SNAKEDoc.ico

     文件        358  2007-06-07 11:06  MFC_SNAKE\res\Toolbar.bmp

     目录          0  2007-06-07 11:06  MFC_SNAKE\res

     文件        784  2007-06-14 11:24  MFC_SNAKE\resource.h

     文件        211  2007-06-07 10:49  MFC_SNAKE\StdAfx.cpp

     文件       1054  2007-06-07 10:49  MFC_SNAKE\StdAfx.h

    ...D..R         0  2007-06-14 11:25  MFC_SNAKE

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

评论

共有 条评论