2013-04-22 09:37:53 +02:00
package com.massivecraft.factions.entity ;
2011-02-06 13:36:11 +01:00
import java.util.* ;
2013-04-17 10:22:51 +02:00
import java.util.Map.Entry ;
2011-02-06 13:36:11 +01:00
import org.bukkit.ChatColor ;
2013-04-17 08:49:43 +02:00
import org.bukkit.command.CommandSender ;
2011-02-06 13:36:11 +01:00
import org.bukkit.entity.Player ;
2011-07-18 22:06:02 +02:00
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.EconomyParticipator ;
import com.massivecraft.factions.FactionEqualsPredictate ;
import com.massivecraft.factions.Factions ;
import com.massivecraft.factions.Lang ;
import com.massivecraft.factions.Rel ;
import com.massivecraft.factions.RelationParticipator ;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.util.* ;
2014-11-13 11:41:21 +01:00
import com.massivecraft.massivecore.CaseInsensitiveComparator ;
import com.massivecraft.massivecore.collections.MassiveMapDef ;
import com.massivecraft.massivecore.collections.MassiveTreeSetDef ;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.mixin.Mixin ;
import com.massivecraft.massivecore.money.Money ;
import com.massivecraft.massivecore.ps.PS ;
import com.massivecraft.massivecore.store.Entity ;
import com.massivecraft.massivecore.util.IdUtil ;
import com.massivecraft.massivecore.util.MUtil ;
import com.massivecraft.massivecore.util.Txt ;
2011-02-06 13:36:11 +01:00
2013-04-12 15:10:11 +02:00
public class Faction extends Entity < Faction > implements EconomyParticipator
2011-10-08 22:03:44 +02:00
{
2013-04-11 12:22:35 +02:00
// -------------------------------------------- //
// META
// -------------------------------------------- //
2013-04-12 09:47:43 +02:00
public static Faction get ( Object oid )
2013-04-11 12:22:35 +02:00
{
2014-09-17 13:17:33 +02:00
return FactionColl . get ( ) . get ( oid ) ;
2013-04-12 09:47:43 +02:00
}
2013-04-11 12:22:35 +02:00
// -------------------------------------------- //
// OVERRIDE: ENTITY
// -------------------------------------------- //
2013-04-12 09:47:43 +02:00
@Override
2013-04-11 12:22:35 +02:00
public Faction load ( Faction that )
{
2013-04-24 19:01:17 +02:00
this . setName ( that . name ) ;
2013-04-17 08:49:43 +02:00
this . setDescription ( that . description ) ;
2014-10-02 16:12:16 +02:00
this . setMotd ( that . motd ) ;
2013-04-25 10:51:11 +02:00
this . setCreatedAtMillis ( that . createdAtMillis ) ;
2013-04-24 18:22:52 +02:00
this . setHome ( that . home ) ;
2013-04-17 12:08:30 +02:00
this . setPowerBoost ( that . powerBoost ) ;
2013-04-17 10:22:51 +02:00
this . setInvitedPlayerIds ( that . invitedPlayerIds ) ;
2013-04-25 08:34:10 +02:00
this . setRelationWishes ( that . relationWishes ) ;
2014-10-02 11:45:06 +02:00
this . setFlagIds ( that . flags ) ;
2014-10-02 14:02:07 +02:00
this . setPermIds ( that . perms ) ;
2013-04-11 12:22:35 +02:00
return this ;
2013-04-12 08:56:26 +02:00
}
2013-06-18 09:07:05 +02:00
@Override
public void preDetach ( String id )
{
2014-10-01 22:00:08 +02:00
// The database must be fully inited.
// We may move factions around during upgrades.
if ( ! Factions . get ( ) . isDatabaseInitialized ( ) ) return ;
// Zero balance
2013-12-03 20:19:55 +01:00
Money . set ( this , null , 0 ) ;
2013-06-18 09:07:05 +02:00
// Clean the board
2014-09-17 13:17:33 +02:00
BoardColl . get ( ) . clean ( ) ;
2013-06-18 09:07:05 +02:00
2014-09-17 13:17:33 +02:00
// Clean the mplayers
MPlayerColl . get ( ) . clean ( ) ;
2013-06-18 09:07:05 +02:00
}
2013-04-11 12:22:35 +02:00
// -------------------------------------------- //
// FIELDS: RAW
// -------------------------------------------- //
2013-04-17 10:22:51 +02:00
// In this section of the source code we place the field declarations only.
2013-04-17 15:30:21 +02:00
// Each field has it's own section further down since just the getter and setter logic takes up quite some place.
2013-04-11 12:22:35 +02:00
2013-04-17 10:22:51 +02:00
// The actual faction id looks something like "54947df8-0e9e-4471-a2f9-9af509fb5889" and that is not too easy to remember for humans.
// Thus we make use of a name. Since the id is used in all foreign key situations changing the name is fine.
2013-04-24 19:01:17 +02:00
// Null should never happen. The name must not be null.
private String name = null ;
2013-04-11 12:22:35 +02:00
2013-04-17 12:08:30 +02:00
// Factions can optionally set a description for themselves.
// This description can for example be seen in territorial alerts.
2013-04-24 14:42:52 +02:00
// Null means the faction has no description.
2013-04-17 10:22:51 +02:00
private String description = null ;
2011-10-08 22:03:44 +02:00
2014-10-02 16:12:16 +02:00
// Factions can optionally set a message of the day.
// This message will be shown when logging on to the server.
// Null means the faction has no motd
private String motd = null ;
2013-04-25 10:51:11 +02:00
// We store the creation date for the faction.
// It can be displayed on info pages etc.
private long createdAtMillis = System . currentTimeMillis ( ) ;
2013-04-17 12:08:30 +02:00
// Factions can optionally set a home location.
// If they do their members can teleport there using /f home
2013-04-24 14:42:52 +02:00
// Null means the faction has no home.
2013-04-17 12:08:30 +02:00
private PS home = null ;
// Factions usually do not have a powerboost. It defaults to 0.
// The powerBoost is a custom increase/decrease to default and maximum power.
2013-04-24 14:42:52 +02:00
// Null means the faction has powerBoost (0).
2013-04-17 12:08:30 +02:00
private Double powerBoost = null ;
// Can anyone join the Faction?
// If the faction is open they can.
// If the faction is closed an invite is required.
2014-09-17 13:33:09 +02:00
// Null means default.
2014-10-02 11:45:06 +02:00
// private Boolean open = null;
2011-03-22 18:48:09 +01:00
2013-04-17 12:08:30 +02:00
// This is the ids of the invited players.
// They are actually "senderIds" since you can invite "@console" to your faction.
2013-04-24 14:42:52 +02:00
// Null means no one is invited
2014-11-13 11:41:21 +01:00
private MassiveTreeSetDef < String , CaseInsensitiveComparator > invitedPlayerIds = new MassiveTreeSetDef < String , CaseInsensitiveComparator > ( CaseInsensitiveComparator . get ( ) ) ;
2013-04-17 10:22:51 +02:00
2013-04-17 12:08:30 +02:00
// The keys in this map are factionIds.
2013-04-24 14:42:52 +02:00
// Null means no special relation whishes.
2014-11-13 11:41:21 +01:00
private MassiveMapDef < String , Rel > relationWishes = new MassiveMapDef < String , Rel > ( ) ;
2011-03-23 17:39:56 +01:00
2013-04-17 13:16:22 +02:00
// The flag overrides are modifications to the default values.
2014-09-17 13:33:09 +02:00
// Null means default.
2014-11-13 11:41:21 +01:00
private MassiveMapDef < String , Boolean > flags = new MassiveMapDef < String , Boolean > ( ) ;
2011-10-23 23:17:02 +02:00
2013-04-17 13:16:22 +02:00
// The perm overrides are modifications to the default values.
2014-09-17 13:33:09 +02:00
// Null means default.
2014-11-13 11:41:21 +01:00
private MassiveMapDef < String , Set < Rel > > perms = new MassiveMapDef < String , Set < Rel > > ( ) ;
2011-10-23 20:50:49 +02:00
2013-04-11 12:22:35 +02:00
// -------------------------------------------- //
2013-04-17 10:22:51 +02:00
// FIELD: id
2013-04-11 12:22:35 +02:00
// -------------------------------------------- //
2013-04-17 10:22:51 +02:00
// FINER
2013-04-11 12:22:35 +02:00
2013-04-17 10:22:51 +02:00
public boolean isNone ( )
2013-04-11 12:22:35 +02:00
{
2014-10-01 22:00:08 +02:00
return this . getId ( ) . equals ( Factions . ID_NONE ) ;
2013-04-17 10:22:51 +02:00
}
public boolean isNormal ( )
{
return ! this . isNone ( ) ;
}
// -------------------------------------------- //
2013-04-24 19:01:17 +02:00
// FIELD: name
2013-04-17 10:22:51 +02:00
// -------------------------------------------- //
// RAW
2013-04-24 19:01:17 +02:00
public String getName ( )
2013-04-11 12:22:35 +02:00
{
2013-04-24 19:01:17 +02:00
String ret = this . name ;
2013-04-24 16:40:35 +02:00
2014-09-17 13:17:33 +02:00
if ( MConf . get ( ) . factionNameForceUpperCase )
2013-04-11 12:22:35 +02:00
{
2013-04-17 10:22:51 +02:00
ret = ret . toUpperCase ( ) ;
2013-04-11 12:22:35 +02:00
}
2013-04-24 16:40:35 +02:00
2013-04-17 10:22:51 +02:00
return ret ;
2013-04-11 12:22:35 +02:00
}
2013-04-25 08:34:10 +02:00
public void setName ( String name )
2013-04-11 12:22:35 +02:00
{
2013-04-25 08:34:10 +02:00
// Clean input
String target = name ;
// Detect Nochange
if ( MUtil . equals ( this . name , target ) ) return ;
2013-04-24 16:40:35 +02:00
2013-04-25 08:34:10 +02:00
// Apply
this . name = target ;
// Mark as changed
2013-04-17 10:22:51 +02:00
this . changed ( ) ;
2013-04-11 12:22:35 +02:00
}
2013-04-17 10:22:51 +02:00
// FINER
2013-04-11 12:22:35 +02:00
2013-04-24 19:01:17 +02:00
public String getComparisonName ( )
2013-04-11 12:22:35 +02:00
{
2013-04-24 19:01:17 +02:00
return MiscUtil . getComparisonString ( this . getName ( ) ) ;
2013-04-11 12:22:35 +02:00
}
2013-04-24 19:01:17 +02:00
public String getName ( String prefix )
2013-04-11 12:22:35 +02:00
{
2013-04-24 19:01:17 +02:00
return prefix + this . getName ( ) ;
2013-04-11 12:22:35 +02:00
}
2013-04-17 10:22:51 +02:00
2013-04-24 19:01:17 +02:00
public String getName ( RelationParticipator observer )
2013-04-17 10:22:51 +02:00
{
2013-04-24 19:01:17 +02:00
if ( observer = = null ) return getName ( ) ;
return this . getName ( this . getColorTo ( observer ) . toString ( ) ) ;
2013-04-17 10:22:51 +02:00
}
2013-04-17 08:49:43 +02:00
// -------------------------------------------- //
2013-04-17 10:22:51 +02:00
// FIELD: description
2013-04-17 08:49:43 +02:00
// -------------------------------------------- //
2011-10-23 20:50:49 +02:00
2013-04-17 10:22:51 +02:00
// RAW
public boolean hasDescription ( )
2011-10-08 22:03:44 +02:00
{
2013-04-17 10:22:51 +02:00
return this . description ! = null ;
2011-03-23 17:39:56 +01:00
}
2013-04-17 10:22:51 +02:00
public String getDescription ( )
2011-10-08 22:03:44 +02:00
{
2013-04-17 10:22:51 +02:00
if ( this . hasDescription ( ) ) return this . description ;
return Lang . FACTION_NODESCRIPTION ;
}
public void setDescription ( String description )
{
2013-04-25 08:34:10 +02:00
// Clean input
String target = description ;
if ( target ! = null )
2013-04-17 10:22:51 +02:00
{
2013-04-25 08:34:10 +02:00
target = target . trim ( ) ;
2013-04-17 10:22:51 +02:00
// This code should be kept for a while to clean out the previous default text that was actually stored in the database.
2013-04-25 08:34:10 +02:00
if ( target . length ( ) = = 0 | | target . equals ( " Default faction description :( " ) )
2013-04-17 10:22:51 +02:00
{
2013-04-25 08:34:10 +02:00
target = null ;
2013-04-17 10:22:51 +02:00
}
}
2013-04-25 08:34:10 +02:00
// Detect Nochange
if ( MUtil . equals ( this . description , target ) ) return ;
// Apply
this . description = target ;
// Mark as changed
2013-04-17 10:22:51 +02:00
this . changed ( ) ;
2011-03-23 17:39:56 +01:00
}
2014-10-02 16:12:16 +02:00
// -------------------------------------------- //
// FIELD: motd
// -------------------------------------------- //
// RAW
public boolean hasMotd ( )
{
return this . motd ! = null ;
}
public String getMotd ( )
{
if ( this . hasMotd ( ) ) return Txt . parse ( this . motd ) ;
return Lang . FACTION_NOMOTD ;
}
2014-10-02 16:15:15 +02:00
public void setMotd ( String description )
2014-10-02 16:12:16 +02:00
{
// Clean input
2014-10-02 16:15:15 +02:00
String target = description ;
2014-10-02 16:12:16 +02:00
if ( target ! = null )
{
target = target . trim ( ) ;
if ( target . length ( ) = = 0 )
{
target = null ;
}
}
// Detect Nochange
if ( MUtil . equals ( this . motd , target ) ) return ;
// Apply
this . motd = target ;
// Mark as changed
this . changed ( ) ;
}
// FINER
public List < String > getMotdMessages ( )
{
final String title = Txt . titleize ( this . getName ( ) + " - Message of the Day " ) ;
final String motd = " <i> " + this . getMotd ( ) ;
2014-10-02 16:29:12 +02:00
final List < String > messages = Txt . parse ( MUtil . list ( title , motd , " " ) ) ;
2014-10-02 16:12:16 +02:00
return messages ;
}
2013-04-25 10:51:11 +02:00
// -------------------------------------------- //
// FIELD: createdAtMillis
// -------------------------------------------- //
public long getCreatedAtMillis ( )
{
return this . createdAtMillis ;
}
public void setCreatedAtMillis ( long createdAtMillis )
{
// Clean input
long target = createdAtMillis ;
// Detect Nochange
if ( MUtil . equals ( this . createdAtMillis , createdAtMillis ) ) return ;
// Apply
this . createdAtMillis = target ;
// Mark as changed
this . changed ( ) ;
}
2013-04-17 08:49:43 +02:00
// -------------------------------------------- //
2013-04-17 12:08:30 +02:00
// FIELD: home
2013-04-17 08:49:43 +02:00
// -------------------------------------------- //
2011-03-22 17:20:21 +01:00
2013-04-17 12:08:30 +02:00
public PS getHome ( )
2011-10-12 17:25:01 +02:00
{
2013-04-17 12:08:30 +02:00
this . verifyHomeIsValid ( ) ;
return this . home ;
2011-10-12 17:25:01 +02:00
}
2013-04-17 12:08:30 +02:00
public void verifyHomeIsValid ( )
2011-10-12 17:25:01 +02:00
{
2013-04-17 12:08:30 +02:00
if ( this . isValidHome ( this . home ) ) return ;
this . home = null ;
msg ( " <b>Your faction home has been un-set since it is no longer in your territory. " ) ;
}
public boolean isValidHome ( PS ps )
{
if ( ps = = null ) return true ;
2014-09-17 13:17:33 +02:00
if ( ! MConf . get ( ) . homesMustBeInClaimedTerritory ) return true ;
if ( BoardColl . get ( ) . getFactionAt ( ps ) = = this ) return true ;
2013-04-17 12:08:30 +02:00
return false ;
}
public boolean hasHome ( )
{
return this . getHome ( ) ! = null ;
}
public void setHome ( PS home )
{
2013-04-25 08:34:10 +02:00
// Clean input
PS target = home ;
// Detect Nochange
if ( MUtil . equals ( this . home , target ) ) return ;
// Apply
this . home = target ;
// Mark as changed
2013-04-24 18:22:52 +02:00
this . changed ( ) ;
2011-10-12 17:25:01 +02:00
}
2013-04-17 10:22:51 +02:00
// -------------------------------------------- //
2013-04-17 12:08:30 +02:00
// FIELD: powerBoost
2013-04-17 10:22:51 +02:00
// -------------------------------------------- //
// RAW
2013-04-17 12:08:30 +02:00
public double getPowerBoost ( )
2011-10-12 17:25:01 +02:00
{
2013-04-17 12:08:30 +02:00
Double ret = this . powerBoost ;
if ( ret = = null ) ret = 0D ;
2013-04-17 10:22:51 +02:00
return ret ;
2011-10-12 17:25:01 +02:00
}
2013-04-17 12:08:30 +02:00
public void setPowerBoost ( Double powerBoost )
2011-10-12 17:25:01 +02:00
{
2013-04-25 08:34:10 +02:00
// Clean input
Double target = powerBoost ;
if ( target = = null | | target = = 0 ) target = null ;
// Detect Nochange
if ( MUtil . equals ( this . powerBoost , target ) ) return ;
// Apply
this . powerBoost = target ;
// Mark as changed
2013-04-17 10:22:51 +02:00
this . changed ( ) ;
2011-10-12 17:25:01 +02:00
}
2013-04-17 12:08:30 +02:00
// -------------------------------------------- //
// FIELD: open
// -------------------------------------------- //
2011-03-22 17:20:21 +01:00
2014-11-13 11:41:21 +01:00
// Nowadays this is a flag!
@Deprecated
2013-04-23 14:00:18 +02:00
public boolean isDefaultOpen ( )
{
2014-11-13 11:41:21 +01:00
return MFlag . getFlagOpen ( ) . isStandard ( ) ;
2013-04-23 14:00:18 +02:00
}
2014-11-13 11:41:21 +01:00
@Deprecated
2013-04-17 12:08:30 +02:00
public boolean isOpen ( )
2013-04-17 10:22:51 +02:00
{
2014-11-13 11:41:21 +01:00
return this . getFlag ( MFlag . getFlagOpen ( ) ) ;
2013-04-17 10:22:51 +02:00
}
2014-11-13 11:41:21 +01:00
@Deprecated
2013-04-25 11:00:17 +02:00
public void setOpen ( Boolean open )
2011-11-24 16:27:14 +01:00
{
2014-11-13 11:41:21 +01:00
MFlag flag = MFlag . getFlagOpen ( ) ;
if ( open = = null ) open = flag . isStandard ( ) ;
this . setFlag ( flag , open ) ;
}
2011-11-24 16:27:14 +01:00
2013-04-17 10:22:51 +02:00
// -------------------------------------------- //
// FIELD: invitedPlayerIds
// -------------------------------------------- //
// RAW
public TreeSet < String > getInvitedPlayerIds ( )
{
2014-11-13 11:41:21 +01:00
return this . invitedPlayerIds ;
2013-04-17 10:22:51 +02:00
}
public void setInvitedPlayerIds ( Collection < String > invitedPlayerIds )
{
2013-04-25 08:34:10 +02:00
// Clean input
2014-11-13 11:41:21 +01:00
MassiveTreeSetDef < String , CaseInsensitiveComparator > target = new MassiveTreeSetDef < String , CaseInsensitiveComparator > ( CaseInsensitiveComparator . get ( ) ) ;
if ( invitedPlayerIds ! = null )
2013-04-17 10:22:51 +02:00
{
for ( String invitedPlayerId : invitedPlayerIds )
{
target . add ( invitedPlayerId . toLowerCase ( ) ) ;
}
}
2013-04-25 08:34:10 +02:00
// Detect Nochange
if ( MUtil . equals ( this . invitedPlayerIds , target ) ) return ;
// Apply
this . invitedPlayerIds = target ;
// Mark as changed
2013-04-17 10:22:51 +02:00
this . changed ( ) ;
}
// FINER
public boolean isInvited ( String playerId )
{
return this . getInvitedPlayerIds ( ) . contains ( playerId ) ;
}
2014-09-17 13:29:58 +02:00
public boolean isInvited ( MPlayer mplayer )
2013-04-17 10:22:51 +02:00
{
2014-09-17 13:29:58 +02:00
return this . isInvited ( mplayer . getId ( ) ) ;
2013-04-17 10:22:51 +02:00
}
2013-04-19 12:27:39 +02:00
public boolean setInvited ( String playerId , boolean invited )
2013-04-17 10:22:51 +02:00
{
TreeSet < String > invitedPlayerIds = this . getInvitedPlayerIds ( ) ;
2013-04-19 12:27:39 +02:00
boolean ret ;
if ( invited )
2013-04-17 10:22:51 +02:00
{
2013-04-19 12:27:39 +02:00
ret = invitedPlayerIds . add ( playerId . toLowerCase ( ) ) ;
2013-04-17 10:22:51 +02:00
}
2013-04-19 12:27:39 +02:00
else
2013-04-17 10:22:51 +02:00
{
2013-04-19 12:27:39 +02:00
ret = invitedPlayerIds . remove ( playerId . toLowerCase ( ) ) ;
2013-04-17 10:22:51 +02:00
}
2013-04-19 12:27:39 +02:00
this . setInvitedPlayerIds ( invitedPlayerIds ) ;
return ret ;
2013-04-17 10:22:51 +02:00
}
2014-09-17 13:29:58 +02:00
public void setInvited ( MPlayer mplayer , boolean invited )
2013-04-17 10:22:51 +02:00
{
2014-09-17 13:29:58 +02:00
this . setInvited ( mplayer . getId ( ) , invited ) ;
2013-04-17 10:22:51 +02:00
}
2013-04-17 11:47:48 +02:00
// -------------------------------------------- //
2013-04-17 12:08:30 +02:00
// FIELD: relationWish
2013-04-17 11:47:48 +02:00
// -------------------------------------------- //
2013-04-17 12:08:30 +02:00
// RAW
2013-04-17 11:47:48 +02:00
2013-04-17 12:08:30 +02:00
public Map < String , Rel > getRelationWishes ( )
2013-04-17 11:47:48 +02:00
{
2014-11-13 11:41:21 +01:00
return this . relationWishes ;
2013-04-17 11:47:48 +02:00
}
2013-04-17 12:08:30 +02:00
public void setRelationWishes ( Map < String , Rel > relationWishes )
2013-04-17 11:47:48 +02:00
{
2013-04-25 08:34:10 +02:00
// Clean input
2014-11-13 11:41:21 +01:00
MassiveMapDef < String , Rel > target = new MassiveMapDef < String , Rel > ( relationWishes ) ;
2013-04-25 08:34:10 +02:00
// Detect Nochange
if ( MUtil . equals ( this . relationWishes , target ) ) return ;
// Apply
this . relationWishes = target ;
// Mark as changed
2013-04-17 12:08:30 +02:00
this . changed ( ) ;
2013-04-17 11:47:48 +02:00
}
2013-04-17 12:08:30 +02:00
// FINER
2013-04-17 11:47:48 +02:00
2013-04-17 12:08:30 +02:00
public Rel getRelationWish ( String factionId )
2013-04-17 11:47:48 +02:00
{
2013-04-17 12:08:30 +02:00
Rel ret = this . getRelationWishes ( ) . get ( factionId ) ;
if ( ret = = null ) ret = Rel . NEUTRAL ;
return ret ;
2013-04-17 11:47:48 +02:00
}
2013-04-17 12:08:30 +02:00
public Rel getRelationWish ( Faction faction )
2013-04-17 11:47:48 +02:00
{
2013-04-17 12:08:30 +02:00
return this . getRelationWish ( faction . getId ( ) ) ;
2013-04-17 11:47:48 +02:00
}
2013-04-17 12:08:30 +02:00
public void setRelationWish ( String factionId , Rel rel )
2013-04-17 11:47:48 +02:00
{
2013-04-17 12:08:30 +02:00
Map < String , Rel > relationWishes = this . getRelationWishes ( ) ;
if ( rel = = null | | rel = = Rel . NEUTRAL )
{
relationWishes . remove ( factionId ) ;
}
else
{
relationWishes . put ( factionId , rel ) ;
}
this . setRelationWishes ( relationWishes ) ;
2013-04-17 11:47:48 +02:00
}
2013-04-17 12:08:30 +02:00
public void setRelationWish ( Faction faction , Rel rel )
2013-04-17 11:47:48 +02:00
{
2013-04-17 12:08:30 +02:00
this . setRelationWish ( faction . getId ( ) , rel ) ;
2013-04-17 11:47:48 +02:00
}
2014-10-15 14:35:50 +02:00
public Map < Rel , List < String > > getRelationNames ( RelationParticipator rp , Set < Rel > rels , boolean skipPeaceful )
2013-04-17 10:22:51 +02:00
{
2014-10-15 14:35:50 +02:00
// Create Ret
Map < Rel , List < String > > ret = new LinkedHashMap < Rel , List < String > > ( ) ;
for ( Rel rel : rels )
2013-04-17 10:22:51 +02:00
{
2013-04-17 12:08:30 +02:00
ret . put ( rel , new ArrayList < String > ( ) ) ;
2013-04-17 10:22:51 +02:00
}
2014-10-15 14:35:50 +02:00
2014-09-17 13:17:33 +02:00
for ( Faction faction : FactionColl . get ( ) . getAll ( ) )
2013-04-17 12:08:30 +02:00
{
2014-10-15 14:35:50 +02:00
if ( skipPeaceful & & faction . getFlag ( MFlag . getFlagPeaceful ( ) ) ) continue ;
Rel rel = faction . getRelationTo ( this ) ;
List < String > names = ret . get ( rel ) ;
if ( names = = null ) continue ;
String name = faction . getName ( rp ) ;
names . add ( name ) ;
2013-04-17 12:08:30 +02:00
}
2014-10-15 14:35:50 +02:00
// Return Ret
2013-04-17 12:08:30 +02:00
return ret ;
2013-04-17 10:22:51 +02:00
}
// -------------------------------------------- //
// FIELD: flagOverrides
// -------------------------------------------- //
// RAW
2014-10-02 11:45:06 +02:00
public Map < MFlag , Boolean > getFlags ( )
2013-04-17 10:22:51 +02:00
{
2014-10-02 11:45:06 +02:00
// We start with default values ...
Map < MFlag , Boolean > ret = new LinkedHashMap < MFlag , Boolean > ( ) ;
for ( MFlag mflag : MFlag . getAll ( ) )
2013-04-17 10:22:51 +02:00
{
2014-10-02 11:45:06 +02:00
ret . put ( mflag , mflag . isStandard ( ) ) ;
2013-04-17 10:22:51 +02:00
}
2014-10-02 14:02:07 +02:00
// ... and if anything is explicitly set we use that info ...
2014-11-13 11:41:21 +01:00
Iterator < Entry < String , Boolean > > iter = this . flags . entrySet ( ) . iterator ( ) ;
while ( iter . hasNext ( ) )
2013-04-17 10:22:51 +02:00
{
2014-11-13 11:41:21 +01:00
// ... for each entry ...
Entry < String , Boolean > entry = iter . next ( ) ;
// ... extract id and remove null values ...
String id = entry . getKey ( ) ;
if ( id = = null )
2013-04-17 10:22:51 +02:00
{
2014-11-13 11:41:21 +01:00
iter . remove ( ) ;
this . changed ( ) ;
continue ;
2013-04-17 10:22:51 +02:00
}
2014-11-13 11:41:21 +01:00
// ... resolve object and skip unknowns ...
MFlag mflag = MFlag . get ( id ) ;
if ( mflag = = null ) continue ;
ret . put ( mflag , entry . getValue ( ) ) ;
2013-04-17 10:22:51 +02:00
}
return ret ;
}
2014-11-13 11:41:21 +01:00
public void setFlags ( Map < MFlag , Boolean > flags )
{
Map < String , Boolean > flagIds = new LinkedHashMap < String , Boolean > ( ) ;
for ( Entry < MFlag , Boolean > entry : flags . entrySet ( ) )
{
flagIds . put ( entry . getKey ( ) . getId ( ) , entry . getValue ( ) ) ;
}
setFlagIds ( flagIds ) ;
}
public void setFlagIds ( Map < String , Boolean > flagIds )
2013-04-17 10:22:51 +02:00
{
2013-04-25 08:34:10 +02:00
// Clean input
2014-11-13 11:41:21 +01:00
MassiveMapDef < String , Boolean > target = new MassiveMapDef < String , Boolean > ( ) ;
for ( Entry < String , Boolean > entry : flagIds . entrySet ( ) )
2013-04-17 10:22:51 +02:00
{
2014-11-13 11:41:21 +01:00
String key = entry . getKey ( ) ;
if ( key = = null ) continue ;
key = key . toLowerCase ( ) ; // Lowercased Keys Version 2.6.0 --> 2.7.0
2013-04-25 08:34:10 +02:00
2014-11-13 11:41:21 +01:00
Boolean value = entry . getValue ( ) ;
if ( value = = null ) continue ;
target . put ( key , value ) ;
2013-04-17 10:22:51 +02:00
}
2013-04-25 08:34:10 +02:00
// Detect Nochange
if ( MUtil . equals ( this . flags , target ) ) return ;
2013-04-17 10:22:51 +02:00
2013-04-25 08:34:10 +02:00
// Apply
2014-11-13 11:41:21 +01:00
this . flags = new MassiveMapDef < String , Boolean > ( target ) ;
2013-04-25 08:34:10 +02:00
// Mark as changed
2013-04-17 10:22:51 +02:00
this . changed ( ) ;
}
2014-11-13 11:41:21 +01:00
// FINER
public boolean getFlag ( String flagId )
2014-10-02 11:45:06 +02:00
{
2014-11-13 11:41:21 +01:00
if ( flagId = = null ) throw new NullPointerException ( " flagId " ) ;
Boolean ret = this . flags . get ( flagId ) ;
if ( ret ! = null ) return ret ;
MFlag flag = MFlag . get ( flagId ) ;
if ( flag = = null ) throw new NullPointerException ( " flag " ) ;
return flag . isStandard ( ) ;
2014-10-02 11:45:06 +02:00
}
public boolean getFlag ( MFlag flag )
2013-04-17 10:22:51 +02:00
{
2014-11-13 11:41:21 +01:00
if ( flag = = null ) throw new NullPointerException ( " flag " ) ;
String flagId = flag . getId ( ) ;
if ( flagId = = null ) throw new NullPointerException ( " flagId " ) ;
Boolean ret = this . flags . get ( flagId ) ;
if ( ret ! = null ) return ret ;
return flag . isStandard ( ) ;
2013-04-17 10:22:51 +02:00
}
2014-11-13 11:41:21 +01:00
public Boolean setFlag ( String flagId , boolean value )
2013-04-17 10:22:51 +02:00
{
2014-11-13 11:41:21 +01:00
if ( flagId = = null ) throw new NullPointerException ( " flagId " ) ;
Boolean ret = this . flags . put ( flagId , value ) ;
if ( ret = = null | | ret ! = value ) this . changed ( ) ;
return ret ;
}
public Boolean setFlag ( MFlag flag , boolean value )
{
if ( flag = = null ) throw new NullPointerException ( " flag " ) ;
String flagId = flag . getId ( ) ;
if ( flagId = = null ) throw new NullPointerException ( " flagId " ) ;
Boolean ret = this . flags . put ( flagId , value ) ;
if ( ret = = null | | ret ! = value ) this . changed ( ) ;
return ret ;
2013-04-17 10:22:51 +02:00
}
// -------------------------------------------- //
2013-04-17 13:16:22 +02:00
// FIELD: permOverrides
// -------------------------------------------- //
// RAW
2014-10-02 14:02:07 +02:00
public Map < MPerm , Set < Rel > > getPerms ( )
2013-04-17 13:16:22 +02:00
{
2014-10-02 14:02:07 +02:00
// We start with default values ...
Map < MPerm , Set < Rel > > ret = new LinkedHashMap < MPerm , Set < Rel > > ( ) ;
for ( MPerm mperm : MPerm . getAll ( ) )
2013-04-17 13:16:22 +02:00
{
2014-10-02 14:02:07 +02:00
ret . put ( mperm , new LinkedHashSet < Rel > ( mperm . getStandard ( ) ) ) ;
2013-04-17 13:16:22 +02:00
}
2014-10-02 14:02:07 +02:00
// ... and if anything is explicitly set we use that info ...
2014-11-13 11:41:21 +01:00
Iterator < Entry < String , Set < Rel > > > iter = this . perms . entrySet ( ) . iterator ( ) ;
while ( iter . hasNext ( ) )
2013-04-17 13:16:22 +02:00
{
2014-11-13 11:41:21 +01:00
// ... for each entry ...
Entry < String , Set < Rel > > entry = iter . next ( ) ;
// ... extract id and remove null values ...
String id = entry . getKey ( ) ;
if ( id = = null )
2013-04-17 13:16:22 +02:00
{
2014-11-13 11:41:21 +01:00
iter . remove ( ) ;
continue ;
2013-04-17 13:16:22 +02:00
}
2014-11-13 11:41:21 +01:00
// ... resolve object and skip unknowns ...
MPerm mperm = MPerm . get ( id ) ;
if ( mperm = = null ) continue ;
ret . put ( mperm , new LinkedHashSet < Rel > ( entry . getValue ( ) ) ) ;
2013-04-17 13:16:22 +02:00
}
return ret ;
}
2014-11-13 11:41:21 +01:00
public void setPerms ( Map < MPerm , Set < Rel > > perms )
{
Map < String , Set < Rel > > permIds = new LinkedHashMap < String , Set < Rel > > ( ) ;
for ( Entry < MPerm , Set < Rel > > entry : perms . entrySet ( ) )
{
permIds . put ( entry . getKey ( ) . getId ( ) , entry . getValue ( ) ) ;
}
setPermIds ( permIds ) ;
}
2014-10-02 14:02:07 +02:00
public void setPermIds ( Map < String , Set < Rel > > perms )
2013-04-17 13:16:22 +02:00
{
2013-04-25 08:34:10 +02:00
// Clean input
2014-11-13 11:41:21 +01:00
MassiveMapDef < String , Set < Rel > > target = new MassiveMapDef < String , Set < Rel > > ( ) ;
for ( Entry < String , Set < Rel > > entry : perms . entrySet ( ) )
2013-04-25 08:34:10 +02:00
{
2014-11-13 11:41:21 +01:00
String key = entry . getKey ( ) ;
if ( key = = null ) continue ;
key = key . toLowerCase ( ) ; // Lowercased Keys Version 2.6.0 --> 2.7.0
2013-04-25 08:34:10 +02:00
2014-11-13 11:41:21 +01:00
Set < Rel > value = entry . getValue ( ) ;
if ( value = = null ) continue ;
target . put ( key , value ) ;
2013-04-17 13:16:22 +02:00
}
2013-04-25 08:34:10 +02:00
// Detect Nochange
if ( MUtil . equals ( this . perms , target ) ) return ;
// Apply
this . perms = target ;
// Mark as changed
2013-04-17 13:16:22 +02:00
this . changed ( ) ;
}
2014-11-13 11:41:21 +01:00
// FINER
public boolean isPermitted ( String permId , Rel rel )
2014-10-02 14:02:07 +02:00
{
2014-11-13 11:41:21 +01:00
if ( permId = = null ) throw new NullPointerException ( " permId " ) ;
Set < Rel > rels = this . perms . get ( permId ) ;
if ( rels ! = null ) return rels . contains ( rel ) ;
MPerm perm = MPerm . get ( permId ) ;
if ( perm = = null ) throw new NullPointerException ( " perm " ) ;
return perm . getStandard ( ) . contains ( rel ) ;
2014-10-02 14:02:07 +02:00
}
2014-11-13 11:41:21 +01:00
public boolean isPermitted ( MPerm perm , Rel rel )
{
if ( perm = = null ) throw new NullPointerException ( " perm " ) ;
String permId = perm . getId ( ) ;
if ( permId = = null ) throw new NullPointerException ( " permId " ) ;
Set < Rel > rels = this . perms . get ( permId ) ;
if ( rels ! = null ) return rels . contains ( rel ) ;
return perm . getStandard ( ) . contains ( rel ) ;
}
2013-04-17 13:16:22 +02:00
2014-11-13 11:41:21 +01:00
// ---
public Set < Rel > getPermitted ( MPerm perm )
{
if ( perm = = null ) throw new NullPointerException ( " perm " ) ;
String permId = perm . getId ( ) ;
if ( permId = = null ) throw new NullPointerException ( " permId " ) ;
Set < Rel > rels = this . perms . get ( permId ) ;
if ( rels ! = null ) return rels ;
return perm . getStandard ( ) ;
}
public Set < Rel > getPermitted ( String permId )
{
if ( permId = = null ) throw new NullPointerException ( " permId " ) ;
Set < Rel > rels = this . perms . get ( permId ) ;
if ( rels ! = null ) return rels ;
MPerm perm = MPerm . get ( permId ) ;
if ( perm = = null ) throw new NullPointerException ( " perm " ) ;
return perm . getStandard ( ) ;
}
@Deprecated
// Use getPermitted instead. It's much quicker although not immutable.
2014-10-02 14:02:07 +02:00
public Set < Rel > getPermittedRelations ( MPerm perm )
2013-04-17 13:16:22 +02:00
{
return this . getPerms ( ) . get ( perm ) ;
}
2014-11-13 11:41:21 +01:00
// ---
// TODO: Fix these below. They are reworking the whole map.
2014-10-02 14:02:07 +02:00
public void setPermittedRelations ( MPerm perm , Set < Rel > rels )
2013-04-17 13:16:22 +02:00
{
2014-10-02 14:02:07 +02:00
Map < MPerm , Set < Rel > > perms = this . getPerms ( ) ;
2013-04-17 13:16:22 +02:00
perms . put ( perm , rels ) ;
this . setPerms ( perms ) ;
}
2014-10-02 14:02:07 +02:00
public void setPermittedRelations ( MPerm perm , Rel . . . rels )
2013-04-17 13:16:22 +02:00
{
Set < Rel > temp = new HashSet < Rel > ( ) ;
temp . addAll ( Arrays . asList ( rels ) ) ;
this . setPermittedRelations ( perm , temp ) ;
}
2014-10-02 14:02:07 +02:00
public void setRelationPermitted ( MPerm perm , Rel rel , boolean permitted )
2013-04-17 13:16:22 +02:00
{
2014-10-02 14:02:07 +02:00
Map < MPerm , Set < Rel > > perms = this . getPerms ( ) ;
2013-04-29 16:29:10 +02:00
2013-04-17 13:16:22 +02:00
Set < Rel > rels = perms . get ( perm ) ;
if ( permitted )
{
rels . add ( rel ) ;
}
else
{
rels . remove ( rel ) ;
}
this . setPerms ( perms ) ;
}
// -------------------------------------------- //
// OVERRIDE: RelationParticipator
2013-04-17 10:22:51 +02:00
// -------------------------------------------- //
@Override
public String describeTo ( RelationParticipator observer , boolean ucfirst )
{
return RelationUtil . describeThatToMe ( this , observer , ucfirst ) ;
}
@Override
public String describeTo ( RelationParticipator observer )
{
return RelationUtil . describeThatToMe ( this , observer ) ;
}
@Override
public Rel getRelationTo ( RelationParticipator observer )
{
return RelationUtil . getRelationOfThatToMe ( this , observer ) ;
}
@Override
public Rel getRelationTo ( RelationParticipator observer , boolean ignorePeaceful )
{
return RelationUtil . getRelationOfThatToMe ( this , observer , ignorePeaceful ) ;
}
@Override
public ChatColor getColorTo ( RelationParticipator observer )
{
return RelationUtil . getColorOfThatToMe ( this , observer ) ;
}
2013-04-10 09:40:39 +02:00
// -------------------------------------------- //
2013-04-17 08:49:43 +02:00
// POWER
2013-04-10 09:40:39 +02:00
// -------------------------------------------- //
2013-04-17 14:44:08 +02:00
// TODO: Implement a has enough feature.
2013-04-17 08:49:43 +02:00
2011-10-08 22:03:44 +02:00
public double getPower ( )
{
2014-10-07 12:30:44 +02:00
if ( this . getFlag ( MFlag . getFlagInfpower ( ) ) ) return 999999 ;
2011-10-22 18:12:15 +02:00
2011-02-07 21:42:14 +01:00
double ret = 0 ;
2014-09-17 13:29:58 +02:00
for ( MPlayer mplayer : this . getMPlayers ( ) )
2011-10-21 20:08:54 +02:00
{
2014-09-17 13:29:58 +02:00
ret + = mplayer . getPower ( ) ;
2011-02-06 13:36:11 +01:00
}
2013-04-22 17:20:34 +02:00
2014-09-17 13:17:33 +02:00
double factionPowerMax = MConf . get ( ) . factionPowerMax ;
2013-04-25 07:53:21 +02:00
if ( factionPowerMax > 0 & & ret > factionPowerMax )
{
ret = factionPowerMax ;
}
ret + = this . getPowerBoost ( ) ;
2013-04-22 17:20:34 +02:00
2013-04-23 12:14:36 +02:00
return ret ;
2011-02-06 13:36:11 +01:00
}
2011-10-21 20:08:54 +02:00
public double getPowerMax ( )
{
2014-10-07 12:30:44 +02:00
if ( this . getFlag ( MFlag . getFlagInfpower ( ) ) ) return 999999 ;
2013-04-25 07:53:21 +02:00
double ret = 0 ;
2014-09-17 13:29:58 +02:00
for ( MPlayer mplayer : this . getMPlayers ( ) )
2013-04-25 07:53:21 +02:00
{
2014-09-17 13:29:58 +02:00
ret + = mplayer . getPowerMax ( ) ;
2013-04-25 07:53:21 +02:00
}
2014-09-17 13:17:33 +02:00
double factionPowerMax = MConf . get ( ) . factionPowerMax ;
2013-04-25 07:53:21 +02:00
if ( factionPowerMax > 0 & & ret > factionPowerMax )
{
ret = factionPowerMax ;
}
ret + = this . getPowerBoost ( ) ;
return ret ;
2011-02-06 13:36:11 +01:00
}
2011-10-21 20:08:54 +02:00
public int getPowerRounded ( )
{
2011-02-06 13:36:11 +01:00
return ( int ) Math . round ( this . getPower ( ) ) ;
}
2011-10-21 20:08:54 +02:00
public int getPowerMaxRounded ( )
{
2011-02-06 13:36:11 +01:00
return ( int ) Math . round ( this . getPowerMax ( ) ) ;
}
2013-04-17 08:49:43 +02:00
public int getLandCount ( )
2013-04-11 11:11:31 +02:00
{
2014-09-17 13:17:33 +02:00
return BoardColl . get ( ) . getCount ( this ) ;
2011-02-06 13:36:11 +01:00
}
2013-04-17 08:49:43 +02:00
public int getLandCountInWorld ( String worldName )
2011-10-21 20:08:54 +02:00
{
2013-05-29 14:31:09 +02:00
return Board . get ( worldName ) . getCount ( this ) ;
2011-06-30 13:13:47 +02:00
}
2011-10-21 20:08:54 +02:00
public boolean hasLandInflation ( )
{
2013-04-17 08:49:43 +02:00
return this . getLandCount ( ) > this . getPowerRounded ( ) ;
2011-02-06 13:36:11 +01:00
}
2013-04-10 09:40:39 +02:00
// -------------------------------------------- //
2014-09-17 13:29:58 +02:00
// FOREIGN KEY: MPLAYER
2013-04-10 09:40:39 +02:00
// -------------------------------------------- //
2013-04-17 14:44:08 +02:00
2014-09-17 13:29:58 +02:00
protected transient List < MPlayer > mplayers = new ArrayList < MPlayer > ( ) ;
public void reindexMPlayers ( )
2011-10-08 22:03:44 +02:00
{
2014-09-17 13:29:58 +02:00
this . mplayers . clear ( ) ;
2013-04-17 14:44:08 +02:00
String factionId = this . getId ( ) ;
if ( factionId = = null ) return ;
2014-09-17 13:17:33 +02:00
for ( MPlayer mplayer : MPlayerColl . get ( ) . getAll ( ) )
2011-10-08 22:03:44 +02:00
{
2014-09-17 13:17:33 +02:00
if ( ! MUtil . equals ( factionId , mplayer . getFactionId ( ) ) ) continue ;
2014-09-17 13:29:58 +02:00
this . mplayers . add ( mplayer ) ;
2011-02-06 13:36:11 +01:00
}
2013-04-17 14:44:08 +02:00
}
2013-06-18 09:07:05 +02:00
// TODO: Even though this check method removeds the invalid entries it's not a true solution.
2014-09-17 13:29:58 +02:00
// TODO: Find the bug causing non-attached MPlayers to be present in the index.
private void checkMPlayerIndex ( )
2013-06-18 09:07:05 +02:00
{
2014-09-17 13:29:58 +02:00
Iterator < MPlayer > iter = this . mplayers . iterator ( ) ;
2013-06-18 09:07:05 +02:00
while ( iter . hasNext ( ) )
{
2014-09-17 13:29:58 +02:00
MPlayer mplayer = iter . next ( ) ;
if ( ! mplayer . attached ( ) )
2013-06-18 09:07:05 +02:00
{
2014-09-17 13:29:58 +02:00
String msg = Txt . parse ( " <rose>WARN: <i>Faction <h>%s <i>aka <h>%s <i>had unattached mplayer in index: " , this . getName ( ) , this . getId ( ) ) ;
2013-06-18 09:07:05 +02:00
Factions . get ( ) . log ( msg ) ;
2014-09-17 13:29:58 +02:00
Factions . get ( ) . log ( Factions . get ( ) . gson . toJson ( mplayer ) ) ;
2013-06-18 09:07:05 +02:00
iter . remove ( ) ;
}
}
}
2014-09-17 13:29:58 +02:00
public List < MPlayer > getMPlayers ( )
2013-04-17 14:44:08 +02:00
{
2014-09-17 13:29:58 +02:00
this . checkMPlayerIndex ( ) ;
return new ArrayList < MPlayer > ( this . mplayers ) ;
2012-01-13 10:46:31 +01:00
}
2013-04-17 08:49:43 +02:00
2014-09-17 13:29:58 +02:00
public List < MPlayer > getMPlayersWhereOnline ( boolean online )
2012-01-13 10:46:31 +01:00
{
2014-09-17 13:29:58 +02:00
List < MPlayer > ret = this . getMPlayers ( ) ;
2014-09-17 13:17:33 +02:00
Iterator < MPlayer > iter = ret . iterator ( ) ;
2013-04-17 14:44:08 +02:00
while ( iter . hasNext ( ) )
2013-04-17 08:49:43 +02:00
{
2014-09-17 13:29:58 +02:00
MPlayer mplayer = iter . next ( ) ;
if ( mplayer . isOnline ( ) ! = online )
2013-04-17 14:44:08 +02:00
{
iter . remove ( ) ;
}
2013-04-17 08:49:43 +02:00
}
2011-02-06 13:36:11 +01:00
return ret ;
2013-08-23 10:45:27 +02:00
}
2011-02-06 13:36:11 +01:00
2014-09-17 13:29:58 +02:00
public List < MPlayer > getMPlayersWhereRole ( Rel role )
2011-10-08 22:03:44 +02:00
{
2014-09-17 13:29:58 +02:00
List < MPlayer > ret = this . getMPlayers ( ) ;
2014-09-17 13:17:33 +02:00
Iterator < MPlayer > iter = ret . iterator ( ) ;
2013-04-17 14:44:08 +02:00
while ( iter . hasNext ( ) )
2011-10-08 22:03:44 +02:00
{
2014-09-17 13:29:58 +02:00
MPlayer mplayer = iter . next ( ) ;
if ( mplayer . getRole ( ) ! = role )
2013-04-17 14:44:08 +02:00
{
iter . remove ( ) ;
}
2011-02-06 13:36:11 +01:00
}
return ret ;
}
2014-09-17 13:17:33 +02:00
public MPlayer getLeader ( )
2011-10-08 22:03:44 +02:00
{
2014-09-17 13:29:58 +02:00
List < MPlayer > ret = this . getMPlayers ( ) ;
2014-09-17 13:17:33 +02:00
Iterator < MPlayer > iter = ret . iterator ( ) ;
2013-04-17 14:44:08 +02:00
while ( iter . hasNext ( ) )
2011-10-08 22:03:44 +02:00
{
2014-09-17 13:29:58 +02:00
MPlayer mplayer = iter . next ( ) ;
if ( mplayer . getRole ( ) = = Rel . LEADER )
2013-04-17 14:44:08 +02:00
{
2014-09-17 13:29:58 +02:00
return mplayer ;
2013-04-17 14:44:08 +02:00
}
2011-08-02 00:54:05 +02:00
}
return null ;
}
2013-04-17 08:49:43 +02:00
public List < CommandSender > getOnlineCommandSenders ( )
2011-10-22 17:42:13 +02:00
{
2013-04-17 08:49:43 +02:00
List < CommandSender > ret = new ArrayList < CommandSender > ( ) ;
2014-05-14 15:27:27 +02:00
for ( CommandSender player : IdUtil . getOnlineSenders ( ) )
2011-10-22 17:42:13 +02:00
{
2014-09-17 13:29:58 +02:00
MPlayer mplayer = MPlayer . get ( player ) ;
if ( mplayer . getFaction ( ) ! = this ) continue ;
2013-04-17 08:49:43 +02:00
ret . add ( player ) ;
2011-02-06 13:36:11 +01:00
}
return ret ;
}
2013-04-17 08:49:43 +02:00
public List < Player > getOnlinePlayers ( )
2011-10-08 22:03:44 +02:00
{
2013-04-17 08:49:43 +02:00
List < Player > ret = new ArrayList < Player > ( ) ;
2014-12-03 02:13:39 +01:00
for ( Player player : MUtil . getOnlinePlayers ( ) )
2011-10-08 22:03:44 +02:00
{
2014-09-17 13:29:58 +02:00
MPlayer mplayer = MPlayer . get ( player ) ;
if ( mplayer . getFaction ( ) ! = this ) continue ;
2013-04-17 08:49:43 +02:00
ret . add ( player ) ;
2011-02-06 13:36:11 +01:00
}
return ret ;
}
2011-12-18 14:50:41 +01:00
// used when current leader is about to be removed from the faction; promotes new leader, or disbands faction if no other members left
public void promoteNewLeader ( )
{
2013-04-17 08:49:43 +02:00
if ( ! this . isNormal ( ) ) return ;
2014-10-07 12:30:44 +02:00
if ( this . getFlag ( MFlag . getFlagPermanent ( ) ) & & MConf . get ( ) . permanentFactionsDisableLeaderPromotion ) return ;
2011-12-18 14:50:41 +01:00
2014-09-17 13:17:33 +02:00
MPlayer oldLeader = this . getLeader ( ) ;
2011-12-18 14:50:41 +01:00
// get list of officers, or list of normal members if there are no officers
2014-09-17 13:29:58 +02:00
List < MPlayer > replacements = this . getMPlayersWhereRole ( Rel . OFFICER ) ;
2011-12-18 14:50:41 +01:00
if ( replacements = = null | | replacements . isEmpty ( ) )
2013-04-17 08:49:43 +02:00
{
2014-09-17 13:29:58 +02:00
replacements = this . getMPlayersWhereRole ( Rel . MEMBER ) ;
2013-04-17 08:49:43 +02:00
}
2011-12-18 14:50:41 +01:00
if ( replacements = = null | | replacements . isEmpty ( ) )
2013-04-25 20:21:23 +02:00
{
// faction leader is the only member; one-man faction
2014-10-07 12:30:44 +02:00
if ( this . getFlag ( MFlag . getFlagPermanent ( ) ) )
2011-12-18 14:50:41 +01:00
{
2012-01-18 13:01:50 +01:00
if ( oldLeader ! = null )
2013-04-17 08:49:43 +02:00
{
2013-04-25 20:21:23 +02:00
// TODO: Where is the logic in this? Why MEMBER? Why not LEADER again? And why not OFFICER or RECRUIT?
2012-01-18 13:01:50 +01:00
oldLeader . setRole ( Rel . MEMBER ) ;
2013-04-17 08:49:43 +02:00
}
2011-12-18 14:50:41 +01:00
return ;
}
// no members left and faction isn't permanent, so disband it
2013-04-22 10:05:03 +02:00
if ( MConf . get ( ) . logFactionDisband )
2013-04-17 08:49:43 +02:00
{
2013-04-24 19:01:17 +02:00
Factions . get ( ) . log ( " The faction " + this . getName ( ) + " ( " + this . getId ( ) + " ) has been disbanded since it has no members left. " ) ;
2013-04-17 08:49:43 +02:00
}
2011-12-18 14:50:41 +01:00
2014-09-17 13:17:33 +02:00
for ( MPlayer mplayer : MPlayerColl . get ( ) . getAllOnline ( ) )
2011-12-18 14:50:41 +01:00
{
2014-09-17 13:17:33 +02:00
mplayer . msg ( " <i>The faction %s<i> was disbanded. " , this . getName ( mplayer ) ) ;
2011-12-18 14:50:41 +01:00
}
this . detach ( ) ;
}
else
2014-10-06 13:08:34 +02:00
{
// promote new faction leader
2012-01-18 13:01:50 +01:00
if ( oldLeader ! = null )
2013-04-17 08:49:43 +02:00
{
2012-01-18 13:01:50 +01:00
oldLeader . setRole ( Rel . MEMBER ) ;
2013-04-17 08:49:43 +02:00
}
2011-12-18 14:50:41 +01:00
replacements . get ( 0 ) . setRole ( Rel . LEADER ) ;
2012-01-18 13:01:50 +01:00
this . msg ( " <i>Faction leader <h>%s<i> has been removed. %s<i> has been promoted as the new faction leader. " , oldLeader = = null ? " " : oldLeader . getName ( ) , replacements . get ( 0 ) . getName ( ) ) ;
2013-04-24 19:01:17 +02:00
Factions . get ( ) . log ( " Faction " + this . getName ( ) + " ( " + this . getId ( ) + " ) leader was removed. Replacement leader: " + replacements . get ( 0 ) . getName ( ) ) ;
2011-12-18 14:50:41 +01:00
}
}
2013-08-23 10:45:27 +02:00
// -------------------------------------------- //
// FACTION ONLINE STATE
// -------------------------------------------- //
2011-12-18 14:50:41 +01:00
2014-09-17 13:29:58 +02:00
public boolean isAllMPlayersOffline ( )
2013-08-23 10:45:27 +02:00
{
2014-09-17 13:29:58 +02:00
return this . getMPlayersWhereOnline ( true ) . size ( ) = = 0 ;
2013-08-23 10:45:27 +02:00
}
2014-09-17 13:29:58 +02:00
public boolean isAnyMPlayersOnline ( )
2013-08-23 10:45:27 +02:00
{
2014-09-17 13:29:58 +02:00
return ! this . isAllMPlayersOffline ( ) ;
2013-08-23 10:45:27 +02:00
}
public boolean isFactionConsideredOffline ( )
{
2014-09-17 13:29:58 +02:00
return this . isAllMPlayersOffline ( ) ;
2013-08-23 10:45:27 +02:00
}
public boolean isFactionConsideredOnline ( )
{
return ! this . isFactionConsideredOffline ( ) ;
}
public boolean isExplosionsAllowed ( )
{
2014-10-07 12:30:44 +02:00
boolean explosions = this . getFlag ( MFlag . getFlagExplosions ( ) ) ;
boolean offlineexplosions = this . getFlag ( MFlag . getFlagOfflineexplosions ( ) ) ;
2013-08-23 10:45:27 +02:00
boolean online = this . isFactionConsideredOnline ( ) ;
return ( online & & explosions ) | | ( ! online & & offlineexplosions ) ;
}
2013-04-10 09:40:39 +02:00
// -------------------------------------------- //
2013-04-17 08:49:43 +02:00
// MESSAGES
2013-04-10 09:40:39 +02:00
// -------------------------------------------- //
2013-04-17 13:16:22 +02:00
// These methods are simply proxied in from the Mixin.
2013-04-10 10:32:04 +02:00
2013-04-17 08:49:43 +02:00
// CONVENIENCE SEND MESSAGE
public boolean sendMessage ( String message )
2011-10-09 14:53:38 +02:00
{
2014-05-14 15:27:27 +02:00
return Mixin . messagePredictate ( new FactionEqualsPredictate ( this ) , message ) ;
2011-10-09 14:53:38 +02:00
}
2013-04-17 08:49:43 +02:00
public boolean sendMessage ( String . . . messages )
2011-10-08 22:03:44 +02:00
{
2014-05-14 15:27:27 +02:00
return Mixin . messagePredictate ( new FactionEqualsPredictate ( this ) , messages ) ;
2011-02-06 13:36:11 +01:00
}
2013-04-17 08:49:43 +02:00
public boolean sendMessage ( Collection < String > messages )
2011-10-08 22:03:44 +02:00
{
2014-05-14 15:27:27 +02:00
return Mixin . messagePredictate ( new FactionEqualsPredictate ( this ) , messages ) ;
2013-04-17 08:49:43 +02:00
}
// CONVENIENCE MSG
public boolean msg ( String msg )
{
2014-05-14 15:27:27 +02:00
return Mixin . msgPredictate ( new FactionEqualsPredictate ( this ) , msg ) ;
2011-02-06 13:36:11 +01:00
}
2013-04-17 08:49:43 +02:00
public boolean msg ( String msg , Object . . . args )
{
2014-05-14 15:27:27 +02:00
return Mixin . msgPredictate ( new FactionEqualsPredictate ( this ) , msg , args ) ;
2013-04-17 08:49:43 +02:00
}
public boolean msg ( Collection < String > msgs )
{
2014-05-14 15:27:27 +02:00
return Mixin . msgPredictate ( new FactionEqualsPredictate ( this ) , msgs ) ;
2013-04-17 08:49:43 +02:00
}
2011-03-18 17:33:23 +01:00
2011-02-06 13:36:11 +01:00
}