#include "string_matrix.hpp" StringMatrix::StringMatrix(const Bounds &bounds) noexcept : _rows(bounds.get_height()), _columns(bounds.get_width()) { _matrix.reserve(bounds.get_height()); _matrix.assign(_matrix.capacity(), std::vector(bounds.get_width())); }; void StringMatrix::fill(std::string_view element) noexcept { for (uint32_t row = 0U; row < _matrix.capacity(); row++) { std::vector row_vector = _matrix[row]; for (uint32_t column = 0U; column < row_vector.capacity(); column++) { _matrix[row][column] = element; } } } std::string_view StringMatrix::get(const Vector2 &pos) const noexcept { auto x = static_cast(pos.get_x()); auto y = static_cast(pos.get_y()); return _matrix[y][x]; } void StringMatrix::set(const Vector2 &pos, std::string_view element) noexcept { auto x = static_cast(pos.get_x()); auto y = static_cast(pos.get_y()); _matrix[y][x] = element; } uint32_t StringMatrix::rows() const noexcept { return _rows; } uint32_t StringMatrix::columns() const noexcept { return _columns; }