Compare commits
11 Commits
24f46a2471
...
eca7e7f5e6
Author | SHA1 | Date |
---|---|---|
Mark | eca7e7f5e6 | |
Mark | 6b4c80ce0f | |
Mark | 193feb5b92 | |
Mark | 5059e69cbb | |
Mark | d354a88543 | |
Mark | a6a0884737 | |
Mark | ae89f0e987 | |
Mark | 7c8407f966 | |
Mark | 91b82fbe3d | |
Mark | 3c582006ef | |
Mark | 093a7f271c |
|
@ -76,7 +76,9 @@ log = "0.4.20"
|
||||||
log4rs = { version = "1.2.0", features = ["console_appender"] }
|
log4rs = { version = "1.2.0", features = ["console_appender"] }
|
||||||
rhai = { version = "1.17.0", features = [
|
rhai = { version = "1.17.0", features = [
|
||||||
"f32_float",
|
"f32_float",
|
||||||
|
"only_i32",
|
||||||
"metadata",
|
"metadata",
|
||||||
"sync",
|
"sync",
|
||||||
"no_custom_syntax",
|
"no_custom_syntax",
|
||||||
|
"no_closure",
|
||||||
] }
|
] }
|
||||||
|
|
1
TODO.md
1
TODO.md
|
@ -13,6 +13,7 @@
|
||||||
- Scriptable renderscene: script decides which parts to show
|
- Scriptable renderscene: script decides which parts to show
|
||||||
- No UI zoom scroll
|
- No UI zoom scroll
|
||||||
- Preserve aspect for icons
|
- Preserve aspect for icons
|
||||||
|
- Check game version in config
|
||||||
|
|
||||||
|
|
||||||
## Small jobs
|
## Small jobs
|
||||||
|
|
|
@ -39,6 +39,8 @@ zoom_max = 2000.0
|
||||||
|
|
||||||
# TODO: move to user config file
|
# TODO: move to user config file
|
||||||
ui_scale = 2
|
ui_scale = 2
|
||||||
ui_landed_scene = "ui/landed.rhai"
|
|
||||||
ui_flying_scene = "ui/flying.rhai"
|
start_ui_scene = "flying"
|
||||||
ui_outfitter_scene = "ui/outfitter.rhai"
|
ui_scene.landed = "ui/landed.rhai"
|
||||||
|
ui_scene.flying = "ui/flying.rhai"
|
||||||
|
ui_scene.outfitter = "ui/outfitter.rhai"
|
||||||
|
|
|
@ -28,6 +28,7 @@ one planet has a greater population than a hundred planets elsewhere. As a resul
|
||||||
settlements of less than a million are grouped together into planetary districts that
|
settlements of less than a million are grouped together into planetary districts that
|
||||||
elect a single representative between them - a source of much frustration in the frontier worlds.
|
elect a single representative between them - a source of much frustration in the frontier worlds.
|
||||||
"""
|
"""
|
||||||
|
object.earth.image = "ui::landscape::test"
|
||||||
|
|
||||||
|
|
||||||
object.luna.sprite = "planet::luna"
|
object.luna.sprite = "planet::luna"
|
||||||
|
|
|
@ -1,3 +1,55 @@
|
||||||
fn init(state) { return []; }
|
fn config() {
|
||||||
fn hover(element, hover_state) {}
|
let config = SceneConfig();
|
||||||
fn click(element, click_state) {}
|
config.show_starfield(true);
|
||||||
|
config.show_phys(true);
|
||||||
|
return config
|
||||||
|
}
|
||||||
|
|
||||||
|
fn init(state) {
|
||||||
|
let ring = SpriteBuilder(
|
||||||
|
"ring",
|
||||||
|
"ui::status",
|
||||||
|
Rect(
|
||||||
|
-5.0, -5.0, 100.0, 100.0,
|
||||||
|
SpriteAnchor::NorthEast,
|
||||||
|
SpriteAnchor::NorthEast
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
let shield = RadialBuilder(
|
||||||
|
"shield", 2.5,
|
||||||
|
Color(0.3, 0.6, 0.8, 1.0),
|
||||||
|
Rect(
|
||||||
|
-9.5, -9.5, 91.0, 91.0,
|
||||||
|
SpriteAnchor::NorthEast,
|
||||||
|
SpriteAnchor::NorthEast
|
||||||
|
)
|
||||||
|
);
|
||||||
|
shield.set_progress(0.2);
|
||||||
|
|
||||||
|
let hull = RadialBuilder(
|
||||||
|
"hull", 2.5,
|
||||||
|
Color(0.8, 0.7, 0.5, 1.0),
|
||||||
|
Rect(
|
||||||
|
-13.5, -13.5, 83.0, 83.0,
|
||||||
|
SpriteAnchor::NorthEast,
|
||||||
|
SpriteAnchor::NorthEast
|
||||||
|
)
|
||||||
|
);
|
||||||
|
hull.set_progress(0.4);
|
||||||
|
|
||||||
|
return [
|
||||||
|
ring,
|
||||||
|
shield,
|
||||||
|
hull
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
fn event(state, event) {
|
||||||
|
if type_of(event) == "PlayerShipStateEvent" {
|
||||||
|
if state.player_ship().is_landed() {
|
||||||
|
return SceneAction::GoTo("landed");
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,13 @@
|
||||||
|
fn config() {
|
||||||
|
let config = SceneConfig();
|
||||||
|
config.show_starfield(true);
|
||||||
|
config.show_phys(false);
|
||||||
|
return config
|
||||||
|
}
|
||||||
|
|
||||||
fn init(state) {
|
fn init(state) {
|
||||||
|
let player = state.player_ship();
|
||||||
|
|
||||||
let frame = SpriteBuilder(
|
let frame = SpriteBuilder(
|
||||||
"frame",
|
"frame",
|
||||||
"ui::planet",
|
"ui::planet",
|
||||||
|
@ -12,7 +20,13 @@ fn init(state) {
|
||||||
|
|
||||||
let landscape = SpriteBuilder(
|
let landscape = SpriteBuilder(
|
||||||
"landscape",
|
"landscape",
|
||||||
state.planet_landscape,
|
{
|
||||||
|
if player.is_landed() {
|
||||||
|
player.landed_on().image();
|
||||||
|
} else {
|
||||||
|
"";
|
||||||
|
}
|
||||||
|
},
|
||||||
Rect(
|
Rect(
|
||||||
-180.0, 142.0, 274.0, 135.0,
|
-180.0, 142.0, 274.0, 135.0,
|
||||||
SpriteAnchor::NorthWest,
|
SpriteAnchor::NorthWest,
|
||||||
|
@ -40,32 +54,66 @@ fn init(state) {
|
||||||
SpriteAnchor::Center
|
SpriteAnchor::Center
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
title.set_text(state.planet_name);
|
if player.is_landed() {
|
||||||
|
title.set_text(player.landed_on().name());
|
||||||
|
} else {
|
||||||
|
title.set_text("");
|
||||||
|
}
|
||||||
|
|
||||||
|
let desc = TextBoxBuilder(
|
||||||
|
"desc",
|
||||||
|
7.5, 8.0, TextBoxFont::SansSerif, TextBoxJustify::Left,
|
||||||
|
Rect(
|
||||||
|
-178.92, -20.3, 343.0, 81.467,
|
||||||
|
SpriteAnchor::NorthWest,
|
||||||
|
SpriteAnchor::Center
|
||||||
|
)
|
||||||
|
);
|
||||||
|
if player.is_landed() {
|
||||||
|
desc.set_text(player.landed_on().desc());
|
||||||
|
} else {
|
||||||
|
desc.set_text("");
|
||||||
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
button,
|
button,
|
||||||
landscape,
|
landscape,
|
||||||
frame,
|
frame,
|
||||||
title,
|
title,
|
||||||
|
desc,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
fn hover(element, hover_state) {
|
fn event(state, event) {
|
||||||
|
if type_of(event) == "MouseHoverEvent" {
|
||||||
|
let element = event.element();
|
||||||
if element.has_name("button") {
|
if element.has_name("button") {
|
||||||
if hover_state {
|
if event.is_enter() {
|
||||||
element.take_edge("on:top", 0.1);
|
element.take_edge("on:top", 0.1);
|
||||||
} else {
|
} else {
|
||||||
element.take_edge("off:top", 0.1);
|
element.take_edge("off:top", 0.1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
fn click(element, click_state) {
|
|
||||||
if !click_state {
|
if type_of(event) == "MouseClickEvent" {
|
||||||
|
if !event.is_down() {
|
||||||
return SceneAction::None;
|
return SceneAction::None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let element = event.element();
|
||||||
if element.has_name("button") {
|
if element.has_name("button") {
|
||||||
return SceneAction::SceneOutfitter;
|
return SceneAction::GoTo("outfitter");
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if type_of(event) == "PlayerShipStateEvent" {
|
||||||
|
if !state.player_ship().is_landed() {
|
||||||
|
return SceneAction::GoTo("flying");
|
||||||
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,3 +1,9 @@
|
||||||
|
fn config() {
|
||||||
|
let config = SceneConfig();
|
||||||
|
config.show_starfield(true);
|
||||||
|
config.show_phys(false);
|
||||||
|
return config
|
||||||
|
}
|
||||||
|
|
||||||
fn init(state) {
|
fn init(state) {
|
||||||
let se_box = SpriteBuilder(
|
let se_box = SpriteBuilder(
|
||||||
|
@ -19,7 +25,7 @@ fn init(state) {
|
||||||
SpriteAnchor::SouthWest
|
SpriteAnchor::SouthWest
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
exit_text.set_text(state.planet_name);
|
exit_text.set_text("Exit");
|
||||||
|
|
||||||
let exit_button = SpriteBuilder(
|
let exit_button = SpriteBuilder(
|
||||||
"exit_button",
|
"exit_button",
|
||||||
|
@ -64,7 +70,7 @@ fn init(state) {
|
||||||
SpriteAnchor::NorthWest
|
SpriteAnchor::NorthWest
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
ship_name.set_text(state.planet_name);
|
ship_name.set_text("Hyperion");
|
||||||
|
|
||||||
let ship_type = TextBoxBuilder(
|
let ship_type = TextBoxBuilder(
|
||||||
"ship_type",
|
"ship_type",
|
||||||
|
@ -75,7 +81,11 @@ fn init(state) {
|
||||||
SpriteAnchor::NorthWest
|
SpriteAnchor::NorthWest
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
ship_type.set_text(state.planet_name);
|
if state.player_ship().is_some() {
|
||||||
|
ship_type.set_text(state.player_ship().name());
|
||||||
|
} else {
|
||||||
|
ship_type.set_text("ERR: SHIP IS NONE");
|
||||||
|
}
|
||||||
|
|
||||||
let ship_stats = TextBoxBuilder(
|
let ship_stats = TextBoxBuilder(
|
||||||
"ship_stats",
|
"ship_stats",
|
||||||
|
@ -86,11 +96,7 @@ fn init(state) {
|
||||||
SpriteAnchor::NorthWest,
|
SpriteAnchor::NorthWest,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
ship_stats.set_text(state.planet_name);
|
ship_stats.set_text("Earth");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -123,7 +129,7 @@ fn init(state) {
|
||||||
SpriteAnchor::NorthEast,
|
SpriteAnchor::NorthEast,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
outfit_name.set_text(state.planet_name);
|
outfit_name.set_text("Earth");
|
||||||
|
|
||||||
let outfit_desc = TextBoxBuilder(
|
let outfit_desc = TextBoxBuilder(
|
||||||
"outfit_desc",
|
"outfit_desc",
|
||||||
|
@ -134,7 +140,7 @@ fn init(state) {
|
||||||
SpriteAnchor::NorthEast,
|
SpriteAnchor::NorthEast,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
outfit_desc.set_text(state.planet_name);
|
outfit_desc.set_text("Earth");
|
||||||
|
|
||||||
let outfit_stats = TextBoxBuilder(
|
let outfit_stats = TextBoxBuilder(
|
||||||
"outfit_stats",
|
"outfit_stats",
|
||||||
|
@ -145,7 +151,7 @@ fn init(state) {
|
||||||
SpriteAnchor::NorthEast,
|
SpriteAnchor::NorthEast,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
outfit_stats.set_text(state.planet_name);
|
outfit_stats.set_text("Earth");
|
||||||
|
|
||||||
return [
|
return [
|
||||||
ship_bg,
|
ship_bg,
|
||||||
|
@ -166,22 +172,37 @@ fn init(state) {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
fn hover(element, hover_state) {
|
|
||||||
|
fn event(state, event) {
|
||||||
|
if type_of(event) == "MouseHoverEvent" {
|
||||||
|
let element = event.element();
|
||||||
if element.has_name("exit_button") {
|
if element.has_name("exit_button") {
|
||||||
if hover_state {
|
if event.is_enter() {
|
||||||
element.take_edge("on:top", 0.1);
|
element.take_edge("on:top", 0.1);
|
||||||
} else {
|
} else {
|
||||||
element.take_edge("off:top", 0.1);
|
element.take_edge("off:top", 0.1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
fn click(element, click_state) {
|
|
||||||
if !click_state {
|
if type_of(event) == "MouseClickEvent" {
|
||||||
|
if !event.is_down() {
|
||||||
return SceneAction::None;
|
return SceneAction::None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let element = event.element();
|
||||||
if element.has_name("exit_button") {
|
if element.has_name("exit_button") {
|
||||||
return SceneAction::SceneLanded;
|
return SceneAction::GoTo("landed");
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if type_of(event) == "PlayerShipStateEvent" {
|
||||||
|
if !state.player_ship().is_landed() {
|
||||||
|
return SceneAction::GoTo("flying");
|
||||||
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
use std::{num::NonZeroU32, path::PathBuf};
|
use std::{collections::HashMap, num::NonZeroU32, path::PathBuf};
|
||||||
|
|
||||||
use rhai::AST;
|
use rhai::AST;
|
||||||
|
|
||||||
|
@ -7,7 +7,10 @@ pub(crate) mod syntax {
|
||||||
use galactica_packer::SpriteAtlas;
|
use galactica_packer::SpriteAtlas;
|
||||||
use rhai::Engine;
|
use rhai::Engine;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use std::path::{Path, PathBuf};
|
use std::{
|
||||||
|
collections::HashMap,
|
||||||
|
path::{Path, PathBuf},
|
||||||
|
};
|
||||||
|
|
||||||
// Raw serde syntax structs.
|
// Raw serde syntax structs.
|
||||||
// These are never seen by code outside this crate.
|
// These are never seen by code outside this crate.
|
||||||
|
@ -20,9 +23,8 @@ pub(crate) mod syntax {
|
||||||
pub zoom_min: f32,
|
pub zoom_min: f32,
|
||||||
pub zoom_max: f32,
|
pub zoom_max: f32,
|
||||||
pub ui_scale: f32,
|
pub ui_scale: f32,
|
||||||
pub ui_flying_scene: PathBuf,
|
pub ui_scene: HashMap<String, PathBuf>,
|
||||||
pub ui_landed_scene: PathBuf,
|
pub start_ui_scene: String,
|
||||||
pub ui_outfitter_scene: PathBuf,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Config {
|
impl Config {
|
||||||
|
@ -59,18 +61,19 @@ pub(crate) mod syntax {
|
||||||
};
|
};
|
||||||
|
|
||||||
let engine = Engine::new();
|
let engine = Engine::new();
|
||||||
let ui_landed_scene = engine
|
let mut ui_scenes = HashMap::new();
|
||||||
.compile_file(content_root.join(self.ui_landed_scene))
|
for (n, p) in self.ui_scene {
|
||||||
.with_context(|| format!("while loading `landed` scene"))
|
ui_scenes.insert(
|
||||||
.with_context(|| format!("while loading config"))?;
|
n.clone(),
|
||||||
let ui_outfitter_scene = engine
|
engine
|
||||||
.compile_file(content_root.join(self.ui_outfitter_scene))
|
.compile_file(content_root.join(p))
|
||||||
.with_context(|| format!("while loading `outfitter` scene"))
|
.with_context(|| format!("while loading scene script `{}`", n))?,
|
||||||
.with_context(|| format!("while loading config"))?;
|
);
|
||||||
let ui_flying_scene = engine
|
}
|
||||||
.compile_file(content_root.join(self.ui_flying_scene))
|
|
||||||
.with_context(|| format!("while loading `flying` scene"))
|
if !ui_scenes.contains_key(&self.start_ui_scene) {
|
||||||
.with_context(|| format!("while loading config"))?;
|
bail!("starting ui scene `{}` doesn't exist", self.start_ui_scene)
|
||||||
|
}
|
||||||
|
|
||||||
return Ok(super::Config {
|
return Ok(super::Config {
|
||||||
sprite_root: asset_root.join(self.sprite_root),
|
sprite_root: asset_root.join(self.sprite_root),
|
||||||
|
@ -98,9 +101,8 @@ pub(crate) mod syntax {
|
||||||
zoom_max: self.zoom_max,
|
zoom_max: self.zoom_max,
|
||||||
zoom_min: self.zoom_min,
|
zoom_min: self.zoom_min,
|
||||||
ui_scale: self.ui_scale,
|
ui_scale: self.ui_scale,
|
||||||
ui_landed_scene,
|
ui_scenes,
|
||||||
ui_flying_scene,
|
start_ui_scene: self.start_ui_scene,
|
||||||
ui_outfitter_scene,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,12 +189,10 @@ pub struct Config {
|
||||||
/// Ui scale factor
|
/// Ui scale factor
|
||||||
pub ui_scale: f32,
|
pub ui_scale: f32,
|
||||||
|
|
||||||
/// Ui landed scene script
|
/// Ui scene scripts
|
||||||
pub ui_landed_scene: AST,
|
pub ui_scenes: HashMap<String, AST>,
|
||||||
|
|
||||||
/// Ui flying scene script
|
/// The UI scene we start in.
|
||||||
pub ui_flying_scene: AST,
|
/// This is guaranteed to be a key in ui_scenes.
|
||||||
|
pub start_ui_scene: String,
|
||||||
/// Ui outfitter scene script
|
|
||||||
pub ui_outfitter_scene: AST,
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use anyhow::{bail, Context, Result};
|
use anyhow::{anyhow, bail, Context, Result};
|
||||||
use galactica_util::to_radians;
|
use galactica_util::to_radians;
|
||||||
use nalgebra::{Point2, Point3};
|
use nalgebra::{Point2, Point3};
|
||||||
use std::collections::{HashMap, HashSet};
|
use std::collections::{HashMap, HashSet};
|
||||||
|
@ -31,6 +31,7 @@ pub(crate) mod syntax {
|
||||||
pub landable: Option<bool>,
|
pub landable: Option<bool>,
|
||||||
pub name: Option<String>,
|
pub name: Option<String>,
|
||||||
pub desc: Option<String>,
|
pub desc: Option<String>,
|
||||||
|
pub image: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Debug, Deserialize)]
|
||||||
|
@ -126,10 +127,13 @@ pub struct SystemObject {
|
||||||
pub landable: bool,
|
pub landable: bool,
|
||||||
|
|
||||||
/// The display name of this object
|
/// The display name of this object
|
||||||
pub name: String,
|
pub name: Option<String>,
|
||||||
|
|
||||||
/// The description of this object
|
/// The description of this object (shown on landed ui)
|
||||||
pub desc: String,
|
pub desc: Option<String>,
|
||||||
|
|
||||||
|
/// This object's image (shown on landed ui)
|
||||||
|
pub image: Option<SpriteHandle>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Helper function for resolve_position, never called on its own.
|
/// Helper function for resolve_position, never called on its own.
|
||||||
|
@ -220,8 +224,43 @@ impl crate::Build for System {
|
||||||
Some(t) => *t,
|
Some(t) => *t,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let image_handle = match &obj.image {
|
||||||
|
Some(x) => match content.sprite_index.get(x) {
|
||||||
|
None => bail!(
|
||||||
|
"In system `{}`: sprite `{}` doesn't exist",
|
||||||
|
system_name,
|
||||||
|
obj.sprite
|
||||||
|
),
|
||||||
|
Some(t) => Some(*t),
|
||||||
|
},
|
||||||
|
None => None,
|
||||||
|
};
|
||||||
|
|
||||||
|
if obj.landable.unwrap_or(false) {
|
||||||
|
if obj.name.is_none() {
|
||||||
|
return Err(anyhow!("if an object is landable, it must have a name"))
|
||||||
|
.with_context(|| format!("in object labeled `{}`", label))
|
||||||
|
.with_context(|| format!("in system `{}`", system_name));
|
||||||
|
}
|
||||||
|
|
||||||
|
if obj.desc.is_none() {
|
||||||
|
return Err(anyhow!(
|
||||||
|
"if an object is landable, it must have a description"
|
||||||
|
))
|
||||||
|
.with_context(|| format!("in object labeled `{}`", label))
|
||||||
|
.with_context(|| format!("in system `{}`", system_name));
|
||||||
|
}
|
||||||
|
|
||||||
|
if obj.image.is_none() {
|
||||||
|
return Err(anyhow!("if an object is landable, it must have an image"))
|
||||||
|
.with_context(|| format!("in object labeled `{}`", label))
|
||||||
|
.with_context(|| format!("in system `{}`", system_name));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
objects.push(SystemObject {
|
objects.push(SystemObject {
|
||||||
sprite: sprite_handle,
|
sprite: sprite_handle,
|
||||||
|
image: image_handle,
|
||||||
pos: resolve_position(&system.object, &obj, cycle_detector)
|
pos: resolve_position(&system.object, &obj, cycle_detector)
|
||||||
.with_context(|| format!("in object {:#?}", label))?,
|
.with_context(|| format!("in object {:#?}", label))?,
|
||||||
size: obj.size,
|
size: obj.size,
|
||||||
|
@ -231,19 +270,13 @@ impl crate::Build for System {
|
||||||
body_index: 0,
|
body_index: 0,
|
||||||
},
|
},
|
||||||
landable: obj.landable.unwrap_or(false),
|
landable: obj.landable.unwrap_or(false),
|
||||||
name: obj
|
name: obj.name.as_ref().map(|x| x.clone()),
|
||||||
.name
|
|
||||||
.as_ref()
|
|
||||||
.map(|x| x.clone())
|
|
||||||
.unwrap_or("".to_string()),
|
|
||||||
|
|
||||||
// TODO: better linebreaks, handle double spaces
|
// TODO: better linebreaks, handle double spaces
|
||||||
// Tabs
|
// Tabs
|
||||||
desc: obj
|
desc: obj
|
||||||
.desc
|
.desc
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map(|x| x.replace("\n", " ").replace("<br>", "\n"))
|
.map(|x| x.replace("\n", " ").replace("<br>", "\n")),
|
||||||
.unwrap_or("".to_string()),
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ use anyhow::{bail, Result};
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use galactica_content::{Content, SystemHandle};
|
use galactica_content::{Content, SystemHandle};
|
||||||
use galactica_playeragent::{PlayerAgent, PlayerStatus};
|
use galactica_playeragent::{PlayerAgent, PlayerStatus};
|
||||||
use galactica_render::{RenderInput, RenderScenes};
|
use galactica_render::RenderInput;
|
||||||
use galactica_system::{
|
use galactica_system::{
|
||||||
data::ShipState,
|
data::ShipState,
|
||||||
phys::{PhysImage, PhysSimShipHandle},
|
phys::{PhysImage, PhysSimShipHandle},
|
||||||
|
@ -121,25 +121,20 @@ fn try_main() -> Result<()> {
|
||||||
|
|
||||||
let event_loop = EventLoop::new();
|
let event_loop = EventLoop::new();
|
||||||
let window = WindowBuilder::new().build(&event_loop).unwrap();
|
let window = WindowBuilder::new().build(&event_loop).unwrap();
|
||||||
let mut gpu = pollster::block_on(galactica_render::GPUState::new(
|
let mut gpu = pollster::block_on(galactica_render::GPUState::new(window, content.clone()))?;
|
||||||
window,
|
|
||||||
content.clone(),
|
|
||||||
RenderScenes::System,
|
|
||||||
))?;
|
|
||||||
gpu.init(&content);
|
gpu.init(&content);
|
||||||
|
|
||||||
// TODO: don't clone content
|
// TODO: don't clone content
|
||||||
let mut game = game::Game::new(content.clone());
|
let mut game = game::Game::new(content.clone());
|
||||||
let p = game.make_player();
|
let p = game.make_player();
|
||||||
|
|
||||||
let mut player = PlayerAgent::new(p.0);
|
let mut player = Rc::new(PlayerAgent::new(p.0));
|
||||||
player.set_camera_aspect(
|
Rc::get_mut(&mut player).unwrap().set_camera_aspect(
|
||||||
gpu.window().inner_size().width as f32 / gpu.window().inner_size().height as f32,
|
gpu.window().inner_size().width as f32 / gpu.window().inner_size().height as f32,
|
||||||
);
|
);
|
||||||
|
|
||||||
let mut phys_img = PhysImage::new();
|
let mut phys_img = Rc::new(PhysImage::new());
|
||||||
let mut last_run = Instant::now();
|
let mut last_run = Instant::now();
|
||||||
let mut was_landed = false;
|
|
||||||
|
|
||||||
event_loop.run(move |event, _, control_flow| {
|
event_loop.run(move |event, _, control_flow| {
|
||||||
match event {
|
match event {
|
||||||
|
@ -149,8 +144,8 @@ fn try_main() -> Result<()> {
|
||||||
camera_zoom: player.camera.zoom,
|
camera_zoom: player.camera.zoom,
|
||||||
current_time: game.get_current_time(),
|
current_time: game.get_current_time(),
|
||||||
ct: content.clone(),
|
ct: content.clone(),
|
||||||
phys_img: &phys_img,
|
phys_img: phys_img.clone(),
|
||||||
player: &player,
|
player: player.clone(),
|
||||||
time_since_last_run: last_run.elapsed().as_secs_f32(),
|
time_since_last_run: last_run.elapsed().as_secs_f32(),
|
||||||
current_system: SystemHandle { index: 0 },
|
current_system: SystemHandle { index: 0 },
|
||||||
timing: game.get_timing().clone(),
|
timing: game.get_timing().clone(),
|
||||||
|
@ -167,9 +162,9 @@ fn try_main() -> Result<()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
Event::MainEventsCleared => {
|
Event::MainEventsCleared => {
|
||||||
game.update_player_controls(&mut player);
|
game.update_player_controls(Rc::get_mut(&mut player).unwrap());
|
||||||
game.step(&phys_img);
|
game.step(&phys_img);
|
||||||
game.update_image(&mut phys_img);
|
game.update_image(Rc::get_mut(&mut phys_img).unwrap());
|
||||||
|
|
||||||
// TODO: clean up
|
// TODO: clean up
|
||||||
let player_status = {
|
let player_status = {
|
||||||
|
@ -180,21 +175,9 @@ fn try_main() -> Result<()> {
|
||||||
ShipState::Landing { .. }
|
ShipState::Landing { .. }
|
||||||
| ShipState::UnLanding { .. }
|
| ShipState::UnLanding { .. }
|
||||||
| ShipState::Collapsing { .. }
|
| ShipState::Collapsing { .. }
|
||||||
| ShipState::Flying { .. } => {
|
| ShipState::Flying { .. } => Some(*o.rigidbody.translation()),
|
||||||
if was_landed {
|
|
||||||
was_landed = false;
|
|
||||||
gpu.set_scene(RenderScenes::System);
|
|
||||||
}
|
|
||||||
|
|
||||||
Some(*o.rigidbody.translation())
|
|
||||||
}
|
|
||||||
|
|
||||||
ShipState::Landed { target } => {
|
ShipState::Landed { target } => {
|
||||||
if !was_landed {
|
|
||||||
was_landed = true;
|
|
||||||
gpu.set_scene(RenderScenes::Landed);
|
|
||||||
}
|
|
||||||
|
|
||||||
let b = content.get_system_object(*target);
|
let b = content.get_system_object(*target);
|
||||||
Some(Vector2::new(b.pos.x, b.pos.y))
|
Some(Vector2::new(b.pos.x, b.pos.y))
|
||||||
}
|
}
|
||||||
|
@ -210,9 +193,10 @@ fn try_main() -> Result<()> {
|
||||||
};
|
};
|
||||||
|
|
||||||
// This must be updated BEFORE rendering!
|
// This must be updated BEFORE rendering!
|
||||||
player.step(&content, player_status);
|
Rc::get_mut(&mut player)
|
||||||
|
.unwrap()
|
||||||
player.input.clear_inputs();
|
.step(&content, player_status);
|
||||||
|
Rc::get_mut(&mut player).unwrap().input.clear_inputs();
|
||||||
gpu.window().request_redraw();
|
gpu.window().request_redraw();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -233,27 +217,39 @@ fn try_main() -> Result<()> {
|
||||||
},
|
},
|
||||||
..
|
..
|
||||||
} => {
|
} => {
|
||||||
player.input.process_key(state, key);
|
Rc::get_mut(&mut player)
|
||||||
|
.unwrap()
|
||||||
|
.input
|
||||||
|
.process_key(state, key);
|
||||||
}
|
}
|
||||||
WindowEvent::CursorMoved { position, .. } => {
|
WindowEvent::CursorMoved { position, .. } => {
|
||||||
player.input.process_mouse(position);
|
Rc::get_mut(&mut player)
|
||||||
|
.unwrap()
|
||||||
|
.input
|
||||||
|
.process_mouse(position);
|
||||||
}
|
}
|
||||||
WindowEvent::MouseInput { state, button, .. } => {
|
WindowEvent::MouseInput { state, button, .. } => {
|
||||||
player.input.process_click(state, button);
|
Rc::get_mut(&mut player)
|
||||||
|
.unwrap()
|
||||||
|
.input
|
||||||
|
.process_click(state, button);
|
||||||
}
|
}
|
||||||
WindowEvent::MouseWheel { delta, phase, .. } => {
|
WindowEvent::MouseWheel { delta, phase, .. } => {
|
||||||
player.input.process_scroll(delta, phase);
|
Rc::get_mut(&mut player)
|
||||||
|
.unwrap()
|
||||||
|
.input
|
||||||
|
.process_scroll(delta, phase);
|
||||||
}
|
}
|
||||||
WindowEvent::Resized(_) => {
|
WindowEvent::Resized(_) => {
|
||||||
gpu.resize(&content);
|
gpu.resize(&content);
|
||||||
player.set_camera_aspect(
|
Rc::get_mut(&mut player).unwrap().set_camera_aspect(
|
||||||
gpu.window().inner_size().width as f32
|
gpu.window().inner_size().width as f32
|
||||||
/ gpu.window().inner_size().height as f32,
|
/ gpu.window().inner_size().height as f32,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
WindowEvent::ScaleFactorChanged { .. } => {
|
WindowEvent::ScaleFactorChanged { .. } => {
|
||||||
gpu.resize(&content);
|
gpu.resize(&content);
|
||||||
player.set_camera_aspect(
|
Rc::get_mut(&mut player).unwrap().set_camera_aspect(
|
||||||
gpu.window().inner_size().width as f32
|
gpu.window().inner_size().width as f32
|
||||||
/ gpu.window().inner_size().height as f32,
|
/ gpu.window().inner_size().height as f32,
|
||||||
);
|
);
|
||||||
|
|
|
@ -3,6 +3,7 @@ use winit::{
|
||||||
event::{ElementState, MouseButton, MouseScrollDelta, TouchPhase, VirtualKeyCode},
|
event::{ElementState, MouseButton, MouseScrollDelta, TouchPhase, VirtualKeyCode},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct InputStatus {
|
pub struct InputStatus {
|
||||||
// Parameters
|
// Parameters
|
||||||
scroll_speed: f32,
|
scroll_speed: f32,
|
||||||
|
|
|
@ -25,6 +25,7 @@ impl PlayerSelection {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct PlayerAgent {
|
pub struct PlayerAgent {
|
||||||
/// Which ship this player is controlling
|
/// Which ship this player is controlling
|
||||||
pub ship: Option<ColliderHandle>,
|
pub ship: Option<ColliderHandle>,
|
||||||
|
|
|
@ -1,51 +0,0 @@
|
||||||
// Given an anchored position and sprite dimensions,
|
|
||||||
// return the translation that should be applied on
|
|
||||||
// vertex coordinates
|
|
||||||
fn anchor(
|
|
||||||
anchor: u32, // Anchor index
|
|
||||||
position: vec2<f32>, // Anchored position
|
|
||||||
dim: vec2<f32>, // Sprite dimensions (width, height)
|
|
||||||
) -> vec2<f32> {
|
|
||||||
|
|
||||||
// TODO: remove, do in ui rust lib
|
|
||||||
var trans: vec2<f32> = vec2(0.0, 0.0);
|
|
||||||
let window_dim = (
|
|
||||||
vec2(global_data.window_size_w, global_data.window_size_h) /
|
|
||||||
global_data.window_scale
|
|
||||||
);
|
|
||||||
|
|
||||||
if anchor == 0u { // NW C (screen anchor, sprite anchor)
|
|
||||||
trans += vec2(-window_dim.x, window_dim.y) / 2.0; // origin
|
|
||||||
trans += vec2(0.0, 0.0) / 2.0; // offset
|
|
||||||
} else if anchor == 1u { // NW NW
|
|
||||||
trans += vec2(-window_dim.x, window_dim.y) / 2.0;
|
|
||||||
trans += vec2(dim.x, -dim.y) / 2.0;
|
|
||||||
} else if anchor == 2u { // NW NE
|
|
||||||
trans += vec2(-window_dim.x, window_dim.y) / 2.0;
|
|
||||||
trans += vec2(-dim.x, -dim.y) / 2.0;
|
|
||||||
} else if anchor == 3u { // NW SW
|
|
||||||
trans += vec2(-window_dim.x, window_dim.y) / 2.0;
|
|
||||||
trans += vec2(dim.x, dim.y) / 2.0;
|
|
||||||
} else if anchor == 4u { // NW SE
|
|
||||||
trans += vec2(-window_dim.x, window_dim.y) / 2.0;
|
|
||||||
trans += vec2(-dim.x, dim.y) / 2.0;
|
|
||||||
} else if anchor == 5u { // NE NE
|
|
||||||
trans += vec2(window_dim.x, window_dim.y) / 2.0;
|
|
||||||
trans += vec2(-dim.x, -dim.y) / 2.0;
|
|
||||||
} else if anchor == 6u { // C C
|
|
||||||
trans += vec2(0.0, 0.0) / 2.0;
|
|
||||||
trans += vec2(0.0, 0.0) / 2.0;
|
|
||||||
} else if anchor == 7u { // C NW
|
|
||||||
trans += vec2(0.0, 0.0) / 2.0;
|
|
||||||
trans += vec2(dim.x, -dim.y) / 2.0;
|
|
||||||
} else { // center / center as default, since it's the most visible variant.
|
|
||||||
trans += vec2(0.0, 0.0) / 2.0;
|
|
||||||
trans += vec2(0.0, 0.0) / 2.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
trans += position;
|
|
||||||
|
|
||||||
// This renders correctly, but the offsets here are off by a factor of two.
|
|
||||||
// I'm not sure why... might be because WGPU screen coordinates are -1 to 1.
|
|
||||||
return (trans / window_dim) * 2.0;
|
|
||||||
}
|
|
|
@ -1,12 +1,11 @@
|
||||||
// INCLUDE: global uniform header
|
// INCLUDE: global uniform header
|
||||||
|
|
||||||
struct InstanceInput {
|
struct InstanceInput {
|
||||||
@location(2) anchor: u32,
|
@location(2) position: vec2<f32>,
|
||||||
@location(3) position: vec2<f32>,
|
@location(3) diameter: f32,
|
||||||
@location(4) diameter: f32,
|
@location(4) stroke: f32,
|
||||||
@location(5) stroke: f32,
|
@location(5) angle: f32,
|
||||||
@location(6) angle: f32,
|
@location(6) color: vec4<f32>,
|
||||||
@location(7) color: vec4<f32>,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct VertexInput {
|
struct VertexInput {
|
||||||
|
@ -29,9 +28,6 @@ var texture_array: binding_array<texture_2d<f32>>;
|
||||||
@group(0) @binding(1)
|
@group(0) @binding(1)
|
||||||
var sampler_array: binding_array<sampler>;
|
var sampler_array: binding_array<sampler>;
|
||||||
|
|
||||||
|
|
||||||
// INCLUDE: anchor.wgsl
|
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
fn vertex_main(
|
fn vertex_main(
|
||||||
vertex: VertexInput,
|
vertex: VertexInput,
|
||||||
|
@ -45,17 +41,18 @@ fn vertex_main(
|
||||||
out.color = instance.color;
|
out.color = instance.color;
|
||||||
out.angle = instance.angle;
|
out.angle = instance.angle;
|
||||||
|
|
||||||
// Center of this radial bar, in logical pixels,
|
|
||||||
// with (0, 0) at the center of the screen.
|
let window_dim = (
|
||||||
out.center = anchor(
|
vec2(global_data.window_size_w, global_data.window_size_h) /
|
||||||
instance.anchor,
|
global_data.window_scale
|
||||||
instance.position,
|
);
|
||||||
vec2(instance.diameter, instance.diameter)
|
|
||||||
) / 2.0 * (
|
// Center of this radial bar, in logical pixels,
|
||||||
|
// with (0, 0) at the center of the screen.
|
||||||
|
out.center = (instance.position / window_dim) * (
|
||||||
vec2(global_data.window_size_w, global_data.window_size_h) /
|
vec2(global_data.window_size_w, global_data.window_size_h) /
|
||||||
global_data.window_scale
|
global_data.window_scale
|
||||||
);
|
);
|
||||||
// ^ slight correction, since anchor gives us a different result than we need here
|
|
||||||
|
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
// INCLUDE: global uniform header
|
// INCLUDE: global uniform header
|
||||||
|
|
||||||
struct InstanceInput {
|
struct InstanceInput {
|
||||||
@location(2) anchor: u32,
|
@location(2) position: vec2<f32>,
|
||||||
@location(3) position: vec2<f32>,
|
@location(3) angle: f32,
|
||||||
@location(4) angle: f32,
|
@location(4) dim: vec2<f32>,
|
||||||
@location(5) dim: vec2<f32>,
|
@location(5) color_transform: vec4<f32>,
|
||||||
@location(6) color_transform: vec4<f32>,
|
@location(6) texture_index: vec2<u32>,
|
||||||
@location(7) texture_index: vec2<u32>,
|
@location(7) texture_fade: f32,
|
||||||
@location(8) texture_fade: f32,
|
@location(8) mask_index: vec2<u32>,
|
||||||
@location(9) mask_index: vec2<u32>,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct VertexInput {
|
struct VertexInput {
|
||||||
|
@ -34,10 +33,6 @@ var texture_array: binding_array<texture_2d<f32>>;
|
||||||
@group(0) @binding(1)
|
@group(0) @binding(1)
|
||||||
var sampler_array: binding_array<sampler>;
|
var sampler_array: binding_array<sampler>;
|
||||||
|
|
||||||
|
|
||||||
// INCLUDE: anchor.wgsl
|
|
||||||
|
|
||||||
|
|
||||||
fn transform_vertex(
|
fn transform_vertex(
|
||||||
instance: InstanceInput,
|
instance: InstanceInput,
|
||||||
vertex_position: vec3<f32>,
|
vertex_position: vec3<f32>,
|
||||||
|
@ -57,24 +52,19 @@ fn transform_vertex(
|
||||||
vertex_position.y * scale
|
vertex_position.y * scale
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Apply rotation (and adjust sprite angle, since sprites point north)
|
||||||
pos = mat2x2(
|
pos = mat2x2(
|
||||||
vec2(cos(instance.angle - 1.5708), sin(instance.angle - 1.5708)),
|
vec2(cos(instance.angle - 1.5708), sin(instance.angle - 1.5708)),
|
||||||
vec2(-sin(instance.angle - 1.5708), cos(instance.angle - 1.5708))
|
vec2(-sin(instance.angle - 1.5708), cos(instance.angle - 1.5708))
|
||||||
) * pos;
|
) * pos;
|
||||||
|
|
||||||
// Apply rotation (and adjust sprite angle, since sprites point north)
|
|
||||||
|
|
||||||
// Correct for screen aspect, preserving height
|
// Correct for screen aspect, preserving height
|
||||||
pos = vec2(
|
pos = vec2(
|
||||||
pos.x / global_data.window_aspect,
|
pos.x / global_data.window_aspect,
|
||||||
pos.y
|
pos.y
|
||||||
);
|
);
|
||||||
|
|
||||||
pos = pos + anchor(
|
pos = pos + (instance.position / window_dim) * 2.0;
|
||||||
instance.anchor,
|
|
||||||
instance.position,
|
|
||||||
instance.dim
|
|
||||||
);
|
|
||||||
|
|
||||||
return vec4<f32>(pos, 0.0, 1.0);
|
return vec4<f32>(pos, 0.0, 1.0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,22 +1,24 @@
|
||||||
use std::rc::Rc;
|
use std::{iter, rc::Rc};
|
||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use bytemuck;
|
use bytemuck;
|
||||||
use galactica_content::Content;
|
use galactica_content::Content;
|
||||||
use glyphon::{FontSystem, SwashCache, TextAtlas, TextRenderer};
|
use galactica_system::data::ShipState;
|
||||||
use log::debug;
|
use galactica_util::to_radians;
|
||||||
|
use glyphon::{FontSystem, Resolution, SwashCache, TextAtlas, TextRenderer};
|
||||||
|
use nalgebra::{Point2, Point3};
|
||||||
use wgpu;
|
use wgpu;
|
||||||
use winit;
|
use winit;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
globaluniform::{GlobalDataContent, GlobalUniform},
|
globaluniform::{GlobalDataContent, GlobalUniform, ObjectData},
|
||||||
pipeline::PipelineBuilder,
|
pipeline::PipelineBuilder,
|
||||||
renderscene::{LandedScene, RenderScene, SystemScene},
|
|
||||||
shaderprocessor::preprocess_shader,
|
shaderprocessor::preprocess_shader,
|
||||||
starfield::Starfield,
|
starfield::Starfield,
|
||||||
texturearray::TextureArray,
|
texturearray::TextureArray,
|
||||||
ui::{UiManager, UiScene},
|
ui::UiManager,
|
||||||
RenderInput, RenderScenes, RenderState, VertexBuffers,
|
vertexbuffer::{consts::SPRITE_INDICES, types::ObjectInstance},
|
||||||
|
RenderInput, RenderState, VertexBuffers,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// A high-level GPU wrapper. Reads game state (via RenderInput), produces pretty pictures.
|
/// A high-level GPU wrapper. Reads game state (via RenderInput), produces pretty pictures.
|
||||||
|
@ -32,16 +34,11 @@ pub struct GPUState {
|
||||||
pub(crate) texture_array: TextureArray,
|
pub(crate) texture_array: TextureArray,
|
||||||
pub(crate) state: RenderState,
|
pub(crate) state: RenderState,
|
||||||
pub(crate) ui: UiManager,
|
pub(crate) ui: UiManager,
|
||||||
pub(crate) scene: RenderScenes,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GPUState {
|
impl GPUState {
|
||||||
/// Make a new GPUState that draws on `window`
|
/// Make a new GPUState that draws on `window`
|
||||||
pub async fn new(
|
pub async fn new(window: winit::window::Window, ct: Rc<Content>) -> Result<Self> {
|
||||||
window: winit::window::Window,
|
|
||||||
ct: Rc<Content>,
|
|
||||||
scene: RenderScenes,
|
|
||||||
) -> Result<Self> {
|
|
||||||
let window_size = window.inner_size();
|
let window_size = window.inner_size();
|
||||||
let window_aspect = window_size.width as f32 / window_size.height as f32;
|
let window_aspect = window_size.width as f32 / window_size.height as f32;
|
||||||
|
|
||||||
|
@ -218,20 +215,7 @@ impl GPUState {
|
||||||
let mut starfield = Starfield::new();
|
let mut starfield = Starfield::new();
|
||||||
starfield.regenerate(&ct);
|
starfield.regenerate(&ct);
|
||||||
|
|
||||||
return Ok(Self {
|
let mut state = RenderState {
|
||||||
ui: UiManager::new(ct),
|
|
||||||
device,
|
|
||||||
config,
|
|
||||||
surface,
|
|
||||||
starfield,
|
|
||||||
texture_array,
|
|
||||||
object_pipeline,
|
|
||||||
starfield_pipeline,
|
|
||||||
ui_pipeline,
|
|
||||||
radialbar_pipeline,
|
|
||||||
scene,
|
|
||||||
|
|
||||||
state: RenderState {
|
|
||||||
queue,
|
queue,
|
||||||
window,
|
window,
|
||||||
window_size,
|
window_size,
|
||||||
|
@ -242,7 +226,20 @@ impl GPUState {
|
||||||
text_cache,
|
text_cache,
|
||||||
text_font_system,
|
text_font_system,
|
||||||
text_renderer,
|
text_renderer,
|
||||||
},
|
};
|
||||||
|
|
||||||
|
return Ok(Self {
|
||||||
|
ui: UiManager::new(ct, &mut state),
|
||||||
|
device,
|
||||||
|
config,
|
||||||
|
surface,
|
||||||
|
starfield,
|
||||||
|
texture_array,
|
||||||
|
object_pipeline,
|
||||||
|
starfield_pipeline,
|
||||||
|
ui_pipeline,
|
||||||
|
radialbar_pipeline,
|
||||||
|
state,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -253,18 +250,6 @@ impl GPUState {
|
||||||
&self.state.window
|
&self.state.window
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Change the current scenection
|
|
||||||
pub fn set_scene(&mut self, scene: RenderScenes) {
|
|
||||||
debug!("switching to {:?}", scene);
|
|
||||||
|
|
||||||
match scene {
|
|
||||||
RenderScenes::Landed => self.ui.set_scene(&mut self.state, UiScene::Landed).unwrap(),
|
|
||||||
RenderScenes::System => self.ui.set_scene(&mut self.state, UiScene::Flying).unwrap(),
|
|
||||||
};
|
|
||||||
|
|
||||||
self.scene = scene;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Update window size.
|
/// Update window size.
|
||||||
/// This should be called whenever our window is resized.
|
/// This should be called whenever our window is resized.
|
||||||
pub fn resize(&mut self, ct: &Content) {
|
pub fn resize(&mut self, ct: &Content) {
|
||||||
|
@ -293,6 +278,8 @@ impl GPUState {
|
||||||
|
|
||||||
/// Main render function. Draws sprites on a window.
|
/// Main render function. Draws sprites on a window.
|
||||||
pub fn render(&mut self, input: RenderInput) -> Result<(), wgpu::SurfaceError> {
|
pub fn render(&mut self, input: RenderInput) -> Result<(), wgpu::SurfaceError> {
|
||||||
|
let input = Rc::new(input);
|
||||||
|
|
||||||
// Update global values
|
// Update global values
|
||||||
self.state.queue.write_buffer(
|
self.state.queue.write_buffer(
|
||||||
&self.state.global_uniform.data_buffer,
|
&self.state.global_uniform.data_buffer,
|
||||||
|
@ -316,11 +303,454 @@ impl GPUState {
|
||||||
|
|
||||||
self.state.frame_reset();
|
self.state.frame_reset();
|
||||||
|
|
||||||
match self.scene {
|
let output = self.surface.get_current_texture()?;
|
||||||
RenderScenes::System => SystemScene::render(self, &input).unwrap(),
|
let view = output.texture.create_view(&Default::default());
|
||||||
RenderScenes::Landed => LandedScene::render(self, &input).unwrap(),
|
|
||||||
|
let mut encoder = self
|
||||||
|
.device
|
||||||
|
.create_command_encoder(&wgpu::CommandEncoderDescriptor {
|
||||||
|
label: Some("render encoder"),
|
||||||
|
});
|
||||||
|
|
||||||
|
let mut render_pass = encoder.begin_render_pass(&wgpu::RenderPassDescriptor {
|
||||||
|
label: Some("render pass"),
|
||||||
|
|
||||||
|
color_attachments: &[Some(wgpu::RenderPassColorAttachment {
|
||||||
|
view: &view,
|
||||||
|
resolve_target: None,
|
||||||
|
ops: wgpu::Operations {
|
||||||
|
load: wgpu::LoadOp::Clear(wgpu::Color {
|
||||||
|
r: 0.0,
|
||||||
|
g: 0.0,
|
||||||
|
b: 0.0,
|
||||||
|
a: 1.0,
|
||||||
|
}),
|
||||||
|
store: wgpu::StoreOp::Store,
|
||||||
|
},
|
||||||
|
})],
|
||||||
|
depth_stencil_attachment: None,
|
||||||
|
occlusion_query_set: None,
|
||||||
|
timestamp_writes: None,
|
||||||
|
});
|
||||||
|
|
||||||
|
if self.ui.get_config().show_phys {
|
||||||
|
// Create sprite instances
|
||||||
|
|
||||||
|
// Game coordinates (relative to camera) of ne and sw corners of screen.
|
||||||
|
// Used to skip off-screen sprites.
|
||||||
|
let clip_ne = Point2::new(-self.state.window_aspect, 1.0) * input.camera_zoom;
|
||||||
|
let clip_sw = Point2::new(self.state.window_aspect, -1.0) * input.camera_zoom;
|
||||||
|
|
||||||
|
// Order matters, it determines what is drawn on top.
|
||||||
|
// The order inside ships and projectiles doesn't matter,
|
||||||
|
// but ships should always be under projectiles.
|
||||||
|
self.push_system(&input, (clip_ne, clip_sw));
|
||||||
|
self.push_ships(&input, (clip_ne, clip_sw));
|
||||||
|
self.push_projectiles(&input, (clip_ne, clip_sw));
|
||||||
|
self.push_effects(&input, (clip_ne, clip_sw));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.ui.draw(input.clone(), &mut self.state).unwrap();
|
||||||
|
|
||||||
|
// These should match the indices in each shader,
|
||||||
|
// and should each have a corresponding bind group layout.
|
||||||
|
render_pass.set_bind_group(0, &self.texture_array.bind_group, &[]);
|
||||||
|
render_pass.set_bind_group(1, &self.state.global_uniform.bind_group, &[]);
|
||||||
|
|
||||||
|
if self.ui.get_config().show_starfield {
|
||||||
|
// Starfield pipeline
|
||||||
|
self.state
|
||||||
|
.vertex_buffers
|
||||||
|
.get_starfield()
|
||||||
|
.set_in_pass(&mut render_pass);
|
||||||
|
render_pass.set_pipeline(&self.starfield_pipeline);
|
||||||
|
render_pass.draw_indexed(
|
||||||
|
0..SPRITE_INDICES.len() as u32,
|
||||||
|
0,
|
||||||
|
0..self.state.get_starfield_counter(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.ui.get_config().show_phys {
|
||||||
|
// Sprite pipeline
|
||||||
|
self.state
|
||||||
|
.vertex_buffers
|
||||||
|
.get_object()
|
||||||
|
.set_in_pass(&mut render_pass);
|
||||||
|
render_pass.set_pipeline(&self.object_pipeline);
|
||||||
|
render_pass.draw_indexed(
|
||||||
|
0..SPRITE_INDICES.len() as u32,
|
||||||
|
0,
|
||||||
|
0..self.state.get_object_counter(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ui pipeline
|
||||||
|
self.state
|
||||||
|
.vertex_buffers
|
||||||
|
.get_ui()
|
||||||
|
.set_in_pass(&mut render_pass);
|
||||||
|
render_pass.set_pipeline(&self.ui_pipeline);
|
||||||
|
render_pass.draw_indexed(
|
||||||
|
0..SPRITE_INDICES.len() as u32,
|
||||||
|
0,
|
||||||
|
0..self.state.get_ui_counter(),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Radial progress bars
|
||||||
|
// TODO: do we need to do this every time?
|
||||||
|
self.state
|
||||||
|
.vertex_buffers
|
||||||
|
.get_radialbar()
|
||||||
|
.set_in_pass(&mut render_pass);
|
||||||
|
render_pass.set_pipeline(&self.radialbar_pipeline);
|
||||||
|
render_pass.draw_indexed(
|
||||||
|
0..SPRITE_INDICES.len() as u32,
|
||||||
|
0,
|
||||||
|
0..self.state.get_radialbar_counter(),
|
||||||
|
);
|
||||||
|
|
||||||
|
let textareas = self.ui.get_textareas(&input, &self.state);
|
||||||
|
self.state
|
||||||
|
.text_renderer
|
||||||
|
.prepare(
|
||||||
|
&self.device,
|
||||||
|
&self.state.queue,
|
||||||
|
&mut self.state.text_font_system,
|
||||||
|
&mut self.state.text_atlas,
|
||||||
|
Resolution {
|
||||||
|
width: self.state.window_size.width,
|
||||||
|
height: self.state.window_size.height,
|
||||||
|
},
|
||||||
|
textareas,
|
||||||
|
&mut self.state.text_cache,
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
self.state
|
||||||
|
.text_renderer
|
||||||
|
.render(&self.state.text_atlas, &mut render_pass)
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
// begin_render_pass borrows encoder mutably,
|
||||||
|
// so we need to drop it before calling finish.
|
||||||
|
drop(render_pass);
|
||||||
|
|
||||||
|
self.state.queue.submit(iter::once(encoder.finish()));
|
||||||
|
output.present();
|
||||||
|
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Render utilities
|
||||||
|
impl GPUState {
|
||||||
|
fn push_ships(
|
||||||
|
&mut self,
|
||||||
|
input: &RenderInput,
|
||||||
|
// NE and SW corners of screen
|
||||||
|
screen_clip: (Point2<f32>, Point2<f32>),
|
||||||
|
) {
|
||||||
|
for s in input.phys_img.iter_ships() {
|
||||||
|
let ship_pos;
|
||||||
|
let ship_ang;
|
||||||
|
let ship_cnt;
|
||||||
|
match s.ship.get_data().get_state() {
|
||||||
|
ShipState::Dead | ShipState::Landed { .. } => continue,
|
||||||
|
|
||||||
|
ShipState::Collapsing { .. } | ShipState::Flying { .. } => {
|
||||||
|
let r = &s.rigidbody;
|
||||||
|
let pos = *r.translation();
|
||||||
|
ship_pos = Point3::new(pos.x, pos.y, 1.0);
|
||||||
|
let ship_rot = r.rotation();
|
||||||
|
ship_ang = ship_rot.angle();
|
||||||
|
ship_cnt = input.ct.get_ship(s.ship.get_data().get_content());
|
||||||
|
}
|
||||||
|
|
||||||
|
ShipState::UnLanding { current_z, .. } | ShipState::Landing { current_z, .. } => {
|
||||||
|
let r = &s.rigidbody;
|
||||||
|
let pos = *r.translation();
|
||||||
|
ship_pos = Point3::new(pos.x, pos.y, *current_z);
|
||||||
|
let ship_rot = r.rotation();
|
||||||
|
ship_ang = ship_rot.angle();
|
||||||
|
ship_cnt = input.ct.get_ship(s.ship.get_data().get_content());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Position adjusted for parallax
|
||||||
|
// TODO: adjust parallax for zoom?
|
||||||
|
// 1.0 is z-coordinate, which is constant for ships
|
||||||
|
let pos: Point2<f32> =
|
||||||
|
(Point2::new(ship_pos.x, ship_pos.y) - input.camera_pos) / ship_pos.z;
|
||||||
|
|
||||||
|
// Game dimensions of this sprite post-scale.
|
||||||
|
// Post-scale width or height, whichever is larger.
|
||||||
|
// This is in game units.
|
||||||
|
//
|
||||||
|
// We take the maximum to account for rotated sprites.
|
||||||
|
let m =
|
||||||
|
(ship_cnt.size / ship_pos.z) * input.ct.get_sprite(ship_cnt.sprite).aspect.max(1.0);
|
||||||
|
|
||||||
|
// Don't draw sprites that are off the screen
|
||||||
|
if pos.x < screen_clip.0.x - m
|
||||||
|
|| pos.y > screen_clip.0.y + m
|
||||||
|
|| pos.x > screen_clip.1.x + m
|
||||||
|
|| pos.y < screen_clip.1.y - m
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let idx = self.state.get_object_counter();
|
||||||
|
// Write this object's location data
|
||||||
|
self.state.queue.write_buffer(
|
||||||
|
&self.state.global_uniform.object_buffer,
|
||||||
|
ObjectData::SIZE * idx as u64,
|
||||||
|
bytemuck::cast_slice(&[ObjectData {
|
||||||
|
xpos: ship_pos.x,
|
||||||
|
ypos: ship_pos.y,
|
||||||
|
zpos: ship_pos.z,
|
||||||
|
angle: ship_ang,
|
||||||
|
size: ship_cnt.size,
|
||||||
|
parent: 0,
|
||||||
|
is_child: 0,
|
||||||
|
_padding: Default::default(),
|
||||||
|
}]),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Push this object's instance
|
||||||
|
let anim_state = s.ship.get_anim_state();
|
||||||
|
self.state.push_object_buffer(ObjectInstance {
|
||||||
|
texture_index: anim_state.texture_index(),
|
||||||
|
texture_fade: anim_state.fade,
|
||||||
|
object_index: idx as u32,
|
||||||
|
color: [1.0, 1.0, 1.0, 1.0],
|
||||||
|
});
|
||||||
|
|
||||||
|
if {
|
||||||
|
let is_flying = match s.ship.get_data().get_state() {
|
||||||
|
ShipState::Flying { .. }
|
||||||
|
| ShipState::UnLanding { .. }
|
||||||
|
| ShipState::Landing { .. } => true,
|
||||||
|
_ => false,
|
||||||
|
};
|
||||||
|
is_flying
|
||||||
|
} {
|
||||||
|
for (engine_point, anim) in s.ship.iter_engine_anim() {
|
||||||
|
self.state.queue.write_buffer(
|
||||||
|
&self.state.global_uniform.object_buffer,
|
||||||
|
ObjectData::SIZE * self.state.get_object_counter() as u64,
|
||||||
|
bytemuck::cast_slice(&[ObjectData {
|
||||||
|
// Note that we adjust the y-coordinate for half-height,
|
||||||
|
// not the x-coordinate, even though our ships point east
|
||||||
|
// at 0 degrees. This is because this is placed pre-rotation,
|
||||||
|
// and the parent rotation adjustment in our object shader
|
||||||
|
// automatically accounts for this.
|
||||||
|
xpos: engine_point.pos.x,
|
||||||
|
ypos: engine_point.pos.y - engine_point.size / 2.0,
|
||||||
|
zpos: 1.0,
|
||||||
|
// We still need an adjustment here, though,
|
||||||
|
// since engine sprites point north (with exhaust towards the south)
|
||||||
|
angle: to_radians(90.0),
|
||||||
|
size: engine_point.size,
|
||||||
|
parent: idx as u32,
|
||||||
|
is_child: 1,
|
||||||
|
_padding: Default::default(),
|
||||||
|
}]),
|
||||||
|
);
|
||||||
|
|
||||||
|
let anim_state = anim.get_texture_idx();
|
||||||
|
self.state.push_object_buffer(ObjectInstance {
|
||||||
|
texture_index: anim_state.texture_index(),
|
||||||
|
texture_fade: anim_state.fade,
|
||||||
|
object_index: self.state.get_object_counter() as u32,
|
||||||
|
color: [1.0, 1.0, 1.0, 1.0],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn push_projectiles(
|
||||||
|
&mut self,
|
||||||
|
input: &RenderInput,
|
||||||
|
// NE and SW corners of screen
|
||||||
|
screen_clip: (Point2<f32>, Point2<f32>),
|
||||||
|
) {
|
||||||
|
for p in input.phys_img.iter_projectiles() {
|
||||||
|
let r = &p.rigidbody;
|
||||||
|
let proj_pos = *r.translation();
|
||||||
|
let proj_rot = r.rotation();
|
||||||
|
let proj_ang = proj_rot.angle();
|
||||||
|
let proj_cnt = &p.projectile.content; // TODO: don't clone this?
|
||||||
|
|
||||||
|
// Position adjusted for parallax
|
||||||
|
// TODO: adjust parallax for zoom?
|
||||||
|
// 1.0 is z-coordinate, which is constant for projectiles
|
||||||
|
let pos = (proj_pos - input.camera_pos) / 1.0;
|
||||||
|
|
||||||
|
// Game dimensions of this sprite post-scale.
|
||||||
|
// Post-scale width or height, whichever is larger.
|
||||||
|
// This is in game units.
|
||||||
|
//
|
||||||
|
// We take the maximum to account for rotated sprites.
|
||||||
|
let m = (proj_cnt.size / 1.0) * input.ct.get_sprite(proj_cnt.sprite).aspect.max(1.0);
|
||||||
|
|
||||||
|
// Don't draw sprites that are off the screen
|
||||||
|
if pos.x < screen_clip.0.x - m
|
||||||
|
|| pos.y > screen_clip.0.y + m
|
||||||
|
|| pos.x > screen_clip.1.x + m
|
||||||
|
|| pos.y < screen_clip.1.y - m
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let idx = self.state.get_object_counter();
|
||||||
|
// Write this object's location data
|
||||||
|
self.state.queue.write_buffer(
|
||||||
|
&self.state.global_uniform.object_buffer,
|
||||||
|
ObjectData::SIZE * idx as u64,
|
||||||
|
bytemuck::cast_slice(&[ObjectData {
|
||||||
|
xpos: proj_pos.x,
|
||||||
|
ypos: proj_pos.y,
|
||||||
|
zpos: 1.0,
|
||||||
|
angle: proj_ang,
|
||||||
|
size: 0f32.max(proj_cnt.size + p.projectile.size_rng),
|
||||||
|
parent: 0,
|
||||||
|
is_child: 0,
|
||||||
|
_padding: Default::default(),
|
||||||
|
}]),
|
||||||
|
);
|
||||||
|
|
||||||
|
let anim_state = p.projectile.get_anim_state();
|
||||||
|
self.state.push_object_buffer(ObjectInstance {
|
||||||
|
texture_index: anim_state.texture_index(),
|
||||||
|
texture_fade: anim_state.fade,
|
||||||
|
object_index: idx as u32,
|
||||||
|
color: [1.0, 1.0, 1.0, 1.0],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn push_system(
|
||||||
|
&mut self,
|
||||||
|
input: &RenderInput,
|
||||||
|
// NE and SW corners of screen
|
||||||
|
screen_clip: (Point2<f32>, Point2<f32>),
|
||||||
|
) {
|
||||||
|
let system = input.ct.get_system(input.current_system);
|
||||||
|
|
||||||
|
for o in &system.objects {
|
||||||
|
// Position adjusted for parallax
|
||||||
|
let pos: Point2<f32> = (Point2::new(o.pos.x, o.pos.y) - input.camera_pos) / o.pos.z;
|
||||||
|
|
||||||
|
// Game dimensions of this sprite post-scale.
|
||||||
|
// Post-scale width or height, whichever is larger.
|
||||||
|
// This is in game units.
|
||||||
|
//
|
||||||
|
// We take the maximum to account for rotated sprites.
|
||||||
|
let m = (o.size / o.pos.z) * input.ct.get_sprite(o.sprite).aspect.max(1.0);
|
||||||
|
|
||||||
|
// Don't draw sprites that are off the screen
|
||||||
|
if pos.x < screen_clip.0.x - m
|
||||||
|
|| pos.y > screen_clip.0.y + m
|
||||||
|
|| pos.x > screen_clip.1.x + m
|
||||||
|
|| pos.y < screen_clip.1.y - m
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let idx = self.state.get_object_counter();
|
||||||
|
// Write this object's location data
|
||||||
|
self.state.queue.write_buffer(
|
||||||
|
&self.state.global_uniform.object_buffer,
|
||||||
|
ObjectData::SIZE * idx as u64,
|
||||||
|
bytemuck::cast_slice(&[ObjectData {
|
||||||
|
xpos: o.pos.x,
|
||||||
|
ypos: o.pos.y,
|
||||||
|
zpos: o.pos.z,
|
||||||
|
angle: o.angle,
|
||||||
|
size: o.size,
|
||||||
|
parent: 0,
|
||||||
|
is_child: 0,
|
||||||
|
_padding: Default::default(),
|
||||||
|
}]),
|
||||||
|
);
|
||||||
|
|
||||||
|
let sprite = input.ct.get_sprite(o.sprite);
|
||||||
|
let texture_a = sprite.get_first_frame(); // ANIMATE
|
||||||
|
|
||||||
|
// Push this object's instance
|
||||||
|
self.state.push_object_buffer(ObjectInstance {
|
||||||
|
texture_index: [texture_a, texture_a],
|
||||||
|
texture_fade: 1.0,
|
||||||
|
object_index: idx as u32,
|
||||||
|
color: [1.0, 1.0, 1.0, 1.0],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn push_effects(
|
||||||
|
&mut self,
|
||||||
|
input: &RenderInput,
|
||||||
|
// NE and SW corners of screen
|
||||||
|
screen_clip: (Point2<f32>, Point2<f32>),
|
||||||
|
) {
|
||||||
|
for p in input.phys_img.iter_effects() {
|
||||||
|
let r = &p.rigidbody;
|
||||||
|
let pos = *r.translation();
|
||||||
|
let rot = r.rotation();
|
||||||
|
let ang = rot.angle();
|
||||||
|
|
||||||
|
// Position adjusted for parallax
|
||||||
|
// TODO: adjust parallax for zoom?
|
||||||
|
// 1.0 is z-coordinate, which is constant for projectiles
|
||||||
|
let adjusted_pos = (pos - input.camera_pos) / 1.0;
|
||||||
|
|
||||||
|
// Game dimensions of this sprite post-scale.
|
||||||
|
// Post-scale width or height, whichever is larger.
|
||||||
|
// This is in game units.
|
||||||
|
//
|
||||||
|
// We take the maximum to account for rotated sprites.
|
||||||
|
let m = (p.effect.size / 1.0)
|
||||||
|
* input
|
||||||
|
.ct
|
||||||
|
.get_sprite(p.effect.anim.get_sprite())
|
||||||
|
.aspect
|
||||||
|
.max(1.0);
|
||||||
|
|
||||||
|
// Don't draw sprites that are off the screen
|
||||||
|
if adjusted_pos.x < screen_clip.0.x - m
|
||||||
|
|| adjusted_pos.y > screen_clip.0.y + m
|
||||||
|
|| adjusted_pos.x > screen_clip.1.x + m
|
||||||
|
|| adjusted_pos.y < screen_clip.1.y - m
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
let idx = self.state.get_object_counter();
|
||||||
|
// Write this object's location data
|
||||||
|
self.state.queue.write_buffer(
|
||||||
|
&self.state.global_uniform.object_buffer,
|
||||||
|
ObjectData::SIZE * idx as u64,
|
||||||
|
bytemuck::cast_slice(&[ObjectData {
|
||||||
|
xpos: pos.x,
|
||||||
|
ypos: pos.y,
|
||||||
|
zpos: 1.0,
|
||||||
|
angle: ang,
|
||||||
|
size: p.effect.size,
|
||||||
|
parent: 0,
|
||||||
|
is_child: 0,
|
||||||
|
_padding: Default::default(),
|
||||||
|
}]),
|
||||||
|
);
|
||||||
|
|
||||||
|
let anim_state = p.effect.anim.get_texture_idx();
|
||||||
|
self.state.push_object_buffer(ObjectInstance {
|
||||||
|
texture_index: anim_state.texture_index(),
|
||||||
|
texture_fade: anim_state.fade,
|
||||||
|
object_index: idx as u32,
|
||||||
|
color: [1.0, 1.0, 1.0, p.get_fade()],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -10,9 +10,7 @@
|
||||||
mod globaluniform;
|
mod globaluniform;
|
||||||
mod gpustate;
|
mod gpustate;
|
||||||
mod pipeline;
|
mod pipeline;
|
||||||
mod positionanchor;
|
|
||||||
mod renderinput;
|
mod renderinput;
|
||||||
mod renderscene;
|
|
||||||
mod renderstate;
|
mod renderstate;
|
||||||
mod shaderprocessor;
|
mod shaderprocessor;
|
||||||
mod starfield;
|
mod starfield;
|
||||||
|
@ -21,9 +19,7 @@ mod ui;
|
||||||
mod vertexbuffer;
|
mod vertexbuffer;
|
||||||
|
|
||||||
pub use gpustate::GPUState;
|
pub use gpustate::GPUState;
|
||||||
pub use positionanchor::PositionAnchor;
|
|
||||||
pub use renderinput::RenderInput;
|
pub use renderinput::RenderInput;
|
||||||
pub use renderscene::RenderScenes;
|
|
||||||
use renderstate::*;
|
use renderstate::*;
|
||||||
|
|
||||||
use nalgebra::Matrix4;
|
use nalgebra::Matrix4;
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
/// The location of a UI element, in one of a few
|
|
||||||
/// possible coordinate systems.
|
|
||||||
///
|
|
||||||
/// Positive Y always points up,
|
|
||||||
/// positive X always points right.
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
pub enum PositionAnchor {
|
|
||||||
/// Position of this sprite's center,
|
|
||||||
/// relative to the nw corner of the window.
|
|
||||||
NwC,
|
|
||||||
|
|
||||||
/// Position of this sprite's nw corner,
|
|
||||||
/// relative to the nw corner of the window.
|
|
||||||
NwNw,
|
|
||||||
|
|
||||||
/// Position of this sprite's ne corner,
|
|
||||||
/// relative to the nw corner of the window.
|
|
||||||
NwNe,
|
|
||||||
|
|
||||||
/// Position of this sprite's sw corner,
|
|
||||||
/// relative to the nw corner of the window.
|
|
||||||
NwSw,
|
|
||||||
|
|
||||||
/// Position of this sprite's se corner,
|
|
||||||
/// relative to the nw corner of the window.
|
|
||||||
NwSe,
|
|
||||||
|
|
||||||
/// Position of this sprite's ne corner,
|
|
||||||
/// relative to the ne corner of the window.
|
|
||||||
NeNe,
|
|
||||||
|
|
||||||
/// Position of this sprite's center,
|
|
||||||
/// relative to the center of the window.
|
|
||||||
CC,
|
|
||||||
|
|
||||||
/// Position of this sprite's NW corner,
|
|
||||||
/// relative to the center of the window.
|
|
||||||
CNw,
|
|
||||||
}
|
|
||||||
|
|
||||||
// These offsets are implemented in wgsl shaders.
|
|
||||||
|
|
||||||
impl PositionAnchor {
|
|
||||||
/// Get the uint that represents this anchor mode in shaders
|
|
||||||
pub fn to_int(&self) -> u32 {
|
|
||||||
match self {
|
|
||||||
Self::NwC => 0,
|
|
||||||
Self::NwNw => 1,
|
|
||||||
Self::NwNe => 2,
|
|
||||||
Self::NwSw => 3,
|
|
||||||
Self::NwSe => 4,
|
|
||||||
Self::NeNe => 5,
|
|
||||||
Self::CC => 6,
|
|
||||||
Self::CNw => 7,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -7,12 +7,13 @@ use galactica_util::timing::Timing;
|
||||||
use nalgebra::Vector2;
|
use nalgebra::Vector2;
|
||||||
|
|
||||||
/// Bundles parameters passed to a single call to GPUState::render
|
/// Bundles parameters passed to a single call to GPUState::render
|
||||||
pub struct RenderInput<'a> {
|
#[derive(Debug)]
|
||||||
|
pub struct RenderInput {
|
||||||
/// Camera position, in world units
|
/// Camera position, in world units
|
||||||
pub camera_pos: Vector2<f32>,
|
pub camera_pos: Vector2<f32>,
|
||||||
|
|
||||||
/// Player ship data
|
/// Player ship data
|
||||||
pub player: &'a PlayerAgent,
|
pub player: Rc<PlayerAgent>,
|
||||||
|
|
||||||
/// The system we're currently in
|
/// The system we're currently in
|
||||||
pub current_system: SystemHandle,
|
pub current_system: SystemHandle,
|
||||||
|
@ -21,7 +22,7 @@ pub struct RenderInput<'a> {
|
||||||
pub camera_zoom: f32,
|
pub camera_zoom: f32,
|
||||||
|
|
||||||
/// The world state to render
|
/// The world state to render
|
||||||
pub phys_img: &'a PhysImage,
|
pub phys_img: Rc<PhysImage>,
|
||||||
|
|
||||||
// TODO: handle overflow. is it a problem?
|
// TODO: handle overflow. is it a problem?
|
||||||
/// The current time, in seconds
|
/// The current time, in seconds
|
||||||
|
|
|
@ -1,117 +0,0 @@
|
||||||
use anyhow::Result;
|
|
||||||
use glyphon::Resolution;
|
|
||||||
use std::iter;
|
|
||||||
|
|
||||||
use super::RenderScene;
|
|
||||||
use crate::vertexbuffer::consts::SPRITE_INDICES;
|
|
||||||
|
|
||||||
pub struct LandedScene {}
|
|
||||||
|
|
||||||
impl RenderScene for LandedScene {
|
|
||||||
fn render(g: &mut crate::GPUState, input: &crate::RenderInput) -> Result<()> {
|
|
||||||
let output = g.surface.get_current_texture()?;
|
|
||||||
let view = output.texture.create_view(&Default::default());
|
|
||||||
|
|
||||||
let mut encoder = g
|
|
||||||
.device
|
|
||||||
.create_command_encoder(&wgpu::CommandEncoderDescriptor {
|
|
||||||
label: Some("render encoder"),
|
|
||||||
});
|
|
||||||
|
|
||||||
let mut render_pass = encoder.begin_render_pass(&wgpu::RenderPassDescriptor {
|
|
||||||
label: Some("render pass"),
|
|
||||||
|
|
||||||
color_attachments: &[Some(wgpu::RenderPassColorAttachment {
|
|
||||||
view: &view,
|
|
||||||
resolve_target: None,
|
|
||||||
ops: wgpu::Operations {
|
|
||||||
load: wgpu::LoadOp::Clear(wgpu::Color {
|
|
||||||
r: 0.0,
|
|
||||||
g: 0.0,
|
|
||||||
b: 0.0,
|
|
||||||
a: 1.0,
|
|
||||||
}),
|
|
||||||
store: wgpu::StoreOp::Store,
|
|
||||||
},
|
|
||||||
})],
|
|
||||||
depth_stencil_attachment: None,
|
|
||||||
occlusion_query_set: None,
|
|
||||||
timestamp_writes: None,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Create sprite instances
|
|
||||||
g.ui.draw(&input, &mut g.state)?;
|
|
||||||
|
|
||||||
// These should match the indices in each shader,
|
|
||||||
// and should each have a corresponding bind group layout.
|
|
||||||
render_pass.set_bind_group(0, &g.texture_array.bind_group, &[]);
|
|
||||||
render_pass.set_bind_group(1, &g.state.global_uniform.bind_group, &[]);
|
|
||||||
|
|
||||||
// Starfield pipeline
|
|
||||||
g.state
|
|
||||||
.vertex_buffers
|
|
||||||
.get_starfield()
|
|
||||||
.set_in_pass(&mut render_pass);
|
|
||||||
render_pass.set_pipeline(&g.starfield_pipeline);
|
|
||||||
render_pass.draw_indexed(
|
|
||||||
0..SPRITE_INDICES.len() as u32,
|
|
||||||
0,
|
|
||||||
0..g.state.get_starfield_counter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Ui pipeline
|
|
||||||
g.state
|
|
||||||
.vertex_buffers
|
|
||||||
.get_ui()
|
|
||||||
.set_in_pass(&mut render_pass);
|
|
||||||
render_pass.set_pipeline(&g.ui_pipeline);
|
|
||||||
render_pass.draw_indexed(
|
|
||||||
0..SPRITE_INDICES.len() as u32,
|
|
||||||
0,
|
|
||||||
0..g.state.get_ui_counter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Radial progress bars
|
|
||||||
g.state
|
|
||||||
.vertex_buffers
|
|
||||||
.get_radialbar()
|
|
||||||
.set_in_pass(&mut render_pass);
|
|
||||||
render_pass.set_pipeline(&g.radialbar_pipeline);
|
|
||||||
render_pass.draw_indexed(
|
|
||||||
0..SPRITE_INDICES.len() as u32,
|
|
||||||
0,
|
|
||||||
0..g.state.get_radialbar_counter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
let textareas = g.ui.get_textareas(input, &g.state);
|
|
||||||
g.state
|
|
||||||
.text_renderer
|
|
||||||
.prepare(
|
|
||||||
&g.device,
|
|
||||||
&g.state.queue,
|
|
||||||
&mut g.state.text_font_system,
|
|
||||||
&mut g.state.text_atlas,
|
|
||||||
Resolution {
|
|
||||||
width: g.state.window_size.width,
|
|
||||||
height: g.state.window_size.height,
|
|
||||||
},
|
|
||||||
textareas,
|
|
||||||
&mut g.state.text_cache,
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
g.state
|
|
||||||
.text_renderer
|
|
||||||
.render(&g.state.text_atlas, &mut render_pass)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
// begin_render_pass borrows encoder mutably,
|
|
||||||
// so we need to drop it before calling finish.
|
|
||||||
drop(render_pass);
|
|
||||||
|
|
||||||
g.state.queue.submit(iter::once(encoder.finish()));
|
|
||||||
output.present();
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
mod landed;
|
|
||||||
mod system;
|
|
||||||
|
|
||||||
use std::fmt::Debug;
|
|
||||||
|
|
||||||
pub use landed::LandedScene;
|
|
||||||
pub use system::SystemScene;
|
|
||||||
|
|
||||||
use crate::{GPUState, RenderInput};
|
|
||||||
use anyhow::Result;
|
|
||||||
|
|
||||||
pub trait RenderScene {
|
|
||||||
fn render(g: &mut GPUState, input: &RenderInput) -> Result<()>;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// What render routine to run
|
|
||||||
pub enum RenderScenes {
|
|
||||||
/// Draw the system we're in
|
|
||||||
System,
|
|
||||||
|
|
||||||
/// Draw the landed UI
|
|
||||||
Landed,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Debug for RenderScenes {
|
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
||||||
match self {
|
|
||||||
Self::Landed => write!(f, "RenderScenes::Landed"),
|
|
||||||
Self::System => write!(f, "RenderScenes::System"),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
mod phys;
|
|
||||||
mod system;
|
|
||||||
|
|
||||||
pub use system::SystemScene;
|
|
|
@ -1,321 +0,0 @@
|
||||||
use bytemuck;
|
|
||||||
use galactica_system::data::ShipState;
|
|
||||||
use galactica_util::to_radians;
|
|
||||||
use nalgebra::{Point2, Point3};
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
globaluniform::ObjectData, vertexbuffer::types::ObjectInstance, GPUState, RenderInput,
|
|
||||||
};
|
|
||||||
|
|
||||||
use super::SystemScene;
|
|
||||||
|
|
||||||
impl SystemScene {
|
|
||||||
pub(super) fn push_ships(
|
|
||||||
g: &mut GPUState,
|
|
||||||
input: &RenderInput,
|
|
||||||
// NE and SW corners of screen
|
|
||||||
screen_clip: (Point2<f32>, Point2<f32>),
|
|
||||||
) {
|
|
||||||
for s in input.phys_img.iter_ships() {
|
|
||||||
let ship_pos;
|
|
||||||
let ship_ang;
|
|
||||||
let ship_cnt;
|
|
||||||
match s.ship.get_data().get_state() {
|
|
||||||
ShipState::Dead | ShipState::Landed { .. } => continue,
|
|
||||||
|
|
||||||
ShipState::Collapsing { .. } | ShipState::Flying { .. } => {
|
|
||||||
let r = &s.rigidbody;
|
|
||||||
let pos = *r.translation();
|
|
||||||
ship_pos = Point3::new(pos.x, pos.y, 1.0);
|
|
||||||
let ship_rot = r.rotation();
|
|
||||||
ship_ang = ship_rot.angle();
|
|
||||||
ship_cnt = input.ct.get_ship(s.ship.get_data().get_content());
|
|
||||||
}
|
|
||||||
|
|
||||||
ShipState::UnLanding { current_z, .. } | ShipState::Landing { current_z, .. } => {
|
|
||||||
let r = &s.rigidbody;
|
|
||||||
let pos = *r.translation();
|
|
||||||
ship_pos = Point3::new(pos.x, pos.y, *current_z);
|
|
||||||
let ship_rot = r.rotation();
|
|
||||||
ship_ang = ship_rot.angle();
|
|
||||||
ship_cnt = input.ct.get_ship(s.ship.get_data().get_content());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Position adjusted for parallax
|
|
||||||
// TODO: adjust parallax for zoom?
|
|
||||||
// 1.0 is z-coordinate, which is constant for ships
|
|
||||||
let pos: Point2<f32> =
|
|
||||||
(Point2::new(ship_pos.x, ship_pos.y) - input.camera_pos) / ship_pos.z;
|
|
||||||
|
|
||||||
// Game dimensions of this sprite post-scale.
|
|
||||||
// Post-scale width or height, whichever is larger.
|
|
||||||
// This is in game units.
|
|
||||||
//
|
|
||||||
// We take the maximum to account for rotated sprites.
|
|
||||||
let m =
|
|
||||||
(ship_cnt.size / ship_pos.z) * input.ct.get_sprite(ship_cnt.sprite).aspect.max(1.0);
|
|
||||||
|
|
||||||
// Don't draw sprites that are off the screen
|
|
||||||
if pos.x < screen_clip.0.x - m
|
|
||||||
|| pos.y > screen_clip.0.y + m
|
|
||||||
|| pos.x > screen_clip.1.x + m
|
|
||||||
|| pos.y < screen_clip.1.y - m
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let idx = g.state.get_object_counter();
|
|
||||||
// Write this object's location data
|
|
||||||
g.state.queue.write_buffer(
|
|
||||||
&g.state.global_uniform.object_buffer,
|
|
||||||
ObjectData::SIZE * idx as u64,
|
|
||||||
bytemuck::cast_slice(&[ObjectData {
|
|
||||||
xpos: ship_pos.x,
|
|
||||||
ypos: ship_pos.y,
|
|
||||||
zpos: ship_pos.z,
|
|
||||||
angle: ship_ang,
|
|
||||||
size: ship_cnt.size,
|
|
||||||
parent: 0,
|
|
||||||
is_child: 0,
|
|
||||||
_padding: Default::default(),
|
|
||||||
}]),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Push this object's instance
|
|
||||||
let anim_state = s.ship.get_anim_state();
|
|
||||||
g.state.push_object_buffer(ObjectInstance {
|
|
||||||
texture_index: anim_state.texture_index(),
|
|
||||||
texture_fade: anim_state.fade,
|
|
||||||
object_index: idx as u32,
|
|
||||||
color: [1.0, 1.0, 1.0, 1.0],
|
|
||||||
});
|
|
||||||
|
|
||||||
if {
|
|
||||||
let is_flying = match s.ship.get_data().get_state() {
|
|
||||||
ShipState::Flying { .. }
|
|
||||||
| ShipState::UnLanding { .. }
|
|
||||||
| ShipState::Landing { .. } => true,
|
|
||||||
_ => false,
|
|
||||||
};
|
|
||||||
is_flying
|
|
||||||
} {
|
|
||||||
for (engine_point, anim) in s.ship.iter_engine_anim() {
|
|
||||||
g.state.queue.write_buffer(
|
|
||||||
&g.state.global_uniform.object_buffer,
|
|
||||||
ObjectData::SIZE * g.state.get_object_counter() as u64,
|
|
||||||
bytemuck::cast_slice(&[ObjectData {
|
|
||||||
// Note that we adjust the y-coordinate for half-height,
|
|
||||||
// not the x-coordinate, even though our ships point east
|
|
||||||
// at 0 degrees. This is because this is placed pre-rotation,
|
|
||||||
// and the parent rotation adjustment in our object shader
|
|
||||||
// automatically accounts for this.
|
|
||||||
xpos: engine_point.pos.x,
|
|
||||||
ypos: engine_point.pos.y - engine_point.size / 2.0,
|
|
||||||
zpos: 1.0,
|
|
||||||
// We still need an adjustment here, though,
|
|
||||||
// since engine sprites point north (with exhaust towards the south)
|
|
||||||
angle: to_radians(90.0),
|
|
||||||
size: engine_point.size,
|
|
||||||
parent: idx as u32,
|
|
||||||
is_child: 1,
|
|
||||||
_padding: Default::default(),
|
|
||||||
}]),
|
|
||||||
);
|
|
||||||
|
|
||||||
let anim_state = anim.get_texture_idx();
|
|
||||||
g.state.push_object_buffer(ObjectInstance {
|
|
||||||
texture_index: anim_state.texture_index(),
|
|
||||||
texture_fade: anim_state.fade,
|
|
||||||
object_index: g.state.get_object_counter() as u32,
|
|
||||||
color: [1.0, 1.0, 1.0, 1.0],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(super) fn push_projectiles(
|
|
||||||
g: &mut GPUState,
|
|
||||||
input: &RenderInput,
|
|
||||||
// NE and SW corners of screen
|
|
||||||
screen_clip: (Point2<f32>, Point2<f32>),
|
|
||||||
) {
|
|
||||||
for p in input.phys_img.iter_projectiles() {
|
|
||||||
let r = &p.rigidbody;
|
|
||||||
let proj_pos = *r.translation();
|
|
||||||
let proj_rot = r.rotation();
|
|
||||||
let proj_ang = proj_rot.angle();
|
|
||||||
let proj_cnt = &p.projectile.content; // TODO: don't clone this?
|
|
||||||
|
|
||||||
// Position adjusted for parallax
|
|
||||||
// TODO: adjust parallax for zoom?
|
|
||||||
// 1.0 is z-coordinate, which is constant for projectiles
|
|
||||||
let pos = (proj_pos - input.camera_pos) / 1.0;
|
|
||||||
|
|
||||||
// Game dimensions of this sprite post-scale.
|
|
||||||
// Post-scale width or height, whichever is larger.
|
|
||||||
// This is in game units.
|
|
||||||
//
|
|
||||||
// We take the maximum to account for rotated sprites.
|
|
||||||
let m = (proj_cnt.size / 1.0) * input.ct.get_sprite(proj_cnt.sprite).aspect.max(1.0);
|
|
||||||
|
|
||||||
// Don't draw sprites that are off the screen
|
|
||||||
if pos.x < screen_clip.0.x - m
|
|
||||||
|| pos.y > screen_clip.0.y + m
|
|
||||||
|| pos.x > screen_clip.1.x + m
|
|
||||||
|| pos.y < screen_clip.1.y - m
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let idx = g.state.get_object_counter();
|
|
||||||
// Write this object's location data
|
|
||||||
g.state.queue.write_buffer(
|
|
||||||
&g.state.global_uniform.object_buffer,
|
|
||||||
ObjectData::SIZE * idx as u64,
|
|
||||||
bytemuck::cast_slice(&[ObjectData {
|
|
||||||
xpos: proj_pos.x,
|
|
||||||
ypos: proj_pos.y,
|
|
||||||
zpos: 1.0,
|
|
||||||
angle: proj_ang,
|
|
||||||
size: 0f32.max(proj_cnt.size + p.projectile.size_rng),
|
|
||||||
parent: 0,
|
|
||||||
is_child: 0,
|
|
||||||
_padding: Default::default(),
|
|
||||||
}]),
|
|
||||||
);
|
|
||||||
|
|
||||||
let anim_state = p.projectile.get_anim_state();
|
|
||||||
g.state.push_object_buffer(ObjectInstance {
|
|
||||||
texture_index: anim_state.texture_index(),
|
|
||||||
texture_fade: anim_state.fade,
|
|
||||||
object_index: idx as u32,
|
|
||||||
color: [1.0, 1.0, 1.0, 1.0],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(super) fn push_system(
|
|
||||||
g: &mut GPUState,
|
|
||||||
input: &RenderInput,
|
|
||||||
// NE and SW corners of screen
|
|
||||||
screen_clip: (Point2<f32>, Point2<f32>),
|
|
||||||
) {
|
|
||||||
let system = input.ct.get_system(input.current_system);
|
|
||||||
|
|
||||||
for o in &system.objects {
|
|
||||||
// Position adjusted for parallax
|
|
||||||
let pos: Point2<f32> = (Point2::new(o.pos.x, o.pos.y) - input.camera_pos) / o.pos.z;
|
|
||||||
|
|
||||||
// Game dimensions of this sprite post-scale.
|
|
||||||
// Post-scale width or height, whichever is larger.
|
|
||||||
// This is in game units.
|
|
||||||
//
|
|
||||||
// We take the maximum to account for rotated sprites.
|
|
||||||
let m = (o.size / o.pos.z) * input.ct.get_sprite(o.sprite).aspect.max(1.0);
|
|
||||||
|
|
||||||
// Don't draw sprites that are off the screen
|
|
||||||
if pos.x < screen_clip.0.x - m
|
|
||||||
|| pos.y > screen_clip.0.y + m
|
|
||||||
|| pos.x > screen_clip.1.x + m
|
|
||||||
|| pos.y < screen_clip.1.y - m
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let idx = g.state.get_object_counter();
|
|
||||||
// Write this object's location data
|
|
||||||
g.state.queue.write_buffer(
|
|
||||||
&g.state.global_uniform.object_buffer,
|
|
||||||
ObjectData::SIZE * idx as u64,
|
|
||||||
bytemuck::cast_slice(&[ObjectData {
|
|
||||||
xpos: o.pos.x,
|
|
||||||
ypos: o.pos.y,
|
|
||||||
zpos: o.pos.z,
|
|
||||||
angle: o.angle,
|
|
||||||
size: o.size,
|
|
||||||
parent: 0,
|
|
||||||
is_child: 0,
|
|
||||||
_padding: Default::default(),
|
|
||||||
}]),
|
|
||||||
);
|
|
||||||
|
|
||||||
let sprite = input.ct.get_sprite(o.sprite);
|
|
||||||
let texture_a = sprite.get_first_frame(); // ANIMATE
|
|
||||||
|
|
||||||
// Push this object's instance
|
|
||||||
g.state.push_object_buffer(ObjectInstance {
|
|
||||||
texture_index: [texture_a, texture_a],
|
|
||||||
texture_fade: 1.0,
|
|
||||||
object_index: idx as u32,
|
|
||||||
color: [1.0, 1.0, 1.0, 1.0],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(super) fn push_effects(
|
|
||||||
g: &mut GPUState,
|
|
||||||
input: &RenderInput,
|
|
||||||
// NE and SW corners of screen
|
|
||||||
screen_clip: (Point2<f32>, Point2<f32>),
|
|
||||||
) {
|
|
||||||
for p in input.phys_img.iter_effects() {
|
|
||||||
let r = &p.rigidbody;
|
|
||||||
let pos = *r.translation();
|
|
||||||
let rot = r.rotation();
|
|
||||||
let ang = rot.angle();
|
|
||||||
|
|
||||||
// Position adjusted for parallax
|
|
||||||
// TODO: adjust parallax for zoom?
|
|
||||||
// 1.0 is z-coordinate, which is constant for projectiles
|
|
||||||
let adjusted_pos = (pos - input.camera_pos) / 1.0;
|
|
||||||
|
|
||||||
// Game dimensions of this sprite post-scale.
|
|
||||||
// Post-scale width or height, whichever is larger.
|
|
||||||
// This is in game units.
|
|
||||||
//
|
|
||||||
// We take the maximum to account for rotated sprites.
|
|
||||||
let m = (p.effect.size / 1.0)
|
|
||||||
* input
|
|
||||||
.ct
|
|
||||||
.get_sprite(p.effect.anim.get_sprite())
|
|
||||||
.aspect
|
|
||||||
.max(1.0);
|
|
||||||
|
|
||||||
// Don't draw sprites that are off the screen
|
|
||||||
if adjusted_pos.x < screen_clip.0.x - m
|
|
||||||
|| adjusted_pos.y > screen_clip.0.y + m
|
|
||||||
|| adjusted_pos.x > screen_clip.1.x + m
|
|
||||||
|| adjusted_pos.y < screen_clip.1.y - m
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let idx = g.state.get_object_counter();
|
|
||||||
// Write this object's location data
|
|
||||||
g.state.queue.write_buffer(
|
|
||||||
&g.state.global_uniform.object_buffer,
|
|
||||||
ObjectData::SIZE * idx as u64,
|
|
||||||
bytemuck::cast_slice(&[ObjectData {
|
|
||||||
xpos: pos.x,
|
|
||||||
ypos: pos.y,
|
|
||||||
zpos: 1.0,
|
|
||||||
angle: ang,
|
|
||||||
size: p.effect.size,
|
|
||||||
parent: 0,
|
|
||||||
is_child: 0,
|
|
||||||
_padding: Default::default(),
|
|
||||||
}]),
|
|
||||||
);
|
|
||||||
|
|
||||||
let anim_state = p.effect.anim.get_texture_idx();
|
|
||||||
g.state.push_object_buffer(ObjectInstance {
|
|
||||||
texture_index: anim_state.texture_index(),
|
|
||||||
texture_fade: anim_state.fade,
|
|
||||||
object_index: idx as u32,
|
|
||||||
color: [1.0, 1.0, 1.0, p.get_fade()],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,144 +0,0 @@
|
||||||
use anyhow::Result;
|
|
||||||
use glyphon::Resolution;
|
|
||||||
use nalgebra::Point2;
|
|
||||||
use std::iter;
|
|
||||||
|
|
||||||
use super::super::RenderScene;
|
|
||||||
use crate::vertexbuffer::consts::SPRITE_INDICES;
|
|
||||||
|
|
||||||
pub struct SystemScene {}
|
|
||||||
|
|
||||||
impl RenderScene for SystemScene {
|
|
||||||
fn render(g: &mut crate::GPUState, input: &crate::RenderInput) -> Result<()> {
|
|
||||||
let output = g.surface.get_current_texture()?;
|
|
||||||
let view = output.texture.create_view(&Default::default());
|
|
||||||
|
|
||||||
let mut encoder = g
|
|
||||||
.device
|
|
||||||
.create_command_encoder(&wgpu::CommandEncoderDescriptor {
|
|
||||||
label: Some("render encoder"),
|
|
||||||
});
|
|
||||||
|
|
||||||
let mut render_pass = encoder.begin_render_pass(&wgpu::RenderPassDescriptor {
|
|
||||||
label: Some("render pass"),
|
|
||||||
|
|
||||||
color_attachments: &[Some(wgpu::RenderPassColorAttachment {
|
|
||||||
view: &view,
|
|
||||||
resolve_target: None,
|
|
||||||
ops: wgpu::Operations {
|
|
||||||
load: wgpu::LoadOp::Clear(wgpu::Color {
|
|
||||||
r: 0.0,
|
|
||||||
g: 0.0,
|
|
||||||
b: 0.0,
|
|
||||||
a: 1.0,
|
|
||||||
}),
|
|
||||||
store: wgpu::StoreOp::Store,
|
|
||||||
},
|
|
||||||
})],
|
|
||||||
depth_stencil_attachment: None,
|
|
||||||
occlusion_query_set: None,
|
|
||||||
timestamp_writes: None,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Create sprite instances
|
|
||||||
|
|
||||||
// Game coordinates (relative to camera) of ne and sw corners of screen.
|
|
||||||
// Used to skip off-screen sprites.
|
|
||||||
let clip_ne = Point2::new(-g.state.window_aspect, 1.0) * input.camera_zoom;
|
|
||||||
let clip_sw = Point2::new(g.state.window_aspect, -1.0) * input.camera_zoom;
|
|
||||||
|
|
||||||
// Order matters, it determines what is drawn on top.
|
|
||||||
// The order inside ships and projectiles doesn't matter,
|
|
||||||
// but ships should always be under projectiles.
|
|
||||||
Self::push_system(g, &input, (clip_ne, clip_sw));
|
|
||||||
Self::push_ships(g, &input, (clip_ne, clip_sw));
|
|
||||||
Self::push_projectiles(g, &input, (clip_ne, clip_sw));
|
|
||||||
Self::push_effects(g, &input, (clip_ne, clip_sw));
|
|
||||||
g.ui.draw(&input, &mut g.state)?;
|
|
||||||
|
|
||||||
// These should match the indices in each shader,
|
|
||||||
// and should each have a corresponding bind group layout.
|
|
||||||
render_pass.set_bind_group(0, &g.texture_array.bind_group, &[]);
|
|
||||||
render_pass.set_bind_group(1, &g.state.global_uniform.bind_group, &[]);
|
|
||||||
|
|
||||||
// Starfield pipeline
|
|
||||||
g.state
|
|
||||||
.vertex_buffers
|
|
||||||
.get_starfield()
|
|
||||||
.set_in_pass(&mut render_pass);
|
|
||||||
render_pass.set_pipeline(&g.starfield_pipeline);
|
|
||||||
render_pass.draw_indexed(
|
|
||||||
0..SPRITE_INDICES.len() as u32,
|
|
||||||
0,
|
|
||||||
0..g.state.get_starfield_counter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Sprite pipeline
|
|
||||||
g.state
|
|
||||||
.vertex_buffers
|
|
||||||
.get_object()
|
|
||||||
.set_in_pass(&mut render_pass);
|
|
||||||
render_pass.set_pipeline(&g.object_pipeline);
|
|
||||||
render_pass.draw_indexed(
|
|
||||||
0..SPRITE_INDICES.len() as u32,
|
|
||||||
0,
|
|
||||||
0..g.state.get_object_counter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Ui pipeline
|
|
||||||
g.state
|
|
||||||
.vertex_buffers
|
|
||||||
.get_ui()
|
|
||||||
.set_in_pass(&mut render_pass);
|
|
||||||
render_pass.set_pipeline(&g.ui_pipeline);
|
|
||||||
render_pass.draw_indexed(
|
|
||||||
0..SPRITE_INDICES.len() as u32,
|
|
||||||
0,
|
|
||||||
0..g.state.get_ui_counter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Radial progress bars
|
|
||||||
// TODO: do we need to do this every time?
|
|
||||||
g.state
|
|
||||||
.vertex_buffers
|
|
||||||
.get_radialbar()
|
|
||||||
.set_in_pass(&mut render_pass);
|
|
||||||
render_pass.set_pipeline(&g.radialbar_pipeline);
|
|
||||||
render_pass.draw_indexed(
|
|
||||||
0..SPRITE_INDICES.len() as u32,
|
|
||||||
0,
|
|
||||||
0..g.state.get_radialbar_counter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
let textareas = g.ui.get_textareas(input, &g.state);
|
|
||||||
g.state
|
|
||||||
.text_renderer
|
|
||||||
.prepare(
|
|
||||||
&g.device,
|
|
||||||
&g.state.queue,
|
|
||||||
&mut g.state.text_font_system,
|
|
||||||
&mut g.state.text_atlas,
|
|
||||||
Resolution {
|
|
||||||
width: g.state.window_size.width,
|
|
||||||
height: g.state.window_size.height,
|
|
||||||
},
|
|
||||||
textareas,
|
|
||||||
&mut g.state.text_cache,
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
g.state
|
|
||||||
.text_renderer
|
|
||||||
.render(&g.state.text_atlas, &mut render_pass)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
// begin_render_pass borrows encoder mutably,
|
|
||||||
// so we need to drop it before calling finish.
|
|
||||||
drop(render_pass);
|
|
||||||
|
|
||||||
g.state.queue.submit(iter::once(encoder.finish()));
|
|
||||||
output.present();
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +1,7 @@
|
||||||
use galactica_content::Content;
|
use galactica_content::Content;
|
||||||
use galactica_util::constants::{OBJECT_SPRITE_INSTANCE_LIMIT, UI_SPRITE_INSTANCE_LIMIT};
|
use galactica_util::constants::{
|
||||||
|
OBJECT_SPRITE_INSTANCE_LIMIT, RADIALBAR_SPRITE_INSTANCE_LIMIT, UI_SPRITE_INSTANCE_LIMIT,
|
||||||
|
};
|
||||||
use glyphon::{FontSystem, SwashCache, TextAtlas, TextRenderer};
|
use glyphon::{FontSystem, SwashCache, TextAtlas, TextRenderer};
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use wgpu::BufferAddress;
|
use wgpu::BufferAddress;
|
||||||
|
@ -152,7 +154,6 @@ impl RenderState {
|
||||||
self.vertex_buffers.object_counter as u32
|
self.vertex_buffers.object_counter as u32
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
pub fn push_radialbar_buffer(&mut self, instance: RadialBarInstance) {
|
pub fn push_radialbar_buffer(&mut self, instance: RadialBarInstance) {
|
||||||
// Enforce buffer limit
|
// Enforce buffer limit
|
||||||
if self.vertex_buffers.radialbar_counter as u64 > RADIALBAR_SPRITE_INSTANCE_LIMIT {
|
if self.vertex_buffers.radialbar_counter as u64 > RADIALBAR_SPRITE_INSTANCE_LIMIT {
|
||||||
|
@ -167,7 +168,6 @@ impl RenderState {
|
||||||
);
|
);
|
||||||
self.vertex_buffers.radialbar_counter += 1;
|
self.vertex_buffers.radialbar_counter += 1;
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
pub fn get_radialbar_counter(&self) -> u32 {
|
pub fn get_radialbar_counter(&self) -> u32 {
|
||||||
self.vertex_buffers.radialbar_counter as u32
|
self.vertex_buffers.radialbar_counter as u32
|
||||||
|
|
|
@ -14,15 +14,5 @@ pub(crate) fn preprocess_shader(
|
||||||
&global_uniform.shader_header(global_uniform_group),
|
&global_uniform.shader_header(global_uniform_group),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Insert common functions
|
|
||||||
let shader = shader.replace(
|
|
||||||
"// INCLUDE: anchor.wgsl",
|
|
||||||
&include_str!(concat!(
|
|
||||||
env!("CARGO_MANIFEST_DIR"),
|
|
||||||
"/shaders/include/",
|
|
||||||
"anchor.wgsl"
|
|
||||||
)),
|
|
||||||
);
|
|
||||||
|
|
||||||
return shader;
|
return shader;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
use nalgebra::Vector4;
|
||||||
|
use rhai::{CustomType, TypeBuilder};
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct Color {
|
||||||
|
pub val: Vector4<f32>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Color {
|
||||||
|
pub fn new(r: f32, g: f32, b: f32, a: f32) -> Self {
|
||||||
|
Self {
|
||||||
|
val: Vector4::new(r, g, b, a),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn as_array(&self) -> [f32; 4] {
|
||||||
|
[self.val.x, self.val.y, self.val.z, self.val.w]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for Color {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder.with_name("Color").with_fn("Color", Self::new);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
use rhai::{CustomType, TypeBuilder};
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct SceneConfig {
|
||||||
|
pub show_phys: bool,
|
||||||
|
pub show_starfield: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl SceneConfig {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self {
|
||||||
|
show_phys: false,
|
||||||
|
show_starfield: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for SceneConfig {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder
|
||||||
|
.with_name("SceneConfig")
|
||||||
|
.with_fn("SceneConfig", Self::new)
|
||||||
|
.with_fn("show_phys", |s: &mut Self, x: bool| s.show_phys = x)
|
||||||
|
.with_fn("show_starfield", |s: &mut Self, x: bool| {
|
||||||
|
s.show_starfield = x
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
use rhai::{CustomType, TypeBuilder};
|
||||||
|
|
||||||
|
use super::SpriteElement;
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct MouseClickEvent {
|
||||||
|
pub down: bool,
|
||||||
|
pub element: SpriteElement,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for MouseClickEvent {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder
|
||||||
|
.with_name("MouseClickEvent")
|
||||||
|
.with_fn("is_down", |s: &mut Self| s.down)
|
||||||
|
.with_fn("element", |s: &mut Self| s.element.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct MouseHoverEvent {
|
||||||
|
pub enter: bool,
|
||||||
|
pub element: SpriteElement,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for MouseHoverEvent {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder
|
||||||
|
.with_name("MouseHoverEvent")
|
||||||
|
.with_fn("is_enter", |s: &mut Self| s.enter)
|
||||||
|
.with_fn("element", |s: &mut Self| s.element.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct PlayerShipStateEvent {}
|
||||||
|
|
||||||
|
impl CustomType for PlayerShipStateEvent {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder.with_name("PlayerShipStateEvent");
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,19 +1,49 @@
|
||||||
|
mod color;
|
||||||
|
mod config;
|
||||||
|
mod event;
|
||||||
|
mod radialbuilder;
|
||||||
mod rect;
|
mod rect;
|
||||||
|
mod sceneaction;
|
||||||
mod sprite;
|
mod sprite;
|
||||||
mod spritebuilder;
|
mod spritebuilder;
|
||||||
mod state;
|
mod state;
|
||||||
mod textboxbuilder;
|
mod textboxbuilder;
|
||||||
mod util;
|
mod util;
|
||||||
|
|
||||||
|
pub use color::*;
|
||||||
|
pub use config::*;
|
||||||
|
pub use event::*;
|
||||||
|
pub use radialbuilder::*;
|
||||||
|
pub use rect::*;
|
||||||
|
pub use sceneaction::*;
|
||||||
|
pub use sprite::*;
|
||||||
|
pub use spritebuilder::*;
|
||||||
|
pub use state::*;
|
||||||
|
pub use textboxbuilder::*;
|
||||||
|
pub use util::*;
|
||||||
|
|
||||||
use rhai::{exported_module, Engine};
|
use rhai::{exported_module, Engine};
|
||||||
|
|
||||||
pub fn register_into_engine(engine: &mut Engine) {
|
pub fn register_into_engine(engine: &mut Engine) {
|
||||||
engine
|
engine
|
||||||
.build_type::<State>()
|
// Helpers
|
||||||
.build_type::<Rect>()
|
.build_type::<Rect>()
|
||||||
|
.build_type::<Color>()
|
||||||
|
.build_type::<SceneConfig>()
|
||||||
|
// State
|
||||||
|
.build_type::<State>()
|
||||||
|
.build_type::<ShipState>()
|
||||||
|
.build_type::<SystemObjectState>()
|
||||||
|
// Builders
|
||||||
|
.build_type::<RadialBuilder>()
|
||||||
.build_type::<SpriteElement>()
|
.build_type::<SpriteElement>()
|
||||||
.build_type::<SpriteBuilder>()
|
.build_type::<SpriteBuilder>()
|
||||||
.build_type::<TextBoxBuilder>()
|
.build_type::<TextBoxBuilder>()
|
||||||
|
// Events
|
||||||
|
.build_type::<MouseClickEvent>()
|
||||||
|
.build_type::<MouseHoverEvent>()
|
||||||
|
.build_type::<PlayerShipStateEvent>()
|
||||||
|
// Larger modules
|
||||||
.register_type_with_name::<SpriteAnchor>("SpriteAnchor")
|
.register_type_with_name::<SpriteAnchor>("SpriteAnchor")
|
||||||
.register_static_module("SpriteAnchor", exported_module!(spriteanchor_mod).into())
|
.register_static_module("SpriteAnchor", exported_module!(spriteanchor_mod).into())
|
||||||
.register_type_with_name::<TextBoxFont>("TextBoxFont")
|
.register_type_with_name::<TextBoxFont>("TextBoxFont")
|
||||||
|
@ -29,10 +59,3 @@ pub fn register_into_engine(engine: &mut Engine) {
|
||||||
.register_type_with_name::<SceneAction>("SceneAction")
|
.register_type_with_name::<SceneAction>("SceneAction")
|
||||||
.register_static_module("SceneAction", exported_module!(sceneaction_mod).into());
|
.register_static_module("SceneAction", exported_module!(sceneaction_mod).into());
|
||||||
}
|
}
|
||||||
|
|
||||||
pub use rect::*;
|
|
||||||
pub use sprite::*;
|
|
||||||
pub use spritebuilder::*;
|
|
||||||
pub use state::*;
|
|
||||||
pub use textboxbuilder::*;
|
|
||||||
pub use util::*;
|
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
use nalgebra::clamp;
|
||||||
|
use rhai::{CustomType, ImmutableString, TypeBuilder};
|
||||||
|
|
||||||
|
use super::{color::Color, Rect};
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct RadialBuilder {
|
||||||
|
pub name: ImmutableString,
|
||||||
|
pub rect: Rect,
|
||||||
|
|
||||||
|
pub stroke: f32,
|
||||||
|
pub color: Color,
|
||||||
|
pub progress: f32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl RadialBuilder {
|
||||||
|
pub fn new(name: ImmutableString, stroke: f32, color: Color, rect: Rect) -> Self {
|
||||||
|
Self {
|
||||||
|
name,
|
||||||
|
rect,
|
||||||
|
stroke,
|
||||||
|
color,
|
||||||
|
progress: 0.0,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_progress(&mut self, progress: f32) {
|
||||||
|
self.progress = clamp(progress, 0.0, 1.0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for RadialBuilder {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder
|
||||||
|
.with_name("RadialBuilder")
|
||||||
|
.with_fn("RadialBuilder", Self::new)
|
||||||
|
.with_fn("set_progress", Self::set_progress);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
use rhai::plugin::*;
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
||||||
|
pub enum SceneAction {
|
||||||
|
None,
|
||||||
|
GoTo(String),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[export_module]
|
||||||
|
pub mod sceneaction_mod {
|
||||||
|
#[allow(non_upper_case_globals)]
|
||||||
|
pub const None: SceneAction = SceneAction::None;
|
||||||
|
|
||||||
|
#[allow(non_snake_case)]
|
||||||
|
pub fn GoTo(scene: String) -> SceneAction {
|
||||||
|
SceneAction::GoTo(scene)
|
||||||
|
}
|
||||||
|
}
|
|
@ -11,6 +11,7 @@ pub struct SpriteElement {
|
||||||
pub ct: Rc<Content>,
|
pub ct: Rc<Content>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: remove this
|
||||||
unsafe impl Send for SpriteElement {}
|
unsafe impl Send for SpriteElement {}
|
||||||
unsafe impl Sync for SpriteElement {}
|
unsafe impl Sync for SpriteElement {}
|
||||||
|
|
||||||
|
@ -25,7 +26,18 @@ impl SpriteElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn take_edge(&mut self, edge_name: &str, duration: f32) {
|
pub fn take_edge(&mut self, edge_name: &str, duration: f32) {
|
||||||
let sprite_handle = self.sprite.as_ref().borrow().anim.get_sprite();
|
if self.sprite.as_ref().borrow().anim.is_none() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let sprite_handle = self
|
||||||
|
.sprite
|
||||||
|
.as_ref()
|
||||||
|
.borrow()
|
||||||
|
.anim
|
||||||
|
.as_ref()
|
||||||
|
.unwrap()
|
||||||
|
.get_sprite();
|
||||||
let sprite = self.ct.get_sprite(sprite_handle);
|
let sprite = self.ct.get_sprite(sprite_handle);
|
||||||
|
|
||||||
let edge = resolve_edge_as_edge(edge_name, duration, |x| {
|
let edge = resolve_edge_as_edge(edge_name, duration, |x| {
|
||||||
|
@ -47,6 +59,8 @@ impl SpriteElement {
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.borrow_mut()
|
.borrow_mut()
|
||||||
.anim
|
.anim
|
||||||
|
.as_mut()
|
||||||
|
.unwrap()
|
||||||
.jump_to(&self.ct, edge);
|
.jump_to(&self.ct, edge);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
use rhai::{CustomType, TypeBuilder};
|
use rhai::{CustomType, ImmutableString, TypeBuilder};
|
||||||
|
|
||||||
use super::Rect;
|
use super::Rect;
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct SpriteBuilder {
|
pub struct SpriteBuilder {
|
||||||
pub name: String,
|
pub name: ImmutableString,
|
||||||
pub rect: Rect,
|
pub rect: Rect,
|
||||||
pub sprite: String,
|
pub sprite: ImmutableString,
|
||||||
pub mask: Option<String>,
|
pub mask: Option<ImmutableString>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl SpriteBuilder {
|
impl SpriteBuilder {
|
||||||
pub fn new(name: String, sprite: String, rect: Rect) -> Self {
|
pub fn new(name: ImmutableString, sprite: ImmutableString, rect: Rect) -> Self {
|
||||||
Self {
|
Self {
|
||||||
name,
|
name,
|
||||||
rect,
|
rect,
|
||||||
|
@ -20,7 +20,7 @@ impl SpriteBuilder {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_mask(&mut self, mask: String) {
|
pub fn set_mask(&mut self, mask: ImmutableString) {
|
||||||
self.mask = Some(mask);
|
self.mask = Some(mask);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,175 @@
|
||||||
|
use galactica_content::{Ship, SystemObject, SystemObjectHandle};
|
||||||
|
use galactica_system::{
|
||||||
|
data::{self, ShipData},
|
||||||
|
phys::PhysSimShipHandle,
|
||||||
|
};
|
||||||
|
use log::error;
|
||||||
use rhai::{CustomType, TypeBuilder};
|
use rhai::{CustomType, TypeBuilder};
|
||||||
|
use std::rc::Rc;
|
||||||
|
|
||||||
#[derive(Debug, Clone, CustomType)]
|
use crate::RenderInput;
|
||||||
pub struct State {
|
|
||||||
pub planet_landscape: String,
|
#[derive(Debug, Clone)]
|
||||||
pub planet_name: String,
|
pub struct ShipState {
|
||||||
|
ship: Option<PhysSimShipHandle>,
|
||||||
|
input: Rc<RenderInput>,
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: remove this
|
||||||
|
unsafe impl Send for ShipState {}
|
||||||
|
unsafe impl Sync for ShipState {}
|
||||||
|
|
||||||
|
impl ShipState {
|
||||||
|
fn get_content(&mut self) -> &Ship {
|
||||||
|
let ship = self
|
||||||
|
.input
|
||||||
|
.phys_img
|
||||||
|
.get_ship(self.ship.as_ref().unwrap())
|
||||||
|
.unwrap();
|
||||||
|
let handle = ship.ship.get_data().get_content();
|
||||||
|
self.input.ct.get_ship(handle)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_data(&mut self) -> &ShipData {
|
||||||
|
let ship = self
|
||||||
|
.input
|
||||||
|
.phys_img
|
||||||
|
.get_ship(self.ship.as_ref().unwrap())
|
||||||
|
.unwrap();
|
||||||
|
ship.ship.get_data()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn landed_on(&mut self) -> SystemObjectState {
|
||||||
|
let input = self.input.clone();
|
||||||
|
match self.get_data().get_state() {
|
||||||
|
data::ShipState::Landed { target } => {
|
||||||
|
return SystemObjectState {
|
||||||
|
input,
|
||||||
|
object: Some(*target),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
return SystemObjectState {
|
||||||
|
input,
|
||||||
|
object: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for ShipState {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder
|
||||||
|
.with_name("ShipState")
|
||||||
|
.with_fn("is_some", |s: &mut Self| s.ship.is_some())
|
||||||
|
.with_fn("is_dead", |s: &mut Self| s.get_data().get_state().is_dead())
|
||||||
|
.with_fn("is_landed", |s: &mut Self| {
|
||||||
|
s.get_data().get_state().is_landed()
|
||||||
|
})
|
||||||
|
.with_fn("is_landing", |s: &mut Self| {
|
||||||
|
s.get_data().get_state().is_landing()
|
||||||
|
})
|
||||||
|
.with_fn("is_flying", |s: &mut Self| {
|
||||||
|
s.get_data().get_state().is_flying()
|
||||||
|
})
|
||||||
|
.with_fn("is_unlanding", |s: &mut Self| {
|
||||||
|
s.get_data().get_state().is_unlanding()
|
||||||
|
})
|
||||||
|
.with_fn("is_collapsing", |s: &mut Self| {
|
||||||
|
s.get_data().get_state().is_collapsing()
|
||||||
|
})
|
||||||
|
.with_fn("name", |s: &mut Self| s.get_content().name.clone())
|
||||||
|
.with_fn("thumbnail", |s: &mut Self| s.get_content().thumb)
|
||||||
|
.with_fn("landed_on", |s: &mut Self| s.landed_on());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct SystemObjectState {
|
||||||
|
object: Option<SystemObjectHandle>,
|
||||||
|
input: Rc<RenderInput>,
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: remove this
|
||||||
|
unsafe impl Send for SystemObjectState {}
|
||||||
|
unsafe impl Sync for SystemObjectState {}
|
||||||
|
|
||||||
|
impl SystemObjectState {
|
||||||
|
fn get_content(&mut self) -> &SystemObject {
|
||||||
|
self.input.ct.get_system_object(self.object.unwrap())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for SystemObjectState {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder
|
||||||
|
.with_name("SystemObjectState")
|
||||||
|
//
|
||||||
|
// Get landable name
|
||||||
|
.with_fn("name", |s: &mut Self| {
|
||||||
|
s.get_content()
|
||||||
|
.name
|
||||||
|
.as_ref()
|
||||||
|
.map(|x| x.to_string())
|
||||||
|
.unwrap_or_else(|| {
|
||||||
|
error!("UI called `name()` on a system object which doesn't provide one");
|
||||||
|
"".to_string()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
//
|
||||||
|
// Get landable description
|
||||||
|
.with_fn("desc", |s: &mut Self| {
|
||||||
|
s.get_content()
|
||||||
|
.desc
|
||||||
|
.as_ref()
|
||||||
|
.map(|x| x.to_string())
|
||||||
|
.unwrap_or_else(|| {
|
||||||
|
error!("UI called `name()` on a system object which doesn't provide one");
|
||||||
|
"".to_string()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
//
|
||||||
|
// Get landable landscape image
|
||||||
|
.with_fn("image", |s: &mut Self| {
|
||||||
|
let handle = s.get_content().image;
|
||||||
|
if let Some(handle) = handle {
|
||||||
|
s.input.ct.get_sprite(handle).name.clone()
|
||||||
|
} else {
|
||||||
|
error!("UI called `image()` on a system object which doesn't provide one");
|
||||||
|
"".to_string()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.with_fn("is_some", |s: &mut Self| s.object.is_some());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct State {
|
||||||
|
input: Rc<RenderInput>,
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: remove this
|
||||||
|
unsafe impl Send for State {}
|
||||||
|
unsafe impl Sync for State {}
|
||||||
|
|
||||||
|
impl State {
|
||||||
|
pub fn new(input: Rc<RenderInput>) -> Self {
|
||||||
|
Self { input }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn player_ship(&mut self) -> ShipState {
|
||||||
|
ShipState {
|
||||||
|
input: self.input.clone(),
|
||||||
|
ship: self.input.player.ship.map(|x| PhysSimShipHandle(x)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CustomType for State {
|
||||||
|
fn build(mut builder: TypeBuilder<Self>) {
|
||||||
|
builder
|
||||||
|
.with_name("State")
|
||||||
|
.with_fn("player_ship", Self::player_ship);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
use rhai::{CustomType, TypeBuilder};
|
use rhai::{CustomType, ImmutableString, TypeBuilder};
|
||||||
|
|
||||||
use super::{Rect, TextBoxFont, TextBoxJustify};
|
use super::{Rect, TextBoxFont, TextBoxJustify};
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct TextBoxBuilder {
|
pub struct TextBoxBuilder {
|
||||||
pub name: String,
|
pub name: ImmutableString,
|
||||||
pub font_size: f32,
|
pub font_size: f32,
|
||||||
pub line_height: f32,
|
pub line_height: f32,
|
||||||
pub font: TextBoxFont,
|
pub font: TextBoxFont,
|
||||||
pub justify: TextBoxJustify,
|
pub justify: TextBoxJustify,
|
||||||
pub rect: Rect,
|
pub rect: Rect,
|
||||||
pub text: String,
|
pub text: ImmutableString,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TextBoxBuilder {
|
impl TextBoxBuilder {
|
||||||
pub fn new(
|
pub fn new(
|
||||||
name: String,
|
name: ImmutableString,
|
||||||
font_size: f32,
|
font_size: f32,
|
||||||
line_height: f32,
|
line_height: f32,
|
||||||
font: TextBoxFont,
|
font: TextBoxFont,
|
||||||
|
@ -29,11 +29,11 @@ impl TextBoxBuilder {
|
||||||
font,
|
font,
|
||||||
justify,
|
justify,
|
||||||
rect,
|
rect,
|
||||||
text: String::new(),
|
text: ImmutableString::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_text(&mut self, text: String) {
|
pub fn set_text(&mut self, text: ImmutableString) {
|
||||||
self.text = text
|
self.text = text
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,22 +60,3 @@ pub mod textboxjustify_mod {
|
||||||
#[allow(non_upper_case_globals)]
|
#[allow(non_upper_case_globals)]
|
||||||
pub const Left: TextBoxJustify = TextBoxJustify::Left;
|
pub const Left: TextBoxJustify = TextBoxJustify::Left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
|
|
||||||
pub enum SceneAction {
|
|
||||||
None,
|
|
||||||
SceneOutfitter,
|
|
||||||
SceneLanded,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[export_module]
|
|
||||||
pub mod sceneaction_mod {
|
|
||||||
#[allow(non_upper_case_globals)]
|
|
||||||
pub const None: SceneAction = SceneAction::None;
|
|
||||||
|
|
||||||
#[allow(non_upper_case_globals)]
|
|
||||||
pub const SceneOutfitter: SceneAction = SceneAction::SceneOutfitter;
|
|
||||||
|
|
||||||
#[allow(non_upper_case_globals)]
|
|
||||||
pub const SceneLanded: SceneAction = SceneAction::SceneLanded;
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#[derive(Debug, Copy, Clone)]
|
||||||
|
pub enum Event {
|
||||||
|
None,
|
||||||
|
MouseClick,
|
||||||
|
MouseRelease,
|
||||||
|
MouseHover,
|
||||||
|
MouseUnhover,
|
||||||
|
}
|
|
@ -1,100 +1,43 @@
|
||||||
use anyhow::Result;
|
use anyhow::{Context, Result};
|
||||||
use galactica_content::Content;
|
use galactica_content::Content;
|
||||||
|
use galactica_system::phys::PhysSimShipHandle;
|
||||||
use glyphon::TextArea;
|
use glyphon::TextArea;
|
||||||
use log::{debug, error, trace};
|
use log::{debug, error, trace};
|
||||||
use rhai::{Array, Dynamic, Engine, Scope, AST};
|
use rhai::{Array, Dynamic, Engine, Scope};
|
||||||
use std::{cell::RefCell, collections::HashSet, fmt::Debug, rc::Rc};
|
use std::{collections::HashSet, num::NonZeroU32, rc::Rc};
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
api::{self, SceneAction, SpriteElement, TextBoxBuilder},
|
api::{
|
||||||
util::{Sprite, TextBox},
|
self, MouseClickEvent, MouseHoverEvent, PlayerShipStateEvent, SceneAction, SceneConfig,
|
||||||
|
SpriteElement, TextBoxBuilder,
|
||||||
|
},
|
||||||
|
event::Event,
|
||||||
|
util::{FpsIndicator, RadialBar, TextBox},
|
||||||
|
UiElement,
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
ui::api::{SpriteBuilder, State},
|
ui::{
|
||||||
|
api::{RadialBuilder, SpriteBuilder, State},
|
||||||
|
util::Sprite,
|
||||||
|
},
|
||||||
RenderInput, RenderState,
|
RenderInput, RenderState,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone)]
|
|
||||||
pub enum MouseEvent {
|
|
||||||
Click,
|
|
||||||
Release,
|
|
||||||
Enter,
|
|
||||||
Leave,
|
|
||||||
None,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl MouseEvent {
|
|
||||||
pub fn is_enter(&self) -> bool {
|
|
||||||
match self {
|
|
||||||
Self::Enter => true,
|
|
||||||
_ => false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn is_click(&self) -> bool {
|
|
||||||
match self {
|
|
||||||
Self::Click => true,
|
|
||||||
_ => false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone)]
|
|
||||||
pub(crate) enum UiScene {
|
|
||||||
Landed,
|
|
||||||
Flying,
|
|
||||||
Outfitter,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToString for UiScene {
|
|
||||||
fn to_string(&self) -> String {
|
|
||||||
match self {
|
|
||||||
Self::Flying => "flying".to_string(),
|
|
||||||
Self::Landed => "landed".to_string(),
|
|
||||||
Self::Outfitter => "outfitter".to_string(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
enum UiElement {
|
|
||||||
Sprite(Rc<RefCell<Sprite>>),
|
|
||||||
Text(TextBox),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl UiElement {
|
|
||||||
pub fn new_sprite(sprite: Sprite) -> Self {
|
|
||||||
Self::Sprite(Rc::new(RefCell::new(sprite)))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn new_text(text: TextBox) -> Self {
|
|
||||||
Self::Text(text)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn sprite(&self) -> Option<Rc<RefCell<Sprite>>> {
|
|
||||||
match self {
|
|
||||||
Self::Sprite(s) => Some(s.clone()),
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn text(&self) -> Option<&TextBox> {
|
|
||||||
match self {
|
|
||||||
Self::Text(t) => Some(t),
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) struct UiManager {
|
pub(crate) struct UiManager {
|
||||||
current_scene: UiScene,
|
current_scene: Option<String>,
|
||||||
|
current_scene_config: SceneConfig,
|
||||||
engine: Engine,
|
engine: Engine,
|
||||||
scope: Scope<'static>,
|
scope: Scope<'static>,
|
||||||
elements: Vec<UiElement>,
|
elements: Vec<UiElement>,
|
||||||
ct: Rc<Content>,
|
ct: Rc<Content>,
|
||||||
|
|
||||||
|
last_player_state: u32,
|
||||||
|
show_timings: bool,
|
||||||
|
fps_indicator: FpsIndicator,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl UiManager {
|
impl UiManager {
|
||||||
pub fn new(ct: Rc<Content>) -> Self {
|
pub fn new(ct: Rc<Content>, state: &mut RenderState) -> Self {
|
||||||
let scope = Scope::new();
|
let scope = Scope::new();
|
||||||
|
|
||||||
let mut engine = Engine::new();
|
let mut engine = Engine::new();
|
||||||
|
@ -102,73 +45,125 @@ impl UiManager {
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
ct,
|
ct,
|
||||||
current_scene: UiScene::Flying,
|
current_scene: None,
|
||||||
|
current_scene_config: SceneConfig::new(),
|
||||||
engine,
|
engine,
|
||||||
scope,
|
scope,
|
||||||
elements: Vec::new(),
|
elements: Vec::new(),
|
||||||
|
show_timings: true,
|
||||||
|
fps_indicator: FpsIndicator::new(state),
|
||||||
|
last_player_state: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_scene_ast(ct: &Content, scene: UiScene) -> &AST {
|
pub fn get_config(&self) -> &SceneConfig {
|
||||||
match scene {
|
&self.current_scene_config
|
||||||
UiScene::Landed => &ct.get_config().ui_landed_scene,
|
|
||||||
UiScene::Flying => &ct.get_config().ui_flying_scene,
|
|
||||||
UiScene::Outfitter => &ct.get_config().ui_outfitter_scene,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Change the current scene
|
/// Change the current scene
|
||||||
pub fn set_scene(&mut self, state: &mut RenderState, scene: UiScene) -> Result<()> {
|
pub fn set_scene(
|
||||||
|
&mut self,
|
||||||
|
state: &mut RenderState,
|
||||||
|
input: Rc<RenderInput>,
|
||||||
|
scene: String,
|
||||||
|
) -> Result<()> {
|
||||||
|
if !self.ct.get_config().ui_scenes.contains_key(&scene) {
|
||||||
|
error!("tried to switch to ui scene `{scene}`, which doesn't exist");
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
debug!("switching to {:?}", scene);
|
debug!("switching to {:?}", scene);
|
||||||
self.current_scene = scene;
|
self.current_scene = Some(scene);
|
||||||
|
self.current_scene_config = self
|
||||||
|
.engine
|
||||||
|
.call_fn(
|
||||||
|
&mut self.scope,
|
||||||
|
&self
|
||||||
|
.ct
|
||||||
|
.get_config()
|
||||||
|
.ui_scenes
|
||||||
|
.get(self.current_scene.as_ref().unwrap())
|
||||||
|
.unwrap(),
|
||||||
|
"config",
|
||||||
|
(),
|
||||||
|
)
|
||||||
|
.with_context(|| format!("while handling `config()`"))
|
||||||
|
.with_context(|| format!("in ui scene `{}`", self.current_scene.as_ref().unwrap()))?;
|
||||||
|
|
||||||
self.scope.clear();
|
self.scope.clear();
|
||||||
self.elements.clear();
|
self.elements.clear();
|
||||||
let mut used_names = HashSet::new();
|
let mut used_names = HashSet::new();
|
||||||
|
|
||||||
trace!("running init for `{}`", self.current_scene.to_string());
|
let builders: Array = self
|
||||||
|
.engine
|
||||||
let builders: Array = self.engine.call_fn(
|
.call_fn(
|
||||||
&mut self.scope,
|
&mut self.scope,
|
||||||
Self::get_scene_ast(&self.ct, self.current_scene),
|
&self
|
||||||
|
.ct
|
||||||
|
.get_config()
|
||||||
|
.ui_scenes
|
||||||
|
.get(self.current_scene.as_ref().unwrap())
|
||||||
|
.unwrap(),
|
||||||
"init",
|
"init",
|
||||||
(State {
|
(State::new(input.clone()),),
|
||||||
planet_landscape: "ui::landscape::test".to_string(),
|
)
|
||||||
planet_name: "Earth".to_string(),
|
.with_context(|| format!("while running `init()`"))
|
||||||
},),
|
.with_context(|| format!("in ui scene `{}`", self.current_scene.as_ref().unwrap()))?;
|
||||||
)?;
|
|
||||||
|
|
||||||
trace!("found {:?} builders", builders.len());
|
trace!("found {:?} builders", builders.len());
|
||||||
|
|
||||||
for v in builders {
|
for v in builders {
|
||||||
if v.is::<SpriteBuilder>() {
|
if v.is::<SpriteBuilder>() {
|
||||||
let s = v.cast::<SpriteBuilder>();
|
let s = v.cast::<SpriteBuilder>();
|
||||||
if used_names.contains(&s.name) {
|
if used_names.contains(s.name.as_str()) {
|
||||||
error!(
|
error!(
|
||||||
"UI scene `{}` re-uses element name `{}`",
|
"UI scene `{}` re-uses element name `{}`",
|
||||||
self.current_scene.to_string(),
|
self.current_scene.as_ref().unwrap(),
|
||||||
s.name
|
s.name
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
used_names.insert(s.name.clone());
|
used_names.insert(s.name.to_string());
|
||||||
}
|
}
|
||||||
self.elements.push(UiElement::new_sprite(Sprite::new(
|
self.elements.push(UiElement::new_sprite(Sprite::new(
|
||||||
&self.ct, s.name, s.sprite, s.mask, s.rect,
|
&self.ct,
|
||||||
|
s.name.to_string(),
|
||||||
|
s.sprite.to_string(),
|
||||||
|
s.mask.map(|x| x.to_string()),
|
||||||
|
s.rect,
|
||||||
|
)));
|
||||||
|
} else if v.is::<RadialBuilder>() {
|
||||||
|
let r = v.cast::<RadialBuilder>();
|
||||||
|
if used_names.contains(r.name.as_str()) {
|
||||||
|
error!(
|
||||||
|
"UI scene `{}` re-uses element name `{}`",
|
||||||
|
self.current_scene.as_ref().unwrap(),
|
||||||
|
r.name
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
used_names.insert(r.name.to_string());
|
||||||
|
}
|
||||||
|
self.elements.push(UiElement::new_radialbar(RadialBar::new(
|
||||||
|
&self.ct,
|
||||||
|
r.name.to_string(),
|
||||||
|
r.stroke,
|
||||||
|
r.color,
|
||||||
|
r.rect,
|
||||||
|
r.progress,
|
||||||
)));
|
)));
|
||||||
} else if v.is::<TextBoxBuilder>() {
|
} else if v.is::<TextBoxBuilder>() {
|
||||||
let t = v.cast::<TextBoxBuilder>();
|
let t = v.cast::<TextBoxBuilder>();
|
||||||
if used_names.contains(&t.name) {
|
if used_names.contains(t.name.as_str()) {
|
||||||
error!(
|
error!(
|
||||||
"UI scene `{}` re-uses element name `{}`",
|
"UI scene `{}` re-uses element name `{}`",
|
||||||
self.current_scene.to_string(),
|
self.current_scene.as_ref().unwrap(),
|
||||||
t.name
|
t.name
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
used_names.insert(t.name.clone());
|
used_names.insert(t.name.to_string());
|
||||||
}
|
}
|
||||||
let mut b = TextBox::new(
|
let mut b = TextBox::new(
|
||||||
state,
|
state,
|
||||||
t.name,
|
t.name.to_string(),
|
||||||
t.font_size,
|
t.font_size,
|
||||||
t.line_height,
|
t.line_height,
|
||||||
t.font,
|
t.font,
|
||||||
|
@ -186,65 +181,161 @@ impl UiManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Draw all ui elements
|
/// Draw all ui elements
|
||||||
pub fn draw(&mut self, input: &RenderInput, state: &mut RenderState) -> Result<()> {
|
pub fn draw(&mut self, input: Rc<RenderInput>, state: &mut RenderState) -> Result<()> {
|
||||||
let mut iter = self
|
// Initialize start scene if we haven't yet
|
||||||
.elements
|
if self.current_scene.is_none() {
|
||||||
.iter()
|
self.set_scene(
|
||||||
.map(|x| x.sprite())
|
state,
|
||||||
.filter(|x| x.is_some())
|
input.clone(),
|
||||||
.map(|x| x.unwrap());
|
self.ct.get_config().start_ui_scene.clone(),
|
||||||
|
)?;
|
||||||
|
}
|
||||||
|
|
||||||
let action: SceneAction = loop {
|
// Update timings if they're being displayed
|
||||||
let e = match iter.next() {
|
if self.show_timings {
|
||||||
Some(e) => e,
|
self.fps_indicator.step(&input, state);
|
||||||
None => break SceneAction::None,
|
}
|
||||||
};
|
|
||||||
|
|
||||||
let mut x = (*e).borrow_mut();
|
// Send player state change events
|
||||||
let m = x.check_mouse(input, state);
|
if {
|
||||||
x.step(input, state);
|
let player = input.player.ship;
|
||||||
x.push_to_buffer(input, state);
|
if let Some(player) = player {
|
||||||
drop(x);
|
let ship = input.phys_img.get_ship(&PhysSimShipHandle(player)).unwrap();
|
||||||
// we MUST drop here, since script calls mutate the sprite RefCell
|
if self.last_player_state == 0
|
||||||
|
|| NonZeroU32::new(self.last_player_state).unwrap()
|
||||||
let action: Dynamic = match m {
|
!= ship.ship.get_data().get_state().as_int()
|
||||||
MouseEvent::None => Dynamic::from(SceneAction::None),
|
{
|
||||||
|
self.last_player_state = ship.ship.get_data().get_state().as_int().into();
|
||||||
MouseEvent::Release | MouseEvent::Click => self.engine.call_fn(
|
true
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
self.last_player_state = 0;
|
||||||
|
true
|
||||||
|
}
|
||||||
|
} {
|
||||||
|
let action: Dynamic = self
|
||||||
|
.engine
|
||||||
|
.call_fn(
|
||||||
&mut self.scope,
|
&mut self.scope,
|
||||||
Self::get_scene_ast(&self.ct, self.current_scene),
|
&self
|
||||||
"click",
|
.ct
|
||||||
(SpriteElement::new(self.ct.clone(), e.clone()), m.is_click()),
|
.get_config()
|
||||||
)?,
|
.ui_scenes
|
||||||
|
.get(self.current_scene.as_ref().unwrap())
|
||||||
MouseEvent::Leave | MouseEvent::Enter => self.engine.call_fn(
|
.unwrap(),
|
||||||
&mut self.scope,
|
"event",
|
||||||
Self::get_scene_ast(&self.ct, self.current_scene),
|
(State::new(input.clone()), PlayerShipStateEvent {}),
|
||||||
"hover",
|
)
|
||||||
(SpriteElement::new(self.ct.clone(), e.clone()), m.is_enter()),
|
.with_context(|| format!("while handling player state change event"))
|
||||||
)?,
|
.with_context(|| {
|
||||||
};
|
format!("in ui scene `{}`", self.current_scene.as_ref().unwrap())
|
||||||
|
})?;
|
||||||
|
|
||||||
if let Some(action) = action.try_cast::<SceneAction>() {
|
if let Some(action) = action.try_cast::<SceneAction>() {
|
||||||
match action {
|
if self.handle_action(state, input.clone(), action)? {
|
||||||
SceneAction::None => {}
|
return Ok(());
|
||||||
_ => {
|
|
||||||
break action;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for i in 0..self.elements.len() {
|
||||||
|
match &self.elements[i] {
|
||||||
|
UiElement::Sprite(e) => {
|
||||||
|
// Draw and update sprites
|
||||||
|
let mut sprite = (*e).borrow_mut();
|
||||||
|
sprite.step(&input, state);
|
||||||
|
sprite.push_to_buffer(&input, state);
|
||||||
|
|
||||||
|
let event = sprite.check_events(&input, state);
|
||||||
|
// we MUST drop here, since script calls mutate the sprite RefCell
|
||||||
|
drop(sprite);
|
||||||
|
|
||||||
|
match event {
|
||||||
|
Event::None => continue,
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
|
||||||
|
let event_arg = match event {
|
||||||
|
Event::None => unreachable!("this shouldn't happen"),
|
||||||
|
|
||||||
|
Event::MouseClick => Dynamic::from(MouseClickEvent {
|
||||||
|
down: true,
|
||||||
|
element: SpriteElement::new(self.ct.clone(), e.clone()),
|
||||||
|
}),
|
||||||
|
|
||||||
|
Event::MouseRelease => Dynamic::from(MouseClickEvent {
|
||||||
|
down: false,
|
||||||
|
element: SpriteElement::new(self.ct.clone(), e.clone()),
|
||||||
|
}),
|
||||||
|
|
||||||
|
Event::MouseHover => Dynamic::from(MouseHoverEvent {
|
||||||
|
enter: true,
|
||||||
|
element: SpriteElement::new(self.ct.clone(), e.clone()),
|
||||||
|
}),
|
||||||
|
|
||||||
|
Event::MouseUnhover => Dynamic::from(MouseHoverEvent {
|
||||||
|
enter: false,
|
||||||
|
element: SpriteElement::new(self.ct.clone(), e.clone()),
|
||||||
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
drop(iter);
|
let action: Dynamic = self
|
||||||
|
.engine
|
||||||
|
.call_fn(
|
||||||
|
&mut self.scope,
|
||||||
|
&self
|
||||||
|
.ct
|
||||||
|
.get_config()
|
||||||
|
.ui_scenes
|
||||||
|
.get(self.current_scene.as_ref().unwrap())
|
||||||
|
.unwrap(),
|
||||||
|
"event",
|
||||||
|
(State::new(input.clone()), event_arg),
|
||||||
|
)
|
||||||
|
.with_context(|| format!("while handling event `{:?}`", event))
|
||||||
|
.with_context(|| {
|
||||||
|
format!("in ui scene `{}`", self.current_scene.as_ref().unwrap())
|
||||||
|
})?;
|
||||||
|
|
||||||
match action {
|
if let Some(action) = action.try_cast::<SceneAction>() {
|
||||||
SceneAction::None => {}
|
if self.handle_action(state, input.clone(), action)? {
|
||||||
SceneAction::SceneOutfitter => self.set_scene(state, UiScene::Outfitter)?,
|
return Ok(());
|
||||||
SceneAction::SceneLanded => self.set_scene(state, UiScene::Landed)?,
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
UiElement::RadialBar(e) => {
|
||||||
|
// Draw and update radialbar
|
||||||
|
let mut x = (*e).borrow_mut();
|
||||||
|
x.step(&input, state);
|
||||||
|
x.push_to_buffer(&input, state);
|
||||||
|
}
|
||||||
|
|
||||||
|
UiElement::Text(..) => {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Do a SceneAction.
|
||||||
|
/// If this returns true, all evaluation stops immediately.
|
||||||
|
fn handle_action(
|
||||||
|
&mut self,
|
||||||
|
state: &mut RenderState,
|
||||||
|
input: Rc<RenderInput>,
|
||||||
|
action: SceneAction,
|
||||||
|
) -> Result<bool> {
|
||||||
|
Ok(match action {
|
||||||
|
SceneAction::None => false,
|
||||||
|
SceneAction::GoTo(s) => {
|
||||||
|
self.set_scene(state, input.clone(), s.clone())?;
|
||||||
|
true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> UiManager {
|
impl<'a> UiManager {
|
||||||
|
@ -254,12 +345,27 @@ impl<'a> UiManager {
|
||||||
input: &RenderInput,
|
input: &RenderInput,
|
||||||
state: &RenderState,
|
state: &RenderState,
|
||||||
) -> Vec<TextArea<'a>> {
|
) -> Vec<TextArea<'a>> {
|
||||||
self.elements
|
let mut v = Vec::with_capacity(32);
|
||||||
|
|
||||||
|
if self.current_scene.is_none() {
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.show_timings {
|
||||||
|
v.push(self.fps_indicator.get_textarea(state, input))
|
||||||
|
}
|
||||||
|
|
||||||
|
for t in self
|
||||||
|
.elements
|
||||||
.iter()
|
.iter()
|
||||||
.map(|x| x.text())
|
.map(|x| x.text())
|
||||||
.filter(|x| x.is_some())
|
.filter(|x| x.is_some())
|
||||||
.map(|x| x.unwrap())
|
.map(|x| x.unwrap())
|
||||||
.map(|x| x.get_textarea(state, input))
|
.map(|x| x.get_textarea(state, input))
|
||||||
.collect()
|
{
|
||||||
|
v.push(t)
|
||||||
|
}
|
||||||
|
|
||||||
|
v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
mod api;
|
mod api;
|
||||||
|
mod event;
|
||||||
mod manager;
|
mod manager;
|
||||||
|
mod uielement;
|
||||||
mod util;
|
mod util;
|
||||||
|
|
||||||
pub(crate) use manager::UiManager;
|
pub(crate) use manager::UiManager;
|
||||||
pub(crate) use manager::UiScene;
|
pub(crate) use uielement::UiElement;
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
use std::{cell::RefCell, rc::Rc};
|
||||||
|
|
||||||
|
use super::util::{RadialBar, Sprite, TextBox};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub enum UiElement {
|
||||||
|
Sprite(Rc<RefCell<Sprite>>),
|
||||||
|
RadialBar(Rc<RefCell<RadialBar>>),
|
||||||
|
Text(TextBox),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl UiElement {
|
||||||
|
pub fn new_sprite(sprite: Sprite) -> Self {
|
||||||
|
Self::Sprite(Rc::new(RefCell::new(sprite)))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new_radialbar(bar: RadialBar) -> Self {
|
||||||
|
Self::RadialBar(Rc::new(RefCell::new(bar)))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new_text(text: TextBox) -> Self {
|
||||||
|
Self::Text(text)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn text(&self) -> Option<&TextBox> {
|
||||||
|
match self {
|
||||||
|
Self::Text(t) => Some(t),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,60 @@
|
||||||
|
use glyphon::{Attrs, Buffer, Color, Family, Metrics, Shaping, TextArea, TextBounds};
|
||||||
|
|
||||||
|
use crate::{RenderInput, RenderState};
|
||||||
|
|
||||||
|
pub(crate) struct FpsIndicator {
|
||||||
|
buffer: Buffer,
|
||||||
|
update_counter: u32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl FpsIndicator {
|
||||||
|
pub fn new(state: &mut RenderState) -> Self {
|
||||||
|
let mut buffer = Buffer::new(&mut state.text_font_system, Metrics::new(7.0, 8.0));
|
||||||
|
buffer.set_size(
|
||||||
|
&mut state.text_font_system,
|
||||||
|
state.window_size.width as f32,
|
||||||
|
state.window_size.height as f32,
|
||||||
|
);
|
||||||
|
|
||||||
|
Self {
|
||||||
|
buffer,
|
||||||
|
update_counter: 0,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl FpsIndicator {
|
||||||
|
pub fn step(&mut self, input: &RenderInput, state: &mut RenderState) {
|
||||||
|
if self.update_counter > 0 {
|
||||||
|
self.update_counter -= 1;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
self.update_counter = 100;
|
||||||
|
|
||||||
|
self.buffer.set_text(
|
||||||
|
&mut state.text_font_system,
|
||||||
|
&input.timing.get_string(),
|
||||||
|
Attrs::new().family(Family::Monospace),
|
||||||
|
Shaping::Basic,
|
||||||
|
);
|
||||||
|
self.buffer.shape_until_scroll(&mut state.text_font_system);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, 'b: 'a> FpsIndicator {
|
||||||
|
pub fn get_textarea(&'b self, _state: &RenderState, input: &RenderInput) -> TextArea<'a> {
|
||||||
|
TextArea {
|
||||||
|
buffer: &self.buffer,
|
||||||
|
left: 10.0,
|
||||||
|
top: 400.0,
|
||||||
|
scale: input.ct.get_config().ui_scale,
|
||||||
|
bounds: TextBounds {
|
||||||
|
left: 10,
|
||||||
|
top: 400,
|
||||||
|
right: 300,
|
||||||
|
bottom: 800,
|
||||||
|
},
|
||||||
|
default_color: Color::rgb(255, 255, 255),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,9 @@
|
||||||
|
mod fpsindicator;
|
||||||
|
mod radialbar;
|
||||||
mod sprite;
|
mod sprite;
|
||||||
mod textbox;
|
mod textbox;
|
||||||
|
|
||||||
pub use sprite::*;
|
pub(super) use fpsindicator::*;
|
||||||
pub use textbox::*;
|
pub(super) use radialbar::*;
|
||||||
|
pub(super) use sprite::*;
|
||||||
|
pub(super) use textbox::*;
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
use galactica_content::Content;
|
||||||
|
use std::f32::consts::TAU;
|
||||||
|
|
||||||
|
use super::super::api::Rect;
|
||||||
|
use crate::{ui::api::Color, vertexbuffer::types::RadialBarInstance, RenderInput, RenderState};
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct RadialBar {
|
||||||
|
pub name: String,
|
||||||
|
pub rect: Rect,
|
||||||
|
pub stroke: f32,
|
||||||
|
pub color: Color,
|
||||||
|
pub progress: f32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl RadialBar {
|
||||||
|
pub fn new(
|
||||||
|
_ct: &Content,
|
||||||
|
name: String,
|
||||||
|
stroke: f32,
|
||||||
|
color: Color,
|
||||||
|
rect: Rect,
|
||||||
|
progress: f32,
|
||||||
|
) -> Self {
|
||||||
|
Self {
|
||||||
|
name,
|
||||||
|
rect,
|
||||||
|
stroke,
|
||||||
|
color,
|
||||||
|
progress,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn push_to_buffer(&self, input: &RenderInput, state: &mut RenderState) {
|
||||||
|
let rect = self.rect.to_centered(state, input.ct.get_config().ui_scale);
|
||||||
|
|
||||||
|
state.push_radialbar_buffer(RadialBarInstance {
|
||||||
|
position: [rect.pos.x, rect.pos.y],
|
||||||
|
diameter: rect.dim.x.min(rect.dim.y),
|
||||||
|
stroke: self.stroke * input.ct.get_config().ui_scale,
|
||||||
|
color: self.color.as_array(),
|
||||||
|
angle: self.progress * TAU,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn step(&mut self, _input: &RenderInput, _state: &mut RenderState) {}
|
||||||
|
}
|
|
@ -1,14 +1,17 @@
|
||||||
use galactica_content::{Content, SpriteAutomaton, SpriteHandle};
|
use galactica_content::{Content, SpriteAutomaton, SpriteHandle};
|
||||||
use galactica_util::to_radians;
|
use galactica_util::to_radians;
|
||||||
|
use log::error;
|
||||||
|
|
||||||
use super::super::api::Rect;
|
use super::super::api::Rect;
|
||||||
use crate::{ui::manager::MouseEvent, vertexbuffer::types::UiInstance, RenderInput, RenderState};
|
use crate::{ui::event::Event, vertexbuffer::types::UiInstance, RenderInput, RenderState};
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct Sprite {
|
pub struct Sprite {
|
||||||
pub anim: SpriteAutomaton,
|
/// If this is none, this was constructed with an invalid sprite
|
||||||
pub rect: Rect,
|
pub anim: Option<SpriteAutomaton>,
|
||||||
pub mask: Option<SpriteHandle>,
|
|
||||||
|
rect: Rect,
|
||||||
|
mask: Option<SpriteHandle>,
|
||||||
pub name: String,
|
pub name: String,
|
||||||
|
|
||||||
has_mouse: bool,
|
has_mouse: bool,
|
||||||
|
@ -25,10 +28,24 @@ impl Sprite {
|
||||||
mask: Option<String>,
|
mask: Option<String>,
|
||||||
rect: Rect,
|
rect: Rect,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let sprite_handle = ct.get_sprite_handle(&sprite).unwrap(); // TODO: errors
|
let sprite_handle = ct.get_sprite_handle(&sprite);
|
||||||
|
|
||||||
|
if sprite_handle.is_none() {
|
||||||
|
error!("UI constructed a sprite named `{name}` using an invalid source `{sprite}`")
|
||||||
|
}
|
||||||
|
|
||||||
let mask = {
|
let mask = {
|
||||||
if mask.is_some() {
|
if mask.is_some() {
|
||||||
Some(ct.get_sprite_handle(&mask.unwrap()).unwrap())
|
let m = ct.get_sprite_handle(mask.as_ref().unwrap());
|
||||||
|
if m.is_none() {
|
||||||
|
error!(
|
||||||
|
"UI constructed a sprite named `{name}` using an invalid mask` {}`",
|
||||||
|
mask.unwrap()
|
||||||
|
);
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
m
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
@ -36,7 +53,7 @@ impl Sprite {
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
name,
|
name,
|
||||||
anim: SpriteAutomaton::new(&ct, sprite_handle),
|
anim: sprite_handle.map(|x| SpriteAutomaton::new(&ct, x)),
|
||||||
rect,
|
rect,
|
||||||
mask,
|
mask,
|
||||||
has_mouse: false,
|
has_mouse: false,
|
||||||
|
@ -46,14 +63,17 @@ impl Sprite {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn push_to_buffer(&self, input: &RenderInput, state: &mut RenderState) {
|
pub fn push_to_buffer(&self, input: &RenderInput, state: &mut RenderState) {
|
||||||
|
if self.anim.is_none() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let rect = self.rect.to_centered(state, input.ct.get_config().ui_scale);
|
let rect = self.rect.to_centered(state, input.ct.get_config().ui_scale);
|
||||||
|
|
||||||
// TODO: use both dimensions,
|
// TODO: use both dimensions,
|
||||||
// not just height
|
// not just height
|
||||||
let anim_state = self.anim.get_texture_idx();
|
let anim_state = self.anim.as_ref().unwrap().get_texture_idx();
|
||||||
|
|
||||||
state.push_ui_buffer(UiInstance {
|
state.push_ui_buffer(UiInstance {
|
||||||
anchor: crate::PositionAnchor::CC.to_int(),
|
|
||||||
position: rect.pos.into(),
|
position: rect.pos.into(),
|
||||||
angle: to_radians(90.0),
|
angle: to_radians(90.0),
|
||||||
dim: rect.dim.into(),
|
dim: rect.dim.into(),
|
||||||
|
@ -71,7 +91,7 @@ impl Sprite {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn check_mouse(&mut self, input: &RenderInput, state: &mut RenderState) -> MouseEvent {
|
pub fn check_events(&mut self, input: &RenderInput, state: &mut RenderState) -> Event {
|
||||||
let r = self.rect.to_centered(state, input.ct.get_config().ui_scale);
|
let r = self.rect.to_centered(state, input.ct.get_config().ui_scale);
|
||||||
|
|
||||||
if self.waiting_for_release && self.has_mouse && !input.player.input.pressed_leftclick() {
|
if self.waiting_for_release && self.has_mouse && !input.player.input.pressed_leftclick() {
|
||||||
|
@ -84,18 +104,18 @@ impl Sprite {
|
||||||
&& input.player.input.pressed_leftclick()
|
&& input.player.input.pressed_leftclick()
|
||||||
{
|
{
|
||||||
self.has_click = true;
|
self.has_click = true;
|
||||||
return MouseEvent::Click;
|
return Event::MouseClick;
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.has_mouse && self.has_click && !input.player.input.pressed_leftclick() {
|
if self.has_mouse && self.has_click && !input.player.input.pressed_leftclick() {
|
||||||
self.has_click = false;
|
self.has_click = false;
|
||||||
return MouseEvent::Release;
|
return Event::MouseRelease;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Release mouse when cursor leaves box
|
// Release mouse when cursor leaves box
|
||||||
if self.has_click && !self.has_mouse {
|
if self.has_click && !self.has_mouse {
|
||||||
self.has_click = false;
|
self.has_click = false;
|
||||||
return MouseEvent::Release;
|
return Event::MouseRelease;
|
||||||
}
|
}
|
||||||
|
|
||||||
if r.contains_mouse(input, state) && !self.has_mouse {
|
if r.contains_mouse(input, state) && !self.has_mouse {
|
||||||
|
@ -105,19 +125,26 @@ impl Sprite {
|
||||||
self.waiting_for_release = true;
|
self.waiting_for_release = true;
|
||||||
}
|
}
|
||||||
self.has_mouse = true;
|
self.has_mouse = true;
|
||||||
return MouseEvent::Enter;
|
return Event::MouseHover;
|
||||||
}
|
}
|
||||||
|
|
||||||
if !r.contains_mouse(input, state) && self.has_mouse {
|
if !r.contains_mouse(input, state) && self.has_mouse {
|
||||||
self.waiting_for_release = false;
|
self.waiting_for_release = false;
|
||||||
self.has_mouse = false;
|
self.has_mouse = false;
|
||||||
return MouseEvent::Leave;
|
return Event::MouseUnhover;
|
||||||
}
|
}
|
||||||
|
|
||||||
return MouseEvent::None;
|
return Event::None;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn step(&mut self, input: &RenderInput, _state: &mut RenderState) {
|
pub fn step(&mut self, input: &RenderInput, _state: &mut RenderState) {
|
||||||
self.anim.step(&input.ct, input.time_since_last_run);
|
if self.anim.is_none() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
self.anim
|
||||||
|
.as_mut()
|
||||||
|
.unwrap()
|
||||||
|
.step(&input.ct, input.time_since_last_run);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -143,10 +143,6 @@ impl BufferObject for ObjectInstance {
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
|
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
|
||||||
pub struct UiInstance {
|
pub struct UiInstance {
|
||||||
/// How to interpret this object's coordinates.
|
|
||||||
/// this should be generated from an AnchoredUiPosition
|
|
||||||
pub anchor: u32,
|
|
||||||
|
|
||||||
/// Position of this object in logical pixels
|
/// Position of this object in logical pixels
|
||||||
pub position: [f32; 2],
|
pub position: [f32; 2],
|
||||||
|
|
||||||
|
@ -183,52 +179,46 @@ impl BufferObject for UiInstance {
|
||||||
// instance when the shader starts processing a new instance
|
// instance when the shader starts processing a new instance
|
||||||
step_mode: wgpu::VertexStepMode::Instance,
|
step_mode: wgpu::VertexStepMode::Instance,
|
||||||
attributes: &[
|
attributes: &[
|
||||||
// Anchor
|
|
||||||
wgpu::VertexAttribute {
|
|
||||||
offset: 0,
|
|
||||||
shader_location: 2,
|
|
||||||
format: wgpu::VertexFormat::Uint32,
|
|
||||||
},
|
|
||||||
// Position
|
// Position
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 1]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 0]>() as wgpu::BufferAddress,
|
||||||
shader_location: 3,
|
shader_location: 2,
|
||||||
format: wgpu::VertexFormat::Float32x2,
|
format: wgpu::VertexFormat::Float32x2,
|
||||||
},
|
},
|
||||||
// Angle
|
// Angle
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 3]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 2]>() as wgpu::BufferAddress,
|
||||||
shader_location: 4,
|
shader_location: 3,
|
||||||
format: wgpu::VertexFormat::Float32,
|
format: wgpu::VertexFormat::Float32,
|
||||||
},
|
},
|
||||||
// Dim
|
// Dim
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 4]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 3]>() as wgpu::BufferAddress,
|
||||||
shader_location: 5,
|
shader_location: 4,
|
||||||
format: wgpu::VertexFormat::Float32x2,
|
format: wgpu::VertexFormat::Float32x2,
|
||||||
},
|
},
|
||||||
// Color
|
// Color
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 6]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 5]>() as wgpu::BufferAddress,
|
||||||
shader_location: 6,
|
shader_location: 5,
|
||||||
format: wgpu::VertexFormat::Float32x4,
|
format: wgpu::VertexFormat::Float32x4,
|
||||||
},
|
},
|
||||||
// Texture
|
// Texture
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 10]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 9]>() as wgpu::BufferAddress,
|
||||||
shader_location: 7,
|
shader_location: 6,
|
||||||
format: wgpu::VertexFormat::Uint32x2,
|
format: wgpu::VertexFormat::Uint32x2,
|
||||||
},
|
},
|
||||||
// Texture fade
|
// Texture fade
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 12]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 11]>() as wgpu::BufferAddress,
|
||||||
shader_location: 8,
|
shader_location: 7,
|
||||||
format: wgpu::VertexFormat::Float32,
|
format: wgpu::VertexFormat::Float32,
|
||||||
},
|
},
|
||||||
// Mask
|
// Mask
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 13]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 12]>() as wgpu::BufferAddress,
|
||||||
shader_location: 9,
|
shader_location: 8,
|
||||||
format: wgpu::VertexFormat::Uint32x2,
|
format: wgpu::VertexFormat::Uint32x2,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -239,10 +229,6 @@ impl BufferObject for UiInstance {
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
|
#[derive(Copy, Clone, bytemuck::Pod, bytemuck::Zeroable)]
|
||||||
pub struct RadialBarInstance {
|
pub struct RadialBarInstance {
|
||||||
/// How to interpret this object's coordinates.
|
|
||||||
/// this should be generated from an AnchoredUiPosition
|
|
||||||
pub anchor: u32,
|
|
||||||
|
|
||||||
/// Position of this object in logical pixels
|
/// Position of this object in logical pixels
|
||||||
pub position: [f32; 2],
|
pub position: [f32; 2],
|
||||||
|
|
||||||
|
@ -267,40 +253,34 @@ impl BufferObject for RadialBarInstance {
|
||||||
array_stride: Self::SIZE,
|
array_stride: Self::SIZE,
|
||||||
step_mode: wgpu::VertexStepMode::Instance,
|
step_mode: wgpu::VertexStepMode::Instance,
|
||||||
attributes: &[
|
attributes: &[
|
||||||
// Anchor
|
|
||||||
wgpu::VertexAttribute {
|
|
||||||
offset: 0,
|
|
||||||
shader_location: 2,
|
|
||||||
format: wgpu::VertexFormat::Uint32,
|
|
||||||
},
|
|
||||||
// Position
|
// Position
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 1]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 0]>() as wgpu::BufferAddress,
|
||||||
shader_location: 3,
|
shader_location: 2,
|
||||||
format: wgpu::VertexFormat::Float32x2,
|
format: wgpu::VertexFormat::Float32x2,
|
||||||
},
|
},
|
||||||
// Diameter
|
// Diameter
|
||||||
|
wgpu::VertexAttribute {
|
||||||
|
offset: mem::size_of::<[f32; 2]>() as wgpu::BufferAddress,
|
||||||
|
shader_location: 3,
|
||||||
|
format: wgpu::VertexFormat::Float32,
|
||||||
|
},
|
||||||
|
// Width
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 3]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 3]>() as wgpu::BufferAddress,
|
||||||
shader_location: 4,
|
shader_location: 4,
|
||||||
format: wgpu::VertexFormat::Float32,
|
format: wgpu::VertexFormat::Float32,
|
||||||
},
|
},
|
||||||
// Width
|
// Angle
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 4]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 4]>() as wgpu::BufferAddress,
|
||||||
shader_location: 5,
|
shader_location: 5,
|
||||||
format: wgpu::VertexFormat::Float32,
|
format: wgpu::VertexFormat::Float32,
|
||||||
},
|
},
|
||||||
// Angle
|
// Color
|
||||||
wgpu::VertexAttribute {
|
wgpu::VertexAttribute {
|
||||||
offset: mem::size_of::<[f32; 5]>() as wgpu::BufferAddress,
|
offset: mem::size_of::<[f32; 5]>() as wgpu::BufferAddress,
|
||||||
shader_location: 6,
|
shader_location: 6,
|
||||||
format: wgpu::VertexFormat::Float32,
|
|
||||||
},
|
|
||||||
// Color
|
|
||||||
wgpu::VertexAttribute {
|
|
||||||
offset: mem::size_of::<[f32; 6]>() as wgpu::BufferAddress,
|
|
||||||
shader_location: 7,
|
|
||||||
format: wgpu::VertexFormat::Float32x4,
|
format: wgpu::VertexFormat::Float32x4,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
use std::num::NonZeroU32;
|
||||||
|
|
||||||
use galactica_content::SystemObjectHandle;
|
use galactica_content::SystemObjectHandle;
|
||||||
use rapier2d::math::Isometry;
|
use rapier2d::math::Isometry;
|
||||||
|
|
||||||
|
@ -73,4 +75,66 @@ impl ShipState {
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// An integer representing each state.
|
||||||
|
/// Makes detecting state changes cheap and easy.
|
||||||
|
pub fn as_int(&self) -> NonZeroU32 {
|
||||||
|
NonZeroU32::new(match self {
|
||||||
|
Self::Dead => 1,
|
||||||
|
Self::Collapsing => 2,
|
||||||
|
Self::Flying { .. } => 3,
|
||||||
|
Self::Landed { .. } => 4,
|
||||||
|
Self::Landing { .. } => 5,
|
||||||
|
Self::UnLanding { .. } => 6,
|
||||||
|
})
|
||||||
|
.unwrap()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Is this state Dead?
|
||||||
|
pub fn is_dead(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::Dead => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Is this state Collapsing?
|
||||||
|
pub fn is_collapsing(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::Collapsing => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Is this state Flying?
|
||||||
|
pub fn is_flying(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::Flying { .. } => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Is this state Landed?
|
||||||
|
pub fn is_landed(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::Landed { .. } => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Is this state Landing?
|
||||||
|
pub fn is_landing(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::Landing { .. } => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Is this state UnLanding?
|
||||||
|
pub fn is_unlanding(&self) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::UnLanding { .. } => true,
|
||||||
|
_ => false,
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue