2011-03-19 22:39:51 +00:00
|
|
|
package com.earth2me.essentials.commands;
|
|
|
|
|
2011-11-21 02:55:26 +01:00
|
|
|
import static com.earth2me.essentials.I18n._;
|
2011-03-19 22:39:51 +00:00
|
|
|
import com.earth2me.essentials.User;
|
2011-11-21 02:55:26 +01:00
|
|
|
import java.util.Locale;
|
2012-09-15 19:55:12 +01:00
|
|
|
import org.bukkit.Location;
|
2011-11-18 17:42:26 +00:00
|
|
|
import org.bukkit.Server;
|
2011-03-19 22:39:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
public class Commandsethome extends EssentialsCommand
|
|
|
|
{
|
|
|
|
public Commandsethome()
|
|
|
|
{
|
|
|
|
super("sethome");
|
|
|
|
}
|
2011-06-28 10:10:29 +01:00
|
|
|
|
2011-03-19 22:39:51 +00:00
|
|
|
@Override
|
2011-12-01 13:42:39 +00:00
|
|
|
public void run(final Server server, final User user, final String commandLabel, String[] args) throws Exception
|
2011-03-19 22:39:51 +00:00
|
|
|
{
|
2012-09-15 19:55:12 +01:00
|
|
|
User usersHome = user;
|
|
|
|
String name = "home";
|
|
|
|
final Location location = user.getLocation();
|
|
|
|
|
2011-06-28 10:10:29 +01:00
|
|
|
if (args.length > 0)
|
|
|
|
{
|
2011-08-24 02:48:38 +01:00
|
|
|
//Allowing both formats /sethome khobbits house | /sethome khobbits:house
|
|
|
|
final String[] nameParts = args[0].split(":");
|
|
|
|
if (nameParts[0].length() != args[0].length())
|
|
|
|
{
|
|
|
|
args = nameParts;
|
|
|
|
}
|
|
|
|
|
2011-06-28 10:10:29 +01:00
|
|
|
if (args.length < 2)
|
|
|
|
{
|
2012-09-15 19:55:12 +01:00
|
|
|
name = args[0].toLowerCase(Locale.ENGLISH);
|
2011-06-28 10:10:29 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (user.isAuthorized("essentials.sethome.others"))
|
|
|
|
{
|
2012-09-15 19:55:12 +01:00
|
|
|
usersHome = ess.getUser(ess.getServer().getPlayer(args[0]));
|
2011-08-23 03:42:32 +01:00
|
|
|
if (usersHome == null)
|
2011-07-07 22:24:50 +01:00
|
|
|
{
|
|
|
|
usersHome = ess.getOfflineUser(args[0]);
|
|
|
|
}
|
2011-08-11 03:33:45 +01:00
|
|
|
if (usersHome == null)
|
|
|
|
{
|
2011-11-21 02:55:26 +01:00
|
|
|
throw new Exception(_("playerNotFound"));
|
2011-08-11 03:33:45 +01:00
|
|
|
}
|
2012-09-15 19:55:12 +01:00
|
|
|
name = args[1].toLowerCase(Locale.ENGLISH);
|
2011-06-28 10:10:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-15 19:55:12 +01:00
|
|
|
if (checkHomeLimit(user, usersHome, name))
|
|
|
|
{
|
|
|
|
name = "home";
|
|
|
|
}
|
|
|
|
if ("bed".equals(name))
|
2011-06-28 10:13:18 +01:00
|
|
|
{
|
2012-09-15 19:55:12 +01:00
|
|
|
throw new NotEnoughArgumentsException();
|
2011-06-28 10:13:18 +01:00
|
|
|
}
|
2012-09-15 19:55:12 +01:00
|
|
|
usersHome.setHome(name, location);
|
2012-04-04 18:19:39 +01:00
|
|
|
user.sendMessage(_("homeSet", user.getLocation().getWorld().getName(), user.getLocation().getBlockX(), user.getLocation().getBlockY(), user.getLocation().getBlockZ()));
|
2011-06-28 10:13:18 +01:00
|
|
|
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|
2012-09-15 19:55:12 +01:00
|
|
|
|
|
|
|
private boolean checkHomeLimit(final User user, final User usersHome, String name) throws Exception
|
|
|
|
{
|
|
|
|
if (!user.isAuthorized("essentials.sethome.multiple.unlimited"))
|
|
|
|
{
|
|
|
|
int limit = ess.getSettings().getHomeLimit(user);
|
|
|
|
if (usersHome.getHomes().size() == limit && usersHome.getHomes().contains(name))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (usersHome.getHomes().size() >= limit)
|
|
|
|
{
|
|
|
|
throw new Exception(_("maxHomes", ess.getSettings().getHomeLimit(user)));
|
|
|
|
}
|
|
|
|
if (limit == 1)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|