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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <pd/lithium/command.hpp>
|
|
|
|
#include <pd/lithium/font.hpp>
|
|
|
|
#include <pd/lithium/pd_p_api.hpp>
|
|
|
|
|
2025-06-22 21:05:09 +02:00
|
|
|
/** Path Rect Flags */
|
|
|
|
using LiPathRectFlags = PD::u32;
|
|
|
|
|
|
|
|
/** Setup for everything (oder so) */
|
|
|
|
enum LiPathRectFlags_ : PD::u32 {
|
|
|
|
LiPathRectFlags_None = 0,
|
|
|
|
LiPathRectFlags_KeepTopLeft = PD_BIT(0),
|
|
|
|
LiPathRectFlags_KeepTopRight = PD_BIT(1),
|
|
|
|
LiPathRectFlags_KeepBotRight = PD_BIT(2),
|
|
|
|
LiPathRectFlags_KeepBotLeft = PD_BIT(3),
|
|
|
|
LiPathRectFlags_KeepTop = PD_BIT(0) | PD_BIT(1),
|
|
|
|
LiPathRectFlags_KeepBot = PD_BIT(2) | PD_BIT(3),
|
|
|
|
LiPathRectFlags_KeepLeft = PD_BIT(0) | PD_BIT(3),
|
|
|
|
LiPathRectFlags_KeepRight = PD_BIT(1) | PD_BIT(2),
|
|
|
|
};
|
|
|
|
|
2025-04-24 16:39:24 +02:00
|
|
|
namespace PD {
|
2025-06-22 21:05:09 +02:00
|
|
|
namespace Li {
|
|
|
|
class PD_LITHIUM_API DrawList {
|
2025-04-24 16:39:24 +02:00
|
|
|
public:
|
2025-06-22 21:05:09 +02:00
|
|
|
DrawList() { DrawSolid(); }
|
|
|
|
~DrawList() { pDrawList.clear(); }
|
|
|
|
|
|
|
|
/** Require Copy and Move Constructors */
|
|
|
|
|
|
|
|
DrawList(const DrawList&) = delete;
|
|
|
|
DrawList& operator=(const DrawList&) = delete;
|
|
|
|
|
|
|
|
DrawList(DrawList&&) noexcept = default;
|
|
|
|
DrawList& operator=(DrawList&&) noexcept = default;
|
|
|
|
|
|
|
|
PD_SHARED(DrawList);
|
2025-04-24 16:39:24 +02:00
|
|
|
|
|
|
|
Command::Ref PreGenerateCmd();
|
2025-06-22 21:05:09 +02:00
|
|
|
void AddCommand(Command::Ref v) { pDrawList.push_back(std::move(v)); }
|
|
|
|
void Clear() { pDrawList.clear(); }
|
2025-04-24 16:39:24 +02:00
|
|
|
|
|
|
|
void SetFont(Font::Ref font) { pCurrentFont = font; }
|
|
|
|
void SetFontScale(float scale) { pFontScale = scale; }
|
|
|
|
|
2025-06-22 21:05:09 +02:00
|
|
|
void DrawSolid();
|
2025-04-24 16:39:24 +02:00
|
|
|
void DrawTexture(Texture::Ref tex) { CurrentTex = tex; }
|
|
|
|
|
|
|
|
// SECTION: Draw API //
|
|
|
|
|
|
|
|
void DrawRect(const fvec2& pos, const fvec2& size, u32 color,
|
|
|
|
int thickness = 1);
|
|
|
|
void DrawRectFilled(const fvec2& pos, const fvec2& size, u32 color);
|
|
|
|
void DrawTriangle(const fvec2& a, const fvec2& b, const fvec2& c, u32 color,
|
|
|
|
int thickness = 1);
|
|
|
|
void DrawTriangleFilled(const fvec2& a, const fvec2& b, const fvec2& c,
|
|
|
|
u32 color);
|
|
|
|
void DrawCircle(const fvec2& center, float rad, u32 color, int num_segments,
|
|
|
|
int thickness = 1);
|
|
|
|
void DrawCircleFilled(const fvec2& center, float rad, u32 color,
|
|
|
|
int num_segments);
|
|
|
|
void DrawText(const fvec2& p, const std::string& text, u32 color);
|
2025-06-22 21:05:09 +02:00
|
|
|
/**
|
|
|
|
* Extended Draw Text Function
|
|
|
|
*/
|
|
|
|
void DrawTextEx(const fvec2& p, const std::string& text, u32 color,
|
|
|
|
LiTextFlags flags, fvec2 box = fvec2(0.f));
|
|
|
|
void DrawLine(const fvec2& a, const fvec2& b, u32 color, int t = 1);
|
2025-04-24 16:39:24 +02:00
|
|
|
/**
|
|
|
|
* Take list of points and display it as a line on screen
|
|
|
|
* @param points List of Positions
|
|
|
|
* @param clr Color of the Line
|
|
|
|
* @param flags Additional Flags (Close for go back to starting point)
|
|
|
|
* @param thickness Thickness of the Line
|
|
|
|
*/
|
|
|
|
void DrawPolyLine(const Vec<fvec2>& points, u32 clr, u32 flags = 0,
|
|
|
|
int thickness = 1);
|
|
|
|
/**
|
|
|
|
* Take a List ofpoints and display it as Filled Shape
|
|
|
|
* @note Keep in mind to setup the list of points clockwise
|
|
|
|
* @param points List of Points
|
|
|
|
* @param clr Color of the shape
|
|
|
|
*/
|
|
|
|
void DrawConvexPolyFilled(const Vec<fvec2>& points, u32 clr);
|
|
|
|
|
|
|
|
// SECTION: PATH API //
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to reserve Memory to prevent overhead on
|
|
|
|
* pusing a lot of points with PathNext
|
|
|
|
* @param num_points Number of Positions you want to add
|
|
|
|
*/
|
|
|
|
void PathReserve(size_t num_points) {
|
|
|
|
pPath.Reserve(pPath.Size() + num_points);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Clear current Path
|
|
|
|
* @note PathStroke and PathFill will automatically clear
|
|
|
|
*/
|
|
|
|
void PathClear() { pPath.Clear(); }
|
|
|
|
/**
|
|
|
|
* Add a Point to the Path
|
|
|
|
* @note Keep in mind that this function is used for
|
|
|
|
* setting the starting point
|
|
|
|
* @param v Position to add
|
|
|
|
*/
|
|
|
|
void PathAdd(const fvec2& v) { pPath.Add(v); }
|
|
|
|
/**
|
|
|
|
* Path Stroke Create Line from point to point
|
|
|
|
* @note For Primitives like Rect or Triangle mak sure to use
|
|
|
|
* UI7DrawFlags_Close to add a line back to the starting point
|
|
|
|
* @param clr Color od the line
|
|
|
|
* @param thickness Thickness of the line
|
|
|
|
* @param flags Additional Drawflags
|
|
|
|
*/
|
|
|
|
void PathStroke(u32 clr, int thickness = 1, u32 flags = 0) {
|
|
|
|
DrawPolyLine(pPath, clr, flags, thickness);
|
|
|
|
pPath.Clear();
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Fill a Path with a Color
|
|
|
|
* @note **IMPORTANT: ** Paths need to be setup clockwise
|
|
|
|
* to be rendered correctly
|
|
|
|
* @param clr Fill Color
|
|
|
|
*/
|
|
|
|
void PathFill(u32 clr) {
|
|
|
|
DrawConvexPolyFilled(pPath, clr);
|
|
|
|
pPath.Clear();
|
|
|
|
}
|
|
|
|
void PathArcToN(const fvec2& c, float radius, float a_min, float a_max,
|
|
|
|
int segments);
|
2025-06-22 21:05:09 +02:00
|
|
|
void PathFastArcToN(const fvec2& c, float r, float amin, float amax, int s);
|
|
|
|
/// @brief Create a Path Rect (uses to Positions instead of Pos/Size)
|
|
|
|
/// @param a Top Left Position
|
|
|
|
/// @param b Bottom Right Position
|
|
|
|
/// @param rounding rounding
|
|
|
|
void PathRect(fvec2 a, fvec2 b, float rounding = 0.f);
|
2025-04-24 16:39:24 +02:00
|
|
|
/// @brief Create a Path Rect (uses to Positions instead of Pos/Size)
|
|
|
|
/// @param a Top Left Position
|
|
|
|
/// @param b Bottom Right Position
|
|
|
|
/// @param rounding rounding
|
|
|
|
/// @param flags DrawFlags (for special rounding rules)
|
2025-06-22 21:05:09 +02:00
|
|
|
void PathRectEx(fvec2 a, fvec2 b, float rounding = 0.f, u32 flags = 0);
|
|
|
|
|
|
|
|
void PushClipRect(const fvec4& cr) { pClipRects.Push(cr); }
|
|
|
|
void PopClipRect() {
|
|
|
|
if (pClipRects.IsEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pClipRects.Pop();
|
|
|
|
}
|
|
|
|
/** One linear Clip rect Setup */
|
|
|
|
void pClipCmd(Command* cmd);
|
|
|
|
|
|
|
|
/** Data Section */
|
2025-04-24 16:39:24 +02:00
|
|
|
|
2025-06-22 21:05:09 +02:00
|
|
|
Stack<fvec4> pClipRects;
|
|
|
|
int Layer;
|
2025-04-24 16:39:24 +02:00
|
|
|
float pFontScale = 0.7f;
|
2025-06-22 21:05:09 +02:00
|
|
|
Font::Ref pCurrentFont;
|
|
|
|
Texture::Ref CurrentTex;
|
|
|
|
std::vector<Command::Ref> pDrawList;
|
2025-04-24 16:39:24 +02:00
|
|
|
PD::Vec<fvec2> pPath;
|
|
|
|
};
|
2025-06-22 21:05:09 +02:00
|
|
|
} // namespace Li
|
|
|
|
} // namespace PD
|