小游戏源代码.doc

小游戏源代码.doc

ID:59357015

大小:43.00 KB

页数:13页

时间:2020-09-04

小游戏源代码.doc_第1页
小游戏源代码.doc_第2页
小游戏源代码.doc_第3页
小游戏源代码.doc_第4页
小游戏源代码.doc_第5页
资源描述:

《小游戏源代码.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、页眉内容/*************************************Desc:俄罗斯方块游戏*By:hoodlum1980:30************************************/#include#include#include#include#include#include#definetrue1#definefalse0#defineBoardWidth12#defineBoar

2、dHeight23#define_INNER_HELPER/*innerhelpermethod*//*ScanCodesDefine*/enumKEYCODES{K_ESC=0x011b,K_UP=0x4800,/*upwardarrow*/K_LEFT=0x4b00,K_DOWN=0x5000,K_RIGHT=0x4d00,K_SPACE=0x3920,K_P=0x1970};/*thedatastructureoftheblock*/typedefstructtagBlock{charc[4][4];/*cellfillin

3、foarray,0-empty,1-filled*/intx;/*blockpositioncx[0,BoardWidht-1]*/inty;/*blockpositioncy[-4,BoardHeight-1]*/charcolor;/*blockcolor*/charsize;/*blockmaxsizeinwidthorheight*/charname;/*blockname(theblock'sshape)*/}Block;/*game'sglobalinfo*/intFrameTime=1300;intCellSize=

4、18;intBoardLeft=30;intBoardTop=30;/*nextblockgrid*/精心整理页眉内容intNBBoardLeft=300;intNBBoardTop=30;intNBCellSize=10;/*scoreboardposition*/intScoreBoardLeft=300;intScoreBoardTop=100;intScoreBoardWidth=200;intScoreBoardHeight=35;intScoreColor=LIGHTCYAN;/*infortextpostion*/i

5、ntInfoLeft=300;intInfoTop=200;intInfoColor=YELLOW;intBorderColor=DARKGRAY;intBkGndColor=BLACK;intGameRunning=true;intTopLine=BoardHeight-1;/*topemptyline*/intTotalScore=100;charinfo_score[20];charinfo_help[255];charinfo_common[255];/*ourboard,Board[x][y][0]-isFilled,B

6、oard[x][y][1]-fillColor*/unsignedcharBoard[BoardWidth][BoardHeight][2];charBufferCells[4][4];/*usedtojudgeifcanrotateblock*/BlockcurBlock;/*currentmovingblock*/BlocknextBlock;/*nextBlocktoappear*//*functionlist*/intGetKeyCode();intCanMove(intdx,intdy);intCanRotate();i

7、ntRotateBlock(Block*block);intMoveBlock(Block*block,intdx,intdy);voidDrawBlock(Block*block,int,int,int);voidEraseBlock(Block*block,int,int,int);voidDisplayScore();voidDisplayInfo(char*text);voidGenerateBlock(Block*block);voidNextBlock();voidInitGame();intPauseGame();v

8、oidQuitGame();/*GetKeyCode*/int_INNER_HELPERGetKeyCode(){intkey=0;if(bioskey(1))精心整理页眉内容{key=bioskey(0);}returnkey;}/*displa

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。