mirror of
https://github.com/veralol/VeraSpigotAPI.git
synced 2024-11-10 01:01:32 +01:00
cleanup code
This commit is contained in:
parent
b839298eae
commit
f4d77f7d95
@ -1,6 +1,7 @@
|
|||||||
package lol.vera.spigot;
|
package lol.vera.spigot;
|
||||||
|
|
||||||
import lol.vera.spigot.implementation.ApiImplementation;
|
import lol.vera.spigot.implementation.PacketHandlerImplementation;
|
||||||
|
import lol.vera.spigot.implementation.KnockbackImplementation;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
|
||||||
@ -9,6 +10,10 @@ public class VeraSpigotAPI {
|
|||||||
|
|
||||||
public static VeraSpigotAPI INSTANCE = new VeraSpigotAPI();
|
public static VeraSpigotAPI INSTANCE = new VeraSpigotAPI();
|
||||||
|
|
||||||
private ApiImplementation implementation = new ApiImplementation.DEFAULT();
|
private KnockbackImplementation knockback
|
||||||
|
= new KnockbackImplementation.DEFAULT();
|
||||||
|
|
||||||
|
private PacketHandlerImplementation packetHandler
|
||||||
|
= new PacketHandlerImplementation.DEFAULT();
|
||||||
|
|
||||||
}
|
}
|
@ -8,16 +8,8 @@ import org.bukkit.event.Event;
|
|||||||
import org.bukkit.event.HandlerList;
|
import org.bukkit.event.HandlerList;
|
||||||
import org.bukkit.event.entity.CreatureSpawnEvent;
|
import org.bukkit.event.entity.CreatureSpawnEvent;
|
||||||
|
|
||||||
/**
|
|
||||||
* WARNING: This event only fires for a limited number of cases, and not for every case that CreatureSpawnEvent does.
|
|
||||||
*
|
|
||||||
* You should still listen to CreatureSpawnEvent as a backup, and only use this event as an "enhancement".
|
|
||||||
* The intent of this event is to improve server performance, so limited use cases.
|
|
||||||
*
|
|
||||||
* Currently: NATURAL and SPAWNER based reasons. Please submit a Pull Request for future additions.
|
|
||||||
* Also, Plugins that replace Entity Registrations with their own custom entities might not fire this event.
|
|
||||||
*/
|
|
||||||
public class PreCreatureSpawnEvent extends Event implements Cancellable {
|
public class PreCreatureSpawnEvent extends Event implements Cancellable {
|
||||||
|
|
||||||
private final Location location;
|
private final Location location;
|
||||||
private final EntityType type;
|
private final EntityType type;
|
||||||
private final CreatureSpawnEvent.SpawnReason reason;
|
private final CreatureSpawnEvent.SpawnReason reason;
|
||||||
@ -95,4 +87,5 @@ public class PreCreatureSpawnEvent extends Event implements Cancellable {
|
|||||||
public void setCancelled(boolean cancel) {
|
public void setCancelled(boolean cancel) {
|
||||||
cancelled = cancel;
|
cancelled = cancel;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
}
|
@ -14,20 +14,27 @@ public class PrePlayerDeathEvent extends PlayerEvent implements Cancellable {
|
|||||||
super(who);
|
super(who);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return If the death of this player is cancelled or not
|
||||||
|
*/
|
||||||
public boolean isCancelled() {
|
public boolean isCancelled() {
|
||||||
return this.cancelled;
|
return this.cancelled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set whether the event should be cancelled
|
||||||
|
* @param cancel true if you wish to cancel this event
|
||||||
|
*/
|
||||||
public void setCancelled(boolean cancel) {
|
public void setCancelled(boolean cancel) {
|
||||||
this.cancelled = cancel;
|
this.cancelled = cancel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public HandlerList getHandlers() {
|
|
||||||
return handlers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static HandlerList getHandlerList() {
|
public static HandlerList getHandlerList() {
|
||||||
return handlers;
|
return handlers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public HandlerList getHandlers() {
|
||||||
|
return handlers;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -1,16 +1,9 @@
|
|||||||
package lol.vera.spigot.implementation;
|
package lol.vera.spigot.implementation;
|
||||||
|
|
||||||
import lol.vera.spigot.handler.IMovementHandler;
|
|
||||||
import lol.vera.spigot.handler.IPacketHandler;
|
|
||||||
import lol.vera.spigot.knockback.KnockbackProfile;
|
import lol.vera.spigot.knockback.KnockbackProfile;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
|
||||||
|
|
||||||
public interface ApiImplementation {
|
public interface KnockbackImplementation {
|
||||||
|
|
||||||
void registerMovementHandlers(JavaPlugin plugin, IMovementHandler... movementHandlers);
|
|
||||||
|
|
||||||
void registerPacketHandlers(JavaPlugin plugin, IPacketHandler... packetHandlers);
|
|
||||||
|
|
||||||
KnockbackProfile getActiveKnockbackProfile();
|
KnockbackProfile getActiveKnockbackProfile();
|
||||||
|
|
||||||
@ -20,17 +13,7 @@ public interface ApiImplementation {
|
|||||||
|
|
||||||
void setActiveKnockbackProfile(Player player, KnockbackProfile knockbackProfile);
|
void setActiveKnockbackProfile(Player player, KnockbackProfile knockbackProfile);
|
||||||
|
|
||||||
class DEFAULT implements ApiImplementation {
|
class DEFAULT implements KnockbackImplementation {
|
||||||
|
|
||||||
@Override
|
|
||||||
public void registerMovementHandlers(JavaPlugin plugin, IMovementHandler... movementHandlers) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void registerPacketHandlers(JavaPlugin plugin, IPacketHandler... packetHandlers) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public KnockbackProfile getActiveKnockbackProfile() {
|
public KnockbackProfile getActiveKnockbackProfile() {
|
@ -0,0 +1,28 @@
|
|||||||
|
package lol.vera.spigot.implementation;
|
||||||
|
|
||||||
|
import lol.vera.spigot.handler.IMovementHandler;
|
||||||
|
import lol.vera.spigot.handler.IPacketHandler;
|
||||||
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
|
||||||
|
public interface PacketHandlerImplementation {
|
||||||
|
|
||||||
|
void registerMovementHandlers(JavaPlugin plugin, IMovementHandler... movementHandlers);
|
||||||
|
|
||||||
|
void registerPacketHandlers(JavaPlugin plugin, IPacketHandler... packetHandlers);
|
||||||
|
|
||||||
|
|
||||||
|
class DEFAULT implements PacketHandlerImplementation {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerMovementHandlers(JavaPlugin plugin, IMovementHandler... movementHandlers) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerPacketHandlers(JavaPlugin plugin, IPacketHandler... packetHandlers) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user