Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

Qt Tutorial 13 - Game Over

Files:

Screenshot of tutorial thirteen

In this example we start to approach a real playable game with a score. We give MyWidget a new name (GameBoard) and add some slots.

We put the definition in gameboard.h and the implementation in gameboard.cpp.

The CannonField now has a game over state.

The layout problems in LCDRange are fixed.

Line by Line Walkthrough

t13/lcdrange.cpp

        label->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);

We set the size policy of the QLabel to (Preferred, Fixed). The vertical component ensures that the label won't stretch or shrink vertically; it will stay at its optimal size (its sizeHint()). This solves the layout problems observed in Chapter 12.

t13/cannonfield.h

The CannonField now has a game over state and a few new functions.

        bool gameOver() const { return gameEnded; }

This function returns true if the game is over, false if a game is going on.

        void setGameOver();
        void restartGame();

Here are two new slots: setGameOver() and restartGame().

        void canShoot(bool can);

This new signal indicates that the CannonField is in a state where the shoot() slot makes sense. We'll use it below to enable or disable the Shoot button.

        bool gameEnded;

This private variable contains the game state; true means that the game is over, and false means that a game is going on.

t13/cannonfield.cpp

        gameEnded = false;

This line has been added to the constructor. Initially, the game is not over (luckily for the player :-).

    void CannonField::shoot()
    {
        if (isShooting())
            return;
        timerCount = 0;
        shootAngle = currentAngle;
        shootForce = currentForce;
        autoShootTimer->start(5);
        emit canShoot(false);
    }

We added a new isShooting() function, so shoot() uses it instead of testing directly. Also, shoot tells the world that the CannonField cannot shoot now.

    void CannonField::setGameOver()
    {
        if (gameEnded)
            return;
        if (isShooting())
            autoShootTimer->stop();
        gameEnded = true;
        update();
    }

This slot ends the game. It must be called from outside CannonField, because this widget does not know when to end the game. This is an important design principle in component programming. We choose to make the component as flexible as possible to make it usable with different rules (for example, a multi-player version of this in which the first player to hit ten times wins could use the CannonField unchanged).

If the game has already been ended we return immediately. If a game is going on we stop the shot, set the game over flag, and repaint the entire widget.

    void CannonField::restartGame()
    {
        if (isShooting())
            autoShootTimer->stop();
        gameEnded = false;
        update();
        emit canShoot(true);
    }

This slot starts a new game. If a shot is in the air, we stop shooting. We then reset the gameEnded variable and repaint the widget.

moveShot() too emits the new canShoot(true) signal at the same time as either hit() or miss().

Modifications in CannonField::paintEvent():

    void CannonField::paintEvent(QPaintEvent * /* event */)
    {
        QPainter painter(this);

        if (gameEnded) {
            painter.setPen(Qt::black);
            painter.setFont(QFont("Courier", 48, QFont::Bold));
            painter.drawText(rect(), Qt::AlignCenter, "Game Over");
        }

The paint event has been enhanced to display the text "Game Over" if the game is over, i.e., gameEnded is true. We don't bother to check the update rectangle here because speed is not critical when the game is over.

To draw the text we first set a black pen; the pen color is used when drawing text. Next we choose a 48 point bold font from the Courier family. Finally we draw the text centered in the widget's rectangle. Unfortunately, on some systems (especially X servers with Unicode fonts) it can take a while to load such a large font. Because Qt caches fonts, you will notice this only the first time the font is used.

        paintCannon(painter);
        if (isShooting())
            paintShot(painter);
        if (!gameEnded)
            paintTarget(painter);
    }

We draw the shot only when shooting and the target only when playing (that is, when the game is not ended).

t13/gameboard.h

This file is new. It contains the definition of the GameBoard class, which was last seen as MyWidget.

    class QLCDNumber;
    class CannonField;

    class GameBoard : public QWidget
    {
        Q_OBJECT

    public:
        GameBoard(QWidget *parent = 0);

    protected slots:
        void fire();
        void hit();
        void missed();
        void newGame();

    private:
        QLCDNumber *hits;
        QLCDNumber *shotsLeft;
        CannonField *cannonField;
    };

We have now added four slots. These are protected and are used internally. We have also added two QLCDNumbers (hits and shotsLeft) that display the game status.

t13/gameboard.cpp

This file is new. It contains the implementation of the GameBoard class, which was last seen as MyWidget.

We have made some changes in the GameBoard constructor.

        cannonField = new CannonField;

cannonField is now a member variable, so we carefully change the constructor to use it.

        connect(cannonField, SIGNAL(hit()),
                this, SLOT(hit()));
        connect(cannonField, SIGNAL(missed()),
                this, SLOT(missed()));

This time we want to do something when the shot has hit or missed the target. Thus we connect the hit() and missed() signals of the CannonField to two protected slots with the same names in this class.

        connect(shoot, SIGNAL(clicked()),
                this, SLOT(fire()));

Previously we connected the Shoot button's clicked() signal directly to the CannonField's shoot() slot. This time we want to keep track of the number of shots fired, so we connect it to a protected slot in this class instead.

Notice how easy it is to change the behavior of a program when you are working with self-contained components.

        connect(cannonField, SIGNAL(canShoot(bool)),
                shoot, SLOT(setEnabled(bool)));

We also use the cannonField's canShoot() signal to enable or disable the Shoot button appropriately.

        QPushButton *restart = new QPushButton("&New Game");
        restart->setFont(QFont("Times", 18, QFont::Bold));

        connect(restart, SIGNAL(clicked()), this, SLOT(newGame()));

We create, set up, and connect the New Game button as we have done with the other buttons. Clicking this button will activate the newGame() slot in this widget.

        hits = new QLCDNumber(2);
        shotsLeft = new QLCDNumber(2);
        QLabel *hitsLabel = new QLabel("HITS");
        QLabel *shotsLeftLabel = new QLabel("SHOTS LEFT");

We create four new widgets. Note that we don't bother to keep the pointers to the QLabel widgets in the GameBoard class because there's nothing much we want to do with them. Qt will delete them when the GameBoard widget is destroyed, and the layout classes will resize them appropriately.

        QHBoxLayout *topLayout = new QHBoxLayout;
        topLayout->addWidget(shoot);
        topLayout->addWidget(hits);
        topLayout->addWidget(hitsLabel);
        topLayout->addWidget(shotsLeft);
        topLayout->addWidget(shotsLeftLabel);
        topLayout->addStretch(1);
        topLayout->addWidget(restart);

The number of widgets in the top-right cell is getting large. Once it was empty; now it's full enough that we group together the layout setting for better overview.

Notice that we let all the widgets have their preferred sizes, instead putting the stretch just to the left of the New Game button.

        newGame();

We're all done constructing the GameBoard, so we start it all using newGame(). Although newGame() is a slot, it can also be used as an ordinary function.

    void GameBoard::fire()
    {
        if (cannonField->gameOver() || cannonField->isShooting())
            return;
        shotsLeft->display(shotsLeft->intValue() - 1);
        cannonField->shoot();
    }

This function fires a shot. If the game is over or if there is a shot in the air, we return immediately. We decrement the number of shots left and tell the cannon to shoot.

    void GameBoard::hit()
    {
        hits->display(hits->intValue() + 1);
        if (shotsLeft->intValue() == 0)
            cannonField->setGameOver();
        else
            cannonField->newTarget();
    }

This slot is activated when a shot has hit the target. We increment the number of hits. If there are no shots left, the game is over. Otherwise, we make the CannonField generate a new target.

    void GameBoard::missed()
    {
        if (shotsLeft->intValue() == 0)
            cannonField->setGameOver();
    }

This slot is activated when a shot has missed the target. If there are no shots left, the game is over.

    void GameBoard::newGame()
    {
        shotsLeft->display(15);
        hits->display(0);
        cannonField->restartGame();
        cannonField->newTarget();
    }

This slot is activated when the user clicks the Restart button. It is also called from the constructor. First it sets the number of shots to 15. Note that this is the only place in the program where we set the number of shots. Change it to whatever you like to change the game rules. Next we reset the number of hits, restart the game, and generate a new target.

t13/main.cpp

This file has just been on a diet. MyWidget is gone, and the only thing left is the main() function, unchanged except for the name change.

Running the Application

The cannon can shoot at a target; a new target is automatically created when one has been hit.

Hits and shots left are displayed and the program keeps track of them. The game can end, and there's a button to start a new game.

Exercises

Add a random wind factor and show it to the user.

Make some splatter effects when the shot hits the target.

Implement multiple targets.

[Previous: Chapter 12] [Qt Tutorial] [Next: Chapter 14]

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 102
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 53
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 73
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 28
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 229
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 102
  7. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
Page suivante

Le Qt Developer Network au hasard

Logo

Livre blanc de l'outillage de Qt Quick

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.0
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web