aboutsummaryrefslogtreecommitdiff
path: root/src/UsersSidePanel.cpp
blob: 5af01bc3c159cee58e9fba3b1badc9e652a4e0c4 (plain)
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
#include "../include/UsersSidePanel.hpp"
#include "../include/ResourceCache.hpp"
#include "../include/Settings.hpp"
#include <SFML/Graphics/RectangleShape.hpp>
#include <SFML/Graphics/Text.hpp>
#include <vector>
#include <cmath>

using namespace std;

namespace dchat
{
    vector<User*> users;
    const float width = 200.0f;
    const unsigned int FONT_SIZE = 20;
    
    void UsersSidePanel::addUser(User *user)
    {
        users.push_back(user);
    }
    
    void UsersSidePanel::draw(sf::RenderWindow &window)
    {
        auto windowSize = window.getSize();
        sf::RectangleShape rect(sf::Vector2f(width, windowSize.y));
        rect.setFillColor(sf::Color(30, 30, 30));
        rect.setPosition(windowSize.x - width, 0.0f);
        window.draw(rect);
        
        const sf::Font &font = ResourceCache::getFont("fonts/Roboto-Regular.ttf");
        sf::Vector2f position(rect.getPosition().x + 10.0f, 10.0f);
        for(User *user : users)
        {
            // TODO: Remove this shit
            sf::String str = sf::String::fromUtf8(user->getName().begin(), user->getName().end());
            sf::Text text(str, font, FONT_SIZE * Settings::getScaling());
            text.setPosition(position);
            window.draw(text);
            position.y += font.getLineSpacing(FONT_SIZE * Settings::getScaling());
        }
    }
    
    float UsersSidePanel::getWidth()
    {
        return width;
    }
}