diff options
author | Luck <git@lucko.me> | 2024-10-20 09:17:06 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2024-10-20 14:21:05 +0100 |
commit | 4face768621e459335f2e8e23f8db2fac017b834 (patch) | |
tree | e59c709881a817fc8d210593c5723ae0065492ff /spark-sponge8 | |
parent | 6effd0d018db25c53c042a88d50e5b43dfca56bd (diff) | |
download | spark-4face768621e459335f2e8e23f8db2fac017b834.tar.gz spark-4face768621e459335f2e8e23f8db2fac017b834.tar.bz2 spark-4face768621e459335f2e8e23f8db2fac017b834.zip |
Move some platform implementations to new repo
Diffstat (limited to 'spark-sponge8')
9 files changed, 0 insertions, 825 deletions
diff --git a/spark-sponge8/build.gradle b/spark-sponge8/build.gradle deleted file mode 100644 index a455e41..0000000 --- a/spark-sponge8/build.gradle +++ /dev/null @@ -1,49 +0,0 @@ -plugins { - id 'com.gradleup.shadow' version '8.3.0' -} - -dependencies { - implementation project(':spark-common') - compileOnly "org.spongepowered:spongeapi:8.0.0-SNAPSHOT" -} - -repositories { - maven { url 'https://repo.spongepowered.org/repository/maven-public/' } -} - -processResources { - from(sourceSets.main.resources.srcDirs) { - include 'META-INF/sponge_plugins.json' - expand ( - version: project.pluginVersion, - description: project.pluginDescription - ) - } -} - -shadowJar { - archiveFileName = "spark-${project.pluginVersion}-sponge8.jar" - - dependencies { - exclude(dependency('net.kyori:^(?!adventure-text-feature-pagination).+$')) - } - - relocate 'net.kyori.adventure.text.feature.pagination', 'me.lucko.spark.lib.adventure.pagination' - relocate 'net.bytebuddy', 'me.lucko.spark.lib.bytebuddy' - relocate 'com.google.protobuf', 'me.lucko.spark.lib.protobuf' - relocate 'org.objectweb.asm', 'me.lucko.spark.lib.asm' - relocate 'one.profiler', 'me.lucko.spark.lib.asyncprofiler' - relocate 'me.lucko.bytesocks.client', 'me.lucko.spark.lib.bytesocks' - relocate 'org.java_websocket', 'me.lucko.spark.lib.bytesocks.ws' - - exclude 'module-info.class' - exclude 'META-INF/maven/**' - exclude 'META-INF/proguard/**' - exclude '**/*.proto' - exclude '**/*.proto.bin' -} - -artifacts { - archives shadowJar - shadow shadowJar -} diff --git a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8ClassSourceLookup.java b/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8ClassSourceLookup.java deleted file mode 100644 index 52218e5..0000000 --- a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8ClassSourceLookup.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) <luck@lucko.me> - * Copyright (c) contributors - * - * 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 me.lucko.spark.sponge; - -import com.google.common.collect.ImmutableMap; -import me.lucko.spark.common.sampler.source.ClassSourceLookup; -import org.spongepowered.api.Game; -import org.spongepowered.plugin.PluginCandidate; -import org.spongepowered.plugin.PluginContainer; -import org.spongepowered.plugin.builtin.jvm.JVMPluginContainer; -import org.spongepowered.plugin.builtin.jvm.locator.JVMPluginResource; - -import java.lang.reflect.Field; -import java.nio.file.Path; -import java.util.Collection; -import java.util.Map; - -public class Sponge8ClassSourceLookup extends ClassSourceLookup.ByCodeSource { - private final Path modsDirectory; - private final Map<Path, String> pathToPluginMap; - - public Sponge8ClassSourceLookup(Game game) { - this.modsDirectory = game.gameDirectory().resolve("mods").toAbsolutePath().normalize(); - this.pathToPluginMap = constructPathToPluginIdMap(game.pluginManager().plugins()); - } - - @Override - public String identifyFile(Path path) { - String id = this.pathToPluginMap.get(path); - if (id != null) { - return id; - } - - if (!path.startsWith(this.modsDirectory)) { - return null; - } - - return super.identifyFileName(this.modsDirectory.relativize(path).toString()); - } - - // pretty nasty, but if it fails it doesn't really matter - @SuppressWarnings("unchecked") - private static Map<Path, String> constructPathToPluginIdMap(Collection<PluginContainer> plugins) { - ImmutableMap.Builder<Path, String> builder = ImmutableMap.builder(); - - try { - Field candidateField = JVMPluginContainer.class.getDeclaredField("candidate"); - candidateField.setAccessible(true); - - for (PluginContainer plugin : plugins) { - if (plugin instanceof JVMPluginContainer) { - PluginCandidate<JVMPluginResource> candidate = (PluginCandidate<JVMPluginResource>) candidateField.get(plugin); - Path path = candidate.resource().path().toAbsolutePath().normalize(); - builder.put(path, plugin.metadata().id()); - } - } - } catch (Exception e) { - // ignore - } - - return builder.build(); - } - -} diff --git a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8CommandSender.java b/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8CommandSender.java deleted file mode 100644 index 8bf67bd..0000000 --- a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8CommandSender.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) <luck@lucko.me> - * Copyright (c) contributors - * - * 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 me.lucko.spark.sponge; - -import me.lucko.spark.common.command.sender.AbstractCommandSender; -import net.kyori.adventure.audience.Audience; -import net.kyori.adventure.identity.Identity; -import net.kyori.adventure.text.Component; -import org.spongepowered.api.command.CommandCause; -import org.spongepowered.api.service.permission.Subject; -import org.spongepowered.api.util.Identifiable; - -import java.util.UUID; - -import static java.nio.charset.StandardCharsets.UTF_8; - -public class Sponge8CommandSender extends AbstractCommandSender<Subject> { - private final CommandCause cause; - private final Audience audience; - - public Sponge8CommandSender(CommandCause cause) { - super(cause); - this.cause = cause; - this.audience = cause.audience(); - } - - public <T extends Subject & Audience> Sponge8CommandSender(T cause) { - super(cause); - this.cause = null; - this.audience = cause; - } - - @Override - public String getName() { - return super.delegate.friendlyIdentifier().orElse(super.delegate.identifier()); - } - - @Override - public UUID getUniqueId() { - if (this.cause != null) { - Identifiable identifiable = this.cause.first(Identifiable.class).orElse(null); - if (identifiable != null) { - return identifiable.uniqueId(); - } - } - - try { - return UUID.fromString(super.delegate.identifier()); - } catch (Exception e) { - return UUID.nameUUIDFromBytes(super.delegate.identifier().getBytes(UTF_8)); - } - } - - @Override - public void sendMessage(Component message) { - this.audience.sendMessage(Identity.nil(), message); - } - - @Override - public boolean hasPermission(String permission) { - return super.delegate.hasPermission(permission); - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - Sponge8CommandSender that = (Sponge8CommandSender) o; - return this.getUniqueId().equals(that.getUniqueId()); - } - - @Override - public int hashCode() { - return getUniqueId().hashCode(); - } -} diff --git a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8PlatformInfo.java b/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8PlatformInfo.java deleted file mode 100644 index 840a686..0000000 --- a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8PlatformInfo.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) <luck@lucko.me> - * Copyright (c) contributors - * - * 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 me.lucko.spark.sponge; - -import me.lucko.spark.common.platform.PlatformInfo; -import org.spongepowered.api.Game; -import org.spongepowered.api.Platform; -import org.spongepowered.plugin.metadata.PluginMetadata; - -public class Sponge8PlatformInfo implements PlatformInfo { - private final Game game; - - public Sponge8PlatformInfo(Game game) { - this.game = game; - } - - @Override - public Type getType() { - return Type.SERVER; - } - - @Override - public String getName() { - return "Sponge"; - } - - @Override - public String getBrand() { - PluginMetadata brandMetadata = this.game.platform().container(Platform.Component.IMPLEMENTATION).metadata(); - return brandMetadata.name().orElseGet(brandMetadata::id); - } - - @Override - public String getVersion() { - return this.game.platform().container(Platform.Component.IMPLEMENTATION).metadata().version().toString(); - } - - @Override - public String getMinecraftVersion() { - return this.game.platform().minecraftVersion().name(); - } -} diff --git a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8PlayerPingProvider.java b/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8PlayerPingProvider.java deleted file mode 100644 index e908d0d..0000000 --- a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8PlayerPingProvider.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) <luck@lucko.me> - * Copyright (c) contributors - * - * 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 me.lucko.spark.sponge; - -import com.google.common.collect.ImmutableMap; -import me.lucko.spark.common.monitor.ping.PlayerPingProvider; -import org.spongepowered.api.Server; -import org.spongepowered.api.entity.living.player.server.ServerPlayer; - -import java.util.Map; - -public class Sponge8PlayerPingProvider implements PlayerPingProvider { - private final Server server; - - public Sponge8PlayerPingProvider(Server server) { - this.server = server; - } - - @Override - public Map<String, Integer> poll() { - ImmutableMap.Builder<String, Integer> builder = ImmutableMap.builder(); - for (ServerPlayer player : this.server.onlinePlayers()) { - builder.put(player.name(), player.connection().latency()); - } - return builder.build(); - } -} diff --git a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8SparkPlugin.java b/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8SparkPlugin.java deleted file mode 100644 index c675a8c..0000000 --- a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8SparkPlugin.java +++ /dev/null @@ -1,267 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) <luck@lucko.me> - * Copyright (c) contributors - * - * 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 me.lucko.spark.sponge; - -import com.google.common.base.Suppliers; -import com.google.inject.Inject; -import me.lucko.spark.common.SparkPlatform; -import me.lucko.spark.common.SparkPlugin; -import me.lucko.spark.common.command.sender.CommandSender; -import me.lucko.spark.common.monitor.ping.PlayerPingProvider; -import me.lucko.spark.common.platform.PlatformInfo; -import me.lucko.spark.common.platform.world.WorldInfoProvider; -import me.lucko.spark.common.sampler.ThreadDumper; -import me.lucko.spark.common.sampler.source.ClassSourceLookup; -import me.lucko.spark.common.sampler.source.SourceMetadata; -import me.lucko.spark.common.tick.TickHook; -import net.kyori.adventure.text.Component; -import org.apache.logging.log4j.Logger; -import org.checkerframework.checker.nullness.qual.NonNull; -import org.spongepowered.api.Game; -import org.spongepowered.api.Server; -import org.spongepowered.api.command.Command; -import org.spongepowered.api.command.CommandCause; -import org.spongepowered.api.command.CommandCompletion; -import org.spongepowered.api.command.CommandResult; -import org.spongepowered.api.command.parameter.ArgumentReader; -import org.spongepowered.api.command.registrar.tree.CommandTreeNode; -import org.spongepowered.api.config.ConfigDir; -import org.spongepowered.api.event.Listener; -import org.spongepowered.api.event.lifecycle.RegisterCommandEvent; -import org.spongepowered.api.event.lifecycle.StartedEngineEvent; -import org.spongepowered.api.event.lifecycle.StoppingEngineEvent; -import org.spongepowered.plugin.PluginContainer; -import org.spongepowered.plugin.builtin.jvm.Plugin; -import org.spongepowered.plugin.metadata.model.PluginContributor; - -import java.nio.file.Path; -import java.util.Collection; -import java.util.List; -import java.util.Optional; -import java.util.concurrent.ExecutorService; -import java.util.function.Supplier; -import java.util.logging.Level; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -@Plugin("spark") -public class Sponge8SparkPlugin implements SparkPlugin { - - private final PluginContainer pluginContainer; - private final Logger logger; - private final Game game; - private final Path configDirectory; - private final ExecutorService asyncExecutor; - private final Supplier<ExecutorService> syncExecutor; - private final ThreadDumper.GameThread gameThreadDumper = new ThreadDumper.GameThread(); - - private SparkPlatform platform; - - @Inject - public Sponge8SparkPlugin(PluginContainer pluginContainer, Logger logger, Game game, @ConfigDir(sharedRoot = false) Path configDirectory) { - this.pluginContainer = pluginContainer; - this.logger = logger; - this.game = game; - this.configDirectory = configDirectory; - this.asyncExecutor = game.asyncScheduler().executor(pluginContainer); - this.syncExecutor = Suppliers.memoize(() -> { - if (this.game.isServerAvailable()) { - return this.game.server().scheduler().executor(this.pluginContainer); - } else if (this.game.isClientAvailable()) { - return this.game.client().scheduler().executor(this.pluginContainer); - } else { - throw new IllegalStateException("Server and client both unavailable"); - } - }); - } - - - @Listener - public void onRegisterCommands(final RegisterCommandEvent<Command.Raw> event) { - event.register(this.pluginContainer, new SparkCommand(this), this.pluginContainer.metadata().id()); - } - - @Listener - public void onEnable(StartedEngineEvent<Server> event) { - this.gameThreadDumper.setThread(Thread.currentThread()); - - this.platform = new SparkPlatform(this); - this.platform.enable(); - } - - @Listener - public void onDisable(StoppingEngineEvent<Server> event) { - this.platform.disable(); - } - - @Override - public String getVersion() { - return this.pluginContainer.metadata().version().toString(); - } - - @Override - public Path getPluginDirectory() { - return this.configDirectory; - } - - @Override - public String getCommandName() { - return "spark"; - } - - @Override - public Stream<CommandSender> getCommandSenders() { - if (this.game.isServerAvailable()) { - return Stream.concat( - this.game.server().onlinePlayers().stream(), - Stream.of(this.game.systemSubject()) - ).map(Sponge8CommandSender::new); - } else { - return Stream.of(this.game.systemSubject()).map(Sponge8CommandSender::new); - } - } - - @Override - public void executeAsync(Runnable task) { - this.asyncExecutor.execute(task); - } - - @Override - public void executeSync(Runnable task) { - this.syncExecutor.get().execute(task); - } - - @Override - public void log(Level level, String msg) { - if (level == Level.INFO) { - this.logger.info(msg); - } else if (level == Level.WARNING) { - this.logger.warn(msg); - } else if (level == Level.SEVERE) { - this.logger.error(msg); - } else { - throw new IllegalArgumentException(level.getName()); - } - } - - @Override - public ThreadDumper getDefaultThreadDumper() { - return this.gameThreadDumper.get(); - } - - @Override - public TickHook createTickHook() { - return new Sponge8TickHook(this.pluginContainer, this.game); - } - - @Override - public ClassSourceLookup createClassSourceLookup() { - return new Sponge8ClassSourceLookup(this.game); - } - - @Override - public Collection<SourceMetadata> getKnownSources() { - return SourceMetadata.gather( - this.game.pluginManager().plugins(), - plugin -> plugin.metadata().id(), - plugin -> plugin.metadata().version().toString(), - plugin -> plugin.metadata().contributors().stream() - .map(PluginContributor::name) - .collect(Collectors.joining(", ")), - plugin -> plugin.metadata().description().orElse(null) - ); - } - - @Override - public PlayerPingProvider createPlayerPingProvider() { - if (this.game.isServerAvailable()) { - return new Sponge8PlayerPingProvider(this.game.server()); - } else { - return null; - } - } - - @Override - public WorldInfoProvider createWorldInfoProvider() { - if (this.game.isServerAvailable()) { - return new Sponge8WorldInfoProvider(this.game.server()); - } else { - return WorldInfoProvider.NO_OP; - } - } - - @Override - public PlatformInfo getPlatformInfo() { - return new Sponge8PlatformInfo(this.game); - } - - private static final class SparkCommand implements Command.Raw { - private final Sponge8SparkPlugin plugin; - - public SparkCommand(Sponge8SparkPlugin plugin) { - this.plugin = plugin; - } - - @Override - public CommandResult process(CommandCause cause, ArgumentReader.Mutable arguments) { - this.plugin.platform.executeCommand(new Sponge8CommandSender(cause), arguments.input().split(" ")); - return CommandResult.success(); - } - - @Override - public List<CommandCompletion> complete(CommandCause cause, ArgumentReader.Mutable arguments) { - return this.plugin.platform.tabCompleteCommand(new Sponge8CommandSender(cause), arguments.input().split(" ")) - .stream() - .map(CommandCompletion::of) - .collect(Collectors.toList()); - } - - @Override - public boolean canExecute(CommandCause cause) { - return this.plugin.platform.hasPermissionForAnyCommand(new Sponge8CommandSender(cause)); - } - - @Override - public Optional<Component> shortDescription(CommandCause cause) { - return Optional.of(Component.text("Main spark plugin command")); - } - - @Override - public Optional<Component> extendedDescription(CommandCause cause) { - return Optional.empty(); - } - - @Override - public Component usage(CommandCause cause) { - return Component.text("Run '/spark' to view usage."); - } - - @Override - public CommandTreeNode.Root commandTree() { - return Command.Raw.super.commandTree(); - } - - @Override - public Optional<Component> help(@NonNull CommandCause cause) { - return Optional.of(Component.text("Run '/spark' to view usage.")); - } - } -} diff --git a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8TickHook.java b/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8TickHook.java deleted file mode 100644 index 6502da2..0000000 --- a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8TickHook.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) <luck@lucko.me> - * Copyright (c) contributors - * - * 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 me.lucko.spark.sponge; - -import me.lucko.spark.common.tick.AbstractTickHook; -import me.lucko.spark.common.tick.TickHook; -import org.spongepowered.api.Game; -import org.spongepowered.api.scheduler.ScheduledTask; -import org.spongepowered.api.scheduler.Task; -import org.spongepowered.api.util.Ticks; -import org.spongepowered.plugin.PluginContainer; - -public class Sponge8TickHook extends AbstractTickHook implements TickHook, Runnable { - private final PluginContainer plugin; - private final Game game; - private ScheduledTask task; - - public Sponge8TickHook(PluginContainer plugin, Game game) { - this.plugin = plugin; - this.game = game; - } - - @Override - public void run() { - onTick(); - } - - @Override - public void start() { - Task task = Task.builder() - .interval(Ticks.of(1)) - .plugin(this.plugin) - .execute(this) - .build(); - this.task = this.game.server().scheduler().submit(task); - } - - @Override - public void close() { - this.task.cancel(); - } - -} diff --git a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8WorldInfoProvider.java b/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8WorldInfoProvider.java deleted file mode 100644 index 1bad9d7..0000000 --- a/spark-sponge8/src/main/java/me/lucko/spark/sponge/Sponge8WorldInfoProvider.java +++ /dev/null @@ -1,134 +0,0 @@ -/* - * This file is part of spark. - * - * Copyright (c) lucko (Luck) <luck@lucko.me> - * Copyright (c) contributors - * - * 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 me.lucko.spark.sponge; - -import com.google.common.collect.Iterables; -import com.google.common.collect.Lists; -import me.lucko.spark.common.platform.world.AbstractChunkInfo; -import me.lucko.spark.common.platform.world.CountMap; -import me.lucko.spark.common.platform.world.WorldInfoProvider; -import net.kyori.adventure.text.serializer.plain.PlainTextComponentSerializer; -import org.spongepowered.api.Server; -import org.spongepowered.api.entity.Entity; -import org.spongepowered.api.entity.EntityType; -import org.spongepowered.api.entity.EntityTypes; -import org.spongepowered.api.world.chunk.WorldChunk; -import org.spongepowered.api.world.gamerule.GameRule; -import org.spongepowered.api.world.gamerule.GameRules; -import org.spongepowered.api.world.server.ServerWorld; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.stream.Collectors; - -public class Sponge8WorldInfoProvider implements WorldInfoProvider { - private final Server server; - - public Sponge8WorldInfoProvider(Server server) { - this.server = server; - } - - @Override - public CountsResult pollCounts() { - int players = this.server.onlinePlayers().size(); - int entities = 0; - int tileEntities = 0; - int chunks = 0; - - for (ServerWorld world : this.server.worldManager().worlds()) { - entities += world.entities().size(); - tileEntities += world.blockEntities().size(); - chunks += Iterables.size(world.loadedChunks()); - } - - return new CountsResult(players, entities, tileEntities, chunks); - } - - @Override - public ChunksResult<Sponge7ChunkInfo> pollChunks() { - ChunksResult<Sponge7ChunkInfo> data = new ChunksResult<>(); - - for (ServerWorld world : this.server.worldManager().worlds()) { - List<WorldChunk> chunks = Lists.newArrayList(world.loadedChunks()); - - List<Sponge7ChunkInfo> list = new ArrayList<>(chunks.size()); - for (WorldChunk chunk : chunks) { - list.add(new Sponge7ChunkInfo(chunk)); - } - - data.put(world.key().value(), list); - } - - return data; - } - - @Override - public GameRulesResult pollGameRules() { - GameRulesResult data = new GameRulesResult(); - - List<GameRule<?>> rules = GameRules.registry().stream().collect(Collectors.toList()); - for (GameRule<?> rule : rules) { - data.putDefault(rule.name(), rule.defaultValue().toString()); - for (ServerWorld world : this.server.worldManager().worlds()) { - data.put(rule.name(), world.key().value(), world.properties().gameRule(rule).toString()); - } - } - - return data; - } - - @Override - public Collection<DataPackInfo> pollDataPacks() { - return this.server.packRepository().enabled().stream() - .map(pack -> new DataPackInfo( - pack.id(), - PlainTextComponentSerializer.plainText().serialize(pack.description()), - "unknown" - )) - .collect(Collectors.toList()); - } - - static final class Sponge7ChunkInfo extends AbstractChunkInfo<EntityType<?>> { - private final CountMap<EntityType<?>> entityCounts; - - Sponge7ChunkInfo(WorldChunk chunk) { - super(chunk.chunkPosition().x(), chunk.chunkPosition().z()); - - this.entityCounts = new CountMap.Simple<>(new HashMap<>()); - for (Entity entity : chunk.entities()) { - this.entityCounts.increment(entity.type()); - } - } - - @Override - public CountMap<EntityType<?>> getEntityCounts() { - return this.entityCounts; - } - - @Override - public String entityTypeName(EntityType<?> type) { - return EntityTypes.registry().valueKey(type).value(); - } - - } -} diff --git a/spark-sponge8/src/main/resources/META-INF/sponge_plugins.json b/spark-sponge8/src/main/resources/META-INF/sponge_plugins.json deleted file mode 100644 index 55b1772..0000000 --- a/spark-sponge8/src/main/resources/META-INF/sponge_plugins.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "loader": { - "name": "java_plain", - "version": "1.0" - }, - "license": "MIT", - "plugins": [ - { - "id": "spark", - "name": "spark-sponge8", - "version": "${version}", - "entrypoint": "me.lucko.spark.sponge.Sponge8SparkPlugin", - "description": "${description}", - "links": { - "homepage": "https://spark.lucko.me/", - "source": "https://github.com/lucko/spark", - "issues": "https://github.com/lucko/spark/issues" - }, - "contributors": [ - { - "name": "Luck", - "description": "Developer" - } - ], - "dependencies": [ - { - "id": "spongeapi", - "version": "8.0.0" - } - ] - } - ] -} |