a6df443cb8fa9fa090ab87d23d0580d418d67ff0
[profile/ivi/qtdeclarative.git] / examples / declarative / minehunt / minehunt.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the demonstration applications of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42
43 #include <qdeclarative.h>
44
45 class TileData : public QObject
46 {
47     Q_OBJECT
48 public:
49     TileData() : _hasFlag(false), _hasMine(false), _hint(-1), _flipped(false) {}
50
51     Q_PROPERTY(bool hasFlag READ hasFlag WRITE setHasFlag NOTIFY hasFlagChanged)
52     bool hasFlag() const { return _hasFlag; }
53
54     Q_PROPERTY(bool hasMine READ hasMine NOTIFY hasMineChanged)
55     bool hasMine() const { return _hasMine; }
56
57     Q_PROPERTY(int hint READ hint NOTIFY hintChanged)
58     int hint() const { return _hint; }
59
60     Q_PROPERTY(bool flipped READ flipped NOTIFY flippedChanged())
61     bool flipped() const { return _flipped; }
62
63     void setHasFlag(bool flag) {if(flag==_hasFlag) return; _hasFlag = flag; emit hasFlagChanged();}
64     void setHasMine(bool mine) {if(mine==_hasMine) return; _hasMine = mine; emit hasMineChanged();}
65     void setHint(int hint) { if(hint == _hint) return; _hint = hint; emit hintChanged(); }
66     void flip() { if (_flipped) return; _flipped = true; emit flippedChanged(); }
67     void unflip() { if(!_flipped) return; _flipped = false; emit flippedChanged(); }
68
69 signals:
70     void flippedChanged();
71     void hasFlagChanged();
72     void hintChanged();
73     void hasMineChanged();
74
75 private:
76     bool _hasFlag;
77     bool _hasMine;
78     int _hint;
79     bool _flipped;
80 };
81
82 class MinehuntGame : public QObject
83 {
84     Q_OBJECT
85 public:
86     MinehuntGame();
87
88     Q_PROPERTY(QDeclarativeListProperty<TileData> tiles READ tiles CONSTANT)
89     QDeclarativeListProperty<TileData> tiles();
90
91     Q_PROPERTY(bool isPlaying READ isPlaying NOTIFY isPlayingChanged)
92     bool isPlaying() {return playing;}
93
94     Q_PROPERTY(bool hasWon READ hasWon NOTIFY hasWonChanged)
95     bool hasWon() {return won;}
96
97     Q_PROPERTY(int numMines READ numMines NOTIFY numMinesChanged)
98     int numMines() const{return nMines;}
99
100     Q_PROPERTY(int numFlags READ numFlags NOTIFY numFlagsChanged)
101     int numFlags() const{return nFlags;}
102
103 public slots:
104     Q_INVOKABLE bool flip(int row, int col);
105     Q_INVOKABLE bool flag(int row, int col);
106     void setBoard();
107     void reset();
108
109 signals:
110     void isPlayingChanged();
111     void hasWonChanged();
112     void numMinesChanged();
113     void numFlagsChanged();
114
115 private:
116     bool onBoard( int r, int c ) const { return r >= 0 && r < numRows && c >= 0 && c < numCols; }
117     TileData *tile( int row, int col ) { return onBoard(row, col) ? _tiles[col+numRows*row] : 0; }
118     int getHint(int row, int col);
119     void setPlaying(bool b){if(b==playing) return; playing=b; emit isPlayingChanged();}
120
121     QList<TileData *> _tiles;
122     int numCols;
123     int numRows;
124     bool playing;
125     bool won;
126     int remaining;
127     int nMines;
128     int nFlags;
129 };