1
0
Fork 0

[+] 添加机器人注册事件

master
Taskeren 2019-07-10 23:25:45 +08:00
parent 05b2eff400
commit eefd64da20
2 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,68 @@
package ren.taske.nativebot.bot.event;
import org.bukkit.Bukkit;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
import cc.moecraft.icq.command.interfaces.IcqCommand;
import cc.moecraft.icq.event.IcqListener;
import ren.taske.nativebot.bot.Bot;
import ren.taske.nativebot.bot.permission.PermissionManager;
/**
*
* @author Taskeren
*
*/
public class EventBotRegistration extends Event {
private static final HandlerList handlers = new HandlerList();
@Override
public HandlerList getHandlers() {
return handlers;
}
protected final Bot bot;
public EventBotRegistration(Bot bot) {
this.bot = bot;
}
/** 获取机器人 */
public Bot getBot() {
return bot;
}
/** 注册指令 */
public void registerCommands(IcqCommand...cmds) {
bot.register(cmds);
}
/** 注册事件监听器 */
public void registerListeners(IcqListener...listeners) {
bot.register(listeners);
}
/** 注册权限 */
public void registerPermission(String node) {
registerPermission(node, false);
}
/** 注册权限 */
public void registerPermission(String node, boolean def) {
PermissionManager.add(node, def);
}
/**
* EventBotRegistration <br>
* jb
* @return
*/
public static EventBotRegistration newEventAndCall(Bot bot) {
EventBotRegistration evt = new EventBotRegistration(bot);
Bukkit.getServer().getPluginManager().callEvent(evt);
return evt;
}
}

View File

@ -5,6 +5,7 @@ import java.util.logging.Logger;
import org.bukkit.plugin.java.JavaPlugin;
import ren.taske.nativebot.bot.Bot;
import ren.taske.nativebot.bot.event.EventBotRegistration;
import ren.taske.nativebot.util.ClassUtils;
public class NativeBot {
@ -39,10 +40,18 @@ public class NativeBot {
public void onEnable() {
bot.register(ClassUtils.instantiate(COMMANDS));
handleRegistrationEvent();
bot.start();
for(String cmd : bot.getCommands()) logger.info("[C] "+cmd);
}
/**
* EventBotRegistration
*/
void handleRegistrationEvent() {
EventBotRegistration.newEventAndCall(getBot());
}
@SuppressWarnings("deprecation")
public void onDisable() {
try {