Evgenii Legotckoi
Evgenii LegotckoiOct. 5, 2015, 10:58 a.m.

GameDev on Qt - Tutorial 3. Destroying opponents

In two previous articles, where we taught the hero to track the cursor and shoot towards the goal , it's time to add the targets to the gameand start  to destroy them. The destruction of the target will occur when the targets have completed life. In this case each of the target will be a random number of points of life and every bullet will cause a random amount of damage. Also, each of the target will be life bar, which will decrease on damage.

Destruction based on CallBack function

To implement this algorithm, create a Target target class, and add the ability to call CallBack function in Bullet class, which will be implemented in the class of the main application window and will cause damage to targets.


target.h

The header must declare a function that will do damage to the target. And also declare two variables that will be responsible for the health targets. The first variable - this will be the current health, and the second variable - this will be the maximum health. When health is over, there is the destruction of the target.

#ifndef TARGET_H
#define TARGET_H

#include <QObject>
#include <QGraphicsItem>
#include <QPainter>

class Target : public QObject, public QGraphicsItem
{
    Q_OBJECT
public:
    explicit Target(QObject *parent = 0);
    ~Target();
    /* Application function damage, damage to the value passed as argument to the function
     * */
    void hit(int damage);

signals:

public slots:

protected:
    QRectF boundingRect() const;
    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);

private:
    int health;         // Current stock of the target health
    int maxHealth;      // The maximum stock pf the target health
};

#endif // TARGET_H

target.cpp

The class constructor installs the health parameters. The damage to the application function decreases health passed in the function value. And as soon as the health drops to zero or below, the target is destroyed.

#include "target.h"

static int randomBetween(int low, int high)
{
    return (qrand() % ((high + 1) - low) + low);
}

Target::Target(QObject *parent) :
    QObject(parent), QGraphicsItem()
{
    health = randomBetween(1,15);   // Set random value health
    maxHealth = health;             // Set a maximum health equals to the current health
}

Target::~Target()
{

}

QRectF Target::boundingRect() const
{
    return QRectF(-20,-20,40,40);  
}

void Target::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
    /* Draw green square
     * */
    painter->setPen(Qt::black);
    painter->setBrush(Qt::green);
    painter->drawRect(-20,-10,40,30);

    /* We draw a strip of life commensurate with 
     * respect to the current health of your maximum health
     * */
    painter->setPen(Qt::NoPen);
    painter->setBrush(Qt::red);
    painter->drawRect(-20,-20, (int) 40*health/maxHealth,3);

    Q_UNUSED(option);
    Q_UNUSED(widget);
}

void Target::hit(int damage)
{
    health -= damage;   // Reduce the target's health
    this->update(QRectF(-20,-20,40,40));    // Redraw target
    // If health is over, it will initiate the death of the target
    if(health <= 0) this->deleteLater();
}

bullet.h

The bullet from the last class the lesson is necessary to add classifieds signature CallBack function, and the function of the installation CallBack function.

public:
    // Setting CallBack function
    void setCallbackFunc(void (*func) (QGraphicsItem * item));

private:
    // CallBack Function
    void (*callbackFunc)(QGraphicsItem * item);

bullet.cpp

It is also necessary to modify slotTimerBullet function, which will be to search for all objects that come across a bullet. If the bullet came across the object, then we destroy the bullet and call the CallBack function which will cause damage to the target when the bullet came across a target.

Also we realize setCallbackFunc function, which will install a function pointer in the CallBack function .

void Bullet::slotTimerBullet()
{
    setPos(mapToParent(0, -10));

    /* Checks for whether the bullet came across any element on the graphic scene. 
     * To do this, we define a small area in front of the bullet, which will search for items
     * */
    QList<QGraphicsItem *> foundItems = scene()->items(QPolygonF()
                                                           << mapToScene(0, 0)
                                                           << mapToScene(-1, -1)
                                                           << mapToScene(1, -1));
    /* Then we check all the elements. 
     * One of them will be the bullet itself and the hero - 
     * do not do anything with them. A call the CallBack feature
     * */
    foreach (QGraphicsItem *item, foundItems) {
        if (item == this || item == hero)
            continue;
        callbackFunc(item);     
        this->deleteLater();    
    }

    if(this->x() < 0){
        this->deleteLater();
    }
    if(this->x() > 500){
        this->deleteLater();
    }

    if(this->y() < 0){
        this->deleteLater();
    }
    if(this->y() > 500){
        this->deleteLater();
    }
}

void Bullet::setCallbackFunc(void (*func)(QGraphicsItem *))
{
    callbackFunc = func;
}

widget.h

In the header of the main window class you need to add a timer to create an ad targets, as well as slots for processing this timer, which will create and target. Also we declare a static list of targets, which we will check to hit a bullet. A hit test will produce in the CallBack slotHitTarget function. The argument will be transferred to a graphic object, which ran the bullet.

private:
    QTimer *timerTarget;        // Timer for creating targets
    static QList<QGraphicsItem *> targets; 

    static void slotHitTarget(QGraphicsItem *item); 

private slots:
    void slotCreateTarget();

widget.cpp

#include "widget.h"
#include "ui_widget.h"

static int randomBetween(int low, int high)
{
    return (qrand() % ((high + 1) - low) + low);
}

Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
    /* Source code from previous articles
     * */

    timerTarget = new QTimer();
    connect(timerTarget, &QTimer::timeout, this, &Widget::slotCreateTarget);
    timerTarget->start(1500);
}

Widget::~Widget()
{
    delete ui;
}

void Widget::slotBullet(QPointF start, QPointF end)
{
    /* Source code from previous articles
     * */
}

void Widget::slotCreateTarget()
{
    Target *target = new Target();  // Create target
    scene->addItem(target);         // Set target into the scene with random position
    target->setPos(qrand() % ((500 - 40 + 1) - 40) + 40,
                  qrand() % ((500 - 40 + 1) - 40) + 40);
    target->setZValue(-1);          
    targets.append(target);        
}

void Widget::slotHitTarget(QGraphicsItem *item)
{
    /* If we get signal from Bullet
     * Loop through the full list of objectives and causes occasional damage
     * */
    foreach (QGraphicsItem *targ, targets) {
        if(targ == item){
            // Cast object from the list in the Target class
            Target *t = qgraphicsitem_cast <Target *> (targ);
            t->hit(randomBetween(1,3)); // deal damage
        }
    }

}

QList<QGraphicsItem *> Widget::targets; 

Result

As a result, you on the playing field will be randomly placed target with a random size health and issued the protagonist bullets will gradually destroy them.

Video

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

A
  • Jan. 5, 2017, 3:58 p.m.

Почему то у меня, на строке вызова callback функции, вылетает программа. ((( п.с. Qt 5.7 MSVC 64

A
  • Jan. 5, 2017, 4:04 p.m.

e:\work\qt_work\gamedev\les_2\mygame2\bullet.cpp:85: ошибка: Exception at 0x7ff6d35d80b3, code: 0xc0000005: read access violation at: 0x0, flags=0x0 (first chance) e:\work\qt_work\gamedev\les_2\mygame2\bullet.cpp:85: ошибка: Exception at 0x7ff6d35d80b3, code: 0xc0000005: read access violation at: 0x0, flags=0x0 Вот такой exeption вылетает при нажатии мышки (то есть при стрельбе)

A
  • Jan. 5, 2017, 4:22 p.m.

Нашел в чем проблема. Вообще в этих уроках, лучше выкладывать весь код каждого файла, а не только ту часть, которая отличается от предыдущего урока. В определении отличий кода между уроками, Вы делаете ошибки)))) Вот и приходится самому думать, чего еще не хватает в коде=)

A
  • Jan. 5, 2017, 4:25 p.m.

И так, главный вопрос по этому уроку у меня такой: зачем мы используем callback-функцию, вместо слота+сигнала?

Evgenii Legotckoi
  • Jan. 5, 2017, 10:44 p.m.

Наверное, это прозвучит странно, но просто так. Чтобы сделать через callback-функцию . Чтобы показать один из возможных вариантов работы в Qt/C++. Случается же так, что те, кто изучает Qt и даже работают с ним некоторое время, не имеют представления о callback-функциях.

S
  • July 8, 2017, 3:14 p.m.
  1. /* После чего проверяем все элементы.
  2. * Одними из них будут сама Пуля и Герой - с ними ничего не делаем.
  3. * А с остальными вызываем CallBack функцию
  4. * */
  5. foreach (QGraphicsItem *item, foundItems) {
  6. if (item == this || item == hero)
  7. continue;
  8. callbackFunc(item); // Вызываем CallBack функцию
  9. this->deleteLater(); // Уничтожаем пулю
  10. }
Проработав Ваш код появился вопрос:  кто такой - hero - в данном исполнителе. Не подключали вроде в предыдущих уроках класс треугольника...решил вопрос с помощью RTTI.
S
  • July 8, 2017, 3:17 p.m.

И еще для чего нужна конструкция: foreach если есть эквивалент for( : )

S
  • July 8, 2017, 3:29 p.m.

И к верхнему посту AndreyHudz не надо весь код выкладывать, а лучше сделать преднамеренные ошибки.

Evgenii Legotckoi
  • July 8, 2017, 4:04 p.m.

да, foreach - это Qt-шный макрос, который эквивалентен for, который появился позже чем foreach.
Я длительное время работал с foreach, пока не решил заняться плотнее новыми стандартами C++ :-)

Evgenii Legotckoi
  • July 8, 2017, 4:07 p.m.

Поэтому в пятом уроке есть исходники всего проекта )))).

Вообще, все эти материалы были не предыдущей версии сайта, которая на WordPress. Во время переноса мог что-то потерять.
Д
  • Oct. 25, 2018, 10:10 a.m.

Не подскажите в чем проблема. При нажатии аварийно выходит из программы. Не могу додуматься.

Evgenii Legotckoi
  • Oct. 25, 2018, 5:17 p.m.

Скачайте просто из пятого урока полностью готовый пример.

VB
  • June 25, 2020, 12:35 p.m.

А откуда взялся hero? Никак не могу понят секрет его происхождения...

Evgenii Legotckoi
  • June 25, 2020, 2:36 p.m.

Сам уже не помню. 5 лет назад говнокодил это )) В 5-й части есть полный код, думаю, что там найдёте ))

Comments

Only authorized users can post comments.
Please, Log in or Sign up
AD

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:50points,
  • Rating points-4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:80points,
  • Rating points4
m

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:20points,
  • Rating points-10
Last comments
i
innorwallNov. 11, 2024, 7:12 p.m.
Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
i
innorwallNov. 11, 2024, 3:23 p.m.
QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
i
innorwallNov. 11, 2024, 12:50 p.m.
Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
i
innorwallNov. 11, 2024, 11:19 a.m.
Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
i
innorwallNov. 11, 2024, 10:55 a.m.
PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
Now discuss on the forum
i
innorwallNov. 11, 2024, 5:56 p.m.
добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
i
innorwallNov. 11, 2024, 7:55 a.m.
Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
9
9AnonimOct. 25, 2024, 6:10 a.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

Follow us in social networks