2013-08-27 17:14:08 +02:00
|
|
|
package nautilus.game.arcade;
|
2014-04-02 06:19:58 +02:00
|
|
|
|
2013-08-27 17:14:08 +02:00
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.BufferedWriter;
|
|
|
|
import java.io.DataInputStream;
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileInputStream;
|
|
|
|
import java.io.FileWriter;
|
|
|
|
import java.io.InputStreamReader;
|
|
|
|
|
|
|
|
import mineplex.core.account.CoreClientManager;
|
2013-10-16 03:23:23 +02:00
|
|
|
import mineplex.core.antihack.AntiHack;
|
2013-08-31 05:15:16 +02:00
|
|
|
import mineplex.core.antistack.AntiStack;
|
2014-03-09 09:50:13 +01:00
|
|
|
import mineplex.core.blood.Blood;
|
2013-08-27 17:14:08 +02:00
|
|
|
import mineplex.core.command.CommandCenter;
|
|
|
|
import mineplex.core.common.util.FileUtil;
|
|
|
|
import mineplex.core.common.util.UtilServer;
|
|
|
|
import mineplex.core.creature.Creature;
|
2013-08-31 05:15:16 +02:00
|
|
|
import mineplex.core.disguise.DisguiseManager;
|
2013-08-27 17:14:08 +02:00
|
|
|
import mineplex.core.donation.DonationManager;
|
|
|
|
import mineplex.core.itemstack.ItemStackFactory;
|
2014-03-09 09:50:13 +01:00
|
|
|
import mineplex.core.memory.MemoryFix;
|
2013-08-27 17:14:08 +02:00
|
|
|
import mineplex.core.message.MessageManager;
|
2013-09-04 08:31:29 +02:00
|
|
|
import mineplex.core.monitor.LagMeter;
|
2013-08-27 17:14:08 +02:00
|
|
|
import mineplex.core.npc.NpcManager;
|
|
|
|
import mineplex.core.packethandler.PacketHandler;
|
2013-09-02 13:19:56 +02:00
|
|
|
import mineplex.core.portal.Portal;
|
2013-08-27 17:14:08 +02:00
|
|
|
import mineplex.core.punish.Punish;
|
|
|
|
import mineplex.core.recharge.Recharge;
|
|
|
|
import mineplex.core.spawn.Spawn;
|
2013-09-18 00:50:23 +02:00
|
|
|
import mineplex.core.status.ServerStatusManager;
|
2013-08-27 17:14:08 +02:00
|
|
|
import mineplex.core.teleport.Teleport;
|
2013-09-02 13:19:56 +02:00
|
|
|
import mineplex.core.updater.FileUpdater;
|
2013-08-27 17:14:08 +02:00
|
|
|
import mineplex.core.updater.Updater;
|
|
|
|
import mineplex.minecraft.game.core.combat.CombatManager;
|
|
|
|
import mineplex.minecraft.game.core.condition.ConditionManager;
|
|
|
|
import mineplex.minecraft.game.core.damage.DamageManager;
|
|
|
|
import nautilus.game.arcade.game.GameServerConfig;
|
|
|
|
import nautilus.minecraft.core.INautilusPlugin;
|
|
|
|
|
|
|
|
import org.bukkit.Server;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.plugin.PluginManager;
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
2014-04-03 06:48:58 +02:00
|
|
|
|
|
|
|
public class Arcade extends JavaPlugin implements INautilusPlugin
|
2014-04-04 04:26:00 +02:00
|
|
|
{
|
2014-04-03 06:48:58 +02:00
|
|
|
private String WEB_CONFIG = "webServer";
|
|
|
|
|
|
|
|
//Modules
|
|
|
|
private CoreClientManager _clientManager;
|
2014-04-04 04:26:00 +02:00
|
|
|
private DonationManager _donationManager;
|
2013-08-27 17:14:08 +02:00
|
|
|
private DamageManager _damageManager;
|
|
|
|
|
|
|
|
private ArcadeManager _gameManager;
|
2014-04-03 06:48:58 +02:00
|
|
|
|
2014-04-02 12:22:21 +02:00
|
|
|
@Override
|
|
|
|
public void onEnable()
|
|
|
|
{
|
|
|
|
//Delete Old Games Folders
|
|
|
|
DeleteFolders();
|
2014-04-04 04:26:00 +02:00
|
|
|
|
|
|
|
//Configs
|
2014-02-21 22:32:14 +01:00
|
|
|
getConfig().addDefault(WEB_CONFIG, "http://accounts.mineplex.com/");
|
2013-08-27 17:14:08 +02:00
|
|
|
getConfig().set(WEB_CONFIG, getConfig().getString(WEB_CONFIG));
|
|
|
|
saveConfig();
|
2014-04-04 04:26:00 +02:00
|
|
|
|
|
|
|
_clientManager = CoreClientManager.Initialize(this, GetWebServerAddress());
|
2014-04-02 12:22:21 +02:00
|
|
|
|
2013-08-27 17:14:08 +02:00
|
|
|
CommandCenter.Initialize(this, _clientManager);
|
2014-04-02 06:19:58 +02:00
|
|
|
|
2014-04-04 04:26:00 +02:00
|
|
|
ItemStackFactory.Initialize(this, false);
|
|
|
|
Recharge.Initialize(this);
|
|
|
|
|
|
|
|
_donationManager = new DonationManager(this, GetWebServerAddress());
|
2013-08-27 17:14:08 +02:00
|
|
|
ConditionManager conditionManager = new ConditionManager(this);
|
2014-04-04 04:26:00 +02:00
|
|
|
|
2013-08-27 17:14:08 +02:00
|
|
|
new MessageManager(this, _clientManager);
|
2014-04-04 04:26:00 +02:00
|
|
|
|
2013-09-13 04:24:33 +02:00
|
|
|
AntiStack antistack = new AntiStack(this);
|
2013-08-31 05:15:16 +02:00
|
|
|
|
2014-03-09 09:50:13 +01:00
|
|
|
Creature creature = new Creature(this);
|
|
|
|
Spawn spawn = new Spawn(this);
|
|
|
|
Teleport teleport = new Teleport(this, _clientManager, spawn);
|
2013-09-02 13:19:56 +02:00
|
|
|
new FileUpdater(this, new Portal(this));
|
2014-03-14 01:56:05 +01:00
|
|
|
ServerStatusManager serverStatusManager = new ServerStatusManager(this, new LagMeter(this, _clientManager));
|
2014-04-02 12:22:21 +02:00
|
|
|
|
2013-09-02 07:06:20 +02:00
|
|
|
PacketHandler packetHandler = new PacketHandler(this);
|
|
|
|
DisguiseManager disguiseManager = new DisguiseManager(this, packetHandler);
|
2014-04-02 12:22:21 +02:00
|
|
|
|
2014-03-09 09:50:13 +01:00
|
|
|
_damageManager = new DamageManager(this, new CombatManager(this), new NpcManager(this, creature), disguiseManager);
|
2014-04-04 04:26:00 +02:00
|
|
|
|
2013-11-07 00:18:36 +01:00
|
|
|
Portal portal = new Portal(this);
|
2014-04-02 12:22:21 +02:00
|
|
|
|
|
|
|
//Arcade Manager
|
2014-03-14 01:56:05 +01:00
|
|
|
_gameManager = new ArcadeManager(this, serverStatusManager, ReadServerConfig(), _clientManager, _donationManager, conditionManager, _damageManager, disguiseManager, creature, teleport, new Blood(this), antistack, portal, packetHandler, GetWebServerAddress());
|
2013-10-30 23:45:11 +01:00
|
|
|
|
2013-11-07 05:25:46 +01:00
|
|
|
Punish punish = new Punish(this, GetWebServerAddress(), _clientManager);
|
2013-11-07 00:18:36 +01:00
|
|
|
AntiHack.Initialize(this, punish, portal);
|
2013-10-30 23:45:11 +01:00
|
|
|
|
2013-10-14 06:51:38 +02:00
|
|
|
new MemoryFix(this);
|
|
|
|
|
2013-08-27 17:14:08 +02:00
|
|
|
//Updates
|
|
|
|
getServer().getScheduler().scheduleSyncRepeatingTask(this, new Updater(this), 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
2013-10-30 23:45:11 +01:00
|
|
|
public void onDisable()
|
2013-08-27 17:14:08 +02:00
|
|
|
{
|
|
|
|
for (Player player : UtilServer.getPlayers())
|
|
|
|
player.kickPlayer("Server Shutdown");
|
|
|
|
|
|
|
|
if (_gameManager.GetGame() != null)
|
|
|
|
if (_gameManager.GetGame().WorldData != null)
|
|
|
|
_gameManager.GetGame().WorldData.Uninitialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public GameServerConfig ReadServerConfig()
|
|
|
|
{
|
|
|
|
GameServerConfig config = new GameServerConfig();
|
|
|
|
|
|
|
|
//Load Track Data
|
|
|
|
String line = null;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
File file = new File("ArcadeSettings.config");
|
|
|
|
if (!file.exists())
|
|
|
|
WriteServerConfig(GetDefaultConfig());
|
|
|
|
|
|
|
|
FileInputStream fstream = new FileInputStream("ArcadeSettings.config");
|
|
|
|
DataInputStream in = new DataInputStream(fstream);
|
|
|
|
BufferedReader br = new BufferedReader(new InputStreamReader(in));
|
|
|
|
|
|
|
|
while ((line = br.readLine()) != null)
|
|
|
|
{
|
|
|
|
String[] tokens = line.split("=");
|
|
|
|
|
|
|
|
if (tokens.length < 2)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (tokens[0].equals("SERVER_TYPE"))
|
|
|
|
{
|
|
|
|
config.ServerType = tokens[1];
|
|
|
|
}
|
|
|
|
else if (tokens[0].equals("PLAYERS_MIN"))
|
|
|
|
{
|
|
|
|
config.MinPlayers = Integer.parseInt(tokens[1]);
|
|
|
|
}
|
|
|
|
else if (tokens[0].equals("PLAYERS_MAX"))
|
|
|
|
{
|
|
|
|
config.MaxPlayers = Integer.parseInt(tokens[1]);
|
|
|
|
}
|
|
|
|
//Games
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
GameType type = GameType.valueOf(tokens[0]);
|
|
|
|
boolean enabled = Boolean.valueOf(tokens[1]);
|
|
|
|
|
|
|
|
if (enabled)
|
|
|
|
config.GameList.add(type);
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
in.close();
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.IsValid())
|
|
|
|
config = GetDefaultConfig();
|
|
|
|
|
|
|
|
WriteServerConfig(config);
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
public GameServerConfig GetDefaultConfig()
|
|
|
|
{
|
|
|
|
GameServerConfig config = new GameServerConfig();
|
|
|
|
|
|
|
|
config.ServerType = "Minigames";
|
|
|
|
config.MinPlayers = 8;
|
|
|
|
config.MaxPlayers = 16;
|
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void WriteServerConfig(GameServerConfig config)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
FileWriter fstream = new FileWriter("ArcadeSettings.config");
|
|
|
|
BufferedWriter out = new BufferedWriter(fstream);
|
|
|
|
|
|
|
|
out.write("SERVER_TYPE=" + config.ServerType + "\n");
|
|
|
|
out.write("PLAYERS_MIN=" + config.MinPlayers + "\n");
|
|
|
|
out.write("PLAYERS_MAX=" + config.MaxPlayers + "\n");
|
|
|
|
out.write("\n\nGames List;\n");
|
|
|
|
|
|
|
|
for (GameType type : GameType.values())
|
|
|
|
{
|
|
|
|
out.write(type.toString() + "=" + config.GameList.contains(type) + "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
out.close();
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void DeleteFolders()
|
|
|
|
{
|
|
|
|
File curDir = new File(".");
|
|
|
|
|
|
|
|
File[] filesList = curDir.listFiles();
|
|
|
|
for(File file : filesList)
|
|
|
|
{
|
|
|
|
if (!file.isDirectory())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (file.getName().length() < 4)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!file.getName().substring(0, 4).equalsIgnoreCase("Game"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
FileUtil.DeleteFolder(file);
|
|
|
|
|
|
|
|
System.out.println("Deleted Old Game: " + file.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-10-17 09:37:57 +02:00
|
|
|
public JavaPlugin GetPlugin()
|
2013-08-27 17:14:08 +02:00
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String GetWebServerAddress()
|
|
|
|
{
|
|
|
|
String webServerAddress = getConfig().getString(WEB_CONFIG);
|
|
|
|
|
|
|
|
return webServerAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Server GetRealServer()
|
|
|
|
{
|
|
|
|
return getServer();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public PluginManager GetPluginManager()
|
|
|
|
{
|
|
|
|
return GetRealServer().getPluginManager();
|
|
|
|
}
|
|
|
|
}
|