• 大小: 3.57MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-13
  • 语言: C/C++
  • 标签: 打字游戏  MFC  

资源简介

用MFC实现的简易打字游戏,可以设置难度(通过改变单词下落的速度控制),待打的单词从文件中读取,统计分数,可以显示当前输错状态,可根据输错状态纠正自己的错误

资源截图

代码片段和文件信息

// Introduction.cpp : implementation file
//

#include “stdafx.h“
#include “wordstest.h“
#include “Introduction.h“

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

/////////////////////////////////////////////////////////////////////////////
// CIntroduction dialog


CIntroduction::CIntroduction(CWnd* pParent /*=NULL*/)
: CDialog(CIntroduction::IDD pParent)
{
//{{AFX_DATA_INIT(CIntroduction)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}


void CIntroduction::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CIntroduction)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CIntroduction CDialog)
//{{AFX_MSG_MAP(CIntroduction)
ON_BN_CLICKED(IDC_CONFIRM OnConfirm)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CIntroduction message handlers



void CIntroduction::OnConfirm() 
{
// TODO: Add your control notification handler code here
int nResult=0;
EndDialog(nResult);
}

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

     文件      10996  2011-05-14 16:51  wordstest\Debug\Introduction.obj

     文件          0  2011-05-14 16:51  wordstest\Debug\Introduction.sbr

     文件      18537  2011-05-14 16:51  wordstest\Debug\MainFrm.obj

     文件          0  2011-05-14 16:51  wordstest\Debug\MainFrm.sbr

     文件     105697  2011-05-14 16:50  wordstest\Debug\StdAfx.obj

     文件    1374989  2011-05-14 16:50  wordstest\Debug\StdAfx.sbr

     文件     222208  2011-06-10 00:47  wordstest\Debug\vc60.idb

     文件     364544  2011-05-16 09:44  wordstest\Debug\vc60.pdb

     文件    5129216  2011-05-16 09:44  wordstest\Debug\wordstest.bsc

     文件     127052  2011-05-16 09:44  wordstest\Debug\wordstest.exe

     文件     397804  2011-05-16 09:44  wordstest\Debug\wordstest.ilk

     文件      14900  2011-05-14 16:57  wordstest\Debug\wordstest.obj

     文件    6869072  2011-05-14 16:50  wordstest\Debug\wordstest.pch

     文件     459776  2011-05-16 09:44  wordstest\Debug\wordstest.pdb

     文件       7408  2011-05-14 16:56  wordstest\Debug\wordstest.res

     文件          0  2011-05-14 16:57  wordstest\Debug\wordstest.sbr

     文件      14954  2011-05-14 16:51  wordstest\Debug\wordstestDoc.obj

     文件          0  2011-05-14 16:51  wordstest\Debug\wordstestDoc.sbr

     文件      53217  2011-05-16 09:44  wordstest\Debug\wordstestView.obj

     文件          0  2011-05-16 09:44  wordstest\Debug\wordstestView.sbr

     文件       1183  2011-05-14 15:24  wordstest\Introduction.cpp

     文件       1248  2011-05-14 15:24  wordstest\Introduction.h

     文件       2800  2011-05-14 14:55  wordstest\MainFrm.cpp

     文件       1587  2011-05-14 10:03  wordstest\MainFrm.h

     文件       4383  2011-05-11 08:33  wordstest\ReadMe.txt

     文件       1078  2011-05-11 08:33  wordstest\res\Toolbar.bmp

     文件       1078  2011-05-11 08:33  wordstest\res\wordstest.ico

     文件        401  2011-05-11 08:33  wordstest\res\wordstest.rc2

     文件       1078  2011-05-11 08:33  wordstest\res\wordstestDoc.ico

     文件       1580  2011-05-14 16:55  wordstest\resource.h

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

评论

共有 条评论