-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMessageList.cpp
69 lines (58 loc) · 1.95 KB
/
MessageList.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
#include "stdafx.h"
#include "MessageList.h"
MessageList::MessageList()
: selected(false), visibleUntil(11), scrollBar()
{
normalColor = sf::Color(80, 80, 80, 200);
selectedColor = sf::Color(50, 50, 150, 200);
rc.setSize(sf::Vector2f(250, 200));
rc.setFillColor(normalColor);
text.setFillColor(sf::Color::White);
text.setCharacterSize(14);
}
void MessageList::addMessage(char *msg) {
messages.push_back(msg);
std::string input = "";
unsigned int i = 0;
//If there are more messages, than visible
if (messages.size() > visibleUntil)
i = messages.size() - visibleUntil;
for (; i < messages.size(); ++i) {
input += messages[i];
if (i + 1<messages.size())
input += "\n";
}
text.setString(input);
if (messages.size() < visibleUntil + 1)
text.setPosition(text.getPosition().x, text.getPosition().y - 16);
}
void MessageList::draw(sf::RenderWindow &window) const {
window.draw(rc);
window.draw(text);
scrollBar.draw(window);
}
void MessageList::setFont(sf::Font &font) {
text.setFont(font);
}
void MessageList::setPosition(float x, float y) {
rc.setPosition(x, y);
if(messages.size() < visibleUntil)
text.setPosition(x + 5, y + (193 - messages.size() * 16));
else
text.setPosition(x + 5, y + (193 - visibleUntil * 16));
scrollBar.setPosition(x + rc.getLocalBounds().width, y + rc.getLocalBounds().height);
scrollBar.setBox(rc.getPosition(), rc.getSize());
}
void MessageList::update(sf::RenderWindow &window, sf::Uint32 pressedKey) {
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) && rc.getGlobalBounds().contains(mousePos)) {
selected = true;
rc.setFillColor(selectedColor);
scrollBar.update(window);
}
else if (sf::Mouse::isButtonPressed(sf::Mouse::Left) || pressedKey == sf::Keyboard::Tab) {
selected = false;
rc.setFillColor(normalColor);
scrollBar.setNormalColor();
}
}