-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathButton_K.cpp
79 lines (67 loc) · 1.84 KB
/
Button_K.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
68
69
70
71
72
73
74
75
76
77
78
79
#include "stdafx.h"
#include "Button_K.h"
Button_K::Button_K()
{
rc.setSize(sf::Vector2f(55, 26));
rc.setFillColor(sf::Color::Black);
rc.setPosition(0, 0);
text.setFillColor(sf::Color::White);
text.setCharacterSize(14);
text.setPosition(10, 4);
}
Button_K::Button_K(sf::Font &font, float posX, float posY, std::string txt)
: selected(false)
{
rc.setSize(sf::Vector2f(55, 26));
rc.setFillColor(sf::Color::Black);
rc.setPosition(posX, posY);
text.setFillColor(sf::Color::White);
text.setCharacterSize(14);
text.setPosition(posX + 10, posY + 4);
text.setFont(font);
text.setString(txt);
}
bool Button_K::update(sf::RenderWindow &window) {
if (sf::Mouse::isButtonPressed(sf::Mouse::Left)) {
//This Button is selected by mouse?
if(rc.getGlobalBounds().contains(window.mapPixelToCoords(sf::Mouse::getPosition(window))))
selected = true;
//Lost selection by mouse?
else {
selected = false;
rc.setFillColor(sf::Color::Black);
return 0;
}
}
if (selected) {
rc.setFillColor(sf::Color::Red);
return 1;
}
rc.setFillColor(sf::Color::Black);
return 0;
}
bool Button_K::isPressed(sf::RenderWindow &window, sf::Event &event) {
if (sf::Mouse::isButtonPressed(sf::Mouse::Left) && rc.getGlobalBounds().contains(window.mapPixelToCoords(sf::Mouse::getPosition(window))) || (event.type == sf::Event::TextEntered && event.text.unicode == 13))
return true;
return false;
}
float Button_K::getWidth() const {
return text.getLocalBounds().width;
}
void Button_K::draw(sf::RenderWindow &window) const {
window.draw(rc);
window.draw(text);
}
void Button_K::setFont(sf::Font &font) {
text.setFont(font);
}
void Button_K::setPos(float x, float y) {
rc.setPosition(x, y);
text.setPosition(x + 10, y + 4);
}
void Button_K::setSize(float w, float h) {
rc.setSize(sf::Vector2f(w, h));
}
void Button_K::setText(std::string txt) {
text.setString(txt);
}