2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-19 13:00:03 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
import com.massivecraft.factions.*;
|
2012-03-13 13:58:51 +01:00
|
|
|
import com.massivecraft.factions.event.FPlayerJoinEvent;
|
2011-10-09 14:53:38 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2019-06-03 05:13:10 +02:00
|
|
|
import com.massivecraft.factions.zcore.fupgrades.UpgradeType;
|
2014-12-08 00:12:52 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
2014-04-04 20:55:21 +02:00
|
|
|
import org.bukkit.Bukkit;
|
2011-03-19 13:00:03 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdJoin extends FCommand {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
2019-08-24 19:18:50 +02:00
|
|
|
public CmdJoin() {
|
|
|
|
super();
|
|
|
|
this.aliases.add("join");
|
|
|
|
this.requiredArgs.add("faction name");
|
|
|
|
this.optionalArgs.put("player", "you");
|
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.JOIN)
|
|
|
|
.playerOnly()
|
|
|
|
.build();
|
2019-08-24 19:18:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-09-14 21:13:01 +02:00
|
|
|
public void perform(CommandContext context) {
|
|
|
|
Faction faction = context.argAsFaction(0);
|
2019-08-24 19:18:50 +02:00
|
|
|
if (faction == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
FPlayer fplayer = context.argAsBestFPlayerMatch(1, context.fPlayer, false);
|
|
|
|
boolean samePlayer = fplayer == context.fPlayer;
|
2019-08-24 19:18:50 +02:00
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
if (!samePlayer && !Permission.JOIN_OTHERS.has(context.sender, false)) {
|
|
|
|
context.msg(TL.COMMAND_JOIN_CANNOTFORCE);
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!faction.isNormal()) {
|
2019-09-14 21:13:01 +02:00
|
|
|
context.msg(TL.COMMAND_JOIN_SYSTEMFACTION);
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (faction == fplayer.getFaction()) {
|
2019-09-14 21:13:01 +02:00
|
|
|
context.msg(TL.COMMAND_JOIN_ALREADYMEMBER, fplayer.describeTo(context.fPlayer, true), (samePlayer ? "are" : "is"), faction.getTag(context.fPlayer));
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
if (Conf.factionMemberLimit > 0 && faction.getFPlayers().size() >= getFactionMemberLimit(faction)) {
|
|
|
|
context.msg(TL.COMMAND_JOIN_ATLIMIT, faction.getTag(context.fPlayer), getFactionMemberLimit(faction), fplayer.describeTo(context.fPlayer, false));
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fplayer.hasFaction()) {
|
2019-09-14 21:13:01 +02:00
|
|
|
context.msg(TL.COMMAND_JOIN_INOTHERFACTION, fplayer.describeTo(context.fPlayer, true), (samePlayer ? "your" : "their"));
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Conf.canLeaveWithNegativePower && fplayer.getPower() < 0) {
|
2019-09-14 21:13:01 +02:00
|
|
|
context.msg(TL.COMMAND_JOIN_NEGATIVEPOWER, fplayer.describeTo(context.fPlayer, true));
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
if (!(faction.getOpen() || faction.isInvited(fplayer) || context.fPlayer.isAdminBypassing() || Permission.JOIN_ANY.has(context.sender, false))) {
|
|
|
|
context.msg(TL.COMMAND_JOIN_REQUIRESINVITATION);
|
2019-08-24 19:18:50 +02:00
|
|
|
if (samePlayer) {
|
|
|
|
faction.msg(TL.COMMAND_JOIN_ATTEMPTEDJOIN, fplayer.describeTo(faction, true));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int altLimit = Conf.factionAltMemberLimit;
|
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
if (altLimit > 0 && faction.getAltPlayers().size() >= altLimit && !faction.altInvited(context.fPlayer)) {
|
|
|
|
context.msg(TL.COMMAND_JOIN_ATLIMIT, faction.getTag(context.fPlayer), altLimit, fplayer.describeTo(context.fPlayer, false));
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make sure they can pay
|
2019-09-14 21:13:01 +02:00
|
|
|
if (samePlayer && !context.canAffordCommand(Conf.econCostJoin, TL.COMMAND_JOIN_TOJOIN.toString())) {
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for ban
|
2019-09-14 21:13:01 +02:00
|
|
|
if (!context.fPlayer.isAdminBypassing() && faction.isBanned(context.fPlayer)) {
|
|
|
|
context.msg(TL.COMMAND_JOIN_BANNED, faction.getTag(context.fPlayer));
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// trigger the join event (cancellable)
|
2019-09-14 21:13:01 +02:00
|
|
|
FPlayerJoinEvent joinEvent = new FPlayerJoinEvent(FPlayers.getInstance().getByPlayer(context.player), faction, FPlayerJoinEvent.PlayerJoinReason.COMMAND);
|
2019-08-24 19:18:50 +02:00
|
|
|
Bukkit.getServer().getPluginManager().callEvent(joinEvent);
|
|
|
|
if (joinEvent.isCancelled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// then make 'em pay (if applicable)
|
2019-09-14 21:13:01 +02:00
|
|
|
if (samePlayer && !context.payForCommand(Conf.econCostJoin, TL.COMMAND_JOIN_TOJOIN.toString(), TL.COMMAND_JOIN_FORJOIN.toString())) {
|
2019-08-24 19:18:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
context.msg(TL.COMMAND_JOIN_SUCCESS, fplayer.describeTo(context.fPlayer, true), faction.getTag(context.fPlayer));
|
2019-08-24 19:18:50 +02:00
|
|
|
|
|
|
|
if (!samePlayer) {
|
2019-09-14 21:13:01 +02:00
|
|
|
fplayer.msg(TL.COMMAND_JOIN_MOVED, context.fPlayer.describeTo(fplayer, true), faction.getTag(fplayer));
|
2019-08-24 19:18:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
faction.msg(TL.COMMAND_JOIN_JOINED, fplayer.describeTo(faction, true));
|
|
|
|
|
|
|
|
fplayer.resetFactionData();
|
|
|
|
|
|
|
|
if (faction.altInvited(fplayer)) {
|
|
|
|
fplayer.setAlt(true);
|
|
|
|
fplayer.setFaction(faction, true);
|
|
|
|
} else {
|
|
|
|
fplayer.setFaction(faction, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
faction.deinvite(fplayer);
|
2019-09-14 21:13:01 +02:00
|
|
|
context.fPlayer.setRole(faction.getDefaultRole());
|
|
|
|
|
2019-08-24 19:18:50 +02:00
|
|
|
if (Conf.logFactionJoin) {
|
|
|
|
if (samePlayer) {
|
2019-09-14 21:13:01 +02:00
|
|
|
FactionsPlugin.getInstance().log(TL.COMMAND_JOIN_JOINEDLOG.toString(), fplayer.getName(), faction.getTag());
|
2019-08-24 19:18:50 +02:00
|
|
|
} else {
|
2019-09-14 21:13:01 +02:00
|
|
|
FactionsPlugin.getInstance().log(TL.COMMAND_JOIN_MOVEDLOG.toString(), context.fPlayer.getName(), fplayer.getName(), faction.getTag());
|
2019-08-24 19:18:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
private int getFactionMemberLimit(Faction f) {
|
|
|
|
if (f.getUpgrade(UpgradeType.MEMBERS) == 0) return Conf.factionMemberLimit;
|
|
|
|
return Conf.factionMemberLimit + FactionsPlugin.getInstance().getConfig().getInt("fupgrades.MainMenu.Members.Member-Boost.level-" + f.getUpgrade(UpgradeType.MEMBERS));
|
|
|
|
}
|
|
|
|
|
2019-08-24 19:18:50 +02:00
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_JOIN_DESCRIPTION;
|
|
|
|
}
|
2011-03-19 13:00:03 +01:00
|
|
|
}
|
2019-09-14 21:13:01 +02:00
|
|
|
|