feat: complete event module fix tab completer

This commit is contained in:
2019-09-19 18:58:01 +08:00
parent 2bf239d8ea
commit dfa43d58f0
4 changed files with 72 additions and 41 deletions

View File

@@ -4,7 +4,7 @@ import { command, plugin } from '@ms/api'
import * as reflect from '@ms/common/dist/reflect'
import { injectable, postConstruct, inject } from '@ms/container'
let Bukkit = Java.type("org.bukkit.Bukkit");
let Bukkit = org.bukkit.Bukkit;
let Arrays = Java.type('java.util.Arrays');
let TabCompleter = Java.type('org.bukkit.command.TabCompleter');
let PluginCommand = Java.type('org.bukkit.command.PluginCommand');
@@ -18,37 +18,7 @@ export class BukkitCommand extends command.Command {
@postConstruct()
init() {
this.commandMap = reflect.on(Bukkit.pluginManager).get('commandMap').get();
}
enable(jsp) {
var commands = jsp.description.commands;
if (commands) {
var pluginCommands = [];
for (var name in commands) {
var command = commands[name];
if (typeof command !== 'object') continue;
command.name = name;
var newCmd = this.create(jsp, command);
if (command.description) newCmd.setDescription(command.description);
if (command.usage) newCmd.setUsage(command.usage);
if (command.aliases) newCmd.setAliases(Arrays.asList(command.aliases));
if (command.permission) newCmd.setPermission(command.permission);
if (command['permission-message']) newCmd.setPermissionMessage(command['permission-message']);
pluginCommands.push(newCmd);
console.debug(`插件 ${jsp.description.name} 注册命令 ${name} ...`);
}
this.commandMap.registerAll(jsp.description.name, Arrays.asList(pluginCommands));
}
}
disable(jsp) {
var commands = jsp.description.commands;
if (commands) {
for (var name in commands) {
//TODO 删除插件命令
}
}
this.commandMap = reflect.on(Bukkit.getPluginManager()).get('commandMap').get();
}
create(jsp, command) {
@@ -77,16 +47,27 @@ export class BukkitCommand extends command.Command {
// 必须指定需要实现的接口类型 否则MOD服会报错
// noinspection JSUnusedGlobalSymbols
c.setTabCompleter(new TabCompleter({
onTabComplete: function(sender, _, command, args) {
onTabComplete: (sender: any, _, command: string, args: string[]) => {
try {
var token = args[args.length - 1];
var complete = tab(sender, command, Java.from(args)) || [];
return Arrays.asList(complete.copyPartialMatches(token, []));
return this.copyPartialMatches(complete, token);
} catch (ex) {
console.console(`§6玩家 §a${sender.name} §6执行 §b${jsp.description.name} §6插件 §d${command} ${Java.from(args).join(' ')} §6补全时发生异常 §4${ex}`);
console.ex(ex);
return [];
}
}
}));
}
copyPartialMatches(complete: string[], token: string, array: string[] = []): string[] {
if (!token) { return complete }
complete.forEach(function(e) {
if (typeof e === "string" && e.toLowerCase().startsWith(token.toLowerCase())) {
array.push(e)
}
});
return array
}
}