-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobstacle.cpp
executable file
·80 lines (72 loc) · 2.21 KB
/
obstacle.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include "obstacle.h"
#include "player.h"
#include "audio.h"
#include "appdialog.h"
#include <QDebug>
Obstacle::Obstacle(QString obstacle, QSize size, int speed, int interval, \
QPoint point, QPoint minPoint, QGraphicsItem *parent)
: QGraphicsPixmapItem(parent),
obstacleType(obstacle),
obstacleSize(size),
maxCoordinates(point),
minCoordinates(minPoint),
obstacleSpeed(speed),
timerInterval(interval)
{
createObstacle();
}
void Obstacle::createObstacle() {
if (obstacleType == "TRUCK") {
QPixmap *pixmap;
if (obstacleSpeed < 0) {
pixmap = new QPixmap(":/images/truck_right.png");
}
else {
pixmap = new QPixmap(":/images/truck_left.png");
}
setPixmap(pixmap->scaled(obstacleSize));
}
else {
Q_ASSERT(obstacleType == "BOAT");
QPixmap *pixmap;
if (obstacleSpeed < 0) {
pixmap = new QPixmap(":/images/boat_right.png");
}
else {
pixmap = new QPixmap(":/images/boat_left.png");
}
setPixmap(pixmap->scaled(obstacleSize));
}
setupTimer();
}
void Obstacle::updatePos() {
setPos(x() - obstacleSpeed, y());
checkCollisonWithPlayer();
if (x() < -15) {
setPos(maxCoordinates.x(), maxCoordinates.y());
}
else if (x() > maxCoordinates.x() + 15) {
setPos(minCoordinates.x(), minCoordinates.y());
}
}
void Obstacle::setupTimer() {
QTimer *timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(updatePos()));
timer->start(timerInterval);
}
void Obstacle::checkCollisonWithPlayer() {
if (obstacleType != "BOAT") {
for (auto const item : collidingItems()) {
Player* player = dynamic_cast<Player*>(item);
if (player != nullptr) {
player->resetPlayer();
Audio::playSound("die");
if (AppDialog::informationPopup("You died.", "No....", "Quit") == QMessageBox::Ok)
QCoreApplication::quit();
}
}
}
}
int Obstacle::getObstacleSpeed() {
return obstacleSpeed;
}