-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I just was to lazy and wanted to get it working fast, Now help is back
- Loading branch information
Showing
3 changed files
with
71 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,70 @@ | ||
// use crate::commands::dispatcher::InvalidTreeError::InvalidConsumptionError; | ||
// use crate::commands::dispatcher::{CommandDispatcher, InvalidTreeError}; | ||
// use crate::commands::tree::{Command, CommandTree, ConsumedArgs, RawArgs}; | ||
// use crate::commands::tree_builder::argument; | ||
// use crate::commands::{CommandSender}; | ||
// use pumpkin_core::text::TextComponent; | ||
|
||
// const NAMES: [&str; 3] = ["help", "h", "?"]; | ||
|
||
// const DESCRIPTION: &str = "Print a help message."; | ||
|
||
// const ARG_COMMAND: &str = "command"; | ||
|
||
// fn consume_arg_command(_src: &CommandSender, args: &mut RawArgs) -> Option<String> { | ||
// let s = args.pop()?; | ||
|
||
// let dispatcher = DISPATCHER.get_or_init(dispatcher_init); | ||
|
||
// dispatcher.get_tree(s).ok().map(|tree| tree.names[0].into()) | ||
// } | ||
|
||
// fn parse_arg_command<'a>( | ||
// consumed_args: &'a ConsumedArgs, | ||
// dispatcher: &'a CommandDispatcher, | ||
// ) -> Result<&'a CommandTree<'a>, InvalidTreeError> { | ||
// let command_name = consumed_args | ||
// .get(ARG_COMMAND) | ||
// .ok_or(InvalidConsumptionError(None))?; | ||
|
||
// dispatcher | ||
// .get_tree(command_name) | ||
// .map_err(|_| InvalidConsumptionError(Some(command_name.into()))) | ||
// } | ||
|
||
// pub(crate) fn init_command_tree<'a>() -> CommandTree<'a> { | ||
// CommandTree::new(NAMES, DESCRIPTION) | ||
// .with_child( | ||
// argument(ARG_COMMAND, consume_arg_command).execute(&|sender, _, args| { | ||
// let dispatcher = DISPATCHER.get_or_init(dispatcher_init); | ||
|
||
// let tree = parse_arg_command(args, dispatcher)?; | ||
|
||
// sender.send_message(TextComponent::text(&format!( | ||
// "{} - {} Usage: {}", | ||
// tree.names.join("/"), | ||
// tree.description, | ||
// tree | ||
// ))); | ||
|
||
// Ok(()) | ||
// }), | ||
// ) | ||
// .execute(&|sender, _, _args| { | ||
// let dispatcher = DISPATCHER.get_or_init(dispatcher_init); | ||
|
||
// let mut keys: Vec<&str> = dispatcher.commands.keys().copied().collect(); | ||
// keys.sort(); | ||
|
||
// for key in keys { | ||
// let Command::Tree(tree) = &dispatcher.commands[key] else { | ||
// continue; | ||
// }; | ||
|
||
// sender.send_message(TextComponent::text(&format!( | ||
// "{} - {} Usage: {}", | ||
// tree.names.join("/"), | ||
// tree.description, | ||
// tree | ||
// ))); | ||
// } | ||
|
||
// Ok(()) | ||
// }) | ||
// } | ||
use crate::commands::dispatcher::InvalidTreeError::InvalidConsumptionError; | ||
use crate::commands::dispatcher::{CommandDispatcher, InvalidTreeError}; | ||
use crate::commands::tree::{Command, CommandTree, ConsumedArgs, RawArgs}; | ||
use crate::commands::tree_builder::argument; | ||
use crate::commands::CommandSender; | ||
use pumpkin_core::text::TextComponent; | ||
|
||
const NAMES: [&str; 3] = ["help", "h", "?"]; | ||
|
||
const DESCRIPTION: &str = "Print a help message."; | ||
|
||
const ARG_COMMAND: &str = "command"; | ||
|
||
fn consume_arg_command(_src: &CommandSender, _args: &mut RawArgs) -> Option<String> { | ||
// let s = args.pop()?; | ||
|
||
// dispatcher.get_tree(s).ok().map(|tree| tree.names[0].into()) | ||
// TODO | ||
None | ||
} | ||
|
||
fn parse_arg_command<'a>( | ||
consumed_args: &'a ConsumedArgs, | ||
dispatcher: &'a CommandDispatcher, | ||
) -> Result<&'a CommandTree<'a>, InvalidTreeError> { | ||
let command_name = consumed_args | ||
.get(ARG_COMMAND) | ||
.ok_or(InvalidConsumptionError(None))?; | ||
|
||
dispatcher | ||
.get_tree(command_name) | ||
.map_err(|_| InvalidConsumptionError(Some(command_name.into()))) | ||
} | ||
|
||
pub(crate) fn init_command_tree<'a>() -> CommandTree<'a> { | ||
CommandTree::new(NAMES, DESCRIPTION) | ||
.with_child( | ||
argument(ARG_COMMAND, consume_arg_command).execute(&|sender, server, args| { | ||
let tree = parse_arg_command(args, &server.command_dispatcher)?; | ||
|
||
sender.send_message(TextComponent::text(&format!( | ||
"{} - {} Usage: {}", | ||
tree.names.join("/"), | ||
tree.description, | ||
tree | ||
))); | ||
|
||
Ok(()) | ||
}), | ||
) | ||
.execute(&|sender, server, _args| { | ||
let mut keys: Vec<&str> = server.command_dispatcher.commands.keys().copied().collect(); | ||
keys.sort(); | ||
|
||
for key in keys { | ||
let Command::Tree(tree) = &server.command_dispatcher.commands[key] else { | ||
continue; | ||
}; | ||
|
||
sender.send_message(TextComponent::text(&format!( | ||
"{} - {} Usage: {}", | ||
tree.names.join("/"), | ||
tree.description, | ||
tree | ||
))); | ||
} | ||
|
||
Ok(()) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters