-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRectBar.cpp
73 lines (59 loc) · 2.36 KB
/
RectBar.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
#include "stdafx.h"
#include "RectBar.h"
RectBar::RectBar(float x, float y)
{
collisionRect.setPosition(x, y);
collisionRect.setSize(sf::Vector2f(70, 10));
border.setPosition(x, y);
border.setSize(sf::Vector2f(70, 10));
//effect.setPosition(x, y);
//effect.setRadius(50);
text.setString("");
}
void RectBar::draw(sf::RenderWindow &window) const {
window.draw(collisionRect);
//window.draw(border);
//window.draw(effect);
window.draw(text);
}
void RectBar::setFont(sf::Font &font) {
text.setFont(font);
text.setFillColor(sf::Color::White);
text.setCharacterSize(11);
text.setPosition(collisionRect.getPosition().x + collisionRect.getLocalBounds().width / 2 - text.getLocalBounds().width / 2, collisionRect.getPosition().y + collisionRect.getLocalBounds().height / 2 - text.getLocalBounds().height);
}
void RectBar::setPosition(float x, float y) {
collisionRect.setPosition(x, y);
//border.setPosition(x, y);
//effect.setPosition(x, y);
text.setPosition(collisionRect.getPosition().x + collisionRect.getLocalBounds().width / 2 - text.getLocalBounds().width / 2, collisionRect.getPosition().y + collisionRect.getLocalBounds().height / 2 - text.getLocalBounds().height);
}
void RectBar::setSize(float x, float y) {
collisionRect.setSize(sf::Vector2f(x, y));
border.setSize(sf::Vector2f(x, y));
}
void RectBar::setText(float value) {
std::string txt = std::to_string(static_cast<long>(value));
text.setString(txt);
if(txt.size() > 0)
text.setPosition(collisionRect.getPosition().x + 35 - txt.size(), collisionRect.getPosition().y - 2);
else
text.setPosition(collisionRect.getPosition().x + 35 - txt.size()+1, collisionRect.getPosition().y - 2);
}
void RectBar::setText(std::string txt) {
text.setString(txt);
text.setPosition(collisionRect.getPosition().x + collisionRect.getLocalBounds().width / 2 - text.getLocalBounds().width / 2, collisionRect.getPosition().y + collisionRect.getLocalBounds().height / 2 - text.getLocalBounds().height);
}
void RectBar::setTexture(sf::Texture &Texture) {
collisionRect.setTexture(&Texture);
collisionRect.setTextureRect(sf::IntRect(0, 0, 70, 10));
}
void RectBar::setBorderTexture(sf::Texture &Texture) {
border.setTexture(&Texture);
}
void RectBar::setEffectTexture(sf::Texture &Texture) {
//effect.setTexture(&Texture);
}
void RectBar::setValue(float x) {
collisionRect.setTextureRect(sf::IntRect(0.7f * (100 - x), 0, 70, 10));
}