资源简介

立方体消隐前和消隐后的算法,可以用键盘控制立方体的转动。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Test.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
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};

/////////////////////////////////////////////////////////////////////////////
// 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;
// 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  2012-11-20 09:53  立方体动态隐线算法\
     目录           0  2012-11-20 09:53  立方体动态隐线算法\Debug\
     文件       20378  2012-11-20 09:24  立方体动态隐线算法\Debug\MainFrm.obj
     文件      106045  2012-11-20 09:24  立方体动态隐线算法\Debug\StdAfx.obj
     文件      393331  2012-11-20 09:53  立方体动态隐线算法\Debug\Test.exe
     文件      334880  2012-11-20 09:53  立方体动态隐线算法\Debug\Test.ilk
     文件       23605  2012-11-20 09:24  立方体动态隐线算法\Debug\Test.obj
     文件     5497160  2012-11-20 09:24  立方体动态隐线算法\Debug\Test.pch
     文件      443392  2012-11-20 09:53  立方体动态隐线算法\Debug\Test.pdb
     文件      231400  2012-11-20 09:24  立方体动态隐线算法\Debug\Test.res
     文件       15082  2012-11-20 09:24  立方体动态隐线算法\Debug\TestDoc.obj
     文件       38253  2012-11-20 09:53  立方体动态隐线算法\Debug\TestView.obj
     文件      214016  2012-11-20 09:53  立方体动态隐线算法\Debug\vc60.idb
     文件      364544  2012-11-20 09:53  立方体动态隐线算法\Debug\vc60.pdb
     文件        2505  2006-11-30 11:00  立方体动态隐线算法\MainFrm.cpp
     文件        1581  2006-11-30 11:00  立方体动态隐线算法\MainFrm.h
     文件        4263  2006-11-30 11:00  立方体动态隐线算法\ReadMe.txt
     目录           0  2008-06-28 17:07  立方体动态隐线算法\res\
     文件        1002  2007-10-01 18:11  立方体动态隐线算法\resource.h
     文件       10134  2006-11-30 11:06  立方体动态隐线算法\res\app.ico
     文件        1078  2007-10-01 18:11  立方体动态隐线算法\res\Diamond.ico
     文件         766  2006-11-30 11:06  立方体动态隐线算法\res\draw.ico
     文件        4710  2006-11-30 11:06  立方体动态隐线算法\res\exit.ico
     文件        3638  2006-11-30 11:06  立方体动态隐线算法\res\Help.ico
     文件      202556  2007-09-30 16:51  立方体动态隐线算法\res\kld.bmp
     文件        1078  2006-12-01 08:47  立方体动态隐线算法\res\Test.ico
     文件         396  2006-11-30 11:00  立方体动态隐线算法\res\Test.rc2
     文件        1078  2006-11-30 11:00  立方体动态隐线算法\res\TestDoc.ico
     文件       26624  2007-10-27 18:28  立方体动态隐线算法\res\Thumbs.db
     文件        2166  2007-10-01 18:11  立方体动态隐线算法\res\Toolbar.bmp
     文件         206  2006-11-30 11:00  立方体动态隐线算法\StdAfx.cpp
............此处省略15个文件信息

评论

共有 条评论