aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/builder
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-05-28 15:46:58 -0800
committermat <git@matdoes.dev>2025-05-28 14:47:18 -0900
commitda73b4316de4b26322c53f14222c7751a0be55a1 (patch)
treef3a8b656936d92032ca34800fcb64b648dd6bada /azalea-brigadier/src/builder
parent3d340f585a320d1d6553756e6ed85d0bd88af3b2 (diff)
downloadazalea-drasl-da73b4316de4b26322c53f14222c7751a0be55a1.tar.xz
add support for custom suggestions in azalea-brigadier and cleanup a bit
Diffstat (limited to 'azalea-brigadier/src/builder')
-rw-r--r--azalea-brigadier/src/builder/argument_builder.rs18
-rw-r--r--azalea-brigadier/src/builder/literal_argument_builder.rs2
-rw-r--r--azalea-brigadier/src/builder/required_argument_builder.rs57
3 files changed, 56 insertions, 21 deletions
diff --git a/azalea-brigadier/src/builder/argument_builder.rs b/azalea-brigadier/src/builder/argument_builder.rs
index 9ebe6400..bc7f0ac6 100644
--- a/azalea-brigadier/src/builder/argument_builder.rs
+++ b/azalea-brigadier/src/builder/argument_builder.rs
@@ -9,10 +9,20 @@ use crate::{
tree::{Command, CommandNode},
};
-#[derive(Debug, Clone)]
-pub enum ArgumentBuilderType {
+#[derive(Debug)]
+pub enum ArgumentBuilderType<S> {
Literal(Literal),
- Argument(Argument),
+ Argument(Argument<S>),
+}
+impl<S> Clone for ArgumentBuilderType<S> {
+ fn clone(&self) -> Self {
+ match self {
+ ArgumentBuilderType::Literal(literal) => ArgumentBuilderType::Literal(literal.clone()),
+ ArgumentBuilderType::Argument(argument) => {
+ ArgumentBuilderType::Argument(argument.clone())
+ }
+ }
+ }
}
/// A node that hasn't yet been built.
@@ -30,7 +40,7 @@ pub struct ArgumentBuilder<S> {
/// A node that isn't yet built.
impl<S> ArgumentBuilder<S> {
- pub fn new(value: ArgumentBuilderType) -> Self {
+ pub fn new(value: ArgumentBuilderType<S>) -> Self {
Self {
arguments: CommandNode {
value,
diff --git a/azalea-brigadier/src/builder/literal_argument_builder.rs b/azalea-brigadier/src/builder/literal_argument_builder.rs
index 6627ffdc..ea5db2d3 100644
--- a/azalea-brigadier/src/builder/literal_argument_builder.rs
+++ b/azalea-brigadier/src/builder/literal_argument_builder.rs
@@ -12,7 +12,7 @@ impl Literal {
}
}
-impl From<Literal> for ArgumentBuilderType {
+impl<S> From<Literal> for ArgumentBuilderType<S> {
fn from(literal: Literal) -> Self {
Self::Literal(literal)
}
diff --git a/azalea-brigadier/src/builder/required_argument_builder.rs b/azalea-brigadier/src/builder/required_argument_builder.rs
index 51f0acec..7c0f1015 100644
--- a/azalea-brigadier/src/builder/required_argument_builder.rs
+++ b/azalea-brigadier/src/builder/required_argument_builder.rs
@@ -1,25 +1,35 @@
-use std::{any::Any, fmt::Debug, sync::Arc};
+use std::{
+ any::Any,
+ fmt::{self, Debug},
+ sync::Arc,
+};
use super::argument_builder::{ArgumentBuilder, ArgumentBuilderType};
use crate::{
arguments::ArgumentType,
+ context::CommandContext,
exceptions::CommandSyntaxException,
string_reader::StringReader,
- suggestion::{Suggestions, SuggestionsBuilder},
+ suggestion::{SuggestionProvider, Suggestions, SuggestionsBuilder},
};
/// An argument node type. The `T` type parameter is the type of the argument,
/// which can be anything.
-#[derive(Clone)]
-pub struct Argument {
+pub struct Argument<S> {
pub name: String,
parser: Arc<dyn ArgumentType + Send + Sync>,
+ custom_suggestions: Option<Arc<dyn SuggestionProvider<S> + Send + Sync>>,
}
-impl Argument {
- pub fn new(name: &str, parser: Arc<dyn ArgumentType + Send + Sync>) -> Self {
+impl<S> Argument<S> {
+ pub fn new(
+ name: &str,
+ parser: Arc<dyn ArgumentType + Send + Sync>,
+ custom_suggestions: Option<Arc<dyn SuggestionProvider<S> + Send + Sync>>,
+ ) -> Self {
Self {
name: name.to_string(),
parser,
+ custom_suggestions,
}
}
@@ -27,11 +37,16 @@ impl Argument {
self.parser.parse(reader)
}
- pub fn list_suggestions(&self, builder: SuggestionsBuilder) -> Suggestions {
- // TODO: custom suggestions
- // https://github.com/Mojang/brigadier/blob/master/src/main/java/com/mojang/brigadier/tree/ArgumentCommandNode.java#L71
-
- self.parser.list_suggestions(builder)
+ pub fn list_suggestions(
+ &self,
+ context: CommandContext<S>,
+ builder: SuggestionsBuilder,
+ ) -> Suggestions {
+ if let Some(s) = &self.custom_suggestions {
+ s.get_suggestions(context, builder)
+ } else {
+ self.parser.list_suggestions(builder)
+ }
}
pub fn examples(&self) -> Vec<String> {
@@ -39,14 +54,14 @@ impl Argument {
}
}
-impl From<Argument> for ArgumentBuilderType {
- fn from(argument: Argument) -> Self {
+impl<S> From<Argument<S>> for ArgumentBuilderType<S> {
+ fn from(argument: Argument<S>) -> Self {
Self::Argument(argument)
}
}
-impl Debug for Argument {
- fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+impl<S> Debug for Argument<S> {
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Argument")
.field("name", &self.name)
// .field("parser", &self.parser)
@@ -59,5 +74,15 @@ pub fn argument<S>(
name: &str,
parser: impl ArgumentType + Send + Sync + 'static,
) -> ArgumentBuilder<S> {
- ArgumentBuilder::new(Argument::new(name, Arc::new(parser)).into())
+ ArgumentBuilder::new(Argument::new(name, Arc::new(parser), None).into())
+}
+
+impl<S> Clone for Argument<S> {
+ fn clone(&self) -> Self {
+ Self {
+ name: self.name.clone(),
+ parser: self.parser.clone(),
+ custom_suggestions: self.custom_suggestions.clone(),
+ }
+ }
}