2024-10-05 09:37:47 +02:00
|
|
|
|
//! A simple 3D scene with light shining over a cube sitting on a plane.
|
|
|
|
|
|
2024-10-05 08:41:37 +02:00
|
|
|
|
use bevy::prelude::*;
|
2024-10-05 12:17:55 +02:00
|
|
|
|
//use bevy::render::*;
|
2024-10-05 09:37:47 +02:00
|
|
|
|
use bevy::math::*;
|
2024-10-05 12:17:55 +02:00
|
|
|
|
use std::fs::File;
|
|
|
|
|
use std::io::Read;
|
|
|
|
|
use serde::{Deserialize, Serialize};
|
2024-10-05 12:55:18 +02:00
|
|
|
|
use std::f64::consts::PI;
|
2024-10-05 12:17:55 +02:00
|
|
|
|
|
2024-10-05 14:12:31 +02:00
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Clone)]
|
2024-10-05 12:17:55 +02:00
|
|
|
|
struct StarData {
|
|
|
|
|
#[serde(rename = "Dec")]
|
|
|
|
|
dec: String,
|
|
|
|
|
#[serde(rename = "HR")]
|
|
|
|
|
hr: String,
|
|
|
|
|
#[serde(rename = "K")]
|
|
|
|
|
k: Option<String>,
|
|
|
|
|
#[serde(rename = "RA")]
|
|
|
|
|
ra: String,
|
|
|
|
|
#[serde(rename = "V")]
|
|
|
|
|
v: String,
|
|
|
|
|
#[serde(rename = "C")]
|
|
|
|
|
constellation: Option<String>, // Optional field
|
|
|
|
|
#[serde(rename = "F")]
|
|
|
|
|
f: Option<String>, // Optional field
|
|
|
|
|
#[serde(rename = "B")]
|
|
|
|
|
bayer_designation: Option<String>, // Optional field
|
|
|
|
|
#[serde(rename = "N")]
|
|
|
|
|
name: Option<String>, // Optional field
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-05 08:41:37 +02:00
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
App::new()
|
2024-10-05 09:37:47 +02:00
|
|
|
|
.add_plugins(DefaultPlugins)
|
|
|
|
|
.add_systems(Startup, setup)
|
|
|
|
|
.run();
|
2024-10-05 08:41:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
2024-10-05 14:12:31 +02:00
|
|
|
|
|
2024-10-05 09:46:57 +02:00
|
|
|
|
#[derive(Component)]
|
|
|
|
|
struct Star;
|
|
|
|
|
|
2024-10-05 08:41:37 +02:00
|
|
|
|
fn setup(
|
2024-10-05 09:37:47 +02:00
|
|
|
|
mut commands: Commands,
|
|
|
|
|
mut meshes: ResMut<Assets<Mesh>>,
|
|
|
|
|
mut materials: ResMut<Assets<StandardMaterial>>,
|
2024-10-05 08:41:37 +02:00
|
|
|
|
) {
|
2024-10-05 09:46:57 +02:00
|
|
|
|
// plane
|
2024-10-05 14:15:28 +02:00
|
|
|
|
commands.insert_resource(ClearColor(Color::BLACK));
|
2024-10-05 12:17:55 +02:00
|
|
|
|
|
|
|
|
|
let stars = get_stars().unwrap();
|
|
|
|
|
|
2024-10-05 14:12:31 +02:00
|
|
|
|
let star_scale = 0.02;
|
|
|
|
|
let sky_radius = 4.0;
|
2024-10-05 12:55:18 +02:00
|
|
|
|
|
2024-10-05 14:12:31 +02:00
|
|
|
|
//let mesh = meshes.add(Cuboid::new(star_size, star_size, star_size));
|
|
|
|
|
let star_mesh = meshes.add(Sphere::new(1.0).mesh().ico(3).unwrap());
|
|
|
|
|
//let material = materials.add(Color::srgb(1.0, 1.0, 1.0));
|
|
|
|
|
let star_material = materials.add(StandardMaterial {
|
|
|
|
|
emissive: LinearRgba::rgb(1.0, 1.0, 1.0),
|
|
|
|
|
..default()
|
|
|
|
|
});
|
2024-10-05 13:11:11 +02:00
|
|
|
|
|
2024-10-05 12:17:55 +02:00
|
|
|
|
for star in stars {
|
2024-10-05 14:12:31 +02:00
|
|
|
|
let star_pos = star_position(star.clone()) * sky_radius;
|
|
|
|
|
let star_mag = star.v.parse::<f32>().unwrap();
|
|
|
|
|
let mut star_size = star_scale * 2.512f32.powf(-star_mag*0.5);
|
2024-10-05 12:55:18 +02:00
|
|
|
|
|
2024-10-05 14:12:31 +02:00
|
|
|
|
if star.constellation.is_some() {
|
|
|
|
|
star_size *= 1.5;
|
|
|
|
|
}
|
|
|
|
|
star_size = star_size.min(0.63*star_scale);
|
|
|
|
|
|
2024-10-05 13:11:11 +02:00
|
|
|
|
commands.spawn((
|
|
|
|
|
PbrBundle {
|
2024-10-05 14:12:31 +02:00
|
|
|
|
mesh: star_mesh.clone(),
|
|
|
|
|
material: star_material.clone(),
|
|
|
|
|
transform: Transform::from_xyz(star_pos.x, star_pos.y, star_pos.z)
|
|
|
|
|
.with_scale(Vec3::splat(star_size)),
|
2024-10-05 13:11:11 +02:00
|
|
|
|
..default()
|
|
|
|
|
},
|
|
|
|
|
Star,
|
|
|
|
|
));
|
2024-10-05 12:17:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
2024-10-05 09:37:47 +02:00
|
|
|
|
// camera
|
2024-10-05 09:46:57 +02:00
|
|
|
|
commands.spawn(Camera3dBundle {
|
2024-10-05 10:52:42 +02:00
|
|
|
|
transform: Transform::from_xyz(0.0, 0.0, 0.0).with_rotation(Quat::from_rotation_y(-1.5)),
|
2024-10-05 09:46:57 +02:00
|
|
|
|
..default()
|
|
|
|
|
});
|
2024-10-05 08:41:37 +02:00
|
|
|
|
}
|
2024-10-05 09:46:57 +02:00
|
|
|
|
|
2024-10-05 12:17:55 +02:00
|
|
|
|
fn get_stars() -> std::io::Result<Vec<StarData>> {
|
|
|
|
|
let mut file = File::open("data/stars.json")?;
|
|
|
|
|
let mut data = String::new();
|
|
|
|
|
file.read_to_string(&mut data)?;
|
|
|
|
|
|
|
|
|
|
info!("###");
|
2024-10-05 09:46:57 +02:00
|
|
|
|
|
2024-10-05 12:17:55 +02:00
|
|
|
|
let stars: Vec<StarData> = serde_json::from_str(&data).unwrap();
|
|
|
|
|
|
|
|
|
|
Ok(stars)
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-05 12:55:18 +02:00
|
|
|
|
fn star_position(star_data: StarData) -> Vec3 {
|
|
|
|
|
// Convert declination to decimal degrees
|
|
|
|
|
let text_ra = star_data.ra;
|
|
|
|
|
let text_dec = star_data.dec;
|
|
|
|
|
|
|
|
|
|
let ra_seconds: f64 = 3600.0 * text_ra[0..2].parse::<f64>().unwrap()
|
|
|
|
|
+ 60.0 * text_ra[4..6].parse::<f64>().unwrap()
|
|
|
|
|
+ text_ra[8..12].parse::<f64>().unwrap();
|
2024-10-05 14:12:31 +02:00
|
|
|
|
|
2024-10-05 12:55:18 +02:00
|
|
|
|
// Parse Dec
|
|
|
|
|
let formated_dec = text_dec
|
|
|
|
|
.replace("°", " ")
|
|
|
|
|
.replace("′", " ")
|
|
|
|
|
.replace("″", " ");
|
|
|
|
|
let dec_parts: Vec<&str> = formated_dec.split_whitespace().collect();
|
|
|
|
|
|
|
|
|
|
let dec_deg: f64 = dec_parts[0].parse::<f64>().unwrap()
|
|
|
|
|
+ dec_parts[1].parse::<f64>().unwrap() / 60.0
|
|
|
|
|
+ dec_parts[2].parse::<f64>().unwrap() / 3600.0;
|
|
|
|
|
|
2024-10-05 14:15:28 +02:00
|
|
|
|
celestial_to_cartesian(ra_seconds/3600.0, dec_deg)
|
2024-10-05 12:55:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn celestial_to_cartesian(rah: f64, ded: f64) -> Vec3 {
|
|
|
|
|
let y_rot = 2.0 * PI * rah / 24.0;
|
|
|
|
|
let x_rot = 2.0 * PI * ded / 360.0;
|
|
|
|
|
|
|
|
|
|
let x : f32 = (y_rot.sin() * x_rot.cos()) as f32;
|
|
|
|
|
let y : f32 = x_rot.sin() as f32;
|
|
|
|
|
let z : f32 = (y_rot.cos() * x_rot.cos()) as f32;
|
|
|
|
|
|
|
|
|
|
Vec3::new(x, y, z)
|
|
|
|
|
}
|
2024-10-05 12:17:55 +02:00
|
|
|
|
|
|
|
|
|
|
2024-10-05 14:12:31 +02:00
|
|
|
|
|