-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathButton.hpp
216 lines (174 loc) · 5.17 KB
/
Button.hpp
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
216
#pragma once
#include <iostream>
#include <SFML/Graphics.hpp>
class Button {
public:
Button() {
is_default = true;
}
Button(sf::Vector2f factors, sf::Texture bgTexture, sf::Texture activatedTexture, sf::Texture pressedTexture) {
button.setTexture(bgTexture);
button.setScale(factors);
btnWidth = bgTexture.getSize().x * factors.x;
btnHeight = bgTexture.getSize().y * factors.y;
this->normalTexture = bgTexture;
this->activatedTexture = activatedTexture;
this->pressedTexture = pressedTexture;
is_default = false;
}
void setFont(sf::Font& fonts) {
text.setFont(fonts);
}
void setTexture(sf::Texture& texture) {
button.setTexture(texture);
}
void getPressed(bool value) {
if (this->pressed != value) {
if (value) setTexture(pressedTexture);
else setTexture(normalTexture);
this->pressed = value;
}
}
bool autoSetTexture(sf::RenderWindow& window) {
if (this->pressed) return this->isMouseOver(window);
if (this->isMouseOver(window)) {
this->setTexture(this->activatedTexture);
} else {
this->setTexture(this->normalTexture);
}
return this->isMouseOver(window);
}
bool autoSetTexture(sf::RenderWindow& window, std::vector<Button*>& buttons, bool* opened_sub) {
bool def = autoSetTexture(window);
if (!*opened_sub) return def;
for (auto& btn : buttons) {
def |= btn->autoSetTexture(window);
}
if (def) {
this->setTexture(this->activatedTexture);
} else {
this->setTexture(this->normalTexture);
}
return def;
}
void setTextColor(sf::Color color) {
text.setFillColor(color);
}
void setPosition(sf::Vector2f point) {
button.setPosition(point);
}
void drawTo(sf::RenderWindow& window) {
if (!is_default)
window.draw(button);
}
bool isMouseOver(sf::RenderWindow& window) {
int mouseX = sf::Mouse::getPosition(window).x;
int mouseY = sf::Mouse::getPosition(window).y;
int btnPosX = button.getPosition().x;
int btnPosY = button.getPosition().y;
int btnxPosWidth = button.getPosition().x + btnWidth;
int btnyPosHeight = button.getPosition().y + btnHeight;
if (mouseX < btnxPosWidth && mouseX > btnPosX && mouseY < btnyPosHeight && mouseY > btnPosY) {
return true;
}
return false;
}
private:
sf::Sprite button;
sf::Text text;
int btnWidth;
int btnHeight;
bool pressed = false;
bool is_default;
sf::Texture normalTexture, activatedTexture, pressedTexture;
};
class ButtonWithColor {
public:
ButtonWithColor(std::string btnText, int charSize, sf::Color textColor, sf::Vector2f factors, sf::Color bgColor,
sf::Color activatedColor, sf::Color borderActivatedColor, sf::Color pressedColor, sf::Color borderPressedColor) {
button.setSize(factors);
button.setFillColor(bgColor);
border_rect.setSize(sf::Vector2f(factors.x + 2, factors.y + 2));
btnWidth = factors.x;
btnHeight = factors.y;
text.setString(btnText);
text.setCharacterSize(charSize);
text.setFillColor(textColor);
this->normalColor = bgColor;
this->activatedColor = activatedColor;
this->pressedColor = pressedColor;
this->borderActivatedColor = borderActivatedColor;
this->borderPressedColor = borderPressedColor;
}
void setFont(sf::Font& fonts) {
text.setFont(fonts);
}
void setBackColor(sf::Color color) {
button.setFillColor(color);
}
void setBorderColor(sf::Color color) {
border_rect.setFillColor(color);
}
void getPressed(bool value) {
if (this->pressed != value) {
if (value) {
setBackColor(pressedColor);
setBorderColor(borderPressedColor);
needBorder = true;
} else {
setBackColor(normalColor);
needBorder = false;
setBorderColor(sf::Color::Transparent);
}
this->pressed = value;
}
}
void autoSetColor(sf::RenderWindow& window) {
if (this->pressed) return;
if (this->isMouseOver(window)) {
this->setBackColor(this->activatedColor);
setBorderColor(borderActivatedColor);
needBorder = true;
} else {
this->setBackColor(this->normalColor);
setBorderColor(sf::Color::Transparent);
needBorder = false;
}
}
void setTextColor(sf::Color color) {
text.setFillColor(color);
}
void setPosition(sf::Vector2f point) {
button.setPosition(point);
border_rect.setPosition(sf::Vector2f(point.x - 1, point.y - 1));
int xPos = (point.x + btnWidth / 2) - (text.getLocalBounds().width / 2);
int yPos = (point.y + btnHeight / 2.2) - (text.getLocalBounds().height / 2);
text.setPosition(xPos, yPos);
}
void drawTo(sf::RenderWindow& window) {
if (needBorder) window.draw(border_rect);
window.draw(button);
window.draw(text);
}
bool isMouseOver(sf::RenderWindow& window) {
int mouseX = sf::Mouse::getPosition(window).x;
int mouseY = sf::Mouse::getPosition(window).y;
int btnPosX = button.getPosition().x;
int btnPosY = button.getPosition().y;
int btnxPosWidth = button.getPosition().x + btnWidth;
int btnyPosHeight = button.getPosition().y + btnHeight;
if (mouseX < btnxPosWidth && mouseX > btnPosX && mouseY < btnyPosHeight && mouseY > btnPosY) {
return true;
}
return false;
}
private:
sf::RectangleShape button, border_rect;
sf::Text text;
int btnWidth;
int btnHeight;
bool pressed = false;
bool needBorder = false;
sf::Color normalColor, activatedColor, pressedColor;
sf::Color borderActivatedColor, borderPressedColor;
};