use bevy::prelude::*;
use game_library::colors;
#[must_use]
pub fn menu_button_bundle() -> ButtonBundle {
ButtonBundle {
background_color: Color::NONE.into(),
style: Style {
margin: UiRect::px(10., 10., 0., 20.),
justify_content: JustifyContent::Center,
align_items: AlignItems::Start,
..default()
},
..default()
}
}
#[must_use]
pub fn menu_button_text(text: impl Into<String>, font: Handle<Font>) -> TextBundle {
TextBundle::from_section(
text,
TextStyle {
font_size: 40.0,
color: colors::TEXT_COLOR,
font,
},
)
}
#[must_use]
pub fn settings_menu_column_node_bundle() -> NodeBundle {
NodeBundle {
style: Style {
flex_direction: FlexDirection::Column,
align_items: AlignItems::Start,
width: Val::Percent(50.0),
margin: UiRect::px(20., 0., 40., 0.),
..default()
},
..default()
}
}
#[must_use]
pub fn settings_menu_full_node_bundle() -> NodeBundle {
NodeBundle {
style: Style {
align_items: AlignItems::Center,
flex_direction: FlexDirection::Column,
padding: UiRect::all(Val::Px(10.0)),
width: Val::Percent(100.0),
height: Val::Percent(100.0),
..default()
},
..default()
}
}
#[must_use]
pub fn settings_menu_title_bundle(text: impl Into<String>, font: Handle<Font>) -> TextBundle {
TextBundle {
text: Text::from_section(
text,
TextStyle {
font_size: 72.0,
color: colors::TEXT_COLOR,
font,
},
),
style: Style {
align_self: AlignSelf::Center,
..default()
},
..default()
}
}
#[must_use]
pub fn settings_menu_button_row_node_bundle() -> NodeBundle {
NodeBundle {
style: Style {
flex_direction: FlexDirection::Row,
align_items: AlignItems::Stretch,
..default()
},
..default()
}
}
#[must_use]
pub fn settings_menu_info_text_bundle(text: impl Into<String>, font: Handle<Font>) -> TextBundle {
TextBundle::from_section(
text,
TextStyle {
font_size: 40.0,
color: colors::TEXT_COLOR,
font,
},
)
}
#[must_use]
pub fn main_menu_column_node_bundle() -> NodeBundle {
NodeBundle {
style: Style {
flex_direction: FlexDirection::Column,
align_items: AlignItems::Start,
width: Val::Percent(100.0),
margin: UiRect::px(20., 0., 40., 0.),
..default()
},
..default()
}
}
#[must_use]
pub fn main_menu_full_node_bundle() -> NodeBundle {
NodeBundle {
style: Style {
align_items: AlignItems::Start,
flex_direction: FlexDirection::Column,
padding: UiRect::all(Val::Px(10.0)),
width: Val::Percent(100.0),
height: Val::Percent(100.0),
..default()
},
..default()
}
}
#[must_use]
pub fn main_menu_title_bundle(text: impl Into<String>, font: Handle<Font>) -> TextBundle {
TextBundle {
text: Text::from_section(
text,
TextStyle {
font,
font_size: 112.0,
color: colors::TEXT_COLOR,
},
),
style: Style {
align_self: AlignSelf::Center,
..default()
},
..default()
}
}
#[must_use]
pub fn status_screen_stats_node_bundle() -> NodeBundle {
NodeBundle {
style: Style {
flex_direction: FlexDirection::Column,
align_items: AlignItems::Start,
width: Val::Percent(50.0),
margin: UiRect::px(20., 0., 40., 0.),
..default()
},
..default()
}
}
#[must_use]
pub fn status_screen_text_bundle(text: impl Into<String>, font: Handle<Font>) -> TextBundle {
TextBundle::from_section(
text,
TextStyle {
font_size: 16.0,
color: colors::TEXT_COLOR,
font,
},
)
}