• 问题反馈、粉丝交流 QQ群327452739 蓝桥杯训练群:113766799 申请群时请备注排名里的昵称
  • C语言研究中心 为您提供有图、有料、解渴的C语言专题! 欢迎讨论!
  • 欢迎访问C语言网www.dotcpp.com 比赛栏每月有奖月赛!举办比赛联系QQ:2045302297

C语言实现俄罗斯方块(TC2.0)

项目源码 CTO 33624次浏览 10个评论

C语言实现俄罗斯方块游戏 TC2.0环境,主要用到TC提供的graphics来实现相关的绘图,实际运行效果如下:

C语言实现俄罗斯方块(TC2.0)

对应TC2.0下载http://www.dotcpp.com/wp/144.html

 

作者原创亲测,源码如下:

 

  1. /********************************************************************/
  2. // Name:俄-罗-斯-方-块 V1.0
  3. // Author:Giant
  4. // Time: 2015/5/17
  5. /********************************************************************/
  6. #include"graphics.h"
  7. #include"time.h"
  8. #include"math.h"
  9. #include"dos.h"
  10. #include"conio.h"
  11. #define NULL 0
  12. #define False 0
  13. #define True 1
  14. #define REVOLVE 5
  15. #define DOWN 2
  16. #define LEFT 3
  17. #define RIGHT 4
  18. #define TIMER 0x1c
  19. #define ESC 27
  20. #define DOWN_MAX 420
  21. void interrupt (*oldtimer)(void);
  22. static unsigned grade=0;
  23. char msg[10]="Grade : ";
  24. char msg1[10]="\0";
  25. typedef struct boxes
  26. {
  27. unsigned int box;
  28. int color;
  29. int next;
  30. }DESIGN;
  31. DESIGN a[19]={35008,2,1, /* The 19 shapes of boxes ,includes size,color and the next number*/
  32. 3712,2,2,
  33. 50240,2,3,
  34. 736,2,0,
  35. 1100,YELLOW,5,
  36. 2272,YELLOW,6,
  37. 51328,YELLOW,7,
  38. 3616,YELLOW,4,
  39. 35904,4,9,
  40. 1728,4,8,
  41. 19584,12,11,
  42. 3168,12,10,
  43. 1248,5,13,
  44. 35968,5,14,
  45. 3648,5,15,
  46. 19520,5,12,
  47. 34952,6,17,
  48. 3840,6,16,
  49. 3264,10,18};
  50. int screeninarry[19][21]={0};
  51. int TimerCounter=0;
  52. void interrupt newtimer(void)
  53. {
  54. (*oldtimer)();
  55. TimerCounter++;
  56. }
  57. void SetTimer(void interrupt(*IntProc)(void))
  58. {
  59. oldtimer=getvect(TIMER);
  60. disable();
  61. setvect(TIMER,IntProc);
  62. enable();
  63. }
  64. void KillTimer()
  65. {
  66. disable();
  67. setvect(TIMER,oldtimer);
  68. enable();
  69. }
  70. void background()
  71. {
  72. int x1=getmaxx()/2-200,y1=60,x2=getmaxx()/2+200,y2=420; /* x,y is maingameinterface of coordinate*/
  73. int i;
  74. setlinestyle(0,1,3);
  75. /* set bkground */
  76. setfillstyle(1,BLUE);
  77. bar(0,0,getmaxx(),getmaxy());
  78. /* maingameinterface */
  79. setcolor(WHITE);
  80. setlinestyle(0,1,3);
  81. rectangle(x1,y1,x2,y2); /* 18* 20 & 360 * 400 */
  82. setfillstyle(1,LIGHTBLUE);
  83. bar(x1,y1,x2,y2);
  84. /* set outbox left and right */
  85. setcolor(WHITE);
  86. setlinestyle(0,1,3);
  87. rectangle(x2+20,80,x2+100,160);
  88. setfillstyle(1,LIGHTBLUE); /* setfill maingameinterface */
  89. bar(x2+20,80,x2+100,160); /* setfill occupation box */
  90. i=20;
  91. setlinestyle(0,1,3);
  92. while(i<80)
  93. {
  94. line(x2+20,80+i,x2+100,80+i);
  95. i=i+20;
  96. }
  97. i=20;
  98. while(i<80)
  99. {
  100. line(x2+20+i,80,x2+20+i,160);
  101. i=i+20;
  102. }
  103. /* this is about of the game ,include opreta and author and so on*/
  104. setlinestyle(0,1,3);
  105. rectangle(x2+10,240,x2+110,DOWN_MAX);
  106. bar(x2+10,240,x2+110,DOWN_MAX);
  107. moveto(x2+10,250);
  108. outtext("Welcomeplay!");
  109. moveto(x2+10,270);
  110. outtext("'P' is pause");
  111. moveto(x2+10,290);
  112. outtext("'R' is renew");
  113. moveto(x2+10,310);
  114. outtext("'Esc' is exit");
  115. moveto(x2+10,340);
  116. outtext(" ----by Giant");
  117. }
  118. /* */
  119. void box(unsigned int box,int color) /* box difine shape,color */
  120. {
  121. int x=getmaxx()/2+200+20,y=80; /* set dutum of x,y */
  122. int i=getmaxx()/2+200+20,n;
  123. unsigned int max=box;
  124. unsigned int mask=32768;
  125. /* init boxes */
  126. int k=20;
  127. setfillstyle(1,LIGHTBLUE);
  128. bar(x,80,x+80,160);
  129. k=20;
  130. setcolor(WHITE);
  131. setlinestyle(0,1,3);
  132. while(k<80)
  133. {
  134. line(x,80+k,x+80,80+k);
  135. k=k+20;
  136. }
  137. k=20;
  138. while(k<80)
  139. {
  140. line(x+k,80,x+k,160);
  141. k=k+20;
  142. }
  143. /* boxes it is ok */
  144. setfillstyle(1,color);
  145. setlinestyle(0,1,3);
  146. for(n=0;n<16;n++) { if(mask & max) { rectangle(x,y,x+20,y+20); bar(x,y,x+20,y+20); } x=x+20; if(x-i==80) { x=(x-i)%80+i; y=y+20; } mask=mask>>1;
  147. }
  148. }
  149. double killfullline(int lasty)
  150. {
  151. int vga=getmaxx()/2-200;
  152. int x=vga,y=lasty,yy=lasty;
  153. int n=0;
  154. int count=0,i=0;
  155. int color;
  156. int score=0;
  157. for(y=lasty;y>=lasty-60;y=y-20) {
  158. count=0;
  159. x=vga;
  160. for(i=0;i<20;i++,x=x+20)
  161. {
  162. if(screeninarry[(y-60)/20][(x-vga)/20]==2)
  163. {
  164. count++;
  165. }
  166. }
  167. if(20==count)
  168. {
  169. n=0;
  170. score=0;
  171. x=vga;
  172. n++;
  173. score=score+10*pow(2,n);
  174. setfillstyle(1,LIGHTBLUE);
  175. setcolor(LIGHTBLUE);
  176. for(x=vga,i=0;i<20;x=x+20,i++) /* clean fullline */ { rectangle(x,y,x+20,y+20); bar(x,y,x+20,y+20); screeninarry[(y-60)/20][(x-vga)/20]=0; } for(x=vga,i=0,yy=y;yy>=60;x=x+20,i++)
  177. {
  178. if(i==20)
  179. {
  180. i=0;
  181. x=vga;
  182. /* killfullline(yy); */
  183. yy=yy-20;
  184. }
  185. if(screeninarry[(yy-20-60)/20][(x-vga)/20]==2)
  186. {
  187. color=getpixel(x+10,yy-10); /* get color of this box*/
  188. screeninarry[(yy-20-60)/20][(x-vga)/20]=0;
  189. setfillstyle(1,LIGHTBLUE);
  190. bar(x,yy-20,x+20,yy);
  191. setcolor(LIGHTBLUE);
  192. rectangle(x,yy-20,x+20,yy);
  193. setfillstyle(1,color);
  194. setlinestyle(0,1,3);
  195. setcolor(WHITE);
  196. rectangle(x,yy,x+20,yy+20);
  197. bar(x,yy,x+20,yy+20);
  198. screeninarry[(yy-60)/20][(x-vga)/20]=2;
  199. }
  200. }
  201. y=y+20;
  202. } /*if (20==count) */
  203. } /* for */
  204. return score;
  205. } /* killfullline */
  206. int drawshape(int startx,int starty,int n,int flag) /* set start,coordinate of x,y */
  207. {
  208. int x,y;
  209. int vga=getmaxx()/2-200;
  210. int i=0;
  211. int var;
  212. int x1=getmaxx()/2-200,y1=60,x2=getmaxx()/2+200,y2=420;
  213. int bottom;
  214. unsigned int mask=32768;
  215. unsigned int max=a[n].box;
  216. setfillstyle(1,LIGHTBLUE);
  217. if(flag==0)
  218. var=1;
  219. else
  220. var=2;
  221. setfillstyle(1,BLUE);
  222. bar(getmaxx()/2-120,20,getmaxx()/2+120,50);
  223. settextstyle(1, 0, 3);
  224. outtextxy(getmaxx()/2-100,20,msg);
  225. /*setfillstyle(1,BLUE);
  226. bar(x1,0,x2,y1);*/
  227. setlinestyle(0,1,3);
  228. setcolor(WHITE);
  229. rectangle(x1,y1,x2,y2);
  230. x=startx,y=starty;
  231. for(i=0;i<16;i++) /* draw picture of shape */ { if(x-startx==80) { x=startx; y=y+20; } if(mask & max) { setfillstyle(1,a[n].color); setlinestyle(0,1,3); rectangle(x,y,x+20,y+20); bar(x,y,x+20,y+20); screeninarry[(y-60)/20][(x-vga)/20]=var; bottom=y; } x=x+20; mask=mask>>1;
  232. }
  233. /*setfillstyle(1,BLUE);
  234. bar(x1,0,x2,y1);*/
  235. setlinestyle(0,1,3);
  236. setcolor(WHITE);
  237. rectangle(x1,y1,x2,y2);
  238. /* delay */
  239. return bottom;
  240. /* in */
  241. }
  242. void cleanshape(int startx,int starty,int n)
  243. {
  244. int x=startx,y=starty;
  245. int vga=getmaxx()/2-200;
  246. int i=0;
  247. unsigned int max;
  248. unsigned int mask=32768;
  249. max=a[n].box;
  250. for(i=0;i<16;i++) /* clean shape to bk */ { if(x-startx==80) { x=startx; y=y+20; } if(max & mask) { setfillstyle(1,LIGHTBLUE); bar(x,y,x+20,y+20); setcolor(LIGHTBLUE); rectangle(x,y,x+20,y+20); screeninarry[(y-60)/20][(x-vga)/20]=0; } x=x+20; mask=mask>>1;
  251. }
  252. }
  253. int checkshape(int startx,int starty,unsigned int shapebox,int direction)
  254. {
  255. int i=0,x=startx,y=starty,tempx=startx,tempy=starty;
  256. int vga=getmaxx()/2-200;
  257. unsigned int mask=32768;
  258. unsigned int max=a[shapebox].box;
  259. /**/
  260. if(direction==LEFT)
  261. {
  262. for(x=startx,y=starty,i=0;i<16;x=x+20,i++)
  263. {
  264. if(x-startx==80)
  265. {
  266. x=startx;
  267. y=y+20;
  268. }
  269. if(x<vga || screeninarry[(y-60)/20][(x-vga)/20]==2)
  270. return False;
  271. mask=mask>>1;
  272. }
  273. return True;
  274. }
  275. else if(direction==RIGHT)
  276. {
  277. mask=32768;
  278. for(x=startx,y=starty,i=0;i<16;x=x+20,i++) { if(x-startx==80) { x=startx; y=y+20; } if(max & mask) if(x+20 > getmaxx()-vga || screeninarry[(y-60)/20][(x-vga)/20]==2)
  279. return False;
  280. mask=mask>>1;
  281. }
  282. return True;
  283. }
  284. else if(direction==DOWN)
  285. {
  286. mask=32768;
  287. for(x=startx,y=starty,i=0;i<16;x=x+20,i++) { if(x-startx==80) { x=startx; y=y+20; } if(max & mask) if(y>=DOWN_MAX || screeninarry[(y-60)/20][(x-vga)/20]==2)
  288. return False;
  289. mask=mask>>1;
  290. }
  291. return True;
  292. }
  293. else if(direction==REVOLVE)
  294. {
  295. mask=32768;
  296. for(x=startx,y=starty,i=0;i<16;x=x+20,i++) { if(x-startx==80) { x=startx; y=y+20; } if(max & mask) if(screeninarry[(y-60)/20][(x-vga)/20]==2 || y>=DOWN_MAX || x+20 > getmaxx()-vga || x<vga) return False; mask=mask>>1;
  297. }
  298. return True;
  299. }
  300. else
  301. printf("direction is error!\n ");
  302. }
  303. int main()
  304. {
  305. int drive,mode;
  306. int i=0;
  307. int bottom=0;
  308. int xofshape,xofbox;
  309. int flag;
  310. int startx=150,starty=0;
  311. char ch,ch1;
  312. char direction;
  313. srand((unsigned)time(0));
  314. drive=DETECT;
  315. initgraph(&drive,&mode,"C:\\TC20\\BGI");
  316. /* srand((unsigned)time(0)); */
  317. background();
  318. memset(screeninarry,0,19*21*sizeof(int));
  319. SetTimer(newtimer);
  320. while(1) {
  321. setfillstyle(1,BLUE);
  322. bar(getmaxx()/2-120,20,getmaxx()/2+120,50);
  323. settextstyle(1, 0, 3);
  324. outtextxy(getmaxx()/2-100,20,msg);
  325. if(i==0)
  326. {
  327. xofshape=rand()%19;
  328. xofbox=rand()%19;
  329. }
  330. else
  331. {
  332. xofshape=xofbox;
  333. xofbox=rand()%19;
  334. }
  335. i++;
  336. box(a[xofbox].box,a[xofbox].color);
  337. startx=getmaxx()/2-200+120;
  338. starty=60;
  339. while(1)
  340. {
  341. if(bioskey(1))
  342. {
  343. direction=bioskey(0);
  344. if(direction==ESC )
  345. {
  346. setcolor(WHITE);
  347. settextstyle(1, 0, 3);
  348. moveto(getmaxx()/2-150,440);
  349. outtext("Are you sure to exit ?(y/n)");
  350. ch=getch();
  351. if(ch=='y' || ch== 'Y')
  352. exit(0);
  353. else
  354. {
  355. setfillstyle(1,BLUE);
  356. bar(getmaxx()/2-150,430,getmaxx()/2+180,500);
  357. }
  358. }
  359. if(direction=='r' || direction=='R')
  360. {
  361. setcolor(WHITE);
  362. settextstyle(1, 0, 3);
  363. moveto(getmaxx()/2-100,440);
  364. outtext("pausing......");
  365. ch=getch();
  366. setfillstyle(1,BLUE);
  367. bar(getmaxx()/2-120,430,getmaxx()/2+120,490);
  368. }
  369. if(direction=='a' || direction=='A')
  370. {
  371. if(checkshape(startx-20,starty,xofshape,LEFT))
  372. {
  373. cleanshape(startx,starty,xofshape);
  374. startx=startx-20;
  375. drawshape(startx,starty,xofshape,0);
  376. }
  377. }
  378. if(direction=='d' || direction=='D')
  379. {
  380. if(checkshape(startx+20,starty,xofshape,RIGHT))
  381. {
  382. cleanshape(startx,starty,xofshape);
  383. startx=startx+20;
  384. drawshape(startx,starty,xofshape,0);
  385. }
  386. }
  387. if(direction=='s' || direction=='S')
  388. {
  389. if(checkshape(startx,starty+20,xofshape,DOWN))
  390. {
  391. TimerCounter=TimerCounter+18;
  392. }
  393. }
  394. if(direction=='w' || direction=='W')
  395. {
  396. if(checkshape(startx,starty,a[xofshape].next,REVOLVE) )
  397. {
  398. cleanshape(startx,starty,xofshape);
  399. xofshape=a[xofshape].next;
  400. drawshape(startx,starty,xofshape,0);
  401. }
  402. }
  403. }
  404. if(TimerCounter>=18)
  405. {
  406. if(checkshape(startx,starty+20,xofshape,DOWN) )
  407. {
  408. drawshape(startx,starty,xofshape,0);
  409. cleanshape(startx,starty,xofshape);
  410. starty=starty+20;
  411. drawshape(startx,starty,xofshape,0);
  412. TimerCounter=0;
  413. }
  414. else /* can not down */
  415. {
  416. if(starty<=60)
  417. {
  418. setcolor(WHITE);
  419. while(1)
  420. {
  421. if(bioskey(1))
  422. exit(1);
  423. moveto(getmaxx()/2-100,450);
  424. bar(getmaxx()/2-120,20,getmaxx()/2+120,50);
  425. settextstyle(1, 0, 3);
  426. outtextxy(getmaxx()/2-100,20,msg);
  427. outtext("Game over ! ! !");
  428. delay(2000);
  429. setfillstyle(1,BLUE);
  430. bar(getmaxx()/2-120,440,getmaxx()/2+120,460);
  431. }
  432. }
  433. /* down is ok var=2 */
  434. bottom=drawshape(startx,starty,xofshape,1);
  435. grade=grade+killfullline(bottom);
  436. itoa(grade,msg1,10);
  437. strcpy(msg+8,msg1);
  438. break;
  439. }
  440. }
  441. }
  442. }
  443. closegraph();
  444. KillTimer();
  445. }

C语言研究中心(www.dotcpp.com)

C语言网提供「C语言、C++、算法竞赛」在线课程,全部由资深研发工程师或ACM金牌大佬亲授课,更科学、全面的课程体系,以在线视频+在线评测的学习模式学习,学练同步,拒绝理论派,真正学会编程!还有奖学金等增值福利等你!

C语言网, 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明C语言实现俄罗斯方块(TC2.0)
喜欢 (83)
[jinyangH@aliyun.com]
分享 (0)
发表我的评论
取消评论
表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
(10)个小伙伴在吐槽
  1. 好厉害啊啊啊!
    misillas2016-09-12 19:49 回复
    • 豪腻害吖吖吖!
      你猜猜2016-09-13 16:41 回复
  2. 好多头文件好多源码,刚开始学的小白膜拜一下大神
    冰封小天堂2016-11-19 21:04 回复
  3. 由于不太会用TC2.0能不能留个联系方式,赐教一下,实现原理
    孤尘2017-03-17 19:30 回复
    • TC的教程慢慢会出的,大家表急~~
      CTO2017-03-21 20:31 回复
  4. 楼上邮箱1164701506@qq.com,记得有空赐教啊
    孤尘2017-03-17 19:31 回复
  5. 第270行, if(x>1; 不全. TC2.0编译通不过
    cdk2017-04-09 09:54 回复
    • 已修复~
      CTO2017-04-11 11:43 回复
  6. 请问在VS上是不是不可以运行
    张棋垣2018-01-14 21:14 回复
  7. 我了个去!用C-FREE编译一下,109个错误!
    12345665542019-02-10 12:34 回复