From 45e3ae285c63d91dcac426cffdd9d9648e48399b Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 8 Jun 2022 16:29:16 +0200 Subject: refactor: move components to game folder --- src/game/components/statusline.hpp | 48 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/game/components/statusline.hpp (limited to 'src/game/components/statusline.hpp') diff --git a/src/game/components/statusline.hpp b/src/game/components/statusline.hpp new file mode 100644 index 0000000..8c1969b --- /dev/null +++ b/src/game/components/statusline.hpp @@ -0,0 +1,48 @@ +#pragma once + +#include "interfaces/matrix.hpp" +#include "interfaces/statusline.hpp" + +#include "engine/data/vector2.hpp" + +#include +#include +#include + +constexpr uint32_t STATUSLINE_COLOR = 0x1A1A1AU; + +class StatusLine : public IStatusLine +{ +public: + explicit StatusLine(std::shared_ptr component_matrix) noexcept; + + auto get() const noexcept -> const std::shared_ptr & override; + + [[nodiscard]] auto get_need_render() const noexcept -> bool override; + + void set_need_render(bool need_render) noexcept override; + + auto get_foreground_color() const noexcept -> uint32_t override; + + auto get_background_color() const noexcept -> uint32_t override; + + void set_status( + StatusLineSection section, + const std::string_view &status, + int32_t start) noexcept override; + + void set_section_length(StatusLineSection section, int32_t length) noexcept override; + +private: + std::shared_ptr _component_matrix; + std::unordered_map _section_lengths; + bool _need_render; + + void + _matrix_write_string(const Vector2 &position, const std::string_view &str) noexcept; + + [[nodiscard]] auto _get_section_start_x(StatusLineSection section) const noexcept + -> int32_t; + + void _clear_section(StatusLineSection section, int32_t start) noexcept; +}; -- cgit v1.2.3-18-g5258