FTXUI/src/ftxui/dom/graph.cpp

50 lines
1.4 KiB
C++
Raw Normal View History

2020-04-20 03:00:37 +08:00
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
2019-01-27 04:52:55 +08:00
#include "ftxui/dom/elements.hpp"
namespace ftxui {
const wchar_t charset[] = L" ▗▐▖▄▟▌▙█";
class Graph : public Node {
public:
2019-01-27 09:33:06 +08:00
Graph(GraphFunction graph_function) : graph_function_(graph_function) {}
2019-01-27 04:52:55 +08:00
~Graph() override {}
void ComputeRequirement() override {
2020-06-01 22:13:29 +08:00
requirement_.flex_x = 1;
requirement_.flex_y = 1;
requirement_.min_x = 1;
requirement_.min_y = 1;
2019-01-27 04:52:55 +08:00
}
void Render(Screen& screen) override {
int width = (box_.x_max - box_.x_min + 1) * 2;
int height = (box_.y_max - box_.y_min + 1) * 2;
auto data = graph_function_(width, height);
int i = 0;
for (int x = box_.x_min; x <= box_.x_max; ++x) {
int height_1 = 2 * box_.y_max - data[i++];
int height_2 = 2 * box_.y_max - data[i++];
for (int y = box_.y_min; y <= box_.y_max; ++y) {
int yy = 2 * y;
int i_1 = yy < height_1 ? 0 : yy == height_1 ? 3 : 6;
int i_2 = yy < height_2 ? 0 : yy == height_2 ? 1 : 2;
wchar_t pix = charset[i_1 + i_2];
screen.at(x, y) = pix;
}
}
}
private:
2019-01-27 09:33:06 +08:00
GraphFunction graph_function_;
2019-01-27 04:52:55 +08:00
};
Element graph(GraphFunction graph_function) {
return std::make_shared<Graph>(graph_function);
2019-01-27 04:52:55 +08:00
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui