File: coordinator.h

package info (click to toggle)
killbots 4%3A18.04.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,056 kB
  • sloc: cpp: 2,713; sh: 9; makefile: 7
file content (110 lines) | stat: -rw-r--r-- 2,781 bytes parent folder | download | duplicates (2)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 *  Copyright 2007-2009  Parker Coates <coates@kde.org>
 *
 *  This file is part of Killbots.
 *
 *  Killbots is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Killbots is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Killbots. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef KILLBOTS_COORDINATOR_H
#define KILLBOTS_COORDINATOR_H

#include "actions.h"
#include "sprite.h"

class KGamePopupItem;

#include <QObject>
#include <QTimeLine>

namespace Killbots
{
class Scene;
class Engine;
class NumericDisplayItem;

class Coordinator : public QObject
{
    Q_OBJECT

public: // functions
    explicit Coordinator(QObject *parent = 0);
    virtual ~Coordinator();

    void setEngine(Engine *engine);
    void setScene(Scene *scene);

    void setAnimationSpeed(int speed);

    void beginNewAnimationStage();
    Sprite *createSprite(SpriteType type, QPoint position);
    void slideSprite(Sprite *sprite, QPoint position);
    void teleportSprite(Sprite *sprite, QPoint position);
    void destroySprite(Sprite *sprite);

public slots:
    void requestNewGame();
    void requestAction(int action);

private: // types
    struct AnimationStage;

private: // functions
    void startNewGame();
    void doAction(HeroAction action);
    void startAnimation();
    void startAnimationStage();
    void animationDone();

    void showUnqueuedMessage(const QString &message, int timeOut = 3000);
    void showQueuedMessage(const QString &message);

private slots:
    void nextAnimationStage();
    void animate(qreal value);

    void updateRound(int round);
    void updateScore(int score);
    void updateEnemyCount(int enemyCount);
    void updateEnergy(int energy);

    void showNewGameMessage();
    void showRoundCompleteMessage();
    void showBoardFullMessage();
    void showGameOverMessage();

private: // data members
    Engine *m_engine;
    Scene *m_scene;

    NumericDisplayItem *m_roundDisplay;
    NumericDisplayItem *m_scoreDisplay;
    NumericDisplayItem *m_enemyCountDisplay;
    NumericDisplayItem *m_energyDisplay;

    KGamePopupItem *m_unqueuedPopup;
    KGamePopupItem *m_queuedPopup;

    QTimeLine m_timeLine;

    QList<AnimationStage> m_stages;

    bool m_busyAnimating;
    bool m_newGameRequested;
    HeroAction m_repeatedAction;
    HeroAction m_queuedAction;
};
}

#endif