aboutsummaryrefslogtreecommitdiff
path: root/src/gui/List.cpp
blob: 510de6b217ae63d7c51a7a067913eb7d09f03328 (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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#include "../../include/gui/List.hpp"
#include "../../include/Theme.hpp"

static float floor(float f) {
    return (int)f;
}

namespace gsr {
    // TODO: Add homogeneous option, using a specified max size of this list.

    List::List(Orientation orientation, Alignment content_alignment) : orientation(orientation), content_alignment(content_alignment) {}
    
    bool List::on_event(mgl::Event &event, mgl::Window &window, mgl::vec2f) {
        if(!visible)
            return true;

        // We want to store the selected child widget since it can change in the event loop below
        Widget *selected_widget = selected_child_widget;
        if(selected_widget) {
            if(!selected_widget->on_event(event, window, mgl::vec2f(0.0f, 0.0f)))
                return false;
        }

        // Process widgets by visibility (backwards)
        return widgets.for_each_reverse([selected_widget, &event, &window](std::unique_ptr<Widget> &widget) {
            // Ignore offset because widgets are positioned with offset in ::draw, this solution is simpler
            if(widget.get() != selected_widget) {
                if(!widget->on_event(event, window, mgl::vec2f(0.0f, 0.0f)))
                    return false;
            }
            return true;
        });
    }

    void List::draw(mgl::Window &window, mgl::vec2f offset) {
        if(!visible)
            return;

        mgl::vec2f draw_pos = position + offset;
        offset = {0.0f, 0.0f};
        Widget *selected_widget = selected_child_widget;

        // TODO: Handle start/end alignment
        const mgl::vec2f size = get_size();
        const mgl::vec2f parent_inner_size = parent_widget ? parent_widget->get_inner_size() : mgl::vec2f(0.0f, 0.0f);

        const float spacing = floor(spacing_scale * get_theme().window_height);
        switch(orientation) {
            case Orientation::VERTICAL: {
                for(size_t i = 0; i < widgets.size(); ++i) {
                    auto &widget = widgets[i];
                    if(!widget->visible)
                        continue;

                    if(i > 0)
                        draw_pos.y += spacing;

                    const auto widget_size = widget->get_size();
                    // TODO: Do this parent widget alignment for horizontal alignment and for other types of widget alignment
                    // and other widgets.
                    // Also take this widget alignment into consideration in get_size.
                    if(widget->get_horizontal_alignment() == Widget::Alignment::CENTER && parent_inner_size.x > 0.001f)
                        offset.x = floor(parent_inner_size.x * 0.5f - widget_size.x * 0.5f);
                    else if(content_alignment == Alignment::CENTER)
                        offset.x = floor(size.x * 0.5f - widget_size.x * 0.5f);
                    else
                        offset.x = 0.0f;

                    widget->set_position(draw_pos + offset);
                    if(widget.get() != selected_widget)
                        widget->draw(window, mgl::vec2f(0.0f, 0.0f));
                    draw_pos.y += widget_size.y;
                }
                break;
            }
            case Orientation::HORIZONTAL: {
                for(size_t i = 0; i < widgets.size(); ++i) {
                    auto &widget = widgets[i];
                    if(!widget->visible)
                        continue;

                    if(i > 0)
                        draw_pos.x += spacing;

                    const auto widget_size = widget->get_size();
                    if(content_alignment == Alignment::CENTER)
                        offset.y = floor(size.y * 0.5f - widget_size.y * 0.5f);
                    else
                        offset.y = 0.0f;

                    widget->set_position(draw_pos + offset);
                    if(widget.get() != selected_widget)
                        widget->draw(window, mgl::vec2f(0.0f, 0.0f));
                    draw_pos.x += widget_size.x;
                }
                break;
            }
        }

        if(selected_widget)
            selected_widget->draw(window, mgl::vec2f(0.0f, 0.0f));
    }

    // void List::remove_child_widget(Widget *widget) {
    //     for(auto it = widgets.begin(), end = widgets.end(); it != end; ++it) {
    //         if(it->get() == widget) {
    //             widgets.erase(it);
    //             return;
    //         }
    //     }
    // }

    void List::add_widget(std::unique_ptr<Widget> widget) {
        widget->parent_widget = this;
        widgets.push_back(std::move(widget));
    }

    void List::remove_widget(Widget *widget) {
        widgets.remove(widget);
    }

    void List::clear() {
        widgets.clear();
    }

    void List::for_each_child_widget(std::function<bool(std::unique_ptr<Widget> &widget)> callback) {
        widgets.for_each(callback);
    }

    Widget* List::get_child_widget_by_index(size_t index) const {
        if(index < widgets.size())
            return widgets[index].get();
        else
            return nullptr;
    }

    void List::set_spacing(float spacing) {
        spacing_scale = spacing;
    }

    // TODO: Cache result
    mgl::vec2f List::get_size() {
        if(!visible)
            return {0.0f, 0.0f};

        mgl::vec2f size;
        const float spacing = floor(spacing_scale * get_theme().window_height);
        switch(orientation) {
            case Orientation::VERTICAL: {
                for(size_t i = 0; i < widgets.size(); ++i) {
                    auto &widget = widgets[i];
                    if(!widget->visible)
                        continue;

                    if(i > 0)
                        size.y += spacing;

                    const auto widget_size = widget->get_size();
                    size.x = std::max(size.x, widget_size.x);
                    size.y += widget_size.y;
                }
                break;
            }
            case Orientation::HORIZONTAL: {
                for(size_t i = 0; i < widgets.size(); ++i) {
                    auto &widget = widgets[i];
                    if(!widget->visible)
                        continue;

                    if(i > 0)
                        size.x += spacing;

                    const auto widget_size = widget->get_size();
                    size.x += widget_size.x;
                    size.y = std::max(size.y, widget_size.y);
                }
                break;
            }
        }
        return size;
    }
}