代码拉取完成,页面将自动刷新
同步操作将从 zhouxiang/air_plane 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include "bullet.h"
Bullet::Bullet(const QPainterPath &path, const QColor &color, qreal angle, uint speed, QGraphicsScene *scene,
QGraphicsItem *parent):Flyer(speed, scene, parent),
m_path(path),
m_color(color),
m_angle(angle),
xSpeed(::cos(m_angle / ROTATE) * m_speed),
ySpeed(::sin(m_angle / ROTATE) * m_speed)
{
}
Bullet* Bullet::clone() const
{
return NULL;
}
QRectF Bullet::boundingRect() const
{
return m_path.boundingRect();
}
void Bullet::paint(QPainter *painter, const QStyleOptionGraphicsItem */*option*/, QWidget */*widget*/)
{
painter->setPen(Qt::NoPen);
painter->setBrush(m_color);
painter->drawPath(m_path);
}
/**
* @brief Bullet::autofly 初定一秒更新一次,那么速度为每秒速度 50ms更新一次
*/
void Bullet::autofly()
{
if (!checkPos(Front)) {
posLost();
return;
}
//需要度数转化为弧度
// qreal xSpeed = ::cos(m_angle / ROTATE) * m_speed;
// qreal ySpeed = ::sin(m_angle / ROTATE) * m_speed;
QPointF t = scenePos();
t.rx() -= xSpeed;
t.ry() -= ySpeed;
setPos(t);
doCollide();
}
void Bullet::advance(int)
{
if (!checkPos(Front)) {
posLost();
return;
}
//需要度数转化为弧度,提前计算可以可以提高性能
// qreal xSpeed = ::cos(m_angle / ROTATE) * m_speed;
// qreal ySpeed = ::sin(m_angle / ROTATE) * m_speed;
QPointF t = scenePos();
t.rx() -= xSpeed;
t.ry() -= ySpeed;
setPos(t);
doCollide();
}
int Bullet::name() const
{
return GlobalParameter::instance()->bulletClassFlag;
}
void Bullet::doCollide()
{
foreach (QGraphicsItem *t, collidingItems()) {
if (t->type() == CustomItem::Type) {
} else {
Flyer *fy = static_cast<Flyer*>(t);
if (fy->name() == ENEMYPLANE) {
FlightVehicle* fv = static_cast<FlightVehicle*>(fy);
this->setVisible(false);
fv->strike();
if (fv->destroy()) {
fv->fall();
//缓存起来,未加入
}
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。