俄罗斯方块C语言源代码txt.DOC

  1. 1、本文档共17页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
俄罗斯方块C语言源代码txt

/*名称: 俄罗斯方块 源程 For Turbo C 2.0软件编写:中国 北京 幻想空间软件创作群Illusion Space Software Design Groups.BBS: 1601118 Ext (Illusion Space)Email: ILLUSION@peony.ioa.ac.cnW.G. Lee.k.BP: (010) 2561155 Call 1615 8271188 Call 89161请同我们联系, 或许我们还可以交个朋友.另外, 欢迎各位编程高手加入幻想空间软件创作群 - 程序员们的乐园*//* text mode *//* Turbo C */#include stdio.h#include stdlib.h#include dos.h#include conio.h#include time.h#define L 1#define R 2#define RX 47#define RY 4#define LX 15#define LY 4static struct BLOCK{ int x0; int y0; int x1; int y1; int x2; int y2; int x3; int y3; int color; int next; }b[23] = { { 0, 1, 1, 1, 2, 1, 3, 1, 4, 1 }, { 1, 0, 1, 3, 1, 2, 1, 1, 4, 0 }, { 1, 1, 2, 2, 1, 2, 2, 1, 1, 2 }, { 0, 1, 1, 1, 1, 0, 2, 0, 2, 4 }, { 1, 0, 1, 1, 2, 2, 2, 1, 2, 5 }, { 0, 2, 1, 2, 1, 1, 2, 1, 2, 6 }, { 0, 0, 0, 1, 1, 2, 1, 1, 2, 3 }, { 0, 0, 1, 0, 1, 1, 2, 1, 3, 8 }, { 0, 1, 0, 2, 1, 1, 1, 0, 3, 9 }, { 0, 1, 1, 1, 1, 2, 2, 2, 3, 10 }, { 1, 1, 1, 2, 2, 1, 2, 0, 3, 7 }, { 1, 0, 1, 1, 1, 2, 2, 2, 7, 12 }, { 0, 1, 1, 1, 2, 1, 2, 0, 7, 13 }, { 0, 0, 1, 2, 1, 1, 1, 0, 7, 14 }, { 0, 1, 0, 2, 1, 1, 2, 1, 7, 11 }, { 0, 2, 1, 2, 1, 1, 1, 0, 5, 16 }, { 0, 1, 1, 1, 2, 2, 2, 1, 5, 17 }, { 1, 0, 1, 1, 1, 2, 2, 0, 5, 18 }, { 0, 0, 0, 1, 1, 1, 2, 1, 5, 15 }, { 0, 1, 1, 1, 1, 0, 2, 1, 6, 20 }, { 0, 1, 1, 2, 1, 1, 1, 0, 6, 21 }, { 0, 1, 1, 2, 1, 1, 2, 1, 6, 22 }, { 1, 0, 1, 1, 1, 2, 2, 1, 6, 19 } };static int d[10]={ 1500,3000,1600,1200,900,800,600,400,300,200 };int Llevel, Lcurrent, Lnext, Lable, lx, ly, Lsum;int Rlevel, Rcurrent, Rnext, Rable, rx, ry, Rsum;unsigned Lpoint, Rpoint;int La[19][10], Ra[19][10], FLAG, bell, sum;unsigned ldelay, rdelay;void scrinit( ),datainit( ),dispb( ), eraseb( );void throw( ), judge( ), delayp( ), move( ), note( ), show( );int Ldrop( ), Rdrop( ), Ljudge( ), Rjudge( ), nextb( ), routejudge( );main(

文档评论(0)

bodkd + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档