一、项目介绍
本源码是纯C语言实现俄罗斯方块游戏,以TC2.0环境,主要用到TC提供的graphics来实现相关的绘图
二、运行截图
三、源码解析
这个项目主要是纯C实现,依据TC2.0中的绘图功能实现
首先需要尝试这个游戏,明白每种形状的实现方式,我们这里给大家提供一共19中形状,每一个形状包含
typedef struct boxes { unsigned int box; int color; int next; }DESIGN; DESIGN a[19]={35008,2,1, /* The 19 shapes of boxes ,includes size,color and the next number*/ 3712,2,2, 50240,2,3, 736,2,0, 1100,YELLOW,5, 2272,YELLOW,6, 51328,YELLOW,7, 3616,YELLOW,4, 35904,4,9, 1728,4,8, 19584,12,11, 3168,12,10, 1248,5,13, 35968,5,14, 3648,5,15, 19520,5,12, 34952,6,17, 3840,6,16, 3264,10,18}; int screeninarry[19][21]={0};
四、完整源码
本文固定URL:https://www.dotcpp.com/course/1234