File: animator.h

package info (click to toggle)
klines 4%3A16.08.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,816 kB
  • ctags: 189
  • sloc: cpp: 1,411; makefile: 5; sh: 2
file content (126 lines) | stat: -rw-r--r-- 3,697 bytes parent folder | download | duplicates (5)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*******************************************************************
 *
 * Copyright 2006-2007 Dmitry Suzdalev <dimsuz@gmail.com>
 *
 * This file is part of the KDE project "KLines"
 *
 * KLines 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, or (at your option)
 * any later version.
 *
 * KLines 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 KLines; see the file COPYING.  If not, write to
 * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 ********************************************************************/
#ifndef ANIMATOR_H
#define ANIMATOR_H

#include <QTimeLine>
#include "commondefs.h"

class KLinesScene;
class BallItem;

/**
 *  Drives KLines animations
 */
class KLinesAnimator : public QObject
{
    Q_OBJECT
public:
    explicit KLinesAnimator( KLinesScene *scene );
    /**
     *  Starts animation of ball movement.
     *  When animation finishes moveFinished() signal is emitted
     *  @param from starting field position
     *  @param to   target field position
     *
     *  @return true is there exists a path (from,to), false otherwise
     */
    bool animateMove( const FieldPos& from, const FieldPos& to );
    /**
     *  Starts animation of ball deletion from field.
     *  Note that it doesn't do actual deletion - it just runs
     *  animation of deletion.
     *  When animation finishes removeFinished() signal is emitted
     *  @param list list of balls to 'remove'
     */
    void animateRemove( const QList<BallItem*>& list );
    /**
     *  Starts animation of ball movement.
     *  When animation finishes bornFinished() signal is emitted
     *  @param list list of balls to be 'born'
     */
    void animateBorn( const QList<BallItem*>& list );
    /**
     *  @return whether some animation is in progress
     */
    bool isAnimating() const;
    /**
     * Starts game over animation on the scene, shows game over message
     * TODO: does nothing useful yet
     */
    void startGameOverAnimation();
    /**
     * Stops game over animation
     * TODO: does nothing useful yet
     */
    void stopGameOverAnimation();
signals:
    void moveFinished();
    void removeFinished();
    void bornFinished();
private slots:
    void moveAnimationFrame(int);
    void removeAnimationFrame(int);
    void bornAnimationFrame(int);

    void slotBornFinished();
private:
    /**
     *  Implements A* pathfinding algorithm.
     */
    void findPath(const FieldPos& from, const FieldPos& to);
    /**
     *  Timeline used to control movement animation
     */
    QTimeLine m_moveTimeLine;
    /**
     *  Timeline used to control deletion animation
     */
    QTimeLine m_removeTimeLine;
    /**
     *  Timeline used to control birth animation
     */
    QTimeLine m_bornTimeLine;
    /**
     *  Scene on which animations are played
     */
    KLinesScene* m_scene;
    /**
     *  Ball object used while animating movement
     */
    BallItem* m_movingBall;
    /**
     *  findPath() algorithm stores found path in this variable
     */
    QList<FieldPos> m_foundPath;
    /**
     *  Balls for which 'remove' animation is played
     */
    QList<BallItem*> m_removedBalls;
    /**
     *  Balls for which 'born' animation is played
     */
    QList<BallItem*> m_bornBalls;
};

#endif