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.RelAdapter;
|
|
|
|
import com.massivecraft.factions.adapter.TerritoryAccessAdapter;
|
2017-03-10 21:40:31 +01:00
|
|
|
import com.massivecraft.factions.chat.ChatActive;
|
2017-02-10 18:34:42 +01:00
|
|
|
import com.massivecraft.factions.cmd.type.TypeFactionChunkChangeType;
|
|
|
|
import com.massivecraft.factions.cmd.type.TypeRel;
|
2014-10-08 06:38:26 +02:00
|
|
|
import com.massivecraft.factions.engine.EngineEcon;
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.entity.Board;
|
2017-06-11 19:47:54 +02:00
|
|
|
import com.massivecraft.factions.entity.BoardColl;
|
|
|
|
import com.massivecraft.factions.entity.FactionColl;
|
|
|
|
import com.massivecraft.factions.entity.MConfColl;
|
|
|
|
import com.massivecraft.factions.entity.MFlagColl;
|
|
|
|
import com.massivecraft.factions.entity.MPermColl;
|
|
|
|
import com.massivecraft.factions.entity.MPlayerColl;
|
2017-02-10 18:34:42 +01:00
|
|
|
import com.massivecraft.factions.event.EventFactionsChunkChangeType;
|
2013-04-23 17:01:43 +02:00
|
|
|
import com.massivecraft.factions.mixin.PowerMixin;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.MassivePlugin;
|
2017-06-11 19:47:54 +02:00
|
|
|
import com.massivecraft.massivecore.collections.MassiveList;
|
2017-02-10 18:34:42 +01:00
|
|
|
import com.massivecraft.massivecore.command.type.RegistryType;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.util.MUtil;
|
2014-09-13 10:24:49 +02:00
|
|
|
import com.massivecraft.massivecore.xlib.gson.GsonBuilder;
|
2017-03-24 13:05:58 +01:00
|
|
|
import org.bukkit.ChatColor;
|
2013-04-10 10:53:53 +02:00
|
|
|
|
2017-03-10 21:40:31 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2014-06-04 14:02:23 +02:00
|
|
|
public class Factions extends MassivePlugin
|
2011-10-08 22:03:44 +02:00
|
|
|
{
|
2013-04-09 13:12:13 +02:00
|
|
|
// -------------------------------------------- //
|
2013-12-03 17:16:41 +01:00
|
|
|
// CONSTANTS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public final static String FACTION_MONEY_ACCOUNT_ID_PREFIX = "faction-";
|
|
|
|
|
2014-10-01 22:00:08 +02:00
|
|
|
public final static String ID_NONE = "none";
|
|
|
|
public final static String ID_SAFEZONE = "safezone";
|
|
|
|
public final static String ID_WARZONE = "warzone";
|
|
|
|
|
2014-11-13 11:41:21 +01:00
|
|
|
public final static String NAME_NONE_DEFAULT = ChatColor.DARK_GREEN.toString() + "Wilderness";
|
|
|
|
public final static String NAME_SAFEZONE_DEFAULT = "SafeZone";
|
|
|
|
public final static String NAME_WARZONE_DEFAULT = "WarZone";
|
|
|
|
|
2013-12-03 17:16:41 +01:00
|
|
|
// -------------------------------------------- //
|
2013-04-09 13:12:13 +02:00
|
|
|
// INSTANCE & CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static Factions i;
|
|
|
|
public static Factions get() { return i; }
|
2017-03-24 11:51:25 +01:00
|
|
|
public Factions() { Factions.i = this; }
|
2013-04-09 13:12:13 +02:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
2011-10-08 22:03:44 +02:00
|
|
|
|
2013-04-23 17:01:43 +02:00
|
|
|
// Mixins
|
2017-02-10 18:34:42 +01:00
|
|
|
@Deprecated public PowerMixin getPowerMixin() { return PowerMixin.get(); }
|
|
|
|
@Deprecated public void setPowerMixin(PowerMixin powerMixin) { PowerMixin.get().setInstance(powerMixin); }
|
2013-04-25 09:49:39 +02:00
|
|
|
|
2013-04-09 13:12:13 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2011-10-08 22:03:44 +02:00
|
|
|
@Override
|
2016-02-25 22:28:09 +01:00
|
|
|
public void onEnableInner()
|
2011-10-08 22:03:44 +02:00
|
|
|
{
|
2017-02-22 08:22:08 +01:00
|
|
|
// Register types
|
|
|
|
RegistryType.register(Rel.class, TypeRel.get());
|
|
|
|
RegistryType.register(EventFactionsChunkChangeType.class, TypeFactionChunkChangeType.get());
|
|
|
|
|
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());
|
2017-03-10 21:40:31 +01:00
|
|
|
|
2016-02-25 22:28:09 +01:00
|
|
|
// Activate
|
2017-03-10 21:40:31 +01:00
|
|
|
this.activateAuto();
|
|
|
|
this.activate(this.getClassesActive("chat", ChatActive.class));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-06-11 19:47:54 +02:00
|
|
|
@Override
|
|
|
|
public List<Class<?>> getClassesActiveColls()
|
|
|
|
{
|
|
|
|
// MConf should always be activated first for all plugins. It's simply a standard. The config should have no dependencies.
|
|
|
|
// MFlag and MPerm are both dependency free.
|
|
|
|
// Next we activate Faction, MPlayer and Board. The order is carefully chosen based on foreign keys and indexing direction.
|
|
|
|
// MPlayer --> Faction
|
|
|
|
// We actually only have an index that we maintain for the MPlayer --> Faction one.
|
|
|
|
// The Board could currently be activated in any order but the current placement is an educated guess.
|
|
|
|
// In the future we might want to find all chunks from the faction or something similar.
|
|
|
|
// We also have the /f access system where the player can be granted specific access, possibly supporting the idea of such a reverse index.
|
|
|
|
return new MassiveList<Class<?>>(
|
|
|
|
MConfColl.class,
|
|
|
|
MFlagColl.class,
|
|
|
|
MPermColl.class,
|
|
|
|
FactionColl.class,
|
|
|
|
MPlayerColl.class,
|
|
|
|
BoardColl.class
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-03-10 21:40:31 +01:00
|
|
|
@Override
|
|
|
|
public List<Class<?>> getClassesActiveEngines()
|
|
|
|
{
|
|
|
|
List<Class<?>> ret = super.getClassesActiveEngines();
|
|
|
|
|
|
|
|
ret.remove(EngineEcon.class);
|
|
|
|
ret.add(EngineEcon.class);
|
2017-01-03 11:47:51 +01:00
|
|
|
|
2017-03-10 21:40:31 +01:00
|
|
|
return ret;
|
2011-10-08 22:03:44 +02:00
|
|
|
}
|
|
|
|
|
2017-03-24 14:19:26 +01:00
|
|
|
@Override
|
|
|
|
public GsonBuilder getGsonBuilder()
|
2011-10-08 22:03:44 +02:00
|
|
|
{
|
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())
|
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
|
|
|
}
|