AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
AImage.h
    1/*
    2 * AUI Framework - Declarative UI toolkit for modern C++20
    3 * Copyright (C) 2020-2025 Alex2772 and Contributors
    4 *
    5 * SPDX-License-Identifier: MPL-2.0
    6 *
    7 * This Source Code Form is subject to the terms of the Mozilla Public
    8 * License, v. 2.0. If a copy of the MPL was not distributed with this
    9 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
   10 */
   11
   12//
   13// Created by alex2772 on 25.07.2018.
   14//
   15
   16#pragma once
   17
   18#include <AUI/Image/AImageView.h>
   19
   25class API_AUI_IMAGE AImage : public AImageView {
   26private:
   27    class Cache;
   28    friend class ::Cache<AImage, Cache, AUrl>;
   29    friend class AImageLoaderRegistry;
   30    friend class AImageView;
   31
   32    void setPixelAt(std::uint32_t index, glm::ivec4 color);
   33
   34public:
   35    AImage() = default;
   36
   37    explicit AImage(AImageView imageView) : AImage(imageView.buffer(), imageView.size(), imageView.format()) {}
   38
   39    AImage(AByteBuffer buffer, glm::uvec2 size, APixelFormat format) : mOwnedBuffer(std::move(buffer)) {
   40        mSize = size;
   41        mFormat = format;
   42        mData = mOwnedBuffer;
   43    }
   44
   45    AImage(glm::uvec2 size, APixelFormat format) {
   46        mSize = size;
   47        mFormat = format;
   48        allocate();
   49    }
   50
   51    [[nodiscard]]
   52    AByteBuffer& modifiableBuffer() noexcept {
   53        return mOwnedBuffer;
   54    }
   55
   56    template <AImageVisitor Visitor>
   57    auto visit(Visitor&& visitor);
   58
   59    void set(glm::uvec2 position, Color c) noexcept;
   60
   61    void insert(glm::uvec2 position, AImageView image);
   62
   63    void fill(Color color);
   64
   65    void mirrorVertically();
   66
   67    [[nodiscard]]
   68    static _<AImage> fromUrl(const AUrl& url);
   69
   70    [[nodiscard]]
   71    static _<AImage> fromFile(const APath& path);
   72
   73    [[nodiscard]]
   74    static _<AImage> fromBuffer(AByteBufferView buffer);
   75
   76private:
   77    AByteBuffer mOwnedBuffer;
   78
   79    void allocate() {
   80        mOwnedBuffer.resize(width() * height() * bytesPerPixel());
   81        mData = mOwnedBuffer;
   82    }
   83};
   84
   89template <auto f>
   90class AFormattedImage : public AImage {
   91public:
   92    using Color = AFormattedColor<f>;
   93    static constexpr auto FORMAT = f;
   94
   95    AFormattedImage() { mFormat = f; }
   96
   97    AFormattedImage(AByteBuffer data, glm::uvec2 size) : AImage(std::move(data), size, f) {}
   98    AFormattedImage(glm::uvec2 size) : AImage(size, f) {}
   99
  100    constexpr int format() const noexcept { return f; }
  101
  102    [[nodiscard]]
  103    const Color& get(glm::uvec2 position) const noexcept {
  104        return reinterpret_cast<const Color&>(rawDataAt(position));
  105    }
  106
  107    void set(glm::uvec2 position, Color color) noexcept { const_cast<Color&>(get(position)) = color; }
  108
  109    void setWithPositionCheck(glm::uvec2 position, Color color) noexcept {
  110        if (glm::any(glm::greaterThanEqual(position, size()))) {
  111            return;
  112        }
  113        const_cast<Color&>(get(position)) = color;
  114    }
  115
  116    [[nodiscard]]
  117    const Color* begin() const noexcept {
  118        return reinterpret_cast<const Color*>(AImageView::data());
  119    }
  120
  121    [[nodiscard]]
  122    const Color* end() const noexcept {
  123        return reinterpret_cast<const Color*>(AImageView::data()) + (width() * height());
  124    }
  125
  126    [[nodiscard]]
  127    Color* begin() noexcept {
  128        return reinterpret_cast<Color*>(AImage::modifiableBuffer().begin());
  129    }
  130
  131    [[nodiscard]]
  132    Color* end() noexcept {
  133        return reinterpret_cast<Color*>(AImage::modifiableBuffer().end());
  134    }
  135
  136    void fill(Color color) { std::fill(begin(), end(), color); }
  137
  138    [[nodiscard]]
  139    Color averageColor() const noexcept {
  140        Color accumulator;
  141        aui::zero(accumulator);
  142
  143        for (auto i = begin(); i != end(); ++i) {
  144            accumulator += *i;
  145        }
  146
  147        return accumulator / (width() * height());
  148    }
  149};
  150
  151template <AImageVisitor Visitor>
  152auto AImage::visit(Visitor&& visitor) {
  153    return AImageView::visit([&](const auto& image) {
  154        static constexpr int format = std::decay_t<decltype(image)>::FORMAT;
  155        return visitor(const_cast<AFormattedImage<format>&>(reinterpret_cast<const AFormattedImage<format>&>(image)));
  156    });
  157}
Acts like std::string_view but for AByteBuffer.
Definition AByteBufferView.h:24
std::vector-like growing array for byte storage.
Definition AByteBuffer.h:31
void resize(size_t s)
Definition AByteBuffer.h:185
Same as AImage but all universal AColor methods replaced with concrete specific AFormattedColor type ...
Definition AImage.h:90
unsigned width() const noexcept
Definition AImageView.h:87
unsigned height() const noexcept
Definition AImageView.h:95
std::uint8_t bytesPerPixel() const noexcept
Definition AImageView.h:111
const char & rawDataAt(glm::uvec2 position) const noexcept
Retrieves reference to raw data at specified position.
Definition AImageView.h:151
AByteBufferView buffer() const noexcept
Definition AImageView.h:71
glm::uvec2 size() const noexcept
Definition AImageView.h:79
const char * data() const noexcept
Shortcut to buffer().data().
Definition AImageView.h:172
APixelFormat format() const noexcept
Definition AImageView.h:103
An add-on to AString with functions for working with the path.
Definition APath.h:128
Pixel in-memory format descriptor (type, count and order of subpixel components).
Definition APixelFormat.h:27
Uniform Resource Locator implementation.
Definition AUrl.h:31
Definition Cache.h:20
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179