-
Notifications
You must be signed in to change notification settings - Fork 0
/
hse.h
48 lines (40 loc) · 1.28 KB
/
hse.h
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
#ifndef HSE_H
#define HSE_H
#include <QObject>
#include <QGraphicsItem>
#include <QPainter>
#include <QPolygon>
#include <QTimer>
#include <QDebug>
#include <QCursor>
#include <windows.h>
class HSE: public QObject, public QGraphicsItem
{
Q_OBJECT
public:
explicit HSE(QObject *parent = 0);
~HSE();
void hit(int damage);
signals:
// Сигнал для создания пули с параметрами траектории
void signalBullet(QPointF start, QPointF end);
public slots:
// Слот для получения данных о положении курсора
void slotTarget(QPointF point);
void slotShot(bool shot);
private:
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
QPainterPath shape() const;
private slots:
void slotGameTimer(); // Игровой слот
void slotBulletTimer(); // Слот проверки пули
private:
QTimer *gameTimer; // Игровой таймер
QPointF target; // Положение курсора
bool shot; // Переменная состояния стрельбы
QTimer *bulletTimer; // Таймер пули
int health;
int maxHealth;
};
#endif // HSE_H