俄罗斯方块课程设计报告

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

目录

1.系统概述 (1)

2. 设计说明书 (4)

3.系统操作界面 (6)

4.源程序编码 (7)

5.测试计划 (36)

6.改进意见 (39)

7.课程设计心得体会 (40)

8.参考书籍、资料 (40)

系统概述

现状分析

在个人电脑日益普及的今天,一些有趣的桌面游戏已经成为人们在使用计算机进行工作或学习之余休闲娱乐的首选,而俄罗斯方块游戏是人们最熟悉的小游戏之一,它以其趣味性强,易上手等诸多特点得到了大众的认可,因此开发此游戏软件可满足人们的一些娱乐的需求。

此俄罗斯方块游戏可以为用户提供一个可在普通个人电脑上运行的,界面美观的,易于控制的俄罗斯方块游戏。

项目要求

俄罗斯方块游戏是一款适合大众的游戏软件,它适合不同年龄的人玩。本软件要实现的功能如下:

(1)游戏区:玩家可以在游戏区中堆积方块,并能够在游戏过程中随时了解得分情况。

(2)游戏控制:玩家可以通过游戏控制功能来选择开始新的一局游戏,暂停或退出游戏。

(3)级别设置:玩家可以根据自己的需要自行设定游戏的开始级别,级别越高,游戏的速度越快,难度越大。

(4)系统功能模块示意图

项目开发计划书

项目开发计划书

设计说明游戏区模块

控制区模块

系统流程图

(1)游戏区模块(创建游戏区,处理玩家操作,显示操作结果)(2)游戏控制模块(开始,暂停继续,提高等级,降低等级,停止,新游戏,帮助)

系统操作界面游戏打开界面

游戏进行中界面

源代码编码

#include <>

#include <>

#include <>

#include <>

#include <>

#include <>

#define true 1

#define false 0

#define BoardWidth 12

#define BoardHeight 23

#define _INNER_HELPER /*inner helper method */

/*Scan Codes Define*/

enum KEYCODES

{

K_ESC =0x011b,

K_UP =0x4800, /* upward arrow */ K_LEFT =0x4b00,

K_DOWN =0x5000,

K_RIGHT =0x4d00,

K_SPACE =0x3920,

K_P =0x1970

};

/* the data structure of the block */

typedef struct tagBlock

{

char c[4][4]; /* cell fill info array, 0-empty, 1-filled */ int x; /* block position cx [ 0,BoardWidht -1] */ int y; /* block position cy [-4,BoardHeight-1] */ char color; /* block color */

char size; /* block max size in width or height */

char name; /* block name (the block's shape) */

} Block;

/* game's global info */

int FrameTime= 1300;

int CellSize= 18;

int BoardLeft= 30;

int BoardTop= 30;

/* next block grid */

int NBBoardLeft= 300;

int NBBoardTop= 30;

int NBCellSize= 10;

/* score board position */

int ScoreBoardLeft= 300;

int ScoreBoardTop=100;

int ScoreBoardWidth=200;

int ScoreBoardHeight=35;

int ScoreColor=LIGHTCYAN;

/* infor text postion */

int InfoLeft=300;

int InfoTop=200;

int InfoColor=YELLOW;

int BorderColor=DARKGRAY;

int BkGndColor=BLACK;

int GameRunning=true;

int TopLine=BoardHeight-1; /* top empty line */

int TotalScore=100;

char info_score[20];

char info_help[255];

char info_common[255];

/* our board, Board[x][y][0]-isFilled, Board[x][y][1]-fillColor */

unsigned char Board[BoardWidth][BoardHeight][2];

char BufferCells[4][4]; /* used to judge if can rotate block */ Block curBlock; /* current moving block */

Block nextBlock; /* next Block to appear */

/* function list */

int GetKeyCode();

int CanMove(int dx,int dy);

int CanRotate();

int RotateBlock(Block *block);

int MoveBlock(Block *block,int dx,int dy);

void DrawBlock(Block *block,int,int,int);

void EraseBlock(Block *block,int,int,int);

void DisplayScore();

void DisplayInfo(char* text);

void GenerateBlock(Block *block);

void NextBlock();

void InitGame();

int PauseGame();

void QuitGame();

/*Get Key Code */

int _INNER_HELPER GetKeyCode()

{

int key=0;

if(bioskey(1))

{

key=bioskey(0);

}

return key;

}

/* display text! */

void _INNER_HELPER DisplayInfo(char *text)

{

setcolor(BkGndColor);

outtextxy(InfoLeft,InfoTop,info_common);

strcpy(info_common,text);

setcolor(InfoColor);

outtextxy(InfoLeft,InfoTop,info_common);

}

/* create a new block by key number,

* the block anchor to the top-left corner of 4*4 cells

相关文档
最新文档