mirror of
https://github.com/Zrips/Jobs.git
synced 2025-01-02 22:38:06 +01:00
118 lines
3.9 KiB
Java
118 lines
3.9 KiB
Java
/**
|
|
* Jobs Plugin for Bukkit
|
|
* Copyright (C) 2011 Zak Ford <zak.j.ford@gmail.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package com.gamingmesh.jobs;
|
|
|
|
import java.io.IOException;
|
|
|
|
import net.coreprotect.CoreProtect;
|
|
import net.coreprotect.CoreProtectAPI;
|
|
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.command.ConsoleCommandSender;
|
|
import org.bukkit.plugin.Plugin;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
import org.bukkit.ChatColor;
|
|
|
|
import com.gamingmesh.jobs.commands.JobsCommands;
|
|
import com.gamingmesh.jobs.config.ConfigManager;
|
|
import com.gamingmesh.jobs.config.JobConfig;
|
|
import com.gamingmesh.jobs.config.JobsConfiguration;
|
|
import com.gamingmesh.jobs.listeners.JobsListener;
|
|
import com.gamingmesh.jobs.listeners.JobsPaymentListener;
|
|
import com.gamingmesh.jobs.listeners.McMMOlistener;
|
|
import com.gamingmesh.jobs.listeners.PistonProtectionListener;
|
|
import com.gamingmesh.jobs.stuff.ScheduleUtil;
|
|
import com.gamingmesh.jobs.stuff.TabComplete;
|
|
import com.gamingmesh.jobs.config.YmlMaker;
|
|
|
|
public class JobsPlugin extends JavaPlugin {
|
|
public static Plugin instance;
|
|
public static CoreProtectAPI CPAPI;
|
|
public static boolean CPPresent = false;
|
|
|
|
@Override
|
|
public void onEnable() {
|
|
instance = this;
|
|
YmlMaker jobConfig = new YmlMaker(this, "jobConfig.yml");
|
|
jobConfig.saveDefaultConfig();
|
|
|
|
YmlMaker jobSigns = new YmlMaker(this, "Signs.yml");
|
|
jobSigns.saveDefaultConfig();
|
|
|
|
YmlMaker jobSchedule = new YmlMaker(this, "schedule.yml");
|
|
jobSchedule.saveDefaultConfig();
|
|
|
|
Jobs.setPermissionHandler(new PermissionHandler(this));
|
|
|
|
Jobs.setPluginLogger(getLogger());
|
|
|
|
Jobs.setDataFolder(getDataFolder());
|
|
|
|
ConfigManager.registerJobsConfiguration(new JobsConfiguration(this));
|
|
ConfigManager.registerJobConfig(new JobConfig(this));
|
|
|
|
getCommand("jobs").setExecutor(new JobsCommands());
|
|
|
|
this.getCommand("jobs").setTabCompleter(new TabComplete());
|
|
|
|
try {
|
|
Jobs.startup();
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
// register the listeners
|
|
getServer().getPluginManager().registerEvents(new JobsListener(this), this);
|
|
getServer().getPluginManager().registerEvents(new JobsPaymentListener(this), this);
|
|
|
|
if (McMMOlistener.CheckmcMMO())
|
|
getServer().getPluginManager().registerEvents(new McMMOlistener(this), this);
|
|
|
|
if (ConfigManager.getJobsConfiguration().useBlockProtection)
|
|
getServer().getPluginManager().registerEvents(new PistonProtectionListener(this), this);
|
|
|
|
// register economy
|
|
Bukkit.getScheduler().runTask(this, new HookEconomyTask(this));
|
|
|
|
if (getServer().getPluginManager().getPlugin("CoreProtect") != null) {
|
|
CPPresent = true;
|
|
CPAPI = ((CoreProtect) getServer().getPluginManager().getPlugin("CoreProtect")).getAPI();
|
|
}
|
|
|
|
// all loaded properly.
|
|
|
|
|
|
if (ConfigManager.getJobsConfiguration().useGlobalBoostScheduler)
|
|
ScheduleUtil.scheduler();
|
|
ScheduleUtil.DateUpdater();
|
|
|
|
String message = ChatColor.translateAlternateColorCodes('&', "&2Plugin has been enabled succesfully.");
|
|
ConsoleCommandSender console = Bukkit.getServer().getConsoleSender();
|
|
console.sendMessage(message);
|
|
}
|
|
|
|
@Override
|
|
public void onDisable() {
|
|
Jobs.shutdown();
|
|
String message = ChatColor.translateAlternateColorCodes('&', "&2Plugin has been disabled succesfully.");
|
|
ConsoleCommandSender console = Bukkit.getServer().getConsoleSender();
|
|
console.sendMessage(message);
|
|
}
|
|
}
|