2011-10-08 22:03:44 +02:00
|
|
|
package com.massivecraft.factions;
|
|
|
|
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.adapter.BoardAdapter;
|
|
|
|
import com.massivecraft.factions.adapter.BoardMapAdapter;
|
|
|
|
import com.massivecraft.factions.adapter.FFlagAdapter;
|
|
|
|
import com.massivecraft.factions.adapter.FPermAdapter;
|
|
|
|
import com.massivecraft.factions.adapter.RelAdapter;
|
|
|
|
import com.massivecraft.factions.adapter.TerritoryAccessAdapter;
|
2013-04-18 15:31:05 +02:00
|
|
|
import com.massivecraft.factions.chat.modifier.ChatModifierLc;
|
|
|
|
import com.massivecraft.factions.chat.modifier.ChatModifierLp;
|
|
|
|
import com.massivecraft.factions.chat.modifier.ChatModifierParse;
|
|
|
|
import com.massivecraft.factions.chat.modifier.ChatModifierRp;
|
|
|
|
import com.massivecraft.factions.chat.modifier.ChatModifierUc;
|
|
|
|
import com.massivecraft.factions.chat.modifier.ChatModifierUcf;
|
|
|
|
import com.massivecraft.factions.chat.tag.ChatTagRelcolor;
|
|
|
|
import com.massivecraft.factions.chat.tag.ChatTagRole;
|
|
|
|
import com.massivecraft.factions.chat.tag.ChatTagRoleprefix;
|
|
|
|
import com.massivecraft.factions.chat.tag.ChatTagTag;
|
|
|
|
import com.massivecraft.factions.chat.tag.ChatTagTagforce;
|
|
|
|
import com.massivecraft.factions.chat.tag.ChatTagTitle;
|
2011-10-09 21:57:43 +02:00
|
|
|
import com.massivecraft.factions.cmd.*;
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.entity.Board;
|
2013-04-22 12:26:13 +02:00
|
|
|
import com.massivecraft.factions.entity.BoardColls;
|
2013-04-22 17:59:51 +02:00
|
|
|
import com.massivecraft.factions.entity.UPlayerColls;
|
2013-04-22 12:26:13 +02:00
|
|
|
import com.massivecraft.factions.entity.FactionColls;
|
2013-04-22 09:51:19 +02:00
|
|
|
import com.massivecraft.factions.entity.MConfColl;
|
2012-01-15 19:41:33 +01:00
|
|
|
import com.massivecraft.factions.integration.LWCFeatures;
|
2012-02-03 07:16:03 +01:00
|
|
|
import com.massivecraft.factions.integration.Worldguard;
|
2013-04-18 15:40:58 +02:00
|
|
|
import com.massivecraft.factions.integration.herochat.HerochatFeatures;
|
2013-04-18 14:57:56 +02:00
|
|
|
import com.massivecraft.factions.listeners.FactionsListenerChat;
|
2013-04-19 10:07:53 +02:00
|
|
|
import com.massivecraft.factions.listeners.FactionsListenerEcon;
|
2013-04-18 14:02:39 +02:00
|
|
|
import com.massivecraft.factions.listeners.FactionsListenerExploit;
|
|
|
|
import com.massivecraft.factions.listeners.FactionsListenerMain;
|
2013-04-18 15:18:47 +02:00
|
|
|
import com.massivecraft.factions.listeners.TodoFactionsPlayerListener;
|
2013-04-23 17:01:43 +02:00
|
|
|
import com.massivecraft.factions.mixin.PowerMixin;
|
|
|
|
import com.massivecraft.factions.mixin.PowerMixinDefault;
|
2013-04-24 08:45:52 +02:00
|
|
|
import com.massivecraft.factions.task.TaskPlayerDataRemove;
|
|
|
|
import com.massivecraft.factions.task.TaskEconLandReward;
|
|
|
|
import com.massivecraft.factions.task.TaskPlayerPowerUpdate;
|
2013-04-10 10:53:53 +02:00
|
|
|
|
2013-04-16 11:27:03 +02:00
|
|
|
import com.massivecraft.mcore.MPlugin;
|
2013-04-22 12:26:13 +02:00
|
|
|
import com.massivecraft.mcore.usys.Aspect;
|
|
|
|
import com.massivecraft.mcore.usys.AspectColl;
|
|
|
|
import com.massivecraft.mcore.usys.Multiverse;
|
2013-04-19 18:34:21 +02:00
|
|
|
import com.massivecraft.mcore.util.MUtil;
|
2013-04-10 10:18:34 +02:00
|
|
|
import com.massivecraft.mcore.xlib.gson.GsonBuilder;
|
2011-10-08 22:03:44 +02:00
|
|
|
|
2012-02-02 22:20:43 +01:00
|
|
|
|
2013-04-09 13:00:09 +02:00
|
|
|
public class Factions extends MPlugin
|
2011-10-08 22:03:44 +02:00
|
|
|
{
|
2013-04-09 13:12:13 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// INSTANCE & CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static Factions i;
|
|
|
|
public static Factions get() { return i; }
|
|
|
|
public Factions() { Factions.i = this; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
2011-10-08 22:03:44 +02:00
|
|
|
|
2013-04-16 11:27:03 +02:00
|
|
|
// Commands
|
|
|
|
private CmdFactions outerCmdFactions;
|
|
|
|
public CmdFactions getOuterCmdFactions() { return this.outerCmdFactions; }
|
|
|
|
|
2011-10-08 22:03:44 +02:00
|
|
|
// Listeners
|
2013-04-18 15:18:47 +02:00
|
|
|
public TodoFactionsPlayerListener playerListener;
|
2013-04-22 12:26:13 +02:00
|
|
|
|
|
|
|
// Aspects
|
|
|
|
private Aspect aspect;
|
|
|
|
public Aspect getAspect() { return this.aspect; }
|
|
|
|
public Multiverse getMultiverse() { return this.getAspect().getMultiverse(); }
|
2013-04-22 15:05:00 +02:00
|
|
|
|
|
|
|
// Database Initialized
|
|
|
|
private boolean databaseInitialized;
|
|
|
|
public boolean isDatabaseInitialized() { return this.databaseInitialized; }
|
2013-04-23 17:01:43 +02:00
|
|
|
|
|
|
|
// Mixins
|
|
|
|
private PowerMixin powerMixin = null;
|
|
|
|
public PowerMixin getPowerMixin() { return this.powerMixin == null ? PowerMixinDefault.get() : this.powerMixin; }
|
|
|
|
public void setPowerMixin(PowerMixin powerMixin) { this.powerMixin = powerMixin; }
|
2012-01-31 17:52:34 +01:00
|
|
|
|
2013-04-09 13:12:13 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2011-10-08 22:03:44 +02:00
|
|
|
@Override
|
|
|
|
public void onEnable()
|
|
|
|
{
|
|
|
|
if ( ! preEnable()) return;
|
2013-04-10 10:53:53 +02:00
|
|
|
|
|
|
|
// Load Server Config
|
|
|
|
ConfServer.get().load();
|
2013-04-19 18:34:21 +02:00
|
|
|
|
2013-04-22 12:26:13 +02:00
|
|
|
// Initialize Aspects
|
|
|
|
this.aspect = AspectColl.get().get(Const.ASPECT_ID, true);
|
|
|
|
this.aspect.register();
|
|
|
|
this.aspect.setDesc(
|
|
|
|
"<i>If the factions system even is enabled and how it's configured.",
|
|
|
|
"<i>What factions exists and what players belong to them."
|
|
|
|
);
|
|
|
|
|
2013-04-19 18:34:21 +02:00
|
|
|
// Register Faction accountId Extractor
|
|
|
|
// TODO: Perhaps this should be placed in the econ integration somewhere?
|
|
|
|
MUtil.registerExtractor(String.class, "accountId", ExtractorFactionAccountId.get());
|
2012-03-09 21:44:17 +01:00
|
|
|
|
2013-04-16 11:27:03 +02:00
|
|
|
// Initialize Collections
|
2013-04-22 15:05:00 +02:00
|
|
|
this.databaseInitialized = false;
|
|
|
|
|
2013-04-22 09:51:19 +02:00
|
|
|
MConfColl.get().init();
|
2013-04-22 17:59:51 +02:00
|
|
|
UPlayerColls.get().init();
|
2013-04-22 12:26:13 +02:00
|
|
|
FactionColls.get().init();
|
|
|
|
BoardColls.get().init();
|
2013-04-16 11:27:03 +02:00
|
|
|
|
2013-04-22 17:59:51 +02:00
|
|
|
FactionColls.get().reindexUPlayers();
|
2013-04-22 15:05:00 +02:00
|
|
|
|
|
|
|
this.databaseInitialized = true;
|
|
|
|
|
2013-04-16 11:27:03 +02:00
|
|
|
// Commands
|
|
|
|
this.outerCmdFactions = new CmdFactions();
|
|
|
|
this.outerCmdFactions.register(this);
|
2012-02-22 18:43:53 +01:00
|
|
|
|
2013-04-18 15:31:05 +02:00
|
|
|
// Setup Listeners
|
2013-04-18 14:02:39 +02:00
|
|
|
FactionsListenerMain.get().setup();
|
2013-04-18 15:18:47 +02:00
|
|
|
FactionsListenerChat.get().setup();
|
2013-04-18 14:02:39 +02:00
|
|
|
FactionsListenerExploit.get().setup();
|
2013-04-10 12:25:46 +02:00
|
|
|
|
2013-04-19 12:48:29 +02:00
|
|
|
// TODO: This listener is a work in progress.
|
2013-04-19 10:07:53 +02:00
|
|
|
// The goal is that the Econ integration should be completely based on listening to our own events.
|
|
|
|
// Right now only a few situations are handled through this listener.
|
|
|
|
FactionsListenerEcon.get().setup();
|
|
|
|
|
2013-04-19 12:27:39 +02:00
|
|
|
// TODO: Get rid of this one
|
2013-04-18 15:18:47 +02:00
|
|
|
this.playerListener = new TodoFactionsPlayerListener();
|
2012-05-09 05:21:21 +02:00
|
|
|
getServer().getPluginManager().registerEvents(this.playerListener, this);
|
2013-04-09 13:12:13 +02:00
|
|
|
|
2013-04-18 15:31:05 +02:00
|
|
|
// Schedule recurring non-tps-dependent tasks
|
2013-04-24 08:45:52 +02:00
|
|
|
TaskPlayerPowerUpdate.get().schedule(this);
|
|
|
|
TaskPlayerDataRemove.get().schedule(this);
|
|
|
|
TaskEconLandReward.get().schedule(this);
|
2013-04-18 15:31:05 +02:00
|
|
|
|
|
|
|
// Register built in chat modifiers
|
|
|
|
ChatModifierLc.get().register();
|
|
|
|
ChatModifierLp.get().register();
|
|
|
|
ChatModifierParse.get().register();
|
|
|
|
ChatModifierRp.get().register();
|
|
|
|
ChatModifierUc.get().register();
|
|
|
|
ChatModifierUcf.get().register();
|
|
|
|
|
|
|
|
// Register built in chat tags
|
|
|
|
ChatTagRelcolor.get().register();
|
|
|
|
ChatTagRole.get().register();
|
|
|
|
ChatTagRoleprefix.get().register();
|
|
|
|
ChatTagTag.get().register();
|
|
|
|
ChatTagTagforce.get().register();
|
|
|
|
ChatTagTitle.get().register();
|
|
|
|
|
|
|
|
// Integrate
|
2013-04-18 15:40:58 +02:00
|
|
|
this.integrate(HerochatFeatures.get());
|
|
|
|
|
2013-04-18 15:31:05 +02:00
|
|
|
LWCFeatures.setup();
|
2013-04-24 08:39:26 +02:00
|
|
|
Worldguard.init(this);
|
2013-04-18 15:31:05 +02:00
|
|
|
|
2011-10-08 22:03:44 +02:00
|
|
|
postEnable();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public GsonBuilder getGsonBuilder()
|
|
|
|
{
|
2013-04-16 11:27:03 +02:00
|
|
|
return super.getGsonBuilder()
|
2013-04-09 13:53:37 +02:00
|
|
|
.registerTypeAdapter(TerritoryAccess.class, TerritoryAccessAdapter.get())
|
2013-04-11 09:38:08 +02:00
|
|
|
.registerTypeAdapter(Board.class, BoardAdapter.get())
|
2013-04-11 10:11:14 +02:00
|
|
|
.registerTypeAdapter(Board.MAP_TYPE, BoardMapAdapter.get())
|
2013-04-17 15:49:29 +02:00
|
|
|
.registerTypeAdapter(Rel.class, RelAdapter.get())
|
|
|
|
.registerTypeAdapter(FPerm.class, FPermAdapter.get())
|
|
|
|
.registerTypeAdapter(FFlag.class, FFlagAdapter.get())
|
2013-04-16 11:27:03 +02:00
|
|
|
;
|
2011-10-08 22:03:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// Functions for other plugins to hook into
|
|
|
|
// -------------------------------------------- //
|
2013-04-10 08:55:32 +02:00
|
|
|
// TODO: This "outer API" is removed. I should ensure these features are
|
|
|
|
// available using the appropriate classes and then remove this commented out section below.
|
|
|
|
|
|
|
|
/*
|
2011-10-08 22:03:44 +02:00
|
|
|
|
|
|
|
// Get a player's faction tag (faction name), mainly for usage by chat plugins for local/channel chat
|
|
|
|
public String getPlayerFactionTag(Player player)
|
|
|
|
{
|
|
|
|
return getPlayerFactionTagRelation(player, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Same as above, but with relation (enemy/neutral/ally) coloring potentially added to the tag
|
|
|
|
public String getPlayerFactionTagRelation(Player speaker, Player listener)
|
|
|
|
{
|
|
|
|
String tag = "~";
|
|
|
|
|
|
|
|
if (speaker == null)
|
|
|
|
return tag;
|
|
|
|
|
2013-04-09 13:22:23 +02:00
|
|
|
FPlayer me = FPlayerColl.i.get(speaker);
|
2011-10-08 22:03:44 +02:00
|
|
|
if (me == null)
|
|
|
|
return tag;
|
|
|
|
|
|
|
|
// if listener isn't set, or config option is disabled, give back uncolored tag
|
2013-04-09 13:15:25 +02:00
|
|
|
if (listener == null || !ConfServer.chatParseTagsColored) {
|
2011-10-08 22:03:44 +02:00
|
|
|
tag = me.getChatTag().trim();
|
|
|
|
} else {
|
2013-04-09 13:22:23 +02:00
|
|
|
FPlayer you = FPlayerColl.i.get(listener);
|
2011-10-08 22:03:44 +02:00
|
|
|
if (you == null)
|
|
|
|
tag = me.getChatTag().trim();
|
|
|
|
else // everything checks out, give the colored tag
|
|
|
|
tag = me.getChatTag(you).trim();
|
|
|
|
}
|
|
|
|
if (tag.isEmpty())
|
|
|
|
tag = "~";
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a player's title within their faction, mainly for usage by chat plugins for local/channel chat
|
|
|
|
public String getPlayerTitle(Player player)
|
|
|
|
{
|
|
|
|
if (player == null)
|
|
|
|
return "";
|
|
|
|
|
2013-04-09 13:22:23 +02:00
|
|
|
FPlayer me = FPlayerColl.i.get(player);
|
2011-10-08 22:03:44 +02:00
|
|
|
if (me == null)
|
|
|
|
return "";
|
|
|
|
|
|
|
|
return me.getTitle().trim();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of all faction tags (names)
|
|
|
|
public Set<String> getFactionTags()
|
|
|
|
{
|
|
|
|
Set<String> tags = new HashSet<String>();
|
2013-04-09 12:58:39 +02:00
|
|
|
for (Faction faction : FactionColl.i.get())
|
2011-10-08 22:03:44 +02:00
|
|
|
{
|
|
|
|
tags.add(faction.getTag());
|
|
|
|
}
|
|
|
|
return tags;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of all players in the specified faction
|
|
|
|
public Set<String> getPlayersInFaction(String factionTag)
|
|
|
|
{
|
|
|
|
Set<String> players = new HashSet<String>();
|
2013-04-09 12:58:39 +02:00
|
|
|
Faction faction = FactionColl.i.getByTag(factionTag);
|
2011-10-08 22:03:44 +02:00
|
|
|
if (faction != null)
|
|
|
|
{
|
|
|
|
for (FPlayer fplayer : faction.getFPlayers())
|
|
|
|
{
|
|
|
|
players.add(fplayer.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return players;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of all online players in the specified faction
|
|
|
|
public Set<String> getOnlinePlayersInFaction(String factionTag)
|
|
|
|
{
|
|
|
|
Set<String> players = new HashSet<String>();
|
2013-04-09 12:58:39 +02:00
|
|
|
Faction faction = FactionColl.i.getByTag(factionTag);
|
2011-10-08 22:03:44 +02:00
|
|
|
if (faction != null)
|
|
|
|
{
|
|
|
|
for (FPlayer fplayer : faction.getFPlayersWhereOnline(true))
|
|
|
|
{
|
|
|
|
players.add(fplayer.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return players;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if player is allowed to build/destroy in a particular location
|
|
|
|
public boolean isPlayerAllowedToBuildHere(Player player, Location location)
|
|
|
|
{
|
2011-10-24 01:37:51 +02:00
|
|
|
return FactionsBlockListener.playerCanBuildDestroyBlock(player, location.getBlock(), "", true);
|
2011-10-08 22:03:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// check if player is allowed to interact with the specified block (doors/chests/whatever)
|
|
|
|
public boolean isPlayerAllowedToInteractWith(Player player, Block block)
|
|
|
|
{
|
|
|
|
return FactionsPlayerListener.canPlayerUseBlock(player, block, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if player is allowed to use a specified item (flint&steel, buckets, etc) in a particular location
|
|
|
|
public boolean isPlayerAllowedToUseThisHere(Player player, Location location, Material material)
|
|
|
|
{
|
|
|
|
return FactionsPlayerListener.playerCanUseItemHere(player, location, material, true);
|
|
|
|
}
|
2013-04-10 08:55:32 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-10-08 22:03:44 +02:00
|
|
|
}
|