资源简介
著名人工智能程序,agent技术的应用,别当做作业交上去啊,同学们。
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “Wumpus.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 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\MyStatic.sbr
文件 105954 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\StdAfx.obj
文件 1375064 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\StdAfx.sbr
文件 205824 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\vc60.idb
文件 372736 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\vc60.pdb
文件 3138560 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\Wumpus.bsc
文件 15419 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\Wumpus.obj
文件 6943744 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\Wumpus.pch
文件 12924 2010-11-27 14:17 1a89e074fe7d\Wumpus\Debug\Wumpus.res
文件 0 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\Wumpus.sbr
文件 0 2010-11-27 14:21 1a89e074fe7d\Wumpus\Debug\WumpusDlg.sbr
文件 2507 2006-03-08 23:55 1a89e074fe7d\Wumpus\MainFrm.cpp
文件 1581 2006-03-08 23:55 1a89e074fe7d\Wumpus\MainFrm.h
文件 897 2006-03-19 15:52 1a89e074fe7d\Wumpus\MyStatic.cpp
文件 1169 2006-03-19 15:39 1a89e074fe7d\Wumpus\MyStatic.h
文件 3579 2006-03-16 20:11 1a89e074fe7d\Wumpus\ReadMe.txt
文件 2102 2006-03-16 22:36 1a89e074fe7d\Wumpus\res\bitmap1.bmp
文件 2102 2006-03-16 22:29 1a89e074fe7d\Wumpus\res\gold.bmp
文件 2102 2006-03-16 22:29 1a89e074fe7d\Wumpus\res\hero_down.bmp
文件 2102 2006-03-16 22:29 1a89e074fe7d\Wumpus\res\pit.bmp
..A.SH. 15872 2006-03-16 15:46 1a89e074fe7d\Wumpus\res\Thumbs.db
文件 718 2006-03-13 19:42 1a89e074fe7d\Wumpus\res\Toolbar.bmp
文件 238 2006-03-13 19:28 1a89e074fe7d\Wumpus\res\toolbar1.bmp
文件 3126 2006-03-16 22:29 1a89e074fe7d\Wumpus\res\wumpus.bmp
文件 1078 2006-03-16 20:11 1a89e074fe7d\Wumpus\res\Wumpus.ico
文件 398 2006-03-16 20:11 1a89e074fe7d\Wumpus\res\Wumpus.rc2
文件 1078 2006-03-08 23:55 1a89e074fe7d\Wumpus\res\WumpusDoc.ico
文件 1508 2006-03-16 22:36 1a89e074fe7d\Wumpus\resource.h
文件 165 2006-03-14 16:13 1a89e074fe7d\Wumpus\resource.hm
文件 208 2006-03-16 20:11 1a89e074fe7d\Wumpus\StdAfx.cpp
............此处省略30个文件信息
- 上一篇:VC++实现两台电脑文件传输(源代码)
- 下一篇:C++&easyx;的坦克大战
相关资源
- 备忘录--C++程序
- 谭浩强----C语言程序设计第二版高清晰
- VC++2012版Prim算法最小生成树动态演示
- 通讯录MFC程序,C++大作业
- MSP430系列单片机实用C语言程序设计
- C++ 模拟投票系统小程序
- 一个简单的MFC的MDI程序-Sketcher
- JPL DE405 资源
- Numerical Recipes 3rd英文版,有C++、Fort
- C++编程惯用法——高级程序员常用方
- MFC邮件发送程序(C语言版带界面)
- 计算机网络课程设计之Ping程序含C++原
- 模拟字典小程序c++实现
- WIndow下使用QT C++开发生成带Logo的二维
- 局域网截包程序设计C++
- 正弦,方波,三角波生成程序
- C++语言程序设计第四版 郑莉 答案 p
- 计算BMP24位真彩色图像PSNR的C++小程序
- 蚁群算法C++程序
- C++程序设计谭浩强PDF
- C语言程序设计 谭浩强 PPT全十章
- OPENGL的烟花程序(代码)
- Socket编写的一个基于MFC的聊天程序源
- 导入3dmax模型的VC++程序
- 清大谭浩强教授的C++教程
- VC++6.0 MFC串口编程上位机程序代码.
- VC++编写的示波器模拟仿真程序
- VC++6.0多人网络小游戏-支持多人联机网
- ISODATA算法C语言程序
- VC++记事本完整源程序
评论
共有 条评论