-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameState.h
39 lines (32 loc) · 965 Bytes
/
GameState.h
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
//
// Created by xcao2 on 11/29/2023.
//
#ifndef COP_PROJECT4_GAMESTATE_H
#define COP_PROJECT4_GAMESTATE_H
#include <SFML/Graphics.hpp>
#include "Tile.h"
#include "Bomb.h"
class GameState {
public:
enum PlayStatus { WIN, LOSS, PLAYING }; //the three current statuses
//default constructor
GameState(sf::Vector2i _dimensions = sf::Vector2i(25, 16), int _numberOfMines = 50);
//constructor given board
//getters
GameState(const char* filepath);
int getFlagCount();
int getMineCount();
Tile* getTile(int x, int y);
PlayStatus getPlayStatus();
//set playstatus
void setPlayStatus(PlayStatus _status);
private:
sf::Vector2i dimensions;
int numberOfMines;
int flagCount;
PlayStatus playStatus;
std::vector<Tile*> tiles;
//private methods/vars to track or lessen complexisty
void setTileMineStatus(); //sets neighbors: quite difficult the way I did it
};
#endif //COP_PROJECT4_GAMESTATE_H