/* * This file is part of NucleusFramework for Bukkit, licensed under the MIT License (MIT). * * Copyright (c) JCThePants (www.jcwhatever.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.jcwhatever.nucleus.internal.managed.nms; import com.jcwhatever.nucleus.Nucleus; import com.jcwhatever.nucleus.utils.nms.NmsManager; import com.jcwhatever.nucleus.utils.nms.NmsUtils; /** * NucleusFramework's internal NMS manager. */ public final class InternalNmsManager extends NmsManager { /** * The name of the internal action bar handler. */ public static final String ACTION_BAR = "ACTION_BAR"; /** * The name of the internal list header/footer handler. */ public static final String LIST_HEADER_FOOTER = "LIST_HEADER_FOOTER"; /** * The name of the internal misc. effect handler. */ public static final String EFFECT = "EFFECT"; /** * The name of the internal particle effect handler. */ public static final String PARTICLE_EFFECT = "PARTICLE_EFFECT"; /** * The name of the internal titles handler. */ public static final String TITLES = "TITLES"; /** * The name of the internal sound effect handler. */ public static final String SOUND_EFFECT = "SOUND_EFFECT"; /** * The name of the internal anvil view handler. */ public static final String ANVIL_VIEW = "ANVIL_VIEW"; /** * The name of the internal potion handler. */ public static final String POTIONS = "POTIONS"; /** * The name of the internal entity handler. */ public static final String ENTITY = "ENTITY"; /** * The name of the internal entity handler. */ public static final String CHAT = "CHAT"; /** * The name of the internal entity handler. */ public static final String VEHICLE = "VEHICLE"; private static INms _nms; /** * Get the NMS handler for the current Minecraft version. */ public static INms getNms() { if (_nms == null) { switch (NmsUtils.getNmsVersion()) { case "v1_8_R3": return _nms = new v1_8_R3_Nms(); case "v1_9_R1": return _nms = new v1_9_R1_Nms(); } } return _nms; } public InternalNmsManager() { super(Nucleus.getPlugin()); registerHandler("v1_8_R3", TITLES, NmsTitleHandler.class); registerHandler("v1_8_R3", ACTION_BAR, NmsActionBarHandler.class); registerHandler("v1_8_R3", LIST_HEADER_FOOTER, NmsListHeaderFooterHandler.class); registerHandler("v1_8_R3", SOUND_EFFECT, NmsSoundEffectHandler.class); registerHandler("v1_8_R3", PARTICLE_EFFECT, NmsParticleEffectHandler.class); registerHandler("v1_8_R3", ANVIL_VIEW, NmsAnvilViewHandler.class); registerHandler("v1_8_R3", EFFECT, NmsEffectHandler.class); registerHandler("v1_8_R3", ENTITY, NmsEntityHandler.class); registerHandler("v1_8_R3", CHAT, NmsChatHandler.class); registerHandler("v1_8_R3", VEHICLE, NmsVehicleHandler.class); registerHandler("v1_9_R1", TITLES, NmsTitleHandler.class); registerHandler("v1_9_R1", ACTION_BAR, NmsActionBarHandler.class); registerHandler("v1_9_R1", LIST_HEADER_FOOTER, NmsListHeaderFooterHandler.class); registerHandler("v1_9_R1", SOUND_EFFECT, NmsSoundEffectHandler.class); registerHandler("v1_9_R1", PARTICLE_EFFECT, NmsParticleEffectHandler.class); registerHandler("v1_9_R1", ANVIL_VIEW, NmsAnvilViewHandler.class); registerHandler("v1_9_R1", EFFECT, NmsEffectHandler.class); registerHandler("v1_9_R1", ENTITY, NmsEntityHandler.class); registerHandler("v1_9_R1", CHAT, NmsChatHandler.class); registerHandler("v1_9_R1", VEHICLE, NmsVehicleHandler.class); registerHandler(NmsUtils.getNmsVersion(), POTIONS, NmsPotionHandler.class); } }