-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbossball.cpp
43 lines (38 loc) · 1.06 KB
/
bossball.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "bossball.h"
#include "gamecontroller.h"
#include <QPainter>
BossBall::BossBall(GameController &controller):
controller(controller)
{
setData(GD_type, GO_BossBall);
pixMap.load("://images/BossBall1.png");
setAngle(0);
}
QRectF BossBall::boundingRect() const
{
int w = pixMap.width(), h = pixMap.height();
return QRectF(-w/2, -h/2, w, h);
}
void BossBall::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
Q_UNUSED(option); Q_UNUSED(widget);
if(!pixMap.isNull()) {
painter->save();
int w = pixMap.width(), h = pixMap.height();
painter->scale(0.7, 0.7);
painter->drawPixmap(QPoint(-w/2, -h/2), pixMap);
painter->restore();
}
}
void BossBall::advance(int phace)
{
if(!phace) return;
moveBy(vector.x() * 5, vector.y() * 5);
if(!isInView(pos())) controller.removeItem(this);
}
void BossBall::setAngle(qreal angle)
{
qreal rad = (angle*3.1415926)/180.0;
vector.setX(-cos(rad));
vector.setY(sin(rad));
}