1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
use bevy::prelude::*;
use game_library::colors;

/// Shared button style for the settings menus.
#[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()
    }
}

/// Shared button style for the settings menus
#[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,
        },
    )
}

/// Shared node style for the settings menus.
///
/// This node holds the menu buttons.
#[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()
    }
}

/// Shared node style for the settings menus.
///
/// This node holds everything (title and then button node and buttons)
#[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()
    }
}

/// Shared text bundle for settings menu titles.
///
/// This is the title of the menu.
#[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()
    }
}

/// Shared row node style for the settings menus.
#[must_use]
pub fn settings_menu_button_row_node_bundle() -> NodeBundle {
    NodeBundle {
        style: Style {
            flex_direction: FlexDirection::Row,
            align_items: AlignItems::Stretch,
            ..default()
        },
        ..default()
    }
}

/// Shared text bundle for settings menu "info" text. (The values of the settings)
#[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,
        },
    )
}

/// Node style for the main menu column.
#[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()
    }
}

/// Parent node style for the main menu.
#[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()
    }
}

/// Game title text bundle for the main menu.
#[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()
    }
}

/// The stats node style for the status screen. We want the stats to be in a column down the left
/// side of the screen.
#[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()
    }
}

/// Status screen shows the player's stats. The text is the stat name and value, and we need ot make
/// it small enough to fit a lot of stats on the screen.
#[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,
        },
    )
}