-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBomb.cpp
67 lines (59 loc) · 1.71 KB
/
Bomb.cpp
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
//
// Created by xcao2 on 12/4/2023.
//
#include "Bomb.h"
#include "Toolbox.h"
Bomb::Bomb(sf::Vector2f _position):Tile(_position){
//default constructor
Toolbox &toolbox = Toolbox::getInstance();
sprite.setTexture(*toolbox.hidden);
sprite.setPosition(_position);
currentState=HIDDEN;
}
//setState from Tile but for bombs
void Bomb::setState(Tile::State _state) {
Toolbox& toolbox=Toolbox::getInstance();
currentState = _state;
//if exploded: game end
if(currentState==EXPLODED){
toolbox.gameState->setPlayStatus(GameState::LOSS);
sprite.setTexture(*toolbox.bombed);
toolbox.newGameButton->setSprite(toolbox.lose_sprite);
} //if hidden, depending on debug mode, hidden or debug_bomb texture
else if(currentState==HIDDEN){
sprite.setTexture(*toolbox.hidden);
if(toolbox.debug){
sprite.setTexture(*toolbox.debug_bomb);
}
}
}
Bomb::State Bomb::getState(){
return currentState;
}
void Bomb::draw() const{
Toolbox& toolbox=Toolbox::getInstance();
toolbox.window.draw(this->sprite);
}
//only one outcome when clicked: lose
void Bomb::onClickLeft() {
Toolbox &toolbox = Toolbox::getInstance();
if(currentState!=FLAGGED){
setState(EXPLODED);
}
}
//flagged, but in consideration of debug
void Bomb::onClickRight() {
Toolbox& toolbox=Toolbox::getInstance();
if (currentState == HIDDEN) {
currentState = FLAGGED;
sprite.setTexture(*toolbox.flagged);
} else if (currentState == FLAGGED) {
if(toolbox.debug){
sprite.setTexture(*toolbox.debug_bomb);
}
else{
sprite.setTexture(*toolbox.hidden);
}
currentState = HIDDEN;
}
}