2023-12-02 14:22:05 +00:00
|
|
|
use bevy::{core_pipeline::tonemapping::Tonemapping, prelude::*, window::*};
|
|
|
|
|
|
|
|
use bevy_egui::{egui, EguiContexts, EguiPlugin};
|
|
|
|
|
2023-11-27 10:45:07 +00:00
|
|
|
use lazy_static::lazy_static;
|
2023-12-02 14:22:05 +00:00
|
|
|
use std::collections::HashMap;
|
2023-11-27 10:45:07 +00:00
|
|
|
|
2023-11-29 22:40:30 +00:00
|
|
|
mod helpers;
|
|
|
|
use crate::helpers::*;
|
|
|
|
|
2023-11-28 14:18:26 +00:00
|
|
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
const PKGNAME: &str = env!("CARGO_PKG_NAME");
|
|
|
|
|
2023-11-27 10:45:07 +00:00
|
|
|
// Create a map of the Hypernova colorscheme
|
2023-12-02 14:22:05 +00:00
|
|
|
lazy_static! {
|
|
|
|
static ref HYPERNOVA: HashMap<&'static str, (u8, u8, u8)> = vec![
|
|
|
|
("BLACK", (13, 13, 15)),
|
|
|
|
("DARK_GRAY", (21, 21, 23)),
|
|
|
|
("GRAY", (39, 39, 43)),
|
|
|
|
("LIGHT_GRAY", (69, 68, 73)),
|
|
|
|
("SUBTEXT", (217, 208, 215)),
|
|
|
|
("WHITE", (236, 229, 234)),
|
|
|
|
("RED", (240, 105, 105)),
|
|
|
|
("MAGENTA", (232, 135, 187)),
|
|
|
|
("PURPLE", (162, 146, 232)),
|
|
|
|
("BLUE", (120, 175, 196)),
|
2023-12-04 13:44:28 +00:00
|
|
|
("CYAN", (127, 230, 174)),
|
2023-12-02 14:22:05 +00:00
|
|
|
("GREEN", (145, 214, 92)),
|
|
|
|
("YELLOW", (217, 213, 100)),
|
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.copied()
|
|
|
|
.collect();
|
2023-11-27 10:45:07 +00:00
|
|
|
}
|
2023-11-26 23:03:29 +00:00
|
|
|
|
2023-11-26 21:32:11 +00:00
|
|
|
fn main() {
|
2023-11-26 23:03:29 +00:00
|
|
|
App::new()
|
2023-12-02 14:22:05 +00:00
|
|
|
.add_plugins((
|
2023-11-28 14:18:26 +00:00
|
|
|
DefaultPlugins.set(WindowPlugin {
|
|
|
|
primary_window: Some(Window {
|
2023-12-02 14:42:30 +00:00
|
|
|
title: format!("{} {}", titlecase(PKGNAME), VERSION),
|
2023-11-28 14:18:26 +00:00
|
|
|
mode: WindowMode::Fullscreen,
|
|
|
|
..default()
|
|
|
|
}),
|
|
|
|
..default()
|
2023-12-02 14:22:05 +00:00
|
|
|
}),
|
|
|
|
EguiPlugin,
|
|
|
|
))
|
2023-12-03 12:37:07 +00:00
|
|
|
.init_resource::<UiState>()
|
2023-12-04 13:44:28 +00:00
|
|
|
.init_resource::<OpenWindows>()
|
2023-12-02 14:22:05 +00:00
|
|
|
.add_systems(Startup, (setup, setup_ui))
|
|
|
|
.add_systems(Update, render_ui)
|
2023-11-26 23:03:29 +00:00
|
|
|
.run();
|
2023-11-26 21:32:11 +00:00
|
|
|
}
|
2023-11-26 23:03:29 +00:00
|
|
|
|
2023-12-03 12:37:07 +00:00
|
|
|
#[derive(Default, Resource)]
|
|
|
|
struct UiState {
|
|
|
|
username: String,
|
|
|
|
password: String,
|
|
|
|
}
|
|
|
|
|
2023-12-04 13:44:28 +00:00
|
|
|
#[derive(Default, Resource)]
|
|
|
|
struct OpenWindows {
|
|
|
|
login_open: bool,
|
|
|
|
}
|
|
|
|
|
2023-12-02 14:22:05 +00:00
|
|
|
// Bevy engine setup
|
2023-12-04 13:44:28 +00:00
|
|
|
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
|
2023-12-02 14:22:05 +00:00
|
|
|
commands.spawn(Camera2dBundle {
|
|
|
|
camera: Camera {
|
|
|
|
hdr: true,
|
2023-11-26 23:03:29 +00:00
|
|
|
..default()
|
2023-12-02 14:22:05 +00:00
|
|
|
},
|
|
|
|
tonemapping: Tonemapping::TonyMcMapface,
|
|
|
|
..default()
|
|
|
|
});
|
2023-12-04 13:44:28 +00:00
|
|
|
commands.spawn((
|
|
|
|
SpriteBundle {
|
|
|
|
texture: asset_server.load("black-square.png"),
|
|
|
|
transform: Transform::from_xyz(100., 0., 0.),
|
|
|
|
..default()
|
|
|
|
}
|
|
|
|
));
|
2023-12-02 14:22:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// On startup: setup some UI components
|
|
|
|
fn setup_ui(mut contexts: EguiContexts) {
|
|
|
|
// Set Victor Mono as the default custom font
|
|
|
|
let mut fonts = egui::FontDefinitions::default();
|
|
|
|
fonts.font_data.insert(
|
|
|
|
"victor_mono".to_owned(),
|
|
|
|
egui::FontData::from_static(include_bytes!("../assets/fonts/VictorMono-Regular.otf")),
|
2023-11-26 23:03:29 +00:00
|
|
|
);
|
2023-12-02 14:22:05 +00:00
|
|
|
fonts
|
|
|
|
.families
|
|
|
|
.get_mut(&egui::FontFamily::Proportional)
|
|
|
|
.unwrap()
|
|
|
|
.insert(0, "victor_mono".to_owned());
|
|
|
|
contexts.ctx_mut().set_fonts(fonts);
|
2023-11-26 23:03:29 +00:00
|
|
|
}
|
|
|
|
|
2023-12-02 14:22:05 +00:00
|
|
|
// On update: render the UI
|
2023-12-04 13:44:28 +00:00
|
|
|
fn render_ui(
|
|
|
|
mut contexts: EguiContexts,
|
|
|
|
mut windows: Query<&mut Window>,
|
|
|
|
mut ui_state: ResMut<UiState>,
|
|
|
|
mut open_windows: ResMut<OpenWindows>,
|
|
|
|
asset_server: Res<AssetServer>,
|
|
|
|
keys: Res<Input<KeyCode>>,
|
|
|
|
) {
|
2023-12-02 14:22:05 +00:00
|
|
|
let window = windows.single_mut();
|
|
|
|
let window_width = window.resolution.width();
|
|
|
|
let window_height = window.resolution.height();
|
2023-11-27 10:45:07 +00:00
|
|
|
|
2023-12-04 13:44:28 +00:00
|
|
|
let ctx = contexts.ctx_mut();
|
|
|
|
|
|
|
|
if keys.just_pressed(KeyCode::Space) {
|
|
|
|
}
|
|
|
|
if keys.pressed(KeyCode::W) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-12-02 14:22:05 +00:00
|
|
|
egui::Window::new("Login")
|
|
|
|
.anchor(egui::Align2::CENTER_CENTER, egui::Vec2::new(0., 0.))
|
|
|
|
.resizable(false)
|
|
|
|
.title_bar(false)
|
2023-12-04 13:44:28 +00:00
|
|
|
.open(&mut open_windows.login_open)
|
|
|
|
.show(ctx, |ui| {
|
2023-12-03 12:37:07 +00:00
|
|
|
ui.set_width(window_width / 3.);
|
2023-12-02 14:22:05 +00:00
|
|
|
ui.set_height(window_height / 3.);
|
2023-11-28 14:18:26 +00:00
|
|
|
|
2023-12-02 14:22:05 +00:00
|
|
|
ui.with_layout(egui::Layout::top_down(egui::Align::Center), |ui| {
|
|
|
|
let purple = HYPERNOVA.get("PURPLE").unwrap();
|
|
|
|
let purple = egui::Color32::from_rgb(purple.0, purple.1, purple.2);
|
|
|
|
|
2023-12-03 12:37:07 +00:00
|
|
|
let black = HYPERNOVA.get("BLACK").unwrap();
|
|
|
|
let black = egui::Color32::from_rgb(black.0, black.1, black.2);
|
|
|
|
|
|
|
|
// Define spacing between items (widgets) and add manually add some space
|
|
|
|
// between the window border and the heading
|
2023-12-04 13:44:28 +00:00
|
|
|
ui.spacing_mut().item_spacing = egui::vec2(0., 10.);
|
|
|
|
ui.spacing_mut().button_padding = egui::vec2(20., 10.);
|
2023-12-03 12:37:07 +00:00
|
|
|
ui.add_space(window_height / 22.);
|
|
|
|
|
|
|
|
ui.heading(egui::RichText::new("Login").size(30.).color(purple)); // The window 'title'
|
|
|
|
|
|
|
|
// Manually add some space between the heading and the text inputs
|
|
|
|
ui.add_space(window_height / 28.);
|
|
|
|
|
|
|
|
// The text inputs
|
|
|
|
let username = egui::TextEdit::singleline(&mut ui_state.username)
|
|
|
|
.hint_text("Username")
|
|
|
|
.margin(egui::vec2(10., 10.))
|
|
|
|
.desired_width(window_width / 4.)
|
|
|
|
.show(ui);
|
|
|
|
|
|
|
|
let password = egui::TextEdit::singleline(&mut ui_state.password)
|
|
|
|
.password(true)
|
|
|
|
.margin(egui::vec2(10., 10.))
|
|
|
|
.hint_text("Password")
|
|
|
|
.desired_width(window_width / 4.)
|
|
|
|
.show(ui);
|
|
|
|
|
2023-12-03 12:41:31 +00:00
|
|
|
// Manually add some space between the text inputs and the 'confirm' button
|
|
|
|
ui.add_space(window_height / 26.);
|
2023-12-03 12:37:07 +00:00
|
|
|
|
2023-12-04 13:44:28 +00:00
|
|
|
let button = ui.add(egui::Button::new("Confirm").fill(black));
|
2023-12-03 12:41:31 +00:00
|
|
|
|
|
|
|
// Manually add some space between the button and the bottom border of the
|
|
|
|
// window...for scaling purposes
|
|
|
|
ui.add_space(window_height / 22.);
|
2023-12-02 14:22:05 +00:00
|
|
|
});
|
2023-11-28 14:18:26 +00:00
|
|
|
});
|
2023-11-26 23:03:29 +00:00
|
|
|
}
|