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

📄 tgrid.h

📁 在symbian2.0平台上开发的完整的俄罗斯方块的源码。
💻 H
字号:
#ifndef __GRID_H
#define __GRID_H

#include <e32std.h>

#include "TBlock.h"

const int KGridX=10;
const int KGridY=20;


// A Grid is used to put a Block's type to its Content and detect if there's a Collide.
class TGrid
{
// Constuct
public:
	TGrid();
	static TGrid NewGrid();

///////////////////////////////////////////////////////////////////////
// Other Method
public:
	bool DoesCollide(const TBlock& aBlock, const TPoint& aPoint) const;

	void PutBlock(const TBlock& aBlock, const TPoint& aPoint);

	void Clear();


//////////////////////////////////////////////////////////////////////////
// Data
public:
	TFixedArray<TUint16, KGridY> iMask;

	TFixedArray<TFixedArray<TInt8, KGridX>, KGridY> iContent;
};


#endif

⌨️ 快捷键说明

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