• 大小: 8KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-09-10
  • 语言: 其他
  • 标签: QT  游戏  

资源简介

闲来无事自己随便写了一个俄罗斯方块。整个地图用21个int整数来实现,每个方块由四个int来构成。通过整数的移位、位与、位或运算来实现方块的移动、判断等。

资源截图

代码片段和文件信息

#include “cube.h“

Cube::Cube(Qobject *parent) :
    Qobject(parent)
{
    w=h=20;
    this->setRect(00wh);
//    this->setFlag(ItemIsMovable);

}
void Cube::SetColor(QColor color)
{
    pen.setColor(Qt::white);
    gradient=QRadialGradient(1010301010);
    gradient.setColorAt(1Qt::white);
    gradient.setColorAt(0color);
    brush=QBrush(gradient);
    brush.setstyle(Qt::RadialGradientPattern);
    this->setPen(pen);
    this->setBrush(brush);

}



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

     文件       3587  2014-10-25 22:26  mainwindow.ui

     文件        957  2014-10-25 22:25  tetrisscene.h

     文件        725  2014-10-25 22:10  mainwindow.h

     文件       6388  2014-10-18 21:07  item.cpp

     文件       1077  2014-10-18 21:07  item.h

     文件        487  2014-10-18 20:51  cube.cpp

     文件        443  2014-10-18 20:51  cube.h

     文件        432  2014-10-13 10:44  tetris.pro

     文件        193  2014-10-11 15:14  main.cpp

     文件      19028  2014-10-28 21:45  tetris.pro.user

     文件       1850  2014-10-28 21:45  mainwindow.cpp

     文件       4970  2014-10-25 22:28  tetrisscene.cpp

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

                40137                    12


评论

共有 条评论