From d19e5d84ee21502fd3440511d4ffb1ee1f49d3b2 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 4 Feb 2026 00:27:16 +0800 Subject: Refactor build system and implement complete renderer system - Split monolithic build.rs into modular async generators - Add renderer override system with type-safe dispatch - Implement command template macro for consistent command definitions - Add proc-macro crates for command and renderer systems - Reorganize directory structure for better separation of concerns - Update documentation to reflect new architecture --- templates/_commands.rs.template | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 templates/_commands.rs.template (limited to 'templates/_commands.rs.template') diff --git a/templates/_commands.rs.template b/templates/_commands.rs.template new file mode 100644 index 0000000..84d2db4 --- /dev/null +++ b/templates/_commands.rs.template @@ -0,0 +1,40 @@ +// Auto generated by build.rs +use crate::systems::cmd::cmd_system::{JVCommand, JVCommandContext}; +use crate::systems::cmd::errors::CmdProcessError; +<> +/// Input parameters, execute a command node +pub async fn jv_cmd_process_node( + node: &str, + args: Vec, + ctx: JVCommandContext, + renderer_override: String +) -> Result { + match node { +// PROCESS +// -- TEMPLATE START -- + // Command `<>` + "<>" => { + if renderer_override == "default" { + return crate::<>::process_to_render_system( + args, ctx, + ) + .await; + } else { + return crate::<>::process_to_renderer_override( + args, + ctx, + renderer_override, + ) + .await; + } + } +// -- TEMPLATE END -- + _ => {} + } + return Err(CmdProcessError::NoNodeFound(node.to_string())); +} +<> +/// Get all command nodes +pub fn jv_cmd_nodes() -> Vec { + vec!<> +} -- cgit