-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScrollBar.cpp
67 lines (56 loc) · 2.17 KB
/
ScrollBar.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
#include "stdafx.h"
#include "ScrollBar.h"
#include <iostream>
ScrollBar::ScrollBar()
{
normalColor = sf::Color(50, 50, 150);
selectedColor = sf::Color(10, 10, 100);
rc.setFillColor(normalColor);
rc.setSize(sf::Vector2f(15, 40));
rc.setOrigin(rc.getLocalBounds().width / 2, rc.getLocalBounds().height / 2);
collisionRect.setOrigin(collisionRect.getLocalBounds().width / 2, collisionRect.getLocalBounds().height / 2);
}
void ScrollBar::draw(sf::RenderWindow &window) const
{
window.draw(rc);
}
void ScrollBar::setBox(sf::Vector2f _boxPos, sf::Vector2f _boxSize) {
collisionRect.setSize(sf::Vector2f(rc.getLocalBounds().width * 8, _boxSize.y * 2));
collisionRect.setOrigin(collisionRect.getLocalBounds().width / 2, collisionRect.getLocalBounds().height / 2);
maxY = _boxPos.y + rc.getLocalBounds().height / 2;
minY = _boxPos.y + _boxSize.y - rc.getLocalBounds().height / 2;
}
void ScrollBar::setNormalColor() {
rc.setFillColor(normalColor);
}
void ScrollBar::setSelectedColor() {
rc.setFillColor(selectedColor);
}
void ScrollBar::setPosition(float x, float y) {
rc.setPosition(x, y - rc.getLocalBounds().height / 2);
collisionRect.setPosition(x, y - rc.getLocalBounds().height / 2);
}
void ScrollBar::update(sf::RenderWindow &window){
sf::Vector2f mousePos = { (float)sf::Mouse::getPosition(window).x - window.getSize().x / 2, (float)sf::Mouse::getPosition(window).y - window.getSize().y / 2 };
if(sf::Mouse::isButtonPressed(sf::Mouse::Left) && collisionRect.getGlobalBounds().contains(mousePos)){
sf::Vector2f oldPos = rc.getPosition();
rc.setPosition(rc.getPosition().x, mousePos.y);
collisionRect.setPosition(rc.getPosition().x, mousePos.y);
if(rc.getPosition().y < maxY){
//Upper border
rc.setPosition(oldPos.x, maxY);
collisionRect.setPosition(oldPos.x, maxY);
return;
}
if(rc.getPosition().y > minY){
//Downer border
rc.setPosition(oldPos.x, minY);
collisionRect.setPosition(oldPos.x, minY);
return;
}
rc.setFillColor(selectedColor);
value = (rc.getPosition().y - maxY) / (minY - maxY);
}
else
rc.setFillColor(normalColor);
}