2014-11-12 14:13:16 +01:00
|
|
|
package mineplex.game.clans;
|
|
|
|
|
2015-02-05 01:34:29 +01:00
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
import net.minecraft.server.v1_7_R4.MinecraftServer;
|
|
|
|
|
2014-11-12 14:13:16 +01:00
|
|
|
import mineplex.core.account.CoreClientManager;
|
2015-08-29 05:58:58 +02:00
|
|
|
import mineplex.core.achievement.AchievementManager;
|
2014-11-12 14:13:16 +01:00
|
|
|
import mineplex.core.antihack.AntiHack;
|
|
|
|
import mineplex.core.blockrestore.BlockRestore;
|
2015-05-02 01:02:06 +02:00
|
|
|
import mineplex.core.chat.Chat;
|
2014-11-12 14:13:16 +01:00
|
|
|
import mineplex.core.command.CommandCenter;
|
|
|
|
import mineplex.core.donation.DonationManager;
|
2014-12-08 09:55:20 +01:00
|
|
|
import mineplex.core.explosion.Explosion;
|
2014-11-12 14:13:16 +01:00
|
|
|
import mineplex.core.friend.FriendManager;
|
2015-02-11 03:15:44 +01:00
|
|
|
import mineplex.core.ignore.IgnoreManager;
|
2014-11-12 14:13:16 +01:00
|
|
|
import mineplex.core.inventory.InventoryManager;
|
|
|
|
import mineplex.core.itemstack.ItemStackFactory;
|
|
|
|
import mineplex.core.memory.MemoryFix;
|
|
|
|
import mineplex.core.message.MessageManager;
|
|
|
|
import mineplex.core.monitor.LagMeter;
|
|
|
|
import mineplex.core.portal.Portal;
|
|
|
|
import mineplex.core.preferences.PreferencesManager;
|
|
|
|
import mineplex.core.punish.Punish;
|
|
|
|
import mineplex.core.recharge.Recharge;
|
|
|
|
import mineplex.core.serverConfig.ServerConfiguration;
|
|
|
|
import mineplex.core.spawn.Spawn;
|
2015-08-29 05:58:58 +02:00
|
|
|
import mineplex.core.stats.StatsManager;
|
2014-11-12 14:13:16 +01:00
|
|
|
import mineplex.core.status.ServerStatusManager;
|
|
|
|
import mineplex.core.teleport.Teleport;
|
|
|
|
import mineplex.core.updater.FileUpdater;
|
|
|
|
import mineplex.core.updater.Updater;
|
2014-11-28 07:34:20 +01:00
|
|
|
import mineplex.game.clans.clans.ClansManager;
|
2014-12-29 12:44:00 +01:00
|
|
|
import mineplex.game.clans.shop.building.BuildingShop;
|
|
|
|
import mineplex.game.clans.shop.pvp.PvpShop;
|
2014-11-12 14:13:16 +01:00
|
|
|
|
|
|
|
public class Clans extends JavaPlugin
|
|
|
|
{
|
|
|
|
private String WEB_CONFIG = "webServer";
|
2015-06-22 05:38:25 +02:00
|
|
|
|
2014-11-12 14:13:16 +01:00
|
|
|
//Modules
|
|
|
|
private CoreClientManager _clientManager;
|
|
|
|
private DonationManager _donationManager;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnable()
|
|
|
|
{
|
|
|
|
//Configs
|
|
|
|
getConfig().addDefault(WEB_CONFIG, "http://accounts.mineplex.com/");
|
|
|
|
getConfig().set(WEB_CONFIG, getConfig().getString(WEB_CONFIG));
|
|
|
|
saveConfig();
|
|
|
|
|
|
|
|
String webServerAddress = getConfig().getString(WEB_CONFIG);
|
|
|
|
|
2015-01-23 08:18:38 +01:00
|
|
|
//Logger.initialize(this);
|
2014-11-12 14:13:16 +01:00
|
|
|
|
|
|
|
//Static Modules
|
|
|
|
CommandCenter.Initialize(this);
|
|
|
|
_clientManager = new CoreClientManager(this, webServerAddress);
|
|
|
|
CommandCenter.Instance.setClientManager(_clientManager);
|
|
|
|
|
|
|
|
ItemStackFactory.Initialize(this, false);
|
|
|
|
Recharge.Initialize(this);
|
|
|
|
|
2014-12-29 12:44:00 +01:00
|
|
|
_donationManager = new DonationManager(this, _clientManager, webServerAddress);
|
2014-11-12 14:13:16 +01:00
|
|
|
|
2015-03-02 21:33:04 +01:00
|
|
|
new ServerConfiguration(this, _clientManager);
|
2014-11-12 14:13:16 +01:00
|
|
|
|
|
|
|
PreferencesManager preferenceManager = new PreferencesManager(this, _clientManager, _donationManager);
|
|
|
|
|
2014-12-14 08:30:39 +01:00
|
|
|
ServerStatusManager serverStatusManager = new ServerStatusManager(this, _clientManager, new LagMeter(this, _clientManager));
|
2014-11-29 12:16:37 +01:00
|
|
|
new Spawn(this, serverStatusManager.getCurrentServerName());
|
|
|
|
Teleport teleport = new Teleport(this);
|
2015-01-11 09:42:31 +01:00
|
|
|
Portal portal = new Portal(this, _clientManager, serverStatusManager.getCurrentServerName());
|
2015-01-23 08:18:38 +01:00
|
|
|
new FileUpdater(this, portal, serverStatusManager.getCurrentServerName(), serverStatusManager.getRegion());
|
2014-11-12 14:13:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
Punish punish = new Punish(this, webServerAddress, _clientManager);
|
|
|
|
AntiHack.Initialize(this, punish, portal, preferenceManager, _clientManager);
|
|
|
|
AntiHack.Instance.setKick(false);
|
2015-02-11 03:15:44 +01:00
|
|
|
|
2014-11-12 14:13:16 +01:00
|
|
|
BlockRestore blockRestore = new BlockRestore(this);
|
2015-06-22 05:38:25 +02:00
|
|
|
|
2015-02-11 03:15:44 +01:00
|
|
|
IgnoreManager ignoreManager = new IgnoreManager(this, _clientManager, preferenceManager, portal);
|
2015-08-29 05:58:58 +02:00
|
|
|
Chat chat = new Chat(this, _clientManager, preferenceManager, new AchievementManager(new StatsManager(this, _clientManager), _clientManager, _donationManager), serverStatusManager.getCurrentServerName());
|
2015-05-02 01:02:06 +02:00
|
|
|
new MessageManager(this, _clientManager, preferenceManager, ignoreManager, punish, new FriendManager(this, _clientManager, preferenceManager, portal), chat);
|
2015-02-11 03:15:44 +01:00
|
|
|
|
2014-11-12 14:13:16 +01:00
|
|
|
new MemoryFix(this);
|
2014-12-08 09:55:20 +01:00
|
|
|
new Explosion(this, blockRestore);
|
2015-01-30 04:17:46 +01:00
|
|
|
new FriendManager(this, _clientManager, preferenceManager, portal);
|
2014-12-03 22:06:50 +01:00
|
|
|
new InventoryManager(this, _clientManager);
|
2014-11-12 14:13:16 +01:00
|
|
|
|
2014-12-29 12:44:00 +01:00
|
|
|
ClansManager clans = new ClansManager(this, serverStatusManager.getCurrentServerName(), _clientManager, _donationManager, blockRestore, teleport, webServerAddress);
|
2014-12-04 14:05:27 +01:00
|
|
|
new Recipes(this);
|
|
|
|
new Farming(this);
|
2014-12-29 12:44:00 +01:00
|
|
|
new BuildingShop(clans, _clientManager, _donationManager);
|
|
|
|
new PvpShop(clans, _clientManager, _donationManager);
|
2014-11-28 07:34:20 +01:00
|
|
|
|
2014-11-12 14:13:16 +01:00
|
|
|
//Updates
|
|
|
|
getServer().getScheduler().scheduleSyncRepeatingTask(this, new Updater(this), 1, 1);
|
|
|
|
|
|
|
|
MinecraftServer.getServer().getPropertyManager().setProperty("debug", true);
|
|
|
|
}
|
|
|
|
}
|