~ubuntu-branches/ubuntu/utopic/picmi/utopic

« back to all changes in this revision

Viewing changes to src/logic/boardmap.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-12-03 17:39:47 UTC
  • Revision ID: package-import@ubuntu.com-20121203173947-tt1kk5wp92zk1f2z
Tags: upstream-4.9.90
ImportĀ upstreamĀ versionĀ 4.9.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* *************************************************************************
 
2
 *  Copyright 2012 Jakob Gruber <jakob.gruber@gmail.com>                   *
 
3
 *                                                                         *
 
4
 *  This program is free software: you can redistribute it and/or modify   *
 
5
 *  it under the terms of the GNU General Public License as published by   *
 
6
 *  the Free Software Foundation, either version 2 of the License, or      *
 
7
 *  (at your option) any later version.                                    *
 
8
 *                                                                         *
 
9
 *  This program is distributed in the hope that it will be useful,        *
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
 
12
 *  GNU General Public License for more details.                           *
 
13
 *                                                                         *
 
14
 *  You should have received a copy of the GNU General Public License      *
 
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.  *
 
16
 ************************************************************************* */
 
17
 
 
18
 
 
19
#ifndef BOARDMAP_H
 
20
#define BOARDMAP_H
 
21
 
 
22
#include <QList>
 
23
 
 
24
#include "board.h"
 
25
 
 
26
class BoardMap : public Board
 
27
{
 
28
public:
 
29
    /* 0 < width, height; 0.0 < box_ratio < 1.0 */
 
30
    BoardMap(int width, int height, double box_ratio);
 
31
 
 
32
    BoardMap(int width, int height, const QList<Board::State> &map);
 
33
 
 
34
    /* returns the total box count */
 
35
    int boxCount() const { return m_box_count; }
 
36
 
 
37
private:
 
38
    void genRandom();
 
39
 
 
40
private:
 
41
    const int m_box_count;
 
42
};
 
43
 
 
44
#endif // BOARDMAP_H