Initial Brigadier overriden tab completion
This commit is contained in:
@@ -23,31 +23,13 @@ import baritone.api.event.events.type.Overrideable;
|
|||||||
/**
|
/**
|
||||||
* @author LoganDark
|
* @author LoganDark
|
||||||
*/
|
*/
|
||||||
public abstract class TabCompleteEvent extends Cancellable {
|
public final class TabCompleteEvent extends Cancellable {
|
||||||
|
|
||||||
public final Overrideable<String> prefix;
|
public final String prefix;
|
||||||
public final Overrideable<String[]> completions;
|
public String[] completions;
|
||||||
|
|
||||||
TabCompleteEvent(String prefix, String[] completions) {
|
public TabCompleteEvent(String prefix) {
|
||||||
this.prefix = new Overrideable<>(prefix);
|
this.prefix = prefix;
|
||||||
this.completions = new Overrideable<>(completions);
|
this.completions = null;
|
||||||
}
|
|
||||||
|
|
||||||
public boolean wasModified() {
|
|
||||||
return prefix.wasModified() || completions.wasModified();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static final class Pre extends TabCompleteEvent {
|
|
||||||
|
|
||||||
public Pre(String prefix) {
|
|
||||||
super(prefix, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static final class Post extends TabCompleteEvent {
|
|
||||||
|
|
||||||
public Post(String prefix, String[] completions) {
|
|
||||||
super(prefix, completions);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,10 +40,7 @@ public interface AbstractGameEventListener extends IGameEventListener {
|
|||||||
default void onSendChatMessage(ChatEvent event) {}
|
default void onSendChatMessage(ChatEvent event) {}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
default void onPreTabComplete(TabCompleteEvent.Pre event) {}
|
default void onPreTabComplete(TabCompleteEvent event) {}
|
||||||
|
|
||||||
@Override
|
|
||||||
default void onPostTabComplete(TabCompleteEvent.Post event) {}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
default void onChunkEvent(ChunkEvent event) {}
|
default void onChunkEvent(ChunkEvent event) {}
|
||||||
|
|||||||
@@ -61,15 +61,7 @@ public interface IGameEventListener {
|
|||||||
*
|
*
|
||||||
* @param event The event
|
* @param event The event
|
||||||
*/
|
*/
|
||||||
void onPreTabComplete(TabCompleteEvent.Pre event);
|
void onPreTabComplete(TabCompleteEvent event);
|
||||||
|
|
||||||
/**
|
|
||||||
* Runs whenever the client player tries to tab complete in chat once completions have been recieved from the
|
|
||||||
* server. This will only be called if the {@link TabCompleteEvent#cancel()} method was not called.
|
|
||||||
*
|
|
||||||
* @param event The event
|
|
||||||
*/
|
|
||||||
void onPostTabComplete(TabCompleteEvent.Post event);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Runs before and after whenever a chunk is either loaded, unloaded, or populated.
|
* Runs before and after whenever a chunk is either loaded, unloaded, or populated.
|
||||||
|
|||||||
@@ -0,0 +1,97 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of Baritone.
|
||||||
|
*
|
||||||
|
* Baritone is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Baritone is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public License
|
||||||
|
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package baritone.launch.mixins;
|
||||||
|
|
||||||
|
import baritone.api.BaritoneAPI;
|
||||||
|
import baritone.api.event.events.TabCompleteEvent;
|
||||||
|
import com.mojang.brigadier.context.StringRange;
|
||||||
|
import com.mojang.brigadier.suggestion.Suggestion;
|
||||||
|
import com.mojang.brigadier.suggestion.Suggestions;
|
||||||
|
import net.minecraft.client.gui.GuiChat;
|
||||||
|
import net.minecraft.client.gui.GuiTextField;
|
||||||
|
import org.spongepowered.asm.mixin.Final;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.CompletableFuture;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Brady
|
||||||
|
* @since 10/9/2019
|
||||||
|
*/
|
||||||
|
@Mixin(GuiChat.class)
|
||||||
|
public class MixinGuiChat {
|
||||||
|
|
||||||
|
@Shadow
|
||||||
|
protected GuiTextField inputField;
|
||||||
|
|
||||||
|
@Shadow
|
||||||
|
@Final
|
||||||
|
protected List<String> commandUsage;
|
||||||
|
|
||||||
|
@Shadow
|
||||||
|
private CompletableFuture<Suggestions> pendingSuggestions;
|
||||||
|
|
||||||
|
@Inject(
|
||||||
|
method = "updateSuggestion",
|
||||||
|
at = @At("HEAD"),
|
||||||
|
cancellable = true
|
||||||
|
)
|
||||||
|
private void preUpdateSuggestion(CallbackInfo ci) {
|
||||||
|
// Anything that is present in the input text before the cursor position
|
||||||
|
String prefix = this.inputField.getText().substring(0, Math.min(this.inputField.getText().length(), this.inputField.getCursorPosition()));
|
||||||
|
|
||||||
|
TabCompleteEvent event = new TabCompleteEvent(prefix);
|
||||||
|
BaritoneAPI.getProvider().getPrimaryBaritone().getGameEventHandler().onPreTabComplete(event);
|
||||||
|
|
||||||
|
if (event.isCancelled()) {
|
||||||
|
ci.cancel();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.completions != null) {
|
||||||
|
ci.cancel();
|
||||||
|
|
||||||
|
// TODO: Support populating the command usage
|
||||||
|
this.commandUsage.clear();
|
||||||
|
|
||||||
|
if (event.completions.length == 0) {
|
||||||
|
this.pendingSuggestions = Suggestions.empty();
|
||||||
|
} else {
|
||||||
|
int offset = this.inputField.getCursorPosition();
|
||||||
|
|
||||||
|
List<Suggestion> suggestionList = Stream.of(event.completions)
|
||||||
|
.map(s -> new Suggestion(StringRange.between(offset, offset + s.length()), s))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
|
Suggestions suggestions = new Suggestions(
|
||||||
|
StringRange.between(offset, offset + suggestionList.stream().mapToInt(s -> s.getText().length()).max().orElse(0)),
|
||||||
|
suggestionList);
|
||||||
|
|
||||||
|
this.pendingSuggestions = new CompletableFuture<>();
|
||||||
|
this.pendingSuggestions.complete(suggestions);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -18,6 +18,7 @@
|
|||||||
"MixinEntityLivingBase",
|
"MixinEntityLivingBase",
|
||||||
"MixinEntityPlayerSP",
|
"MixinEntityPlayerSP",
|
||||||
"MixinGameRenderer",
|
"MixinGameRenderer",
|
||||||
|
"MixinGuiChat",
|
||||||
"MixinGuiScreen",
|
"MixinGuiScreen",
|
||||||
"MixinItemStack",
|
"MixinItemStack",
|
||||||
"MixinMinecraft",
|
"MixinMinecraft",
|
||||||
|
|||||||
@@ -146,11 +146,11 @@ public class BaritoneChatControl implements Helper, AbstractGameEventListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onPreTabComplete(TabCompleteEvent.Pre event) {
|
public void onPreTabComplete(TabCompleteEvent event) {
|
||||||
if (!settings.prefixControl.value) {
|
if (!settings.prefixControl.value) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String prefix = event.prefix.get();
|
String prefix = event.prefix;
|
||||||
String commandPrefix = settings.prefix.value;
|
String commandPrefix = settings.prefix.value;
|
||||||
if (!prefix.startsWith(commandPrefix)) {
|
if (!prefix.startsWith(commandPrefix)) {
|
||||||
return;
|
return;
|
||||||
@@ -161,7 +161,7 @@ public class BaritoneChatControl implements Helper, AbstractGameEventListener {
|
|||||||
if (args.size() == 1) {
|
if (args.size() == 1) {
|
||||||
stream = stream.map(x -> commandPrefix + x);
|
stream = stream.map(x -> commandPrefix + x);
|
||||||
}
|
}
|
||||||
event.completions.set(stream.toArray(String[]::new));
|
event.completions = stream.toArray(String[]::new);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Stream<String> tabComplete(String msg) {
|
public Stream<String> tabComplete(String msg) {
|
||||||
|
|||||||
@@ -70,15 +70,10 @@ public final class GameEventHandler implements IEventBus, Helper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onPreTabComplete(TabCompleteEvent.Pre event) {
|
public void onPreTabComplete(TabCompleteEvent event) {
|
||||||
listeners.forEach(l -> l.onPreTabComplete(event));
|
listeners.forEach(l -> l.onPreTabComplete(event));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onPostTabComplete(TabCompleteEvent.Post event) {
|
|
||||||
listeners.forEach(l -> l.onPostTabComplete(event));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final void onChunkEvent(ChunkEvent event) {
|
public final void onChunkEvent(ChunkEvent event) {
|
||||||
EventState state = event.getState();
|
EventState state = event.getState();
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
package baritone.utils.accessor;
|
|
||||||
|
|
||||||
public interface ITabCompleter {
|
|
||||||
|
|
||||||
String getPrefix();
|
|
||||||
|
|
||||||
void setPrefix(String prefix);
|
|
||||||
|
|
||||||
boolean onGuiChatSetCompletions(String[] newCompl);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user