资源简介

简化了的黄金乱工。解压打开goldwoker.dsw,编译运行后按回车即可开始游戏。非常简单的小游戏,代码适合初学者学习使用,采用了双缓冲解决闪屏问题。

资源截图

代码片段和文件信息

// GoldWorker.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “GoldWorker.h“

#include “MainFrm.h“
#include “GoldWorkerDoc.h“
#include “GoldWorkerView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CGoldWorkerApp

BEGIN_MESSAGE_MAP(CGoldWorkerApp CWinApp)
//{{AFX_MSG_MAP(CGoldWorkerApp)
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)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CGoldWorkerApp construction

CGoldWorkerApp::CGoldWorkerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CGoldWorkerApp object

CGoldWorkerApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CGoldWorkerApp initialization

BOOL CGoldWorkerApp::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(CGoldWorkerDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CGoldWorkerView));
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;
}


////////////////////////

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

     文件    5152834  2011-10-15 11:31  GoldWorker\Debug\GoldWorker.exe

     文件     326800  2011-10-15 11:31  GoldWorker\Debug\GoldWorker.ilk

     文件      22824  2011-10-15 11:20  GoldWorker\Debug\GoldWorker.obj

     文件    5494912  2011-10-15 11:20  GoldWorker\Debug\GoldWorker.pch

     文件     336896  2011-10-15 11:31  GoldWorker\Debug\GoldWorker.pdb

     文件    4189292  2011-10-15 11:20  GoldWorker\Debug\GoldWorker.res

     文件      14667  2011-10-15 11:20  GoldWorker\Debug\GoldWorkerDoc.obj

     文件      35078  2011-10-15 11:31  GoldWorker\Debug\GoldWorkerView.obj

     文件    5098584  2011-10-15 11:31  GoldWorker\Debug\GoldWorkerView.pch

     文件      25600  2011-10-15 11:31  GoldWorker\Debug\GoldWorkerView.pdb

     文件      19703  2011-10-15 11:20  GoldWorker\Debug\MainFrm.obj

     文件     105390  2011-10-15 11:20  GoldWorker\Debug\StdAfx.obj

     文件     205824  2011-10-15 11:31  GoldWorker\Debug\vc60.idb

     文件     364544  2011-10-15 11:31  GoldWorker\Debug\vc60.pdb

     文件    4645052  2011-10-14 17:59  GoldWorker\GoldWorker.aps

     文件       2172  2011-10-15 11:22  GoldWorker\GoldWorker.clw

     文件       4186  2011-10-14 12:53  GoldWorker\GoldWorker.cpp

     文件       4912  2011-10-14 17:36  GoldWorker\GoldWorker.dsp

     文件        528  2011-10-14 12:53  GoldWorker\GoldWorker.dsw

     文件       1400  2011-10-14 12:53  GoldWorker\GoldWorker.h

     文件      66560  2011-10-15 12:13  GoldWorker\GoldWorker.ncb

     文件      51712  2011-10-15 12:13  GoldWorker\GoldWorker.opt

     文件        753  2011-10-15 11:31  GoldWorker\GoldWorker.plg

     文件      11248  2011-10-14 17:59  GoldWorker\GoldWorker.rc

     文件       1822  2011-10-14 12:53  GoldWorker\GoldWorkerDoc.cpp

     文件       1519  2011-10-14 12:53  GoldWorker\GoldWorkerDoc.h

     文件       7310  2011-10-15 11:31  GoldWorker\GoldWorkerView.cpp

     文件       3497  2011-10-15 11:31  GoldWorker\GoldWorkerView.dsp

     文件        536  2011-10-15 11:31  GoldWorker\GoldWorkerView.dsw

     文件       1841  2011-10-15 11:20  GoldWorker\GoldWorkerView.h

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

评论

共有 条评论