bevy/crates/bevy_ui/src/entity.rs

230 lines
7 KiB
Rust
Raw Normal View History

2020-04-06 21:20:53 +00:00
use super::Node;
use crate::{
render::UI_PIPELINE_HANDLE,
widget::{Button, Text, Image},
Click, FocusPolicy, Hover, Style, CalculatedSize,
};
2020-05-04 06:49:45 +00:00
use bevy_asset::Handle;
2020-07-10 04:18:35 +00:00
use bevy_ecs::Bundle;
2020-07-10 08:37:06 +00:00
use bevy_render::{
2020-07-25 06:04:45 +00:00
camera::{Camera, OrthographicProjection, VisibleEntities, WindowOrigin},
2020-07-10 08:37:06 +00:00
draw::Draw,
mesh::Mesh,
pipeline::{DynamicBinding, PipelineSpecialization, RenderPipeline, RenderPipelines},
};
use bevy_sprite::{ColorMaterial, QUAD_HANDLE};
2020-07-25 06:04:45 +00:00
use bevy_transform::{
components::LocalTransform,
prelude::{Rotation, Scale, Transform, Translation},
};
2020-04-06 21:20:53 +00:00
2020-07-10 04:18:35 +00:00
#[derive(Bundle)]
pub struct NodeComponents {
2020-04-06 21:20:53 +00:00
pub node: Node,
2020-07-26 19:27:09 +00:00
pub style: Style,
2020-05-06 01:44:32 +00:00
pub mesh: Handle<Mesh>, // TODO: maybe abstract this out
2020-05-04 06:49:45 +00:00
pub material: Handle<ColorMaterial>,
pub draw: Draw,
pub render_pipelines: RenderPipelines,
pub transform: Transform,
pub local_transform: LocalTransform,
2020-04-06 21:20:53 +00:00
}
2020-05-03 19:35:07 +00:00
impl Default for NodeComponents {
2020-05-03 19:35:07 +00:00
fn default() -> Self {
NodeComponents {
mesh: QUAD_HANDLE,
render_pipelines: RenderPipelines::from_pipelines(vec![RenderPipeline::specialized(
UI_PIPELINE_HANDLE,
PipelineSpecialization {
dynamic_bindings: vec![
// Transform
DynamicBinding {
bind_group: 1,
binding: 0,
},
// Node_size
DynamicBinding {
bind_group: 1,
binding: 1,
},
],
..Default::default()
},
)]),
2020-05-03 19:35:07 +00:00
node: Default::default(),
2020-07-26 19:27:09 +00:00
style: Default::default(),
2020-05-04 06:49:45 +00:00
material: Default::default(),
draw: Default::default(),
transform: Default::default(),
local_transform: Default::default(),
2020-05-03 19:35:07 +00:00
}
}
2020-05-04 06:49:45 +00:00
}
2020-05-04 08:22:25 +00:00
#[derive(Bundle)]
pub struct ImageComponents {
pub node: Node,
pub style: Style,
pub image: Image,
pub calculated_size: CalculatedSize,
pub mesh: Handle<Mesh>, // TODO: maybe abstract this out
pub material: Handle<ColorMaterial>,
pub draw: Draw,
pub render_pipelines: RenderPipelines,
pub transform: Transform,
pub local_transform: LocalTransform,
}
impl Default for ImageComponents {
fn default() -> Self {
ImageComponents {
mesh: QUAD_HANDLE,
render_pipelines: RenderPipelines::from_pipelines(vec![RenderPipeline::specialized(
UI_PIPELINE_HANDLE,
PipelineSpecialization {
dynamic_bindings: vec![
// Transform
DynamicBinding {
bind_group: 1,
binding: 0,
},
// Node_size
DynamicBinding {
bind_group: 1,
binding: 1,
},
],
..Default::default()
},
)]),
node: Default::default(),
image: Default::default(),
calculated_size: Default::default(),
style: Default::default(),
material: Default::default(),
draw: Default::default(),
transform: Default::default(),
local_transform: Default::default(),
}
}
}
2020-07-10 04:18:35 +00:00
#[derive(Bundle)]
pub struct TextComponents {
2020-05-18 01:09:29 +00:00
pub node: Node,
2020-07-26 19:27:09 +00:00
pub style: Style,
pub draw: Draw,
pub text: Text,
pub calculated_size: CalculatedSize,
pub focus_policy: FocusPolicy,
pub transform: Transform,
pub local_transform: LocalTransform,
2020-05-18 01:09:29 +00:00
}
impl Default for TextComponents {
2020-05-18 01:09:29 +00:00
fn default() -> Self {
TextComponents {
focus_policy: FocusPolicy::Pass,
draw: Draw {
is_transparent: true,
..Default::default()
},
2020-07-26 19:27:09 +00:00
text: Default::default(),
node: Default::default(),
calculated_size: Default::default(),
2020-07-26 19:27:09 +00:00
style: Default::default(),
transform: Default::default(),
local_transform: Default::default(),
2020-05-18 01:09:29 +00:00
}
}
}
#[derive(Bundle)]
pub struct ButtonComponents {
pub node: Node,
pub button: Button,
2020-07-26 19:27:09 +00:00
pub style: Style,
pub click: Click,
pub hover: Hover,
pub focus_policy: FocusPolicy,
pub mesh: Handle<Mesh>, // TODO: maybe abstract this out
pub material: Handle<ColorMaterial>,
pub draw: Draw,
pub render_pipelines: RenderPipelines,
pub transform: Transform,
pub local_transform: LocalTransform,
}
impl Default for ButtonComponents {
fn default() -> Self {
ButtonComponents {
button: Button,
mesh: QUAD_HANDLE,
render_pipelines: RenderPipelines::from_pipelines(vec![RenderPipeline::specialized(
UI_PIPELINE_HANDLE,
PipelineSpecialization {
dynamic_bindings: vec![
// Transform
DynamicBinding {
bind_group: 1,
binding: 0,
},
// Node_size
DynamicBinding {
bind_group: 1,
binding: 1,
},
],
..Default::default()
},
)]),
2020-07-26 19:27:09 +00:00
click: Default::default(),
hover: Default::default(),
focus_policy: Default::default(),
node: Default::default(),
2020-07-26 19:27:09 +00:00
style: Default::default(),
material: Default::default(),
draw: Default::default(),
transform: Default::default(),
local_transform: Default::default(),
}
}
}
2020-07-25 06:04:45 +00:00
#[derive(Bundle)]
pub struct UiCameraComponents {
pub camera: Camera,
pub orthographic_projection: OrthographicProjection,
pub visible_entities: VisibleEntities,
pub transform: Transform,
pub translation: Translation,
pub rotation: Rotation,
pub scale: Scale,
}
impl Default for UiCameraComponents {
fn default() -> Self {
// we want 0 to be "closest" and +far to be "farthest" in 2d, so we offset
// the camera's translation by far and use a right handed coordinate system
let far = 1000.0;
UiCameraComponents {
camera: Camera {
name: Some(crate::camera::UI_CAMERA.to_string()),
..Default::default()
},
orthographic_projection: OrthographicProjection {
far,
window_origin: WindowOrigin::BottomLeft,
..Default::default()
},
2020-07-26 19:27:09 +00:00
translation: Translation::new(0.0, 0.0, far - 0.1),
2020-07-25 06:04:45 +00:00
visible_entities: Default::default(),
transform: Default::default(),
rotation: Default::default(),
scale: Default::default(),
}
}
}