• 大小: 83KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-16
  • 语言: C/C++
  • 标签: vc++  opengl  球形方法  

资源简介

很实用的小程序。 本程序采用球形(dome)的方法,利用vc++结合opengl实现了蓝天白云的模拟。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “MyCloud.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


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

     文件      17352  2005-10-19 15:33  MyCloud\CLOUDS.BW

     文件      17352  2005-10-19 15:33  MyCloud\Debug\CLOUDS.BW

     文件     163968  2005-10-19 15:33  MyCloud\Debug\MyCloud.exe

     文件       2508  2005-10-19 15:33  MyCloud\MainFrm.cpp

     文件       1581  2005-10-19 15:33  MyCloud\MainFrm.h

     文件       2291  2005-10-19 15:33  MyCloud\MyCloud.clw

     文件       4227  2005-10-19 15:33  MyCloud\MyCloud.cpp

     文件       4741  2005-10-19 15:33  MyCloud\MyCloud.dsp

     文件        539  2005-10-19 15:33  MyCloud\MyCloud.dsw

     文件       1376  2005-10-19 15:33  MyCloud\MyCloud.h

     文件     107520  2005-10-19 15:33  MyCloud\MyCloud.ncb

     文件      48640  2005-10-19 15:33  MyCloud\MyCloud.opt

     文件       1249  2005-10-19 15:33  MyCloud\MyCloud.plg

     文件      10590  2005-10-19 15:33  MyCloud\MyCloud.rc

     文件       1762  2005-10-19 15:33  MyCloud\MyCloudDoc.cpp

     文件       1495  2005-10-19 15:33  MyCloud\MyCloudDoc.h

     文件      11295  2005-10-19 15:33  MyCloud\MyCloudView.cpp

     文件       2705  2005-10-19 15:33  MyCloud\MyCloudView.h

     文件       6620  2005-10-19 15:33  MyCloud\MyTexture.cpp

     文件       1614  2005-10-19 15:33  MyCloud\MyTexture.h

     文件       4338  2005-10-19 15:33  MyCloud\ReadMe.txt

     文件       1078  2005-10-19 15:33  MyCloud\RES\MyCloud.ico

     文件        399  2005-10-19 15:33  MyCloud\RES\MyCloud.rc2

     文件       1078  2005-10-19 15:33  MyCloud\RES\MyCloudDoc.ico

     文件       1078  2005-10-19 15:33  MyCloud\RES\Toolbar.bmp

     文件        495  2005-10-19 15:33  MyCloud\Resource.h

     文件        209  2005-10-19 15:33  MyCloud\StdAfx.cpp

     文件       1327  2005-10-19 15:33  MyCloud\StdAfx.h

     目录          0  2009-04-08 23:01  MyCloud\Debug

     目录          0  2009-04-08 23:01  MyCloud\RES

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

评论

共有 条评论