-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminesweeper.h
215 lines (189 loc) · 6.54 KB
/
minesweeper.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
//
// Created by xcao2 on 11/29/2023.
//
#ifndef COP_PROJECT4_MINESWEEPER_H
#define COP_PROJECT4_MINESWEEPER_H
#include "GameState.h"
#include "Toolbox.h"
#include <iostream>
//used everywhere
Toolbox& toolbox = Toolbox::getInstance();
//digits display
sf::Sprite dig1;
sf::Sprite dig2;
sf::Sprite dig3;
//function to draw digits
void drawDigits(){
int displayNum=toolbox.gameState->getMineCount()-toolbox.gameState->getFlagCount();
sf::IntRect textureRect1;
//sets rects to display only one digit from 0-9
if(displayNum<0){
textureRect1=sf::IntRect(210, 0, 21, 32);
displayNum=-(displayNum%100);
}
else{
textureRect1=sf::IntRect((displayNum/100)*21, 0, 21, 32);
displayNum=displayNum%100;
}
dig1.setTextureRect(textureRect1);
sf::IntRect textureRect2((displayNum/10)*21, 0, 21, 32);
dig2.setTextureRect(textureRect2);
displayNum=displayNum%10;
sf::IntRect textureRect3((displayNum)*21, 0, 21, 32);
dig3.setTextureRect(textureRect3);
toolbox.window.draw(dig1);
toolbox.window.draw(dig2);
toolbox.window.draw(dig3);
}
//draws everything
void render() {
toolbox.window.draw(*toolbox.debugButton->getSprite());
toolbox.window.draw(*toolbox.newGameButton->getSprite());
toolbox.window.draw(*toolbox.testButton1->getSprite());
toolbox.window.draw(*toolbox.testButton2->getSprite());
toolbox.window.draw(*toolbox.testButton3->getSprite());
//draws tiles
int y = 0;
int x = 0;
int total=0;
int revealed=0;
while(toolbox.gameState->getTile(x,y)!= nullptr){
while(toolbox.gameState->getTile(x,y)!=nullptr){
Tile *t=toolbox.gameState->getTile(x,y);
t->draw();
x++;
total++;
if(t->getState()==Tile::REVEALED){
revealed++;
}
}
x=0;
y++;
}
//checks every refresh to see if won
if(total-toolbox.gameState->getMineCount()==revealed){
toolbox.gameState->setPlayStatus(GameState::WIN);
toolbox.newGameButton->setSprite(toolbox.win_sprite);
}
//calls drawdigits
drawDigits();
}
//restart game
void restart() {
toolbox.gameState=new GameState();
}
//toggles debug mode: if tile is a bomb, sets state again to update to new debug texture
void toggleDebugMode() {
toolbox.debug=!toolbox.debug;
int y = 0;
int x = 0;
while(toolbox.gameState->getTile(x,y)!= nullptr) {
while (toolbox.gameState->getTile(x, y) != nullptr) {
Tile *t = toolbox.gameState->getTile(x, y);
Bomb *derived=dynamic_cast<Bomb*>(t);
if(derived!= nullptr){
derived->setState(Tile::HIDDEN);
}
x++;
}
x=0;
y++;
}
}
//handle clicks
void handleMouseClick(sf::Event &event){
sf::Vector2f mouse_pos=toolbox.window.mapPixelToCoords(sf::Mouse::getPosition(toolbox.window));
bool left= event.mouseButton.button==sf::Mouse::Left;
//if clicked below the tiles
if(mouse_pos.y>530.0f){
if(toolbox.newGameButton->getSprite()->getGlobalBounds().contains(mouse_pos) && left){
toolbox.newGameButton->onClick();
toolbox.newGameButton->setSprite(toolbox.happy_sprite);
toolbox.debug=false;
return;
}
else if(toolbox.gameState->getPlayStatus()==GameState::PLAYING && toolbox.debugButton->getSprite()->getGlobalBounds().contains(mouse_pos) && left){
toggleDebugMode();
return;
}
else if(toolbox.testButton1->getSprite()->getGlobalBounds().contains(mouse_pos) && left){
toolbox.testButton1->onClick();
toolbox.newGameButton->setSprite(toolbox.happy_sprite);
toolbox.debug=false;
return;
}
else if(toolbox.testButton2->getSprite()->getGlobalBounds().contains(mouse_pos) && left){
toolbox.testButton2->onClick();
toolbox.newGameButton->setSprite(toolbox.happy_sprite);
toolbox.debug=false;
return;
}
else if(toolbox.testButton3->getSprite()->getGlobalBounds().contains(mouse_pos) && left){
toolbox.testButton3->onClick();
toolbox.newGameButton->setSprite(toolbox.happy_sprite);
toolbox.debug=false;
return;
}
}
else{ //if clicked a tile
if(toolbox.gameState->getPlayStatus()==GameState::PLAYING){
int x=static_cast<int>(mouse_pos.x/32.0f);
int y=static_cast<int>(mouse_pos.y/32.0f);
//gets the clicked tile
Tile* clicked_tile=toolbox.gameState->getTile(x, y);
if(clicked_tile && left){
clicked_tile->onClickLeft();
//checks after every click if lost
if(toolbox.gameState->getPlayStatus()==GameState::LOSS){
toolbox.debug=true;
int y2 = 0;
int x2 = 0;
//if yes, bomb other than the exploded one reveals to bomb on hidden tile
while(toolbox.gameState->getTile(x2,y2)!= nullptr) {
while (toolbox.gameState->getTile(x2, y2) != nullptr) {
Tile *t = toolbox.gameState->getTile(x2, y2);
Bomb *derived=dynamic_cast<Bomb*>(t);
if(derived!= nullptr && derived->getState()!=Bomb::EXPLODED){
derived->setState(Tile::HIDDEN);
}
x2++;
}
x2=0;
y2++;
}
}
}
else if(clicked_tile){ //if right click in tiles
clicked_tile->onClickRight();
}
}
}
}
int launch() {
//starts new game
restart();
dig1.setTexture(*toolbox.digits);
dig1.setPosition(100.0f, 530.0f);
dig2.setTexture(*toolbox.digits);
dig2.setPosition(121.0f, 530.0f);
dig3.setTexture(*toolbox.digits);
dig3.setPosition(142.0f, 530.0f);
//loads windows
while(toolbox.window.isOpen()){
sf::Event event;
while(toolbox.window.pollEvent(event)){
if(event.type==sf::Event::Closed){
toolbox.window.close();
}
if(event.type==sf::Event::MouseButtonPressed){
handleMouseClick(event);
}
}
toolbox.window.clear();
render();
toolbox.window.display();
}
return 0;
}
int main();
#endif //COP_PROJECT4_MINESWEEPER_H