dev.espi.protectionstones.commands.ArgSethome Maven / Gradle / Ivy
/*
* 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 .
*/
package dev.espi.protectionstones.commands;
import com.sk89q.worldguard.bukkit.WorldGuardPlugin;
import dev.espi.protectionstones.PSL;
import dev.espi.protectionstones.PSRegion;
import dev.espi.protectionstones.utils.WGUtils;
import org.bukkit.Location;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
public class ArgSethome implements PSCommandArg {
// /ps sethome
@Override
public List getNames() {
return Collections.singletonList("sethome");
}
@Override
public boolean allowNonPlayersToExecute() {
return false;
}
@Override
public List getPermissionsToExecute() {
return Arrays.asList("protectionstones.sethome");
}
@Override
public HashMap getRegisteredFlags() {
return null;
}
@Override
public boolean executeArgument(CommandSender s, String[] args, HashMap flags) {
Player p = (Player) s;
PSRegion r = PSRegion.fromLocationGroup(p.getLocation());
WorldGuardPlugin wg = WorldGuardPlugin.inst();
if (!p.hasPermission("protectionstones.sethome"))
return PSL.msg(p, PSL.NO_PERMISSION_SETHOME.msg());
if (r == null)
return PSL.msg(p, PSL.NOT_IN_REGION.msg());
if (WGUtils.hasNoAccess(r.getWGRegion(), p, wg.wrapPlayer(p), false))
return PSL.msg(p, PSL.NO_ACCESS.msg());
Location l = p.getLocation();
r.setHome(l.getBlockX(), l.getBlockY(), l.getBlockZ(), l.getYaw(), l.getPitch());
return PSL.msg(p, PSL.SETHOME_SET.msg().replace("%psid%", r.getName() != null ? String.format("%s (%s)", r.getName(), r.getId()) : r.getId()));
}
@Override
public List tabComplete(CommandSender sender, String alias, String[] args) {
return null;
}
}