|
|
@ -2,10 +2,9 @@ use std::collections::HashMap;
|
|
|
|
use std::fs;
|
|
|
|
use std::fs;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::time::Instant;
|
|
|
|
use std::time::Instant;
|
|
|
|
|
|
|
|
use serde_derive::Deserialize;
|
|
|
|
|
|
|
|
|
|
|
|
use cgmath::{Euler, Quaternion};
|
|
|
|
use cgmath::{Euler, Quaternion, Deg};
|
|
|
|
use config::{Config, Value};
|
|
|
|
|
|
|
|
use config::File;
|
|
|
|
|
|
|
|
use legion::world::SubWorld;
|
|
|
|
use legion::world::SubWorld;
|
|
|
|
use legion::IntoQuery;
|
|
|
|
use legion::IntoQuery;
|
|
|
|
use legion::*;
|
|
|
|
use legion::*;
|
|
|
@ -13,10 +12,10 @@ use nalgebra::Quaternion as naQuaternion;
|
|
|
|
use rapier3d::dynamics::{IntegrationParameters, JointSet, RigidBodySet};
|
|
|
|
use rapier3d::dynamics::{IntegrationParameters, JointSet, RigidBodySet};
|
|
|
|
use rapier3d::geometry::{BroadPhase, ColliderSet, NarrowPhase};
|
|
|
|
use rapier3d::geometry::{BroadPhase, ColliderSet, NarrowPhase};
|
|
|
|
use rapier3d::pipeline::PhysicsPipeline;
|
|
|
|
use rapier3d::pipeline::PhysicsPipeline;
|
|
|
|
|
|
|
|
|
|
|
|
use crate::camera::{Camera, CameraController};
|
|
|
|
use crate::camera::{Camera, CameraController};
|
|
|
|
use crate::components::{Collider, LoopState, Mesh, Physics, Position};
|
|
|
|
use crate::components::{Collider, LoopState, Mesh, Physics, Position};
|
|
|
|
use crate::geometry::{load_obj, RawMesh};
|
|
|
|
use crate::geometry::{load_obj, RawMesh};
|
|
|
|
|
|
|
|
use std::io::Read;
|
|
|
|
|
|
|
|
|
|
|
|
pub struct EntityMeta {
|
|
|
|
pub struct EntityMeta {
|
|
|
|
pub name: String,
|
|
|
|
pub name: String,
|
|
|
@ -26,17 +25,42 @@ pub struct EntityMeta {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub struct RuntimeState {
|
|
|
|
pub struct RuntimeState {
|
|
|
|
config_db: Config,
|
|
|
|
config_db: TomlEntityContainer,
|
|
|
|
mesh_cache: HashMap<String, RawMesh>,
|
|
|
|
mesh_cache: HashMap<String, RawMesh>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
|
|
|
|
pub struct TomlPositionDescription {
|
|
|
|
|
|
|
|
pub x: f32,
|
|
|
|
|
|
|
|
pub y: f32,
|
|
|
|
|
|
|
|
pub z: f32,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
|
|
|
|
pub struct TomlEntityDescription {
|
|
|
|
|
|
|
|
pub name: String,
|
|
|
|
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
|
|
|
|
pub type_name: String,
|
|
|
|
|
|
|
|
pub mesh: Option<String>,
|
|
|
|
|
|
|
|
pub position: Option<TomlPositionDescription>,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
|
|
|
|
pub struct TomlEntityContainer {
|
|
|
|
|
|
|
|
pub entities: Vec<TomlEntityDescription>,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
impl RuntimeState {
|
|
|
|
impl RuntimeState {
|
|
|
|
pub fn new() -> RuntimeState {
|
|
|
|
pub fn new() -> RuntimeState {
|
|
|
|
let mut settings = Config::default();
|
|
|
|
let mut file = fs::File::open("./conf/entity_spawns.toml").unwrap();
|
|
|
|
settings
|
|
|
|
let mut content = String::new();
|
|
|
|
// File::with_name(..) is shorthand for File::from(Path::new(..))
|
|
|
|
file.read_to_string(&mut content).unwrap();
|
|
|
|
.merge(File::with_name("conf/entity_spawns.toml"))
|
|
|
|
let mut settings : TomlEntityContainer = toml::from_str(content.as_str()).unwrap();
|
|
|
|
.unwrap();
|
|
|
|
// settings
|
|
|
|
|
|
|
|
// // File::with_name(..) is shorthand for File::from(Path::new(..))
|
|
|
|
|
|
|
|
// .merge(File::with_name("conf/entity_spawns.toml"))
|
|
|
|
|
|
|
|
// .unwrap();
|
|
|
|
|
|
|
|
|
|
|
|
RuntimeState {
|
|
|
|
RuntimeState {
|
|
|
|
config_db: settings,
|
|
|
|
config_db: settings,
|
|
|
@ -50,24 +74,35 @@ impl RuntimeState {
|
|
|
|
|
|
|
|
|
|
|
|
pub fn get_configured_entities(&mut self) -> Vec<EntityMeta> {
|
|
|
|
pub fn get_configured_entities(&mut self) -> Vec<EntityMeta> {
|
|
|
|
let mut out = Vec::new();
|
|
|
|
let mut out = Vec::new();
|
|
|
|
for entity in self.config_db.get_array("entities").unwrap() {
|
|
|
|
for entity in &self.config_db.entities {
|
|
|
|
let table = entity.into_table().unwrap();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let mesh = match table.get("mesh") {
|
|
|
|
let position = match &entity.position {
|
|
|
|
None => { None }
|
|
|
|
None => { None }
|
|
|
|
Some(v) => { Some(v.kind.to_string())}
|
|
|
|
Some(pos) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Some(Position {
|
|
|
|
|
|
|
|
x: pos.x,
|
|
|
|
|
|
|
|
y: pos.y,
|
|
|
|
|
|
|
|
z: pos.z,
|
|
|
|
|
|
|
|
rot: Euler {
|
|
|
|
|
|
|
|
x: Deg(0.0),
|
|
|
|
|
|
|
|
y: Deg(0.0),
|
|
|
|
|
|
|
|
z: Deg(0.0)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// let position = match table.get("position") {
|
|
|
|
// log::info!("{:?}", position);
|
|
|
|
// None => { None }
|
|
|
|
// log::info!("{:?}", entity);
|
|
|
|
// Some(v) => { Some(v.kind.to_string())}
|
|
|
|
// log::info!("{:?}", entity.into_table());
|
|
|
|
// };
|
|
|
|
// log::info!("{:?}", entity.into_array());
|
|
|
|
|
|
|
|
|
|
|
|
out.push(EntityMeta {
|
|
|
|
out.push(EntityMeta {
|
|
|
|
name: table.get("name").unwrap().kind.to_string(),
|
|
|
|
name: entity.name.clone(),
|
|
|
|
ent_type: table.get("type").unwrap().kind.to_string(),
|
|
|
|
ent_type: entity.type_name.clone(),
|
|
|
|
mesh: mesh,
|
|
|
|
mesh: entity.mesh.clone(),
|
|
|
|
position: None
|
|
|
|
position: position
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out
|
|
|
|
out
|
|
|
|