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;
|
2013-04-18 15:40:58 +02:00
|
|
|
import com.massivecraft.factions.integration.herochat.HerochatFeatures;
|
2013-04-24 11:30:00 +02:00
|
|
|
import com.massivecraft.factions.integration.lwc.LwcFeatures;
|
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-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; }
|
|
|
|
|
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-24 14:31:10 +02:00
|
|
|
// Initialize Database
|
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-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-24 16:10:16 +02:00
|
|
|
// Integrate
|
|
|
|
this.integrate(
|
|
|
|
HerochatFeatures.get(),
|
|
|
|
LwcFeatures.get()
|
|
|
|
);
|
|
|
|
|
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();
|
|
|
|
|
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
|
|
|
}
|
2013-04-10 08:55:32 +02:00
|
|
|
|
2011-10-08 22:03:44 +02:00
|
|
|
}
|