2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd ;
2011-03-19 13:00:03 +01:00
2013-04-09 13:00:09 +02:00
import com.massivecraft.factions.Factions ;
2013-04-09 12:56:29 +02:00
import com.massivecraft.factions.Perm ;
2013-04-22 17:59:51 +02:00
import com.massivecraft.factions.cmd.arg.ARUPlayer ;
2013-04-16 11:05:49 +02:00
import com.massivecraft.factions.cmd.arg.ARFaction ;
2013-04-25 13:25:15 +02:00
import com.massivecraft.factions.cmd.req.ReqFactionsEnabled ;
2013-04-22 17:59:51 +02:00
import com.massivecraft.factions.entity.UPlayer ;
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.entity.Faction ;
2013-04-22 10:05:03 +02:00
import com.massivecraft.factions.entity.MConf ;
2013-04-22 16:58:22 +02:00
import com.massivecraft.factions.entity.UConf ;
2013-04-19 14:08:45 +02:00
import com.massivecraft.factions.event.FactionsEventMembershipChange ;
import com.massivecraft.factions.event.FactionsEventMembershipChange.MembershipChangeReason ;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm ;
2011-03-19 13:00:03 +01:00
2013-04-10 13:12:22 +02:00
public class CmdFactionsJoin extends FCommand
2011-10-09 14:53:38 +02:00
{
2013-04-10 13:12:22 +02:00
public CmdFactionsJoin ( )
2011-10-09 14:53:38 +02:00
{
2013-04-16 10:11:59 +02:00
this . addAliases ( " join " ) ;
2011-10-09 14:53:38 +02:00
2013-04-16 10:30:21 +02:00
this . addRequiredArg ( " faction " ) ;
this . addOptionalArg ( " player " , " you " ) ;
2011-03-22 18:48:09 +01:00
2013-04-25 13:25:15 +02:00
this . addRequirements ( ReqFactionsEnabled . get ( ) ) ;
2013-04-16 10:11:59 +02:00
this . addRequirements ( ReqHasPerm . get ( Perm . JOIN . node ) ) ;
2011-03-19 13:00:03 +01:00
}
2011-06-21 07:38:31 +02:00
@Override
2011-10-09 14:53:38 +02:00
public void perform ( )
{
2013-04-19 14:08:45 +02:00
// Args
2013-04-22 13:03:21 +02:00
Faction faction = this . arg ( 0 , ARFaction . get ( sender ) ) ;
2011-10-09 14:53:38 +02:00
if ( faction = = null ) return ;
2011-03-19 13:00:03 +01:00
2013-04-25 07:29:19 +02:00
UPlayer uplayer = this . arg ( 1 , ARUPlayer . getStartAny ( sender ) , usender ) ;
2013-04-22 17:59:51 +02:00
if ( uplayer = = null ) return ;
2013-04-23 14:00:18 +02:00
Faction uplayerFaction = uplayer . getFaction ( ) ;
2013-04-16 11:05:49 +02:00
2013-04-25 07:29:19 +02:00
boolean samePlayer = uplayer = = usender ;
2013-04-19 14:08:45 +02:00
// Validate
2013-04-09 12:56:29 +02:00
if ( ! samePlayer & & ! Perm . JOIN_OTHERS . has ( sender , false ) )
2011-10-09 14:53:38 +02:00
{
2012-02-26 19:29:44 +01:00
msg ( " <b>You do not have permission to move other players into a faction. " ) ;
2011-03-23 17:39:56 +01:00
return ;
2012-02-26 19:29:44 +01:00
}
2012-02-24 13:30:28 +01:00
2013-04-23 14:00:18 +02:00
if ( faction = = uplayerFaction )
2011-10-09 14:53:38 +02:00
{
2013-04-25 16:02:37 +02:00
msg ( " <i>%s <i>%s already a member of %s<i>. " , uplayer . describeTo ( usender , true ) , ( samePlayer ? " are " : " is " ) , faction . getName ( usender ) ) ;
2011-03-19 13:00:03 +01:00
return ;
}
2012-02-24 13:30:28 +01:00
2013-04-22 17:59:51 +02:00
if ( UConf . get ( faction ) . factionMemberLimit > 0 & & faction . getUPlayers ( ) . size ( ) > = UConf . get ( faction ) . factionMemberLimit )
2012-02-24 13:30:28 +01:00
{
2013-04-25 07:29:19 +02:00
msg ( " <b>!<white> The faction %s is at the limit of %d members, so %s cannot currently join. " , faction . getName ( usender ) , UConf . get ( faction ) . factionMemberLimit , uplayer . describeTo ( usender , false ) ) ;
2012-02-24 13:30:28 +01:00
return ;
}
2013-04-23 14:00:18 +02:00
if ( uplayerFaction . isNormal ( ) )
2011-10-09 14:53:38 +02:00
{
2013-04-25 07:29:19 +02:00
msg ( " <b>%s must leave %s current faction first. " , uplayer . describeTo ( usender , true ) , ( samePlayer ? " your " : " their " ) ) ;
2011-03-19 13:00:03 +01:00
return ;
}
2012-02-24 13:30:28 +01:00
2013-04-22 17:59:51 +02:00
if ( ! UConf . get ( faction ) . canLeaveWithNegativePower & & uplayer . getPower ( ) < 0 )
2011-10-09 14:53:38 +02:00
{
2013-04-25 07:29:19 +02:00
msg ( " <b>%s cannot join a faction with a negative power level. " , uplayer . describeTo ( usender , true ) ) ;
2011-05-29 23:41:50 +02:00
return ;
}
2012-02-24 13:30:28 +01:00
2013-04-25 07:29:19 +02:00
if ( ! ( faction . isOpen ( ) | | faction . isInvited ( uplayer ) | | usender . isUsingAdminMode ( ) | | Perm . JOIN_ANY . has ( sender , false ) ) )
2011-10-09 14:53:38 +02:00
{
2011-10-10 13:40:24 +02:00
msg ( " <i>This faction requires invitation. " ) ;
2012-02-26 19:29:44 +01:00
if ( samePlayer )
2013-04-19 14:08:45 +02:00
{
2013-04-22 17:59:51 +02:00
faction . msg ( " %s<i> tried to join your faction. " , uplayer . describeTo ( faction , true ) ) ;
2013-04-19 14:08:45 +02:00
}
2011-03-19 13:00:03 +01:00
return ;
}
2013-04-19 14:08:45 +02:00
// Event
2013-04-25 07:29:19 +02:00
FactionsEventMembershipChange membershipChangeEvent = new FactionsEventMembershipChange ( sender , usender , faction , MembershipChangeReason . JOIN ) ;
2013-04-19 14:08:45 +02:00
membershipChangeEvent . run ( ) ;
if ( membershipChangeEvent . isCancelled ( ) ) return ;
// Inform
2012-02-26 19:29:44 +01:00
if ( ! samePlayer )
2013-04-19 14:08:45 +02:00
{
2013-04-25 16:02:37 +02:00
uplayer . msg ( " <i>%s <i>moved you into the faction %s<i>. " , usender . describeTo ( uplayer , true ) , faction . getName ( uplayer ) ) ;
2013-04-19 14:08:45 +02:00
}
2013-04-25 16:02:37 +02:00
faction . msg ( " <i>%s <i>joined <lime>your faction<i>. " , uplayer . describeTo ( faction , true ) ) ;
usender . msg ( " <i>%s <i>successfully joined %s<i>. " , uplayer . describeTo ( usender , true ) , faction . getName ( usender ) ) ;
2013-01-06 21:44:29 +01:00
2013-04-19 14:08:45 +02:00
// Apply
2013-04-22 17:59:51 +02:00
uplayer . resetFactionData ( ) ;
uplayer . setFaction ( faction ) ;
2013-01-06 21:44:29 +01:00
2013-04-22 17:59:51 +02:00
faction . setInvited ( uplayer , false ) ;
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
2013-04-19 14:08:45 +02:00
// Derplog
2013-04-22 10:05:03 +02:00
if ( MConf . get ( ) . logFactionJoin )
2012-02-26 19:29:44 +01:00
{
if ( samePlayer )
2013-04-24 19:01:17 +02:00
Factions . get ( ) . log ( " %s joined the faction %s. " , uplayer . getName ( ) , faction . getName ( ) ) ;
2012-02-26 19:29:44 +01:00
else
2013-04-25 07:29:19 +02:00
Factions . get ( ) . log ( " %s moved the player %s into the faction %s. " , usender . getName ( ) , uplayer . getName ( ) , faction . getName ( ) ) ;
2012-02-26 19:29:44 +01:00
}
2011-03-19 13:00:03 +01:00
}
}