Factions/src/com/massivecraft/factions/cmd/CmdFactionsRelationSet.java

104 lines
3.7 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Rel;
import com.massivecraft.factions.cmd.type.TypeFaction;
2016-02-25 09:48:02 +01:00
import com.massivecraft.factions.cmd.type.TypeRelation;
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.entity.Faction;
import com.massivecraft.factions.entity.MFlag;
import com.massivecraft.factions.entity.MPerm;
2014-06-04 16:47:01 +02:00
import com.massivecraft.factions.event.EventFactionsRelationChange;
2015-02-12 12:00:55 +01:00
import com.massivecraft.massivecore.MassiveException;
import com.massivecraft.massivecore.command.MassiveCommand;
2015-09-08 19:18:45 +02:00
import com.massivecraft.massivecore.mson.Mson;
2017-03-24 13:05:58 +01:00
import org.bukkit.ChatColor;
2016-02-25 09:48:02 +01:00
public class CmdFactionsRelationSet extends FactionsCommand
2011-10-09 18:35:39 +02:00
{
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
2016-02-25 09:48:02 +01:00
public CmdFactionsRelationSet()
2011-10-09 18:35:39 +02:00
{
2016-02-25 09:48:02 +01:00
// Parameter
this.addParameter(TypeFaction.get(), "faction");
2016-02-25 09:48:02 +01:00
this.addParameter(TypeRelation.get(), "relation");
}
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
2011-10-09 18:35:39 +02:00
@Override
2015-02-12 12:00:55 +01:00
public void perform() throws MassiveException
2011-10-09 18:35:39 +02:00
{
// Args
2015-05-06 17:04:35 +02:00
Faction otherFaction = this.readArg();
2016-02-25 09:48:02 +01:00
Rel newRelation = this.readArg();
// MPerm
if ( ! MPerm.getPermRel().has(msender, msenderFaction, true)) return;
// Verify
2014-09-18 13:41:20 +02:00
if (otherFaction == msenderFaction)
2011-10-09 18:35:39 +02:00
{
2016-02-25 09:48:02 +01:00
throw new MassiveException().setMsg("<b>Nope! You can't declare a relation to yourself :)");
}
2014-09-18 13:41:20 +02:00
if (msenderFaction.getRelationWish(otherFaction) == newRelation)
{
2016-02-25 09:48:02 +01:00
throw new MassiveException().setMsg("<b>You already have that relation wish set with %s.", otherFaction.getName());
}
// Event
2014-09-18 13:41:20 +02:00
EventFactionsRelationChange event = new EventFactionsRelationChange(sender, msenderFaction, otherFaction, newRelation);
event.run();
if (event.isCancelled()) return;
newRelation = event.getNewRelation();
// try to set the new relation
2014-09-18 13:41:20 +02:00
msenderFaction.setRelationWish(otherFaction, newRelation);
Rel currentRelation = msenderFaction.getRelationTo(otherFaction, true);
// if the relation change was successful
if (newRelation == currentRelation)
2011-10-09 18:35:39 +02:00
{
2014-09-18 13:41:20 +02:00
otherFaction.msg("%s<i> is now %s.", msenderFaction.describeTo(otherFaction, true), newRelation.getDescFactionOne());
msenderFaction.msg("%s<i> is now %s.", otherFaction.describeTo(msenderFaction, true), newRelation.getDescFactionOne());
}
// inform the other faction of your request
2011-10-09 18:35:39 +02:00
else
{
2016-02-25 09:48:02 +01:00
MassiveCommand command = CmdFactions.get().cmdFactionsRelation.cmdFactionsRelationSet;
String colorOne = newRelation.getColor() + newRelation.getDescFactionOne();
2015-09-08 19:18:45 +02:00
// Mson creation
Mson factionsRelationshipChange = mson(
2016-02-25 09:48:02 +01:00
Mson.parse("%s<i> wishes to be %s.", msenderFaction.describeTo(otherFaction, true), colorOne),
Mson.SPACE,
mson("[Accept]").color(ChatColor.AQUA).command(command, msenderFaction.getName(), newRelation.name())
2015-09-08 19:18:45 +02:00
);
otherFaction.sendMessage(factionsRelationshipChange);
2016-02-25 09:48:02 +01:00
msenderFaction.msg("%s<i> were informed that you wish to be %s<i>.", otherFaction.describeTo(msenderFaction, true), colorOne);
New "peaceful" status for factions which can only be set by server admins/moderators. Members of peaceful factions cannot deal or receive PvP damage (unless in a war zone which has friendly fire enabled), cannot claim land from another faction and likewise can't have their land claimed, and cannot be considered as ally or enemy of any other faction. Faction admins and moderators of peaceful factions can enable/disable all explosions inside their faction's territory at will. The main purpose of this is to provide a way for more peaceful players who don't want to take part in faction wars (or just want to take a break from them) to still have fun on the server. It is also meant to allow groups of players to make protected buildings, monuments, grand constructions, and so forth without having to worry about another faction destroying them. New conf.json settings: "peacefulTerritoryDisablePVP" (default true) prevents PvP damage for anyone inside a peaceful faction's territory "peacefulTerritoryDisableMonsters" (default false) provides protection against monsters spawning or attacking inside a peaceful faction's territory "peacefulMembersDisablePowerLoss" (default true) which keeps members of peaceful factions from suffering power loss when they die. New commands: /f peaceful [faction tag] - toggle the indicated faction's "peaceful" status /f noboom - enable/disable explosions inside your faction's territory; only available to faction admin and faction moderators for peaceful factions New permission nodes: factions.setPeaceful - ability to use the /f peaceful command (admins) factions.peacefulExplosionToggle - ability to use /f noboom (everyone)
2011-08-05 10:50:47 +02:00
}
2011-10-09 18:35:39 +02:00
2011-10-24 11:07:06 +02:00
// TODO: The ally case should work!!
2017-03-24 14:03:29 +01:00
// this might have to be bumped up to make that happen, & allow ALLY,NEUTRAL only
2016-02-25 09:48:02 +01:00
if (newRelation != Rel.TRUCE && otherFaction.getFlag(MFlag.getFlagPeaceful()))
2011-10-09 18:35:39 +02:00
{
otherFaction.msg("<i>This will have no effect while your faction is peaceful.");
2014-09-18 13:41:20 +02:00
msenderFaction.msg("<i>This will have no effect while their faction is peaceful.");
2011-10-09 18:35:39 +02:00
}
2016-02-25 09:48:02 +01:00
if (newRelation != Rel.TRUCE && msenderFaction.getFlag(MFlag.getFlagPeaceful()))
2011-10-09 18:35:39 +02:00
{
otherFaction.msg("<i>This will have no effect while their faction is peaceful.");
2014-09-18 13:41:20 +02:00
msenderFaction.msg("<i>This will have no effect while your faction is peaceful.");
New "peaceful" status for factions which can only be set by server admins/moderators. Members of peaceful factions cannot deal or receive PvP damage (unless in a war zone which has friendly fire enabled), cannot claim land from another faction and likewise can't have their land claimed, and cannot be considered as ally or enemy of any other faction. Faction admins and moderators of peaceful factions can enable/disable all explosions inside their faction's territory at will. The main purpose of this is to provide a way for more peaceful players who don't want to take part in faction wars (or just want to take a break from them) to still have fun on the server. It is also meant to allow groups of players to make protected buildings, monuments, grand constructions, and so forth without having to worry about another faction destroying them. New conf.json settings: "peacefulTerritoryDisablePVP" (default true) prevents PvP damage for anyone inside a peaceful faction's territory "peacefulTerritoryDisableMonsters" (default false) provides protection against monsters spawning or attacking inside a peaceful faction's territory "peacefulMembersDisablePowerLoss" (default true) which keeps members of peaceful factions from suffering power loss when they die. New commands: /f peaceful [faction tag] - toggle the indicated faction's "peaceful" status /f noboom - enable/disable explosions inside your faction's territory; only available to faction admin and faction moderators for peaceful factions New permission nodes: factions.setPeaceful - ability to use the /f peaceful command (admins) factions.peacefulExplosionToggle - ability to use /f noboom (everyone)
2011-08-05 10:50:47 +02:00
}
2015-11-08 17:59:32 +01:00
// Mark as changed
msenderFaction.changed();
}
2013-11-11 09:31:04 +01:00
}