diff --git a/.vscode/settings.json b/.vscode/settings.json index 6986321..c176842 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,6 +3,7 @@ "clippy", "raylib", "renderable", - "vergen" + "vergen", + "vsprintf" ] } diff --git a/game/Cargo.toml b/game/Cargo.toml index 531f80a..821b3cf 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -27,6 +27,9 @@ tempfile = "3.2" approx = "0.5" pkg-version = "1.0" cfg-if = "1.0" +num-derive = "0.3" +num = "0.4" +printf = "0.1" [dev-dependencies] puffin_viewer = "0.6" diff --git a/game/src/lib.rs b/game/src/lib.rs index 1b630fd..3d35e62 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -1,6 +1,7 @@ #![feature(derive_default_enum)] #![feature(custom_inner_attributes)] #![feature(stmt_expr_attributes)] +#![feature(c_variadic)] #![deny(unsafe_code)] #![warn( clippy::all, @@ -75,15 +76,10 @@ use raylib::prelude::*; use tracing::{error, info}; use utilities::discord::DiscordConfig; -use crate::{ - context::GameContext, - discord_rpc::{maybe_set_discord_presence, try_connect_to_local_discord}, - scenes::{build_screen_state_machine, Scenes}, - utilities::shaders::{ +use crate::{context::GameContext, discord_rpc::{maybe_set_discord_presence, try_connect_to_local_discord}, scenes::{build_screen_state_machine, Scenes}, utilities::{ffi_logging::hook_raylib_logging, shaders::{ shader::ShaderWrapper, util::{dynamic_screen_texture::DynScreenTexture, render_texture::render_to_texture}, - }, -}; + }}}; #[macro_use] extern crate thiserror; @@ -91,6 +87,8 @@ extern crate thiserror; extern crate serde; #[macro_use] extern crate approx; +#[macro_use] +extern crate num_derive; mod context; mod discord_rpc; @@ -135,6 +133,7 @@ pub async fn game_begin(game_config: &GameConfig) -> Result<(), Box match level { + RaylibLogLevel::Trace => tracing::trace!("{}", formatted_message), + RaylibLogLevel::Debug => tracing::debug!("{}", formatted_message), + RaylibLogLevel::Warning => tracing::warn!("{}", formatted_message), + RaylibLogLevel::Error => tracing::error!("{}", formatted_message), + RaylibLogLevel::Fatal => tracing::error!("{}", formatted_message), + _ => tracing::info!("{}", formatted_message), + }, + None => { + println!("{:?}", formatted_message) + } + } +} + +/// Call this to replace raylib's logger with the rust logging system +pub fn hook_raylib_logging() { + #[allow(unsafe_code)] + unsafe { + raylib::ffi::SetTraceLogCallback(Some(raylib_log_callback)); + } +} diff --git a/game/src/utilities/mod.rs b/game/src/utilities/mod.rs index 1f7c03a..f721cf3 100644 --- a/game/src/utilities/mod.rs +++ b/game/src/utilities/mod.rs @@ -6,3 +6,4 @@ pub mod shaders; pub mod non_ref_raylib; pub mod render_layer; pub mod game_version; +pub mod ffi_logging;