mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Synchronise server configs to the client
This commit is contained in:
parent
da38726bc0
commit
dcaaca149b
10 changed files with 80 additions and 11 deletions
|
@ -15,9 +15,11 @@ public class Config extends com.minelittlepony.common.util.settings.Config {
|
|||
.addComment("whilst any ones left off are not permitted")
|
||||
.addComment("An empty list disables whitelisting entirely.");
|
||||
|
||||
@Deprecated
|
||||
public final Setting<Set<String>> wantItNeedItEntityExcludelist = value("server", "wantItNeedItEntityExcludelist", (Set<String>)new HashSet<>(Set.of("minecraft:creeper")))
|
||||
.addComment("A list of entity types that are immune to the want it need it spell's effects");
|
||||
|
||||
@Deprecated
|
||||
public final Setting<Set<String>> dimensionsWithoutAtmosphere = value("server", "dimensionsWithoutAtmosphere", (Set<String>)new HashSet<String>())
|
||||
.addComment("A list of dimensions ids that do not have an atmosphere, and thus shouldn't allow pegasi to fly.");
|
||||
|
||||
|
@ -66,4 +68,8 @@ public class Config extends com.minelittlepony.common.util.settings.Config {
|
|||
.registerTypeAdapter(Race.class, RegistryTypeAdapter.of(Race.REGISTRY))
|
||||
), GamePaths.getConfigDirectory().resolve("unicopia.json"));
|
||||
}
|
||||
|
||||
public SyncedConfig toSynced() {
|
||||
return new SyncedConfig(wantItNeedItEntityExcludelist.get(), dimensionsWithoutAtmosphere.get());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,6 +34,9 @@ public class InteractionManager {
|
|||
|
||||
private static InteractionManager INSTANCE = new InteractionManager();
|
||||
|
||||
@Nullable
|
||||
private SyncedConfig config;
|
||||
|
||||
public static InteractionManager getInstance() {
|
||||
return INSTANCE;
|
||||
}
|
||||
|
@ -110,4 +113,15 @@ public class InteractionManager {
|
|||
public final Race getClientSpecies() {
|
||||
return getClientPony().map(Pony::getSpecies).orElse(Race.HUMAN);
|
||||
}
|
||||
|
||||
public void setSyncedConfig(SyncedConfig config) {
|
||||
this.config = config;
|
||||
}
|
||||
|
||||
public SyncedConfig getSyncedConfig() {
|
||||
if (config == null) {
|
||||
config = Unicopia.getConfig().toSynced();
|
||||
}
|
||||
return config;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
package com.minelittlepony.unicopia;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
public record SyncedConfig (
|
||||
Set<String> wantItNeedItExcludeList,
|
||||
Set<String> dimensionsWithoutAtmosphere) {
|
||||
}
|
|
@ -8,7 +8,6 @@ import net.minecraft.util.Identifier;
|
|||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
||||
import com.minelittlepony.unicopia.ability.Abilities;
|
||||
import com.minelittlepony.unicopia.ability.data.tree.TreeTypeLoader;
|
||||
import com.minelittlepony.unicopia.ability.magic.spell.effect.SpellType;
|
||||
|
|
|
@ -4,9 +4,12 @@ import java.util.HashSet;
|
|||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.function.Function;
|
||||
import com.minelittlepony.common.util.settings.Config;
|
||||
import com.minelittlepony.common.util.settings.Setting;
|
||||
import com.minelittlepony.unicopia.Config;
|
||||
import com.minelittlepony.unicopia.InteractionManager;
|
||||
import com.minelittlepony.unicopia.Unicopia;
|
||||
import com.minelittlepony.unicopia.network.Channel;
|
||||
import com.minelittlepony.unicopia.network.MsgConfigurationChange;
|
||||
import com.mojang.brigadier.builder.LiteralArgumentBuilder;
|
||||
import com.mojang.brigadier.exceptions.CommandSyntaxException;
|
||||
import com.mojang.brigadier.suggestion.SuggestionProvider;
|
||||
|
@ -36,10 +39,10 @@ public class ConfigCommand {
|
|||
return CommandManager.literal(configName)
|
||||
.then(CommandManager.literal("clear").executes(source -> {
|
||||
source.getSource().sendFeedback(() -> Text.translatable("command.unicopia.config.clear", configName), true);
|
||||
return changeProperty(configName, values -> new HashSet<>());
|
||||
return changeProperty(source.getSource(), configName, values -> new HashSet<>());
|
||||
}))
|
||||
.then(CommandManager.literal("add").then(
|
||||
CommandManager.argument("id", IdentifierArgumentType.identifier()).suggests(suggestions).executes(source -> ConfigCommand.<Set<String>>changeProperty(configName, values -> {
|
||||
CommandManager.argument("id", IdentifierArgumentType.identifier()).suggests(suggestions).executes(source -> ConfigCommand.<Set<String>>changeProperty(source.getSource(), configName, values -> {
|
||||
String value = IdentifierArgumentType.getIdentifier(source, "id").toString();
|
||||
source.getSource().sendFeedback(() -> Text.translatable("command.unicopia.config.add", value, configName), true);
|
||||
values.add(value);
|
||||
|
@ -52,7 +55,7 @@ public class ConfigCommand {
|
|||
.map(Identifier::tryParse)
|
||||
.filter(Objects::nonNull)
|
||||
.toList(), builder);
|
||||
}).executes(source -> ConfigCommand.<Set<String>>changeProperty(configName, values -> {
|
||||
}).executes(source -> ConfigCommand.<Set<String>>changeProperty(source.getSource(), configName, values -> {
|
||||
String value = IdentifierArgumentType.getIdentifier(source, "id").toString();
|
||||
source.getSource().sendFeedback(() -> Text.translatable("command.unicopia.config.remove", value, configName), true);
|
||||
values.remove(value);
|
||||
|
@ -73,11 +76,18 @@ public class ConfigCommand {
|
|||
return (context, builder) -> CommandSource.suggestIdentifiers(wrapper.streamKeys().map(RegistryKey::getValue), builder);
|
||||
}
|
||||
|
||||
private static <T> int changeProperty(String configName, Function<T, T> changer) {
|
||||
private static <T> int changeProperty(ServerCommandSource source, String configName, Function<T, T> changer) {
|
||||
Config config = Unicopia.getConfig();
|
||||
Setting<T> setting = config.getCategory("server").get(configName);
|
||||
setting.set(changer.apply(setting.get()));
|
||||
config.save();
|
||||
|
||||
MsgConfigurationChange msg = new MsgConfigurationChange(config.toSynced());
|
||||
InteractionManager.getInstance().setSyncedConfig(msg.config());
|
||||
source.getServer().getPlayerManager().getPlayerList().forEach(recipient -> {
|
||||
Channel.CONFIGURATION_CHANGE.sendToPlayer(msg, recipient);
|
||||
});
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@ import org.jetbrains.annotations.NotNull;
|
|||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import com.minelittlepony.unicopia.Affinity;
|
||||
import com.minelittlepony.unicopia.InteractionManager;
|
||||
import com.minelittlepony.unicopia.Race;
|
||||
import com.minelittlepony.unicopia.Unicopia;
|
||||
import com.minelittlepony.unicopia.WeaklyOwned;
|
||||
import com.minelittlepony.unicopia.ability.magic.*;
|
||||
import com.minelittlepony.unicopia.ability.magic.spell.Spell;
|
||||
|
@ -147,7 +147,7 @@ public class Creature extends Living<LivingEntity> implements WeaklyOwned.Mutabl
|
|||
|
||||
DynamicTargetGoal targetter = new DynamicTargetGoal((MobEntity)entity);
|
||||
targets.add(1, targetter);
|
||||
if (!Unicopia.getConfig().wantItNeedItEntityExcludelist.get().contains(EntityType.getId(entity.getType()).toString())) {
|
||||
if (!InteractionManager.getInstance().getSyncedConfig().wantItNeedItExcludeList().contains(EntityType.getId(entity.getType()).toString())) {
|
||||
goals.add(1, new WantItTakeItGoal(this, targetter));
|
||||
}
|
||||
if (entity.getType().getSpawnGroup() == SpawnGroup.MONSTER) {
|
||||
|
|
|
@ -199,7 +199,7 @@ public class PlayerPhysics extends EntityPhysics<PlayerEntity> implements Tickab
|
|||
DimensionType dimension = entity.getWorld().getDimension();
|
||||
|
||||
if ((RegistryUtils.isIn(entity.getWorld(), dimension, RegistryKeys.DIMENSION_TYPE, UTags.DimensionTypes.HAS_NO_ATMOSPHERE)
|
||||
|| Unicopia.getConfig().dimensionsWithoutAtmosphere.get().contains(RegistryUtils.getId(entity.getWorld(), dimension, RegistryKeys.DIMENSION_TYPE).toString()))
|
||||
|| InteractionManager.getInstance().getSyncedConfig().dimensionsWithoutAtmosphere().contains(RegistryUtils.getId(entity.getWorld(), dimension, RegistryKeys.DIMENSION_TYPE).toString()))
|
||||
&& !OxygenApi.API.get().hasOxygen(entity.getWorld(), entity.getBlockPos())) {
|
||||
return FlightType.NONE;
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@ public interface Channel {
|
|||
S2CPacketType<MsgOtherPlayerCapabilities> SERVER_OTHER_PLAYER_CAPABILITIES = SimpleNetworking.serverToClient(Unicopia.id("other_player_capabilities"), MsgOtherPlayerCapabilities::new);
|
||||
S2CPacketType<MsgPlayerAnimationChange> SERVER_PLAYER_ANIMATION_CHANGE = SimpleNetworking.serverToClient(Unicopia.id("other_player_animation_change"), MsgPlayerAnimationChange::new);
|
||||
S2CPacketType<MsgSkyAngle> SERVER_SKY_ANGLE = SimpleNetworking.serverToClient(Unicopia.id("sky_angle"), MsgSkyAngle::new);
|
||||
S2CPacketType<MsgConfigurationChange> CONFIGURATION_CHANGE = SimpleNetworking.serverToClient(Unicopia.id("config"), MsgConfigurationChange::new);
|
||||
S2CPacketType<MsgZapAppleStage> SERVER_ZAP_STAGE = SimpleNetworking.serverToClient(Unicopia.id("zap_stage"), MsgZapAppleStage::new);
|
||||
|
||||
static void bootstrap() {
|
||||
|
@ -53,8 +54,8 @@ public interface Channel {
|
|||
}
|
||||
sender.sendPacket(SERVER_RESOURCES.id(), new MsgServerResources().toBuffer());
|
||||
sender.sendPacket(SERVER_SKY_ANGLE.id(), new MsgSkyAngle(UnicopiaWorldProperties.forWorld(handler.getPlayer().getServerWorld()).getTangentalSkyAngle()).toBuffer());
|
||||
ZapAppleStageStore store = ZapAppleStageStore.get(handler.player.getServerWorld());
|
||||
sender.sendPacket(SERVER_ZAP_STAGE.id(), new MsgZapAppleStage(store.getStage()).toBuffer());
|
||||
sender.sendPacket(CONFIGURATION_CHANGE.id(), new MsgConfigurationChange(InteractionManager.getInstance().getSyncedConfig()).toBuffer());
|
||||
sender.sendPacket(SERVER_ZAP_STAGE.id(), new MsgZapAppleStage(ZapAppleStageStore.get(handler.player.getServerWorld()).getStage()).toBuffer());
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
package com.minelittlepony.unicopia.network;
|
||||
|
||||
import java.util.HashSet;
|
||||
|
||||
import com.minelittlepony.unicopia.SyncedConfig;
|
||||
import com.sollace.fabwork.api.packets.Packet;
|
||||
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.network.PacketByteBuf;
|
||||
|
||||
public record MsgConfigurationChange(SyncedConfig config) implements Packet<PlayerEntity> {
|
||||
public MsgConfigurationChange(PacketByteBuf buffer) {
|
||||
this(new SyncedConfig(
|
||||
buffer.readCollection(HashSet::new, PacketByteBuf::readString),
|
||||
buffer.readCollection(HashSet::new, PacketByteBuf::readString)
|
||||
));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void toBuffer(PacketByteBuf buffer) {
|
||||
buffer.writeCollection(config.wantItNeedItExcludeList(), PacketByteBuf::writeString);
|
||||
buffer.writeCollection(config.dimensionsWithoutAtmosphere(), PacketByteBuf::writeString);
|
||||
}
|
||||
|
||||
}
|
|
@ -2,6 +2,7 @@ package com.minelittlepony.unicopia.network.handler;
|
|||
|
||||
import java.util.Map;
|
||||
|
||||
import com.minelittlepony.unicopia.InteractionManager;
|
||||
import com.minelittlepony.unicopia.USounds;
|
||||
import com.minelittlepony.unicopia.ability.data.Rot;
|
||||
import com.minelittlepony.unicopia.ability.data.tree.TreeTypes;
|
||||
|
@ -35,6 +36,7 @@ public class ClientNetworkHandlerImpl {
|
|||
Channel.SERVER_ZAP_STAGE.receiver().addPersistentListener(this::handleZapStage);
|
||||
Channel.SERVER_PLAYER_ANIMATION_CHANGE.receiver().addPersistentListener(this::handlePlayerAnimation);
|
||||
Channel.SERVER_REQUEST_PLAYER_LOOK.receiver().addPersistentListener(this::handleCasterLookRequest);
|
||||
Channel.CONFIGURATION_CHANGE.receiver().addPersistentListener(this::handleConfigurationChange);
|
||||
}
|
||||
|
||||
private void handleTribeScreen(PlayerEntity sender, MsgTribeSelect packet) {
|
||||
|
@ -93,4 +95,8 @@ public class ClientNetworkHandlerImpl {
|
|||
|
||||
Channel.CLIENT_CASTER_LOOK.sendToServer(new Reply(packet.spellId(), Rot.of(player)));
|
||||
}
|
||||
|
||||
private void handleConfigurationChange(PlayerEntity sender, MsgConfigurationChange packet) {
|
||||
InteractionManager.getInstance().setSyncedConfig(packet.config());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue