File: game.h

package info (click to toggle)
wxwidgets3.0 3.0.5.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 120,464 kB
  • sloc: cpp: 896,633; makefile: 52,303; ansic: 21,971; sh: 5,713; python: 2,940; xml: 1,534; perl: 264; javascript: 33
file content (114 lines) | stat: -rw-r--r-- 2,276 bytes parent folder | download | duplicates (10)
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
///////////////////////////////////////////////////////////////////////////////
// Name:        game.h
// Purpose:     Bombs game
// Author:      P. Foggia 1996
// Modified by: Wlodzimierz Skiba (ABX) since 2003
// Created:     1996
// Copyright:   (c) 1996 P. Foggia
// Licence:     wxWindows licence
///////////////////////////////////////////////////////////////////////////////

#ifndef _WX_DEMOS_BOMBS_GAME_H_
#define _WX_DEMOS_BOMBS_GAME_H_

#define BG_HIDDEN   0x100
#define BG_BOMB     0x200
#define BG_MARKED   0x400
#define BG_EXPLODED 0x800
#define BG_SELECTED 0x080
#define BG_MASK     0x03F

#include <stddef.h>

class BombsGame
{
public:
    BombsGame()
    {
        m_width = m_height = 0;
        m_field = NULL;
    };

    ~BombsGame();

    int GetWidth() const { return m_width; };
    int GetHeight() const { return m_height; };

    int Get(int x, int y) const
    {
        return m_field[x+y*m_width];
    };

    int IsFocussed(int x, int y) const
    {
        return (m_gridFocusX == x) && (m_gridFocusY == y);
    }

    int IsHidden(int x, int y) const
    {
        return Get(x,y) & BG_HIDDEN;
    };

    int IsMarked(int x, int y) const
    {
        return Get(x,y) & BG_MARKED;
    };

    int IsBomb(int x, int y) const
    {
        return Get(x,y) & BG_BOMB;
    };

    int IsExploded(int x, int y) const
    {
        return Get(x,y) & BG_EXPLODED;
    };

    int IsSelected(int x, int y) const
    {
        return Get(x,y) & BG_SELECTED;
    };

    int GetNumBombs() const
    {
        return m_numBombCells;
    };

    int GetNumRemainingCells() const
    {
        return m_numRemainingCells;
    };

    int GetNumMarkedCells() const
    {
        return m_numMarkedCells;
    };


    bool Init(int width, int height, bool easyCorner = false);


    // Marks/unmarks a cell
    void Mark(int x, int y);

    // Unhides a cell
    void Unhide(int x, int y, bool b_selected);

    // Makes a cell exploded
    void Explode(int x, int y);

    int m_gridFocusX;
    int m_gridFocusY;

private:

    // Current difficulty level (Determines grid size).
    //int m_level;

    int m_width, m_height;
    short *m_field;
    int m_numBombCells, m_numRemainingCells, m_numMarkedCells;

};

#endif // #ifndef _WX_DEMOS_BOMBS_GAME_H_