-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathProgressBar.cpp
120 lines (105 loc) · 3.55 KB
/
ProgressBar.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
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
#include "ProgressBar.hpp"
#include "Theme.hpp"
namespace gui
{
ProgressBar::ProgressBar(float length, Orientation orientation, LabelPlacement labelPlacement):
m_box(Box::Input),
m_orientation(orientation),
m_labelPlacement(labelPlacement),
m_value(0.f)
{
if (orientation == Horizontal)
{
m_box.setSize(length, Theme::getBoxHeight());
}
else
{
m_box.setSize(Theme::getBoxHeight(), length);
if (m_labelPlacement == LabelOver)
m_label.setRotation(90.f);
}
m_label.setString("100%");
m_label.setFont(Theme::getFont());
m_label.setFillColor(Theme::input.textColor);
m_label.setCharacterSize(Theme::textSize);
// Build bar
const float x1 = Theme::PADDING;
const float y1 = Theme::PADDING;
const float x2 = (orientation == Horizontal ? length : Theme::getBoxHeight()) - Theme::PADDING;
const float y2 = (orientation == Horizontal ? Theme::getBoxHeight() : length) - Theme::PADDING;
m_bar[0].position = {x1, y1};
m_bar[1].position = {x2, y1};
m_bar[2].position = {x2, y2};
m_bar[3].position = {x1, y2};
const sf::IntRect& rect = Theme::getProgressBarTextureRect();
m_bar[0].texCoords = sf::Vector2f(rect.left, rect.top);
m_bar[1].texCoords = sf::Vector2f(rect.left + rect.width, rect.top);
m_bar[2].texCoords = sf::Vector2f(rect.left + rect.width, rect.top + rect.height);
m_bar[3].texCoords = sf::Vector2f(rect.left, rect.top + rect.height);
float labelWidth = m_label.getLocalBounds().width;
float labelHeight = m_label.getLocalBounds().height;
if (m_labelPlacement == LabelOutside)
{
if (orientation == Horizontal)
{
// Place label on the right of the bar
m_label.setPosition(length + Theme::PADDING, Theme::PADDING);
setSize(length + Theme::PADDING + labelWidth, m_box.getSize().y);
}
else
{
// Place label below the bar
setSize(m_box.getSize().x, length + Theme::PADDING + labelHeight);
}
}
else
{
setSize(m_box.getSize());
}
setValue(m_value);
setSelectable(false);
}
void ProgressBar::setValue(float value)
{
m_label.setString(std::to_string((int)value) + "%");
if (m_orientation == Horizontal)
{
float x = Theme::PADDING + (m_box.getSize().x - Theme::PADDING * 2) * value / 100;
m_bar[1].position.x = m_bar[2].position.x = x;
if (m_labelPlacement == LabelOver)
{
m_box.centerTextHorizontally(m_label);
}
}
else
{
float fullHeight = m_box.getSize().y - Theme::PADDING * 2;
float y = fullHeight * value / 100;
m_bar[0].position.y = m_bar[1].position.y = (fullHeight - y) + Theme::PADDING;
if (m_labelPlacement == LabelOver)
{
m_box.centerTextVertically(m_label);
}
else if (m_labelPlacement == LabelOutside)
{
// Re-center label horizontally (text width can change)
float labelX = (m_box.getSize().x - m_label.getLocalBounds().width) / 2;
m_label.setPosition(labelX, m_box.getSize().y + Theme::PADDING);
}
}
m_value = value;
}
float ProgressBar::getValue() const
{
return m_value;
}
void ProgressBar::draw(sf::RenderTarget& target, sf::RenderStates states) const
{
states.transform *= getTransform();
target.draw(m_box, states);
states.texture = &Theme::getTexture();
target.draw(m_bar, 4, sf::Quads, states);
if (m_labelPlacement != LabelNone)
target.draw(m_label, states);
}
}