18 Star 375 Fork 79

ibc-dabing / Landlords

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
animationwindow.cpp 2.58 KB
一键复制 编辑 原始数据 按行查看 历史
kevin 提交于 2021-12-16 00:16 . 代码优化, 提高程序的健壮性
#include "animationwindow.h"
#include <QPainter>
#include <QTimer>
AnimationWindow::AnimationWindow(QWidget *parent) : QWidget(parent)
{
}
void AnimationWindow::showBetScore(int bet)
{
m_x = 0;
if(bet == 1)
{
m_image.load(":/images/score1.png");
}
else if(bet == 2)
{
m_image.load(":/images/score2.png");
}
else if(bet == 3)
{
m_image.load(":/images/score3.png");
}
update();
QTimer::singleShot(2000, this, &AnimationWindow::hide);
}
void AnimationWindow::showSequence(Type type)
{
m_x = 0;
QString name = type == Pair ? ":/images/liandui.png" : ":/images/shunzi.png";
m_image.load(name);
update();
QTimer::singleShot(2000, this, &AnimationWindow::hide);
}
void AnimationWindow::showJokerBomb()
{
m_index = 0;
m_x = 0;
QTimer* timer = new QTimer(this);
connect(timer, &QTimer::timeout, this, [=](){
m_index++;
if(m_index > 8)
{
timer->stop();
timer->deleteLater();
m_index = 8;
hide();
}
QString name = QString(":/images/joker_bomb_%1.png").arg(m_index);
m_image.load(name);
update();
});
timer->start(60);
}
void AnimationWindow::showBomb()
{
m_index = 0;
m_x = 0;
QTimer* timer = new QTimer(this);
connect(timer, &QTimer::timeout, this, [=](){
m_index++;
if(m_index > 12)
{
timer->stop();
timer->deleteLater();
m_index = 12;
hide();
}
QString name = QString(":/images/bomb_%1.png").arg(m_index);
m_image.load(name);
update();
});
timer->start(60);
}
void AnimationWindow::showPlane()
{
m_x = width();
m_image.load(":/images/plane_1.png");
setFixedHeight(m_image.height());
update();
int step = width() / 5;
QTimer* timer = new QTimer(this);
connect(timer, &QTimer::timeout, this, [=]()
{
static int dist = 0;
static int timers = 0;
dist += 5;
if(dist >= step)
{
dist = 0;
timers++;
QString name = QString(":/images/plane_%1.png").arg(timers % 5 + 1);
m_image.load(name);
}
if(m_x <= -110)
{
timer->stop();
timer->deleteLater();
dist = timers = 0;
hide();
}
m_x -= 5;
update();
});
timer->start(15);
}
void AnimationWindow::paintEvent(QPaintEvent *ev)
{
Q_UNUSED(ev)
QPainter p(this);
p.drawPixmap(m_x, 0, m_image.width(), m_image.height(), m_image);
}
1
https://gitee.com/subingwen/landlords.git
git@gitee.com:subingwen/landlords.git
subingwen
landlords
Landlords
master

搜索帮助