Plex-FAWE/src/main/java/com/sk89q/worldedit/bukkit/BukkitServerInterface.java

126 lines
4.4 KiB
Java
Raw Normal View History

2011-01-01 02:36:25 +00:00
// $Id$
/*
* WorldEdit
* Copyright (C) 2010 sk89q <http://www.sk89q.com> and contributors
2011-01-01 02:36:25 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.worldedit.bukkit;
import java.lang.reflect.Method;
2011-12-15 10:49:44 +00:00
import java.util.ArrayList;
import java.util.Arrays;
2011-12-15 10:49:44 +00:00
import java.util.List;
import java.util.Map;
2011-12-15 10:49:44 +00:00
import com.sk89q.bukkit.util.CommandInfo;
import com.sk89q.bukkit.util.CommandRegistration;
import com.sk89q.minecraft.util.commands.Command;
2011-12-25 23:36:23 +00:00
import com.sk89q.minecraft.util.commands.CommandPermissions;
import com.sk89q.minecraft.util.commands.CommandsManager;
import com.sk89q.worldedit.LocalPlayer;
2011-12-25 23:36:23 +00:00
import org.bukkit.Bukkit;
import org.bukkit.Material;
import org.bukkit.Server;
import org.bukkit.World;
2012-03-02 18:57:32 +00:00
import org.bukkit.entity.EntityType;
import com.sk89q.worldedit.BiomeTypes;
2011-12-15 10:49:44 +00:00
import com.sk89q.worldedit.LocalWorld;
2011-01-01 02:36:25 +00:00
import com.sk89q.worldedit.ServerInterface;
public class BukkitServerInterface extends ServerInterface {
public Server server;
2011-02-19 09:22:28 +00:00
public WorldEditPlugin plugin;
private CommandRegistration dynamicCommands;
private BukkitBiomeTypes biomes;
2011-11-23 01:29:48 +00:00
2011-02-19 09:22:28 +00:00
public BukkitServerInterface(WorldEditPlugin plugin, Server server) {
this.plugin = plugin;
2011-01-01 02:36:25 +00:00
this.server = server;
this.biomes = new BukkitBiomeTypes();
dynamicCommands = new CommandRegistration(plugin);
2011-01-01 02:36:25 +00:00
}
@Override
public int resolveItem(String name) {
2011-10-26 20:50:46 +00:00
Material mat = Material.matchMaterial(name);
return mat == null ? 0 : mat.getId();
2011-01-01 02:36:25 +00:00
}
@Override
2011-01-08 21:03:18 +00:00
public boolean isValidMobType(String type) {
2012-03-02 18:57:32 +00:00
final EntityType entityType = EntityType.fromName(type);
return entityType != null && entityType.isAlive();
2011-01-01 02:36:25 +00:00
}
2011-02-19 09:22:28 +00:00
@Override
public void reload() {
plugin.loadConfiguration();
}
@Override
public BiomeTypes getBiomes() {
return biomes;
}
@Override
public int schedule(long delay, long period, Runnable task) {
return Bukkit.getScheduler().scheduleSyncRepeatingTask(plugin, task, delay, period);
}
2011-12-15 10:49:44 +00:00
@Override
public List<LocalWorld> getWorlds() {
List<World> worlds = server.getWorlds();
List<LocalWorld> ret = new ArrayList<LocalWorld>(worlds.size());
for (World world : worlds) {
ret.add(BukkitUtil.getLocalWorld(world));
}
return ret;
}
@Override
public void onCommandRegistration(List<Command> commands, CommandsManager<LocalPlayer> manager) {
List<CommandInfo> toRegister = new ArrayList<CommandInfo>();
for (Command command : commands) {
List<String> permissions = null;
Method cmdMethod = manager.getMethods().get(null).get(command.aliases()[0]);
2013-08-07 03:50:02 +00:00
Map<String, Method> childMethods = manager.getMethods().get(cmdMethod);
2013-08-07 03:50:02 +00:00
if (cmdMethod != null && cmdMethod.isAnnotationPresent(CommandPermissions.class)) {
permissions = Arrays.asList(cmdMethod.getAnnotation(CommandPermissions.class).value());
} else if (cmdMethod != null && childMethods != null && childMethods.size() > 0) {
2013-08-07 03:50:02 +00:00
permissions = new ArrayList<String>();
for (Method m : childMethods.values()) {
if (m.isAnnotationPresent(CommandPermissions.class)) {
permissions.addAll(Arrays.asList(m.getAnnotation(CommandPermissions.class).value()));
}
}
}
toRegister.add(new CommandInfo(command.usage(), command.desc(), command.aliases(), commands, permissions == null ? null : permissions.toArray(new String[permissions.size()])));
}
dynamicCommands.register(toRegister);
}
public void unregisterCommands() {
dynamicCommands.unregisterCommands();
}
2011-01-01 02:36:25 +00:00
}