2025-06-22 21:05:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/*
|
|
|
|
MIT License
|
|
|
|
Copyright (c) 2024 - 2025 René Amthor (tobid7)
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <pd/core/core.hpp>
|
|
|
|
#include <pd/lithium/command.hpp>
|
|
|
|
#include <pd/lithium/texture.hpp>
|
|
|
|
|
|
|
|
using LiBackendFlags = PD::u32;
|
|
|
|
enum LiBackendFlags_ {
|
|
|
|
LiBackendFlags_None = 0,
|
|
|
|
LiBackendFlags_FlipUV_Y = PD_BIT(0), // Essential for font loading
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace PD {
|
|
|
|
class GfxDriver {
|
|
|
|
public:
|
|
|
|
GfxDriver(const std::string& name = "NullGfx") : pName(name) {};
|
|
|
|
~GfxDriver() = default;
|
|
|
|
|
|
|
|
PD_SHARED(GfxDriver);
|
|
|
|
|
|
|
|
void PostInit();
|
|
|
|
|
|
|
|
virtual void Init() {}
|
|
|
|
virtual void Deinit() {}
|
|
|
|
virtual void NewFrame() {}
|
|
|
|
|
2025-08-14 20:37:55 +02:00
|
|
|
virtual void BindTex(Li::TexAddress addr) {}
|
2025-06-22 21:05:09 +02:00
|
|
|
|
2025-08-14 20:37:55 +02:00
|
|
|
virtual void RenderDrawData(const std::vector<Li::Command::Ref>& Commands) {}
|
2025-06-22 21:05:09 +02:00
|
|
|
|
2025-07-23 23:21:34 +02:00
|
|
|
void SetViewPort(const ivec2& vp) { ViewPort = vp; }
|
|
|
|
|
2025-08-14 20:37:55 +02:00
|
|
|
virtual Li::Texture::Ref LoadTex(
|
2025-06-22 21:05:09 +02:00
|
|
|
const std::vector<u8>& pixels, int w, int h,
|
2025-08-14 20:37:55 +02:00
|
|
|
Li::Texture::Type type = Li::Texture::Type::RGBA32,
|
|
|
|
Li::Texture::Filter filter = Li::Texture::Filter::LINEAR) {
|
2025-06-22 21:05:09 +02:00
|
|
|
// Texture loading not supported (when this func not get override)
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2025-08-14 20:37:55 +02:00
|
|
|
Li::Texture::Ref GetSolidTex() { return pSolid; }
|
2025-06-22 21:05:09 +02:00
|
|
|
|
|
|
|
const std::string pName = "NullGfx";
|
|
|
|
LiBackendFlags Flags = 0;
|
|
|
|
ivec2 ViewPort;
|
2025-08-14 20:37:55 +02:00
|
|
|
Mat4 Projection;
|
|
|
|
Li::Texture::Ref pSolid;
|
|
|
|
size_t CurrentVertex = 0;
|
|
|
|
size_t CurrentIndex = 0;
|
2025-06-22 21:05:09 +02:00
|
|
|
|
|
|
|
/** Debug Variables */
|
|
|
|
|
|
|
|
// Optional Index counter
|
|
|
|
u32 IndexCounter;
|
|
|
|
// Optional Vertex counter
|
|
|
|
u32 VertexCounter;
|
|
|
|
// Optional Frame Counter
|
|
|
|
u64 FrameCounter;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Static Gfx Controller */
|
|
|
|
class Gfx {
|
|
|
|
public:
|
|
|
|
Gfx() = default;
|
|
|
|
~Gfx() = default;
|
|
|
|
|
|
|
|
static void Init(GfxDriver::Ref d);
|
|
|
|
|
|
|
|
static void Deinit() { pGfx->Deinit(); }
|
|
|
|
static void NewFrame() { pGfx->NewFrame(); }
|
|
|
|
|
2025-08-14 20:37:55 +02:00
|
|
|
static void BindTex(Li::TexAddress addr) { pGfx->BindTex(addr); }
|
2025-07-23 23:21:34 +02:00
|
|
|
static void SetViewPort(const ivec2& vp) { pGfx->SetViewPort(vp); }
|
2025-06-22 21:05:09 +02:00
|
|
|
|
2025-08-14 20:37:55 +02:00
|
|
|
static void RenderDrawData(const std::vector<Li::Command::Ref>& Commands) {
|
2025-06-22 21:05:09 +02:00
|
|
|
pGfx->RenderDrawData(Commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
static LiBackendFlags Flags() { return pGfx->Flags; }
|
2025-08-14 20:37:55 +02:00
|
|
|
static Li::Texture::Ref LoadTex(
|
2025-06-22 21:05:09 +02:00
|
|
|
const std::vector<u8>& pixels, int w, int h,
|
2025-08-14 20:37:55 +02:00
|
|
|
Li::Texture::Type type = Li::Texture::Type::RGBA32,
|
|
|
|
Li::Texture::Filter filter = Li::Texture::Filter::LINEAR) {
|
2025-06-22 21:05:09 +02:00
|
|
|
return pGfx->LoadTex(pixels, w, h, type, filter);
|
|
|
|
}
|
|
|
|
|
2025-08-14 20:37:55 +02:00
|
|
|
static Li::Texture::Ref GetSolidTex() { return pGfx->GetSolidTex(); }
|
2025-06-22 21:05:09 +02:00
|
|
|
|
|
|
|
static GfxDriver::Ref pGfx;
|
|
|
|
};
|
|
|
|
} // namespace PD
|