Skip to content

Commit

Permalink
Fixed TelekinesisUtils and updated to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Jan 5, 2021
1 parent 7f41eab commit b83a3dd
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ build.dependsOn publishToMavenLocal

group = 'com.willfp'
archivesBaseName = project.name
version = '1.0.4'
version = '1.0.5'
java.sourceCompatibility = JavaVersion.VERSION_1_8
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@
import org.bukkit.plugin.ServicePriority;
import org.jetbrains.annotations.NotNull;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.function.Function;

@UtilityClass
public final class TelekinesisUtils {
private final Object instance;
private final Class<?> clazz;

/**
* The test service registered to bukkit.
*/
private final TelekinesisTests tests;
private final Method testMethod;

private final Method registerMethod;

/**
* Test the player for telekinesis.
Expand All @@ -25,7 +32,13 @@ public final class TelekinesisUtils {
* @return If the player is telekinetic.
*/
public boolean testPlayer(@NotNull final Player player) {
return tests.testPlayer(player);
try {
return (boolean) testMethod.invoke(instance, player);
} catch (IllegalAccessException | InvocationTargetException e) {
e.printStackTrace();
}

return false;
}

/**
Expand All @@ -34,14 +47,33 @@ public boolean testPlayer(@NotNull final Player player) {
* @param test The test to register, where the boolean output is if the player is telekinetic.
*/
public void registerTest(@NotNull final Function<Player, Boolean> test) {
tests.registerTest(test);
try {
registerMethod.invoke(instance, test);
} catch (IllegalAccessException | InvocationTargetException e) {
e.printStackTrace();
}
}

static {
Method testMethod1;
Method registerMethod1;
if (Bukkit.getServicesManager().getKnownServices().stream().noneMatch(clazz -> clazz.getName().contains("TelekinesisTests"))) {
Bukkit.getServicesManager().register(TelekinesisTests.class, new EcoTelekinesisTests(), AbstractEcoPlugin.getInstance(), ServicePriority.Normal);
}

tests = (TelekinesisTests) Bukkit.getServicesManager().load(Bukkit.getServicesManager().getKnownServices().stream().filter(clazz -> clazz.getName().contains("TelekinesisTests")).findFirst().get());
instance = Bukkit.getServicesManager().load(Bukkit.getServicesManager().getKnownServices().stream().filter(clazz -> clazz.getName().contains("TelekinesisTests")).findFirst().get());
clazz = instance.getClass();

try {
testMethod1 = clazz.getDeclaredMethod("testPlayer", Player.class);
registerMethod1 = clazz.getDeclaredMethod("registerTest", Function.class);
} catch (NoSuchMethodException e) {
e.printStackTrace();
testMethod1 = null;
registerMethod1 = null;
}

testMethod = testMethod1;
registerMethod = registerMethod1;
}
}

0 comments on commit b83a3dd

Please sign in to comment.