more cleanup

This commit is contained in:
Evan Pratten 2021-04-24 15:46:28 -04:00
parent e6726916a6
commit 7d06fcb6d1
2 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,4 @@
use raylib::math::Vector2;
use serde_json::json; use serde_json::json;
use serialstudio::{ use serialstudio::{
data::{DataGroup, DataSet, TelemetryFrame}, data::{DataGroup, DataSet, TelemetryFrame},
@ -21,7 +22,8 @@ pub struct ProfilerData {
// Player // Player
pub player_coins: u32, pub player_coins: u32,
pub player_boost_percent: f32, pub player_boost_percent: f32,
pub player_breath_percent: f32 pub player_breath_percent: f32,
pub player_pose: Vector2
} }
/// The development profiler /// The development profiler
@ -147,6 +149,20 @@ impl GameProfiler {
unit: Some("%".to_string()), unit: Some("%".to_string()),
w_type: None, w_type: None,
}, },
DataSet {
title: Some("X".to_string()),
value: json!(self.data.player_pose.x),
graph: Some(false),
unit: Some("pixels".to_string()),
w_type: None,
},
DataSet {
title: Some("Y".to_string()),
value: json!(self.data.player_pose.y),
graph: Some(false),
unit: Some("pixels".to_string()),
w_type: None,
},
], ],
}, },
], ],

View File

@ -134,6 +134,7 @@ fn main() {
profiler.data.player_coins = game_core.player.coins; profiler.data.player_coins = game_core.player.coins;
profiler.data.player_boost_percent = game_core.player.boost_percent; profiler.data.player_boost_percent = game_core.player.boost_percent;
profiler.data.player_breath_percent = game_core.player.breath_percent; profiler.data.player_breath_percent = game_core.player.breath_percent;
profiler.data.player_pose = game_core.player.position;
// Send telemetry data // Send telemetry data
profiler.update(); profiler.update();