use bitflags::bitflags;
use crate::imgui::ImColor32;
use crate::imgui_sys::ImDrawList;
use super::Ui;
use crate::imgui::render::renderer::TextureId;
use std::marker::PhantomData;
bitflags!(
#[repr(C)]
pub struct DrawFlags: u32 {
const NONE = crate::imgui_sys::ImDrawFlags_None;
const CLOSED = crate::imgui_sys::ImDrawFlags_Closed;
const ROUND_CORNERS_TOP_LEFT = crate::imgui_sys::ImDrawFlags_RoundCornersTopLeft;
const ROUND_CORNERS_TOP_RIGHT = crate::imgui_sys::ImDrawFlags_RoundCornersTopRight;
const ROUND_CORNERS_BOT_LEFT = crate::imgui_sys::ImDrawFlags_RoundCornersBottomLeft;
const ROUND_CORNERS_BOT_RIGHT = crate::imgui_sys::ImDrawFlags_RoundCornersBottomRight;
const ROUND_CORNERS_TOP = crate::imgui_sys::ImDrawFlags_RoundCornersTop;
const ROUND_CORNERS_BOT = crate::imgui_sys::ImDrawFlags_RoundCornersBottom;
const ROUND_CORNERS_LEFT = crate::imgui_sys::ImDrawFlags_RoundCornersLeft;
const ROUND_CORNERS_RIGHT = crate::imgui_sys::ImDrawFlags_RoundCornersRight;
const ROUND_CORNERS_ALL = crate::imgui_sys::ImDrawFlags_RoundCornersAll;
const ROUND_CORNERS_NONE = crate::imgui_sys::ImDrawFlags_RoundCornersNone;
}
);
bitflags!(
#[repr(C)]
pub struct DrawListFlags: u32 {
const NONE = crate::imgui_sys::ImDrawListFlags_None;
const ANTI_ALIASED_LINES = crate::imgui_sys::ImDrawListFlags_AntiAliasedLines;
const ANTI_ALIASED_LINES_USE_TEX = crate::imgui_sys::ImDrawListFlags_AntiAliasedLinesUseTex;
const ANTI_ALIASED_FILL = crate::imgui_sys::ImDrawListFlags_AntiAliasedFill;
const ALLOW_VTX_OFFSET = crate::imgui_sys::ImDrawListFlags_AllowVtxOffset;
}
);
pub struct DrawListMut<'ui> {
draw_list: *mut ImDrawList,
_phantom: PhantomData<&'ui Ui<'ui>>,
}
static DRAW_LIST_LOADED: std::sync::atomic::AtomicBool = std::sync::atomic::AtomicBool::new(false);
impl<'ui> Drop for DrawListMut<'ui> {
fn drop(&mut self) {
DRAW_LIST_LOADED.store(false, std::sync::atomic::Ordering::Release);
}
}
impl<'ui> DrawListMut<'ui> {
fn lock_draw_list() {
let already_loaded = DRAW_LIST_LOADED
.compare_exchange(
false,
true,
std::sync::atomic::Ordering::Acquire,
std::sync::atomic::Ordering::Relaxed,
)
.is_err();
if already_loaded {
panic!("DrawListMut is already loaded! You can only load one instance of it!")
}
}
#[doc(alias = "GetWindowDrawList")]
pub(crate) fn window(_: &Ui<'ui>) -> Self {
Self::lock_draw_list();
Self {
draw_list: unsafe { crate::imgui_sys::igGetWindowDrawList() },
_phantom: PhantomData,
}
}
#[doc(alias = "GetBackgroundDrawList")]
pub(crate) fn background(_: &Ui<'ui>) -> Self {
Self::lock_draw_list();
Self {
draw_list: unsafe { crate::imgui_sys::igGetBackgroundDrawList() },
_phantom: PhantomData,
}
}
#[doc(alias = "GetForegroundDrawList")]
pub(crate) fn foreground(_: &Ui<'ui>) -> Self {
Self::lock_draw_list();
Self {
draw_list: unsafe { crate::imgui_sys::igGetForegroundDrawList() },
_phantom: PhantomData,
}
}
#[doc(alias = "ChannelsSplit")]
pub fn channels_split<F: FnOnce(&ChannelsSplit)>(&self, channels_count: u32, f: F) {
unsafe {
crate::imgui_sys::ImDrawList_ChannelsSplit(self.draw_list, channels_count as i32)
};
f(&ChannelsSplit {
draw_list: self,
channels_count,
});
unsafe { crate::imgui_sys::ImDrawList_ChannelsMerge(self.draw_list) };
}
}
pub struct ChannelsSplit<'ui> {
draw_list: &'ui DrawListMut<'ui>,
channels_count: u32,
}
impl<'ui> ChannelsSplit<'ui> {
#[doc(alias = "ChannelsSetCurrent")]
pub fn set_current(&self, channel_index: u32) {
assert!(
channel_index < self.channels_count,
"Channel cannot be set! Provided channel index ({}) is higher than channel count ({}).",
channel_index,
self.channels_count
);
unsafe {
crate::imgui_sys::ImDrawList_ChannelsSetCurrent(
self.draw_list.draw_list,
channel_index as i32,
)
};
}
}
impl<'ui> DrawListMut<'ui> {
#[doc(alias = "AddLine")]
pub fn add_line<C>(&'ui self, p1: [f32; 2], p2: [f32; 2], c: C) -> Line<'ui>
where
C: Into<ImColor32>,
{
Line::new(self, p1, p2, c)
}
#[doc(alias = "AddRectFilled", alias = "AddRect")]
pub fn add_rect<C>(&'ui self, p1: [f32; 2], p2: [f32; 2], c: C) -> Rect<'ui>
where
C: Into<ImColor32>,
{
Rect::new(self, p1, p2, c)
}
#[doc(alias = "AddRectFilledMultiColor")]
pub fn add_rect_filled_multicolor<C1, C2, C3, C4>(
&self,
p1: [f32; 2],
p2: [f32; 2],
col_upr_left: C1,
col_upr_right: C2,
col_bot_right: C3,
col_bot_left: C4,
) where
C1: Into<ImColor32>,
C2: Into<ImColor32>,
C3: Into<ImColor32>,
C4: Into<ImColor32>,
{
unsafe {
crate::imgui_sys::ImDrawList_AddRectFilledMultiColor(
self.draw_list,
p1.into(),
p2.into(),
col_upr_left.into().into(),
col_upr_right.into().into(),
col_bot_right.into().into(),
col_bot_left.into().into(),
);
}
}
#[doc(alias = "AddTriangleFilled", alias = "AddTriangle")]
pub fn add_triangle<C>(
&'ui self,
p1: [f32; 2],
p2: [f32; 2],
p3: [f32; 2],
c: C,
) -> Triangle<'ui>
where
C: Into<ImColor32>,
{
Triangle::new(self, p1, p2, p3, c)
}
#[doc(alias = "AddCircleFilled", alias = "AddCircle")]
pub fn add_circle<C>(&'ui self, center: [f32; 2], radius: f32, color: C) -> Circle<'ui>
where
C: Into<ImColor32>,
{
Circle::new(self, center, radius, color)
}
#[doc(alias = "AddText")]
pub fn add_text<C, T>(&self, pos: [f32; 2], col: C, text: T)
where
C: Into<ImColor32>,
T: AsRef<str>,
{
use std::os::raw::c_char;
let text = text.as_ref();
unsafe {
let start = text.as_ptr() as *const c_char;
let end = (start as usize + text.len()) as *const c_char;
crate::imgui_sys::ImDrawList_AddTextVec2(
self.draw_list,
pos.into(),
col.into().into(),
start,
end,
)
}
}
#[doc(alias = "AddBezier", alias = "AddBezierCubic")]
pub fn add_bezier_curve<C>(
&'ui self,
pos0: [f32; 2],
cp0: [f32; 2],
cp1: [f32; 2],
pos1: [f32; 2],
color: C,
) -> BezierCurve<'ui>
where
C: Into<ImColor32>,
{
BezierCurve::new(self, pos0, cp0, cp1, pos1, color)
}
#[doc(alias = "PushClipRect", alias = "PopClipRect")]
pub fn with_clip_rect<F>(&self, min: [f32; 2], max: [f32; 2], f: F)
where
F: FnOnce(),
{
unsafe {
crate::imgui_sys::ImDrawList_PushClipRect(self.draw_list, min.into(), max.into(), false)
}
f();
unsafe { crate::imgui_sys::ImDrawList_PopClipRect(self.draw_list) }
}
#[doc(alias = "PushClipRect", alias = "PopClipRect")]
pub fn with_clip_rect_intersect<F>(&self, min: [f32; 2], max: [f32; 2], f: F)
where
F: FnOnce(),
{
unsafe {
crate::imgui_sys::ImDrawList_PushClipRect(self.draw_list, min.into(), max.into(), true)
}
f();
unsafe { crate::imgui_sys::ImDrawList_PopClipRect(self.draw_list) }
}
}
impl<'ui> DrawListMut<'ui> {
pub fn add_image(&'ui self, texture_id: TextureId, p_min: [f32; 2], p_max: [f32; 2]) -> Image {
Image::new(self, texture_id, p_min, p_max)
}
pub fn add_image_quad(
&'ui self,
texture_id: TextureId,
p1: [f32; 2],
p2: [f32; 2],
p3: [f32; 2],
p4: [f32; 2],
) -> ImageQuad {
ImageQuad::new(self, texture_id, p1, p2, p3, p4)
}
pub fn add_image_rounded(
&'ui self,
texture_id: TextureId,
p_min: [f32; 2],
p_max: [f32; 2],
rounding: f32,
) -> ImageRounded {
ImageRounded::new(self, texture_id, p_min, p_max, rounding)
}
}
#[must_use = "should call .build() to draw the object"]
pub struct Line<'ui> {
p1: [f32; 2],
p2: [f32; 2],
color: ImColor32,
thickness: f32,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> Line<'ui> {
fn new<C>(draw_list: &'ui DrawListMut, p1: [f32; 2], p2: [f32; 2], c: C) -> Self
where
C: Into<ImColor32>,
{
Self {
p1,
p2,
color: c.into(),
thickness: 1.0,
draw_list,
}
}
pub fn thickness(mut self, thickness: f32) -> Self {
self.thickness = thickness;
self
}
pub fn build(self) {
unsafe {
crate::imgui_sys::ImDrawList_AddLine(
self.draw_list.draw_list,
self.p1.into(),
self.p2.into(),
self.color.into(),
self.thickness,
)
}
}
}
#[must_use = "should call .build() to draw the object"]
pub struct Rect<'ui> {
p1: [f32; 2],
p2: [f32; 2],
color: ImColor32,
rounding: f32,
flags: DrawFlags,
thickness: f32,
filled: bool,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> Rect<'ui> {
fn new<C>(draw_list: &'ui DrawListMut, p1: [f32; 2], p2: [f32; 2], c: C) -> Self
where
C: Into<ImColor32>,
{
Self {
p1,
p2,
color: c.into(),
rounding: 0.0,
flags: DrawFlags::ROUND_CORNERS_ALL,
thickness: 1.0,
filled: false,
draw_list,
}
}
pub fn rounding(mut self, rounding: f32) -> Self {
self.rounding = rounding;
self
}
pub fn round_top_left(mut self, value: bool) -> Self {
self.flags.set(DrawFlags::ROUND_CORNERS_TOP_LEFT, value);
self
}
pub fn round_top_right(mut self, value: bool) -> Self {
self.flags.set(DrawFlags::ROUND_CORNERS_TOP_RIGHT, value);
self
}
pub fn round_bot_left(mut self, value: bool) -> Self {
self.flags.set(DrawFlags::ROUND_CORNERS_BOT_LEFT, value);
self
}
pub fn round_bot_right(mut self, value: bool) -> Self {
self.flags.set(DrawFlags::ROUND_CORNERS_BOT_RIGHT, value);
self
}
pub fn thickness(mut self, thickness: f32) -> Self {
self.thickness = thickness;
self
}
pub fn filled(mut self, filled: bool) -> Self {
self.filled = filled;
self
}
pub fn build(self) {
if self.filled {
unsafe {
crate::imgui_sys::ImDrawList_AddRectFilled(
self.draw_list.draw_list,
self.p1.into(),
self.p2.into(),
self.color.into(),
self.rounding,
self.flags.bits() as i32,
);
}
} else {
unsafe {
crate::imgui_sys::ImDrawList_AddRect(
self.draw_list.draw_list,
self.p1.into(),
self.p2.into(),
self.color.into(),
self.rounding,
self.flags.bits() as i32,
self.thickness,
);
}
}
}
}
#[must_use = "should call .build() to draw the object"]
pub struct Triangle<'ui> {
p1: [f32; 2],
p2: [f32; 2],
p3: [f32; 2],
color: ImColor32,
thickness: f32,
filled: bool,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> Triangle<'ui> {
fn new<C>(draw_list: &'ui DrawListMut, p1: [f32; 2], p2: [f32; 2], p3: [f32; 2], c: C) -> Self
where
C: Into<ImColor32>,
{
Self {
p1,
p2,
p3,
color: c.into(),
thickness: 1.0,
filled: false,
draw_list,
}
}
pub fn thickness(mut self, thickness: f32) -> Self {
self.thickness = thickness;
self
}
pub fn filled(mut self, filled: bool) -> Self {
self.filled = filled;
self
}
pub fn build(self) {
if self.filled {
unsafe {
crate::imgui_sys::ImDrawList_AddTriangleFilled(
self.draw_list.draw_list,
self.p1.into(),
self.p2.into(),
self.p3.into(),
self.color.into(),
)
}
} else {
unsafe {
crate::imgui_sys::ImDrawList_AddTriangle(
self.draw_list.draw_list,
self.p1.into(),
self.p2.into(),
self.p3.into(),
self.color.into(),
self.thickness,
)
}
}
}
}
#[must_use = "should call .build() to draw the object"]
pub struct Circle<'ui> {
center: [f32; 2],
radius: f32,
color: ImColor32,
num_segments: u32,
thickness: f32,
filled: bool,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> Circle<'ui> {
pub fn new<C>(draw_list: &'ui DrawListMut, center: [f32; 2], radius: f32, color: C) -> Self
where
C: Into<ImColor32>,
{
Self {
center,
radius,
color: color.into(),
num_segments: 0,
thickness: 1.0,
filled: false,
draw_list,
}
}
pub fn num_segments(mut self, num_segments: u32) -> Self {
self.num_segments = num_segments;
self
}
pub fn thickness(mut self, thickness: f32) -> Self {
self.thickness = thickness;
self
}
pub fn filled(mut self, filled: bool) -> Self {
self.filled = filled;
self
}
pub fn build(self) {
if self.filled {
unsafe {
crate::imgui_sys::ImDrawList_AddCircleFilled(
self.draw_list.draw_list,
self.center.into(),
self.radius,
self.color.into(),
self.num_segments as i32,
)
}
} else {
unsafe {
crate::imgui_sys::ImDrawList_AddCircle(
self.draw_list.draw_list,
self.center.into(),
self.radius,
self.color.into(),
self.num_segments as i32,
self.thickness,
)
}
}
}
}
#[must_use = "should call .build() to draw the object"]
pub struct BezierCurve<'ui> {
pos0: [f32; 2],
cp0: [f32; 2],
pos1: [f32; 2],
cp1: [f32; 2],
color: ImColor32,
thickness: f32,
num_segments: Option<u32>,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> BezierCurve<'ui> {
pub fn new<C>(
draw_list: &'ui DrawListMut,
pos0: [f32; 2],
cp0: [f32; 2],
cp1: [f32; 2],
pos1: [f32; 2],
c: C,
) -> Self
where
C: Into<ImColor32>,
{
Self {
pos0,
cp0,
cp1,
pos1,
color: c.into(),
thickness: 1.0,
num_segments: None,
draw_list,
}
}
pub fn thickness(mut self, thickness: f32) -> Self {
self.thickness = thickness;
self
}
pub fn num_segments(mut self, num_segments: u32) -> Self {
self.num_segments = Some(num_segments);
self
}
pub fn build(self) {
unsafe {
crate::imgui_sys::ImDrawList_AddBezierCubic(
self.draw_list.draw_list,
self.pos0.into(),
self.cp0.into(),
self.cp1.into(),
self.pos1.into(),
self.color.into(),
self.thickness,
self.num_segments.unwrap_or(0) as i32,
)
}
}
}
#[must_use = "should call .build() to draw the object"]
pub struct Image<'ui> {
texture_id: TextureId,
p_min: [f32; 2],
p_max: [f32; 2],
uv_min: [f32; 2],
uv_max: [f32; 2],
col: ImColor32,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> Image<'ui> {
pub fn new(
draw_list: &'ui DrawListMut,
texture_id: TextureId,
p_min: [f32; 2],
p_max: [f32; 2],
) -> Self {
Self {
texture_id,
p_min,
p_max,
uv_min: [0.0, 0.0],
uv_max: [1.0, 1.0],
col: [1.0, 1.0, 1.0, 1.0].into(),
draw_list,
}
}
pub fn uv_min(mut self, uv_min: [f32; 2]) -> Self {
self.uv_min = uv_min;
self
}
pub fn uv_max(mut self, uv_max: [f32; 2]) -> Self {
self.uv_max = uv_max;
self
}
pub fn col<C>(mut self, col: C) -> Self
where
C: Into<ImColor32>,
{
self.col = col.into();
self
}
pub fn build(self) {
use std::os::raw::c_void;
unsafe {
crate::imgui_sys::ImDrawList_AddImage(
self.draw_list.draw_list,
self.texture_id.id() as *mut c_void,
self.p_min.into(),
self.p_max.into(),
self.uv_min.into(),
self.uv_max.into(),
self.col.into(),
);
}
}
}
#[must_use = "should call .build() to draw the object"]
pub struct ImageQuad<'ui> {
texture_id: TextureId,
p1: [f32; 2],
p2: [f32; 2],
p3: [f32; 2],
p4: [f32; 2],
uv1: [f32; 2],
uv2: [f32; 2],
uv3: [f32; 2],
uv4: [f32; 2],
col: ImColor32,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> ImageQuad<'ui> {
pub fn new(
draw_list: &'ui DrawListMut,
texture_id: TextureId,
p1: [f32; 2],
p2: [f32; 2],
p3: [f32; 2],
p4: [f32; 2],
) -> Self {
Self {
texture_id,
p1,
p2,
p3,
p4,
uv1: [0.0, 0.0],
uv2: [1.0, 0.0],
uv3: [1.0, 1.0],
uv4: [0.0, 1.0],
col: [1.0, 1.0, 1.0, 1.0].into(),
draw_list,
}
}
pub fn uv(mut self, uv1: [f32; 2], uv2: [f32; 2], uv3: [f32; 2], uv4: [f32; 2]) -> Self {
self.uv1 = uv1;
self.uv2 = uv2;
self.uv3 = uv3;
self.uv4 = uv4;
self
}
pub fn col<C>(mut self, col: C) -> Self
where
C: Into<ImColor32>,
{
self.col = col.into();
self
}
pub fn build(self) {
use std::os::raw::c_void;
unsafe {
crate::imgui_sys::ImDrawList_AddImageQuad(
self.draw_list.draw_list,
self.texture_id.id() as *mut c_void,
self.p1.into(),
self.p2.into(),
self.p3.into(),
self.p4.into(),
self.uv1.into(),
self.uv2.into(),
self.uv3.into(),
self.uv4.into(),
self.col.into(),
);
}
}
}
#[must_use = "should call .build() to draw the object"]
pub struct ImageRounded<'ui> {
texture_id: TextureId,
p_min: [f32; 2],
p_max: [f32; 2],
uv_min: [f32; 2],
uv_max: [f32; 2],
col: ImColor32,
rounding: f32,
draw_flags: DrawFlags,
draw_list: &'ui DrawListMut<'ui>,
}
impl<'ui> ImageRounded<'ui> {
pub fn new(
draw_list: &'ui DrawListMut,
texture_id: TextureId,
p_min: [f32; 2],
p_max: [f32; 2],
rounding: f32,
) -> Self {
Self {
texture_id,
p_min,
p_max,
uv_min: [0.0, 0.0],
uv_max: [1.0, 1.0],
col: [1.0, 1.0, 1.0, 1.0].into(),
rounding,
draw_flags: DrawFlags::ROUND_CORNERS_ALL,
draw_list,
}
}
pub fn uv_min(mut self, uv_min: [f32; 2]) -> Self {
self.uv_min = uv_min;
self
}
pub fn uv_max(mut self, uv_max: [f32; 2]) -> Self {
self.uv_max = uv_max;
self
}
pub fn col<C>(mut self, col: C) -> Self
where
C: Into<ImColor32>,
{
self.col = col.into();
self
}
pub fn round_all(mut self, value: bool) -> Self {
self.draw_flags.set(DrawFlags::ROUND_CORNERS_ALL, value);
self
}
pub fn round_top_left(mut self, value: bool) -> Self {
self.draw_flags
.set(DrawFlags::ROUND_CORNERS_TOP_LEFT, value);
self
}
pub fn round_top_right(mut self, value: bool) -> Self {
self.draw_flags
.set(DrawFlags::ROUND_CORNERS_TOP_RIGHT, value);
self
}
pub fn round_bot_left(mut self, value: bool) -> Self {
self.draw_flags
.set(DrawFlags::ROUND_CORNERS_BOT_LEFT, value);
self
}
pub fn round_bot_right(mut self, value: bool) -> Self {
self.draw_flags
.set(DrawFlags::ROUND_CORNERS_BOT_RIGHT, value);
self
}
pub fn build(self) {
use std::os::raw::c_void;
unsafe {
crate::imgui_sys::ImDrawList_AddImageRounded(
self.draw_list.draw_list,
self.texture_id.id() as *mut c_void,
self.p_min.into(),
self.p_max.into(),
self.uv_min.into(),
self.uv_max.into(),
self.col.into(),
self.rounding,
self.draw_flags.bits() as i32,
);
}
}
}