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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
//! The skill book UI overlay.
use bevy::prelude::*;
use game_library::{
    colors, data_loader::storage::GameData, enums::Skill, font_resource::FontResource,
    state::Overlay,
};

pub struct SkillBookUiPlugin;

impl Plugin for SkillBookUiPlugin {
    fn build(&self, app: &mut App) {
        app.add_systems(OnEnter(Overlay::SkillScreen), spawn_skill_book_ui);

        app.add_systems(Update, toggle_skill_screen);
    }
}

/// system to change system to skill screen when pressing 'k'
fn toggle_skill_screen(mut next_overlay: ResMut<NextState<Overlay>>, input: Res<Input<KeyCode>>) {
    if input.just_pressed(KeyCode::K) {
        next_overlay.set(Overlay::SkillScreen);
    }
}

#[derive(Component)]
pub struct SkillBlock(pub Skill);

/// Height of the skill "box"
const SKILL_HEIGHT: f32 = 64.0;
/// Width of the skill "box"
const SKILL_WIDTH: f32 = 420.0;
/// Margin around the skill icon
const ICON_MARGIN: f32 = 10.0;
/// Background color of the skill "box"
const BACKGROUND_COLOR: Color = colors::SAND_DUNE;
/// Text color of the skill "box"
const TEXT_COLOR: Color = colors::DARKER_THUNDER;
/// Font size of the skill "box"
const TITLE_FONT_SIZE: f32 = 32.0;
/// Gap between the skill "boxes"
const GAP: f32 = 4.0;
/// Border color of the skill "box"
const BORDER_COLOR: Color = colors::THUNDER;
/// Skill icon background color
const SKILL_ICON_BACKGROUND: Color = colors::BRIGHT_GRAY;
/// Skill icon border width
const SKILL_ICON_BORDER_WIDTH: f32 = 2.0;
/// Skill icon border color
const SKILL_ICON_BORDER: Color = colors::ANZAC;

/// Left column skills
const LEFT_COLUMN_SKILLS: [Skill; 9] = [
    Skill::Pyromancy,
    Skill::Fulgomancy,
    Skill::Hydromancy,
    Skill::Geomancy,
    Skill::Aeromancy,
    Skill::Cryomancy,
    Skill::Trudomancy,
    Skill::Photomancy,
    Skill::Umbramancy,
];

/// Right column skills
const RIGHT_COLUMN_SKILLS: [Skill; 9] = [
    Skill::Arcanomancy,
    Skill::Vitomancy,
    Skill::Mortomancy,
    Skill::Ampiliomancy,
    Skill::Diminiomancy,
    Skill::Citomancy,
    Skill::Necromancy,
    Skill::Mutatiomancy,
    Skill::Chronomancy,
];

fn add_skill_to_ui(
    font: Handle<Font>,
    icon_tileset: Handle<TextureAtlas>,
    skill: Skill,
    commands: &mut Commands,
) -> Entity {
    let skill_box = commands
        .spawn(NodeBundle {
            style: Style {
                width: Val::Px(SKILL_WIDTH),
                height: Val::Px(SKILL_HEIGHT),
                margin: UiRect::bottom(Val::Px(GAP)),
                align_content: AlignContent::Stretch,
                border: UiRect::all(Val::Px(SKILL_ICON_BORDER_WIDTH)),
                ..default()
            },
            background_color: BACKGROUND_COLOR.into(),
            border_color: BORDER_COLOR.into(),
            ..default()
        })
        .id();
    let skill_title = commands
        .spawn(TextBundle {
            text: Text::from_section(
                skill.to_string(),
                TextStyle {
                    font_size: TITLE_FONT_SIZE,
                    color: TEXT_COLOR,
                    font,
                },
            ),
            style: Style {
                align_self: AlignSelf::Start,
                ..default()
            },
            ..default()
        })
        .id();
    let skill_icon_box = commands
        .spawn(NodeBundle {
            style: Style {
                // SKILL_HEIGHT - 2 * ICON_MARGIN but rewritten for "faster" multiplication
                width: Val::Px(2.0f32.mul_add(-ICON_MARGIN, SKILL_HEIGHT)),
                height: Val::Px(2.0f32.mul_add(-ICON_MARGIN, SKILL_HEIGHT)),
                margin: UiRect::all(Val::Px(ICON_MARGIN)),
                border: UiRect::all(Val::Px(SKILL_ICON_BORDER_WIDTH)),
                padding: UiRect::top(Val::Px(2.0)),
                ..default()
            },
            background_color: SKILL_ICON_BACKGROUND.into(),
            border_color: SKILL_ICON_BORDER.into(),
            ..default()
        })
        .id();
    let skill_icon = commands
        .spawn(AtlasImageBundle {
            texture_atlas: icon_tileset,
            texture_atlas_image: UiTextureAtlasImage {
                index: skill.icon_index(),
                ..default()
            },
            ..default()
        })
        .id();

    commands.entity(skill_icon_box).push_children(&[skill_icon]);
    commands
        .entity(skill_box)
        .push_children(&[skill_icon_box, skill_title]);

    skill_box
}

/// Spawns the skill book UI.
fn spawn_skill_book_ui(mut commands: Commands, fonts: Res<FontResource>, game_data: Res<GameData>) {
    let parent_container = NodeBundle {
        style: Style {
            width: Val::Percent(95.0),
            height: Val::Percent(95.0),
            justify_content: JustifyContent::SpaceAround,
            align_self: AlignSelf::Center,
            padding: UiRect::all(Val::Px(32.0)),
            ..default()
        },
        ..default()
    };

    let left_column = NodeBundle {
        style: Style {
            flex_direction: FlexDirection::Column,
            ..default()
        },
        ..default()
    };
    let right_column = NodeBundle {
        style: Style {
            flex_direction: FlexDirection::Column,
            ..default()
        },
        ..default()
    };

    let Some(icon_tileset) = game_data.tile_atlas.get("skill_icons") else {
        tracing::error!("spawn_skill_book_ui: Failed to get skill_icons tileset");
        return;
    };

    let parent = commands.spawn(parent_container).id();
    let left = commands.spawn(left_column).id();
    let right = commands.spawn(right_column).id();

    for skill in &LEFT_COLUMN_SKILLS {
        let new_entity = add_skill_to_ui(
            fonts.interface_font.clone(),
            icon_tileset.clone(),
            *skill,
            &mut commands,
        );
        commands.entity(left).push_children(&[new_entity]);
    }

    for skill in &RIGHT_COLUMN_SKILLS {
        let new_entity = add_skill_to_ui(
            fonts.interface_font.clone(),
            icon_tileset.clone(),
            *skill,
            &mut commands,
        );
        commands.entity(right).push_children(&[new_entity]);
    }

    commands.entity(parent).push_children(&[left, right]);
}