⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 score.cpp

📁 C++编写的潜艇代码
💻 CPP
字号:
// Score.cpp: implementation of the CScore class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "ShipDemo.h"
#include "Score.h"

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

int CScore::m_nTotalScore=0;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CScore::CScore(CPoint ptPos,int nMuti, int nScore, DWORD nColor)
{
	m_ptPos = ptPos;
	m_nScore = nScore;
	m_nColor = nColor;
	m_nProcess = 0;
	m_nMuti = nMuti;
	m_nTotalScore += m_nMuti* m_nScore * 10;
}

CScore::~CScore()
{

}

bool CScore::Draw(CDC *pDC, bool bPause)
{
	pDC->SetTextColor(m_nColor);
	pDC->SetBkMode(TRANSPARENT);

	CString strScore;
	strScore.Format("%d0 X %d", m_nScore, m_nMuti);
	pDC->TextOut(m_ptPos.x, m_ptPos.y, strScore);

	if(bPause)
		return false;

	return m_nProcess++ > 50 ? true : false;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -