• 大小: 944.47 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C/C++
  • 标签: VC  

资源简介

经典的俄罗斯方块  VC写的

资源截图

代码片段和文件信息

#include
#include
#include
#include


#define LEFT    0x4b
#define RIGHT   0x4d
#define DOWN    0x50
#define UP   0x48
#define ENTER   0x0d
#define ESC     0x1b

#define Horizontal_boxs 10
#define Vertical_boxs  16

#define Box(numij) (shapes[num].box[i/2]<<(i%2*4+j)&0x80)==0x80

char FgColor=‘0‘;
char BgColor=‘f‘;

int Board[Vertical_boxs+2][Horizontal_boxs+2];

int Curbox_XCurbox_Y;
int Newbox_XNewbox_Y;

int  Curbox_num;
int  Prebox_num;

int speed;
int scoreTop[3];
int  play;
int autodown_t1autodown_t2;


struct Shapes
{
char box[2];
int next_num;
};
struct Shapes shapes[19]=
{
{{(char)0x44(char)0x60}1}
{{(char)0x0e(char)0x80}2}
{{(char)0xc4(char)0x40}3}
{{(char)0x02(char)0xe0}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       8649  2012-03-09 21:08  俄罗斯方块\俄罗斯方块.c

     文件       3449  2012-02-29 15:12  俄罗斯方块\俄罗斯方块.dsp

     文件      41984  2012-02-29 15:12  俄罗斯方块\Debug\vc60.idb

     文件      69632  2012-02-29 15:12  俄罗斯方块\Debug\vc60.pdb

     文件    2800960  2012-02-29 15:12  俄罗斯方块\Debug\俄罗斯方块.pch

     文件      40143  2012-02-29 15:12  俄罗斯方块\Debug\俄罗斯方块.obj

     文件     253248  2012-02-29 15:12  俄罗斯方块\Debug\俄罗斯方块.ilk

     文件     213043  2012-02-29 15:12  俄罗斯方块\Debug\俄罗斯方块.exe

     文件     582656  2012-02-29 15:12  俄罗斯方块\Debug\俄罗斯方块.pdb

     文件       1067  2012-02-29 15:12  俄罗斯方块\俄罗斯方块.plg

     目录          0  2012-02-29 15:12  俄罗斯方块\Debug

     目录          0  2012-02-29 15:11  俄罗斯方块

----------- ---------  ---------- -----  ----

              4014831                    12


评论

共有 条评论