From 7d06fcb6d1a3dfa20e72c0422158cf271fd566d9 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 24 Apr 2021 15:46:28 -0400 Subject: [PATCH] more cleanup --- src/lib/utils/profiler.rs | 18 +++++++++++++++++- src/main.rs | 1 + 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/lib/utils/profiler.rs b/src/lib/utils/profiler.rs index c813885..e8af3ea 100644 --- a/src/lib/utils/profiler.rs +++ b/src/lib/utils/profiler.rs @@ -1,3 +1,4 @@ +use raylib::math::Vector2; use serde_json::json; use serialstudio::{ data::{DataGroup, DataSet, TelemetryFrame}, @@ -21,7 +22,8 @@ pub struct ProfilerData { // Player pub player_coins: u32, pub player_boost_percent: f32, - pub player_breath_percent: f32 + pub player_breath_percent: f32, + pub player_pose: Vector2 } /// The development profiler @@ -147,6 +149,20 @@ impl GameProfiler { unit: Some("%".to_string()), 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, + }, ], }, ], diff --git a/src/main.rs b/src/main.rs index 75a8769..aa48d4a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -134,6 +134,7 @@ fn main() { profiler.data.player_coins = game_core.player.coins; profiler.data.player_boost_percent = game_core.player.boost_percent; profiler.data.player_breath_percent = game_core.player.breath_percent; + profiler.data.player_pose = game_core.player.position; // Send telemetry data profiler.update();