Skip to content

Commit

Permalink
Fixed formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
StarArawn committed Mar 24, 2024
1 parent f99136a commit e455ebe
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 111 deletions.
6 changes: 5 additions & 1 deletion src/render_primitive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,11 @@ impl RenderPrimitive for KStyle {
);
}
}
RenderCommand::NinePatch { border, handle, scale } => {
RenderCommand::NinePatch {
border,
handle,
scale,
} => {
let mut nines = crate::render::nine_patch::extract_nine_patch(
camera_entity,
*layout,
Expand Down
220 changes: 110 additions & 110 deletions src/widgets/nine_patch.rs
Original file line number Diff line number Diff line change
@@ -1,110 +1,110 @@
use bevy::prelude::{Bundle, Commands, Component, Entity, Handle, Image, In, Query, Res};

use crate::{
children::KChildren,
context::WidgetName,
on_event::OnEvent,
prelude::KayakWidgetContext,
styles::{ComputedStyles, Edge, KStyle, RenderCommand},
widget::Widget,
};

#[derive(Component, PartialEq, Clone, Debug)]
pub struct NinePatch {
/// The handle to image
pub handle: Handle<Image>,
/// The size of each edge (in pixels)
pub border: Edge<f32>,
/// Scale of the nine patch
/// defaults to 1.0
pub scale: f32,
}

impl Default for NinePatch {
fn default() -> Self {
Self {
handle: Default::default(),
border: Default::default(),
scale: 1.0
}
}
}

impl Widget for NinePatch {}

///
/// Render's a nine-patch image as a UI widget.
///
/// Also know as 9-slicing. This 2D technique allows users to render UI images at multiple
/// resolutions while maintaining a level of quality. The image in the middle is repeated.
///
/// Accepts Children and Styles.
///
/// Example: The border prop splits up the image into 9 quadrants like so:
/// 1----2----3
/// | |
/// 4 9 5
/// | |
/// 6----7----8
/// The sizes of sprites for a 15 pixel border are as follows:
/// TopLeft = (15, 15)
/// TopRight = (15, 15)
/// LeftCenter = (15, image_height)
/// RightCenter = (15, image_height)
/// TopCenter = (image_width, 15)
/// BottomCenter = (image_width, 15)
/// BottomRight = (15, 15)
/// BottomLeft = (15, 15)
/// Middle = (
/// 30 being left border + right border
/// image_width - 30
/// 30 being top border + bottom border
/// image_height - 30
/// )
#[derive(Bundle)]
pub struct NinePatchBundle {
pub nine_patch: NinePatch,
pub styles: KStyle,
pub computed_styles: ComputedStyles,
pub children: KChildren,
pub on_event: OnEvent,
pub widget_name: WidgetName,
}

impl Default for NinePatchBundle {
fn default() -> Self {
Self {
nine_patch: Default::default(),
styles: Default::default(),
computed_styles: ComputedStyles::default(),
children: KChildren::default(),
on_event: OnEvent::default(),
widget_name: NinePatch::default().get_name(),
}
}
}

pub fn nine_patch_render(
In(entity): In<Entity>,
widget_context: Res<KayakWidgetContext>,
mut commands: Commands,
mut query: Query<(&KStyle, &mut ComputedStyles, &NinePatch, &KChildren)>,
) -> bool {
if let Ok((style, mut computed_styles, nine_patch, children)) = query.get_mut(entity) {
*computed_styles = KStyle::default()
.with_style(KStyle {
render_command: RenderCommand::NinePatch {
border: nine_patch.border,
handle: nine_patch.handle.clone_weak(),
scale: nine_patch.scale,
}
.into(),
..Default::default()
})
.with_style(style)
.into();
children.process(&widget_context, &mut commands, Some(entity));
}

true
}
use bevy::prelude::{Bundle, Commands, Component, Entity, Handle, Image, In, Query, Res};

use crate::{
children::KChildren,
context::WidgetName,
on_event::OnEvent,
prelude::KayakWidgetContext,
styles::{ComputedStyles, Edge, KStyle, RenderCommand},
widget::Widget,
};

#[derive(Component, PartialEq, Clone, Debug)]
pub struct NinePatch {
/// The handle to image
pub handle: Handle<Image>,
/// The size of each edge (in pixels)
pub border: Edge<f32>,
/// Scale of the nine patch
/// defaults to 1.0
pub scale: f32,
}

impl Default for NinePatch {
fn default() -> Self {
Self {
handle: Default::default(),
border: Default::default(),
scale: 1.0,
}
}
}

impl Widget for NinePatch {}

///
/// Render's a nine-patch image as a UI widget.
///
/// Also know as 9-slicing. This 2D technique allows users to render UI images at multiple
/// resolutions while maintaining a level of quality. The image in the middle is repeated.
///
/// Accepts Children and Styles.
///
/// Example: The border prop splits up the image into 9 quadrants like so:
/// 1----2----3
/// | |
/// 4 9 5
/// | |
/// 6----7----8
/// The sizes of sprites for a 15 pixel border are as follows:
/// TopLeft = (15, 15)
/// TopRight = (15, 15)
/// LeftCenter = (15, image_height)
/// RightCenter = (15, image_height)
/// TopCenter = (image_width, 15)
/// BottomCenter = (image_width, 15)
/// BottomRight = (15, 15)
/// BottomLeft = (15, 15)
/// Middle = (
/// 30 being left border + right border
/// image_width - 30
/// 30 being top border + bottom border
/// image_height - 30
/// )
#[derive(Bundle)]
pub struct NinePatchBundle {
pub nine_patch: NinePatch,
pub styles: KStyle,
pub computed_styles: ComputedStyles,
pub children: KChildren,
pub on_event: OnEvent,
pub widget_name: WidgetName,
}

impl Default for NinePatchBundle {
fn default() -> Self {
Self {
nine_patch: Default::default(),
styles: Default::default(),
computed_styles: ComputedStyles::default(),
children: KChildren::default(),
on_event: OnEvent::default(),
widget_name: NinePatch::default().get_name(),
}
}
}

pub fn nine_patch_render(
In(entity): In<Entity>,
widget_context: Res<KayakWidgetContext>,
mut commands: Commands,
mut query: Query<(&KStyle, &mut ComputedStyles, &NinePatch, &KChildren)>,
) -> bool {
if let Ok((style, mut computed_styles, nine_patch, children)) = query.get_mut(entity) {
*computed_styles = KStyle::default()
.with_style(KStyle {
render_command: RenderCommand::NinePatch {
border: nine_patch.border,
handle: nine_patch.handle.clone_weak(),
scale: nine_patch.scale,
}
.into(),
..Default::default()
})
.with_style(style)
.into();
children.process(&widget_context, &mut commands, Some(entity));
}

true
}

0 comments on commit e455ebe

Please sign in to comment.