2025-04-24 16:39:24 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/*
|
|
|
|
MIT License
|
|
|
|
|
|
|
|
Copyright (c) 2024 - 2025 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.
|
2025-06-22 21:05:09 +02:00
|
|
|
*/
|
2025-04-24 16:39:24 +02:00
|
|
|
|
|
|
|
#include <3ds.h>
|
|
|
|
#include <citro3d.h>
|
|
|
|
|
2025-06-22 21:05:09 +02:00
|
|
|
#include <pd/lithium/lithium.hpp>
|
2025-04-24 16:39:24 +02:00
|
|
|
|
|
|
|
namespace PD {
|
|
|
|
template <typename T>
|
|
|
|
class LinearAlloc : public Allocator<T> {
|
|
|
|
public:
|
|
|
|
LinearAlloc() = default;
|
|
|
|
~LinearAlloc() = default;
|
|
|
|
|
2025-05-02 15:09:21 +02:00
|
|
|
/** Never forget the sizeof(T) again (most painful bug i created) */
|
|
|
|
T* Allocate(size_t n) override { return (T*)linearAlloc(n * sizeof(T)); }
|
2025-04-24 16:39:24 +02:00
|
|
|
void Deallocate(T* ptr) { linearFree(ptr); }
|
|
|
|
};
|
2025-06-22 21:05:09 +02:00
|
|
|
|
|
|
|
namespace Li {
|
|
|
|
class GfxC3D : public GfxDriver {
|
2025-04-24 16:39:24 +02:00
|
|
|
public:
|
2025-06-22 21:05:09 +02:00
|
|
|
GfxC3D() : GfxDriver("Citro3D") {}
|
|
|
|
~GfxC3D() = default;
|
2025-04-24 16:39:24 +02:00
|
|
|
|
2025-06-22 21:05:09 +02:00
|
|
|
PD_SHARED(GfxC3D);
|
2025-04-24 16:39:24 +02:00
|
|
|
|
2025-06-22 21:05:09 +02:00
|
|
|
void Init() override;
|
2025-04-24 16:39:24 +02:00
|
|
|
void Deinit() override;
|
|
|
|
void NewFrame() override;
|
2025-06-22 21:05:09 +02:00
|
|
|
void BindTex(PD::Li::TexAddress addr) override;
|
|
|
|
void RenderDrawData(
|
|
|
|
const std::vector<PD::Li::Command::Ref>& Commands) override;
|
|
|
|
PD::Li::Texture::Ref LoadTex(
|
2025-04-24 16:39:24 +02:00
|
|
|
const std::vector<PD::u8>& pixels, int w, int h,
|
2025-06-22 21:05:09 +02:00
|
|
|
PD::Li::Texture::Type type = PD::Li::Texture::Type::RGBA32,
|
|
|
|
PD::Li::Texture::Filter filter =
|
|
|
|
PD::Li::Texture::Filter::LINEAR) override;
|
2025-04-24 16:39:24 +02:00
|
|
|
|
|
|
|
Vec<Vertex, LinearAlloc<Vertex>> VertexBuffer;
|
|
|
|
Vec<u16, LinearAlloc<u16>> IndexBuffer;
|
|
|
|
size_t CurrentVertex = 0;
|
|
|
|
size_t CurrentIndex = 0;
|
|
|
|
Mat4 Projection;
|
|
|
|
int pLocProjection = 0;
|
|
|
|
DVLB_s* ShaderCode;
|
|
|
|
shaderProgram_s Shader;
|
|
|
|
C3D_AttrInfo ShaderInfo;
|
2025-06-22 21:05:09 +02:00
|
|
|
// Stats oder so IDNK zu lange her
|
|
|
|
PD::u32 NumVtx;
|
|
|
|
PD::u32 NumIdx;
|
2025-04-24 16:39:24 +02:00
|
|
|
};
|
2025-06-22 21:05:09 +02:00
|
|
|
} // namespace Li
|
2025-04-24 16:39:24 +02:00
|
|
|
} // namespace PD
|