aboutsummaryrefslogtreecommitdiff
path: root/api/src/main/java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2021-11-02 16:06:10 +0800
committershedaniel <daniel@shedaniel.me>2021-11-02 16:06:10 +0800
commitb9ab61fe8a1c10f5adb61814ad9328b29727a37a (patch)
treedfd1041ba6cccf6cda8fcc7d31a65a0a07284718 /api/src/main/java
parent1fe450ebee9eaf803f98895969f2abf2202730e5 (diff)
downloadRoughlyEnoughItems-b9ab61fe8a1c10f5adb61814ad9328b29727a37a.tar.gz
RoughlyEnoughItems-b9ab61fe8a1c10f5adb61814ad9328b29727a37a.tar.bz2
RoughlyEnoughItems-b9ab61fe8a1c10f5adb61814ad9328b29727a37a.zip
Refactor MenuInfoProvider to give more concrete info
Diffstat (limited to 'api/src/main/java')
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfo.java4
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoProvider.java40
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoRegistry.java16
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationContext.java5
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationProviderContext.java43
5 files changed, 106 insertions, 2 deletions
diff --git a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfo.java b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfo.java
index 313ab23de..b5ed1de67 100644
--- a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfo.java
+++ b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfo.java
@@ -34,6 +34,8 @@ import me.shedaniel.rei.api.common.transfer.info.clean.InputCleanHandler;
import me.shedaniel.rei.api.common.transfer.info.simple.SimplePlayerInventoryMenuInfo;
import me.shedaniel.rei.api.common.transfer.info.stack.SlotAccessor;
import me.shedaniel.rei.api.common.util.CollectionUtils;
+import net.fabricmc.api.EnvType;
+import net.fabricmc.api.Environment;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.server.level.ServerPlayer;
import net.minecraft.world.inventory.AbstractContainerMenu;
@@ -109,6 +111,7 @@ public interface MenuInfo<T extends AbstractContainerMenu, D extends Display> ex
* @throws MenuTransferException the exception to throw if something is wrong,
* this exception should be caught by the invoker
*/
+ @Environment(EnvType.CLIENT)
default void validate(MenuInfoContext<T, ?, D> context) throws MenuTransferException {
}
@@ -133,6 +136,7 @@ public interface MenuInfo<T extends AbstractContainerMenu, D extends Display> ex
* @return the {@link CompoundTag} serialized
*/
default CompoundTag save(MenuSerializationContext<T, ?, D> context, D display) {
+ // TODO Remove this, replace with getDisplay()
return DisplaySerializerRegistry.getInstance().save(display, new CompoundTag());
}
diff --git a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoProvider.java b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoProvider.java
index 393a6cab6..904c59dd4 100644
--- a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoProvider.java
+++ b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoProvider.java
@@ -25,7 +25,12 @@ package me.shedaniel.rei.api.common.transfer.info;
import me.shedaniel.rei.api.common.category.CategoryIdentifier;
import me.shedaniel.rei.api.common.display.Display;
+import net.fabricmc.api.EnvType;
+import net.fabricmc.api.Environment;
+import net.minecraft.nbt.CompoundTag;
+import net.minecraft.world.entity.player.Player;
import net.minecraft.world.inventory.AbstractContainerMenu;
+import org.jetbrains.annotations.ApiStatus;
import java.util.Optional;
@@ -37,5 +42,40 @@ import java.util.Optional;
*/
@FunctionalInterface
public interface MenuInfoProvider<T extends AbstractContainerMenu, D extends Display> {
+ @Environment(EnvType.CLIENT)
+ default Optional<MenuInfo<T, D>> provideClient(D display, T menu) {
+ return provide((CategoryIdentifier<D>) display.getCategoryIdentifier(), (Class<T>) menu.getClass());
+ }
+
+ default Optional<MenuInfo<T, D>> provide(CategoryIdentifier<D> display, T menu, MenuSerializationProviderContext<T, ?, D> context, CompoundTag networkTag) {
+ Optional<MenuInfo<T, D>> menuInfo = provide(display, (Class<T>) menu.getClass());
+ if (menuInfo.isPresent()) {
+ menuInfo.get().read(new MenuSerializationContext<T, Player, D>() {
+ @Override
+ public MenuInfo<T, D> getContainerInfo() {
+ return menuInfo.get();
+ }
+
+ @Override
+ public T getMenu() {
+ return context.getMenu();
+ }
+
+ @Override
+ public Player getPlayerEntity() {
+ return context.getPlayerEntity();
+ }
+
+ @Override
+ public CategoryIdentifier<D> getCategoryIdentifier() {
+ return context.getCategoryIdentifier();
+ }
+ }, networkTag);
+ }
+ return menuInfo;
+ }
+
+ @Deprecated
+ @ApiStatus.ScheduledForRemoval
Optional<MenuInfo<T, D>> provide(CategoryIdentifier<D> categoryId, Class<T> menuClass);
}
diff --git a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoRegistry.java b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoRegistry.java
index bd1b14ff6..fdb83fb30 100644
--- a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoRegistry.java
+++ b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuInfoRegistry.java
@@ -28,7 +28,11 @@ import me.shedaniel.rei.api.common.display.Display;
import me.shedaniel.rei.api.common.plugins.PluginManager;
import me.shedaniel.rei.api.common.plugins.REIServerPlugin;
import me.shedaniel.rei.api.common.registry.Reloadable;
+import net.fabricmc.api.EnvType;
+import net.fabricmc.api.Environment;
+import net.minecraft.nbt.CompoundTag;
import net.minecraft.world.inventory.AbstractContainerMenu;
+import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.Nullable;
import java.util.function.Predicate;
@@ -45,7 +49,17 @@ public interface MenuInfoRegistry extends Reloadable<REIServerPlugin> {
<D extends Display> void registerGeneric(Predicate<CategoryIdentifier<?>> categoryPredicate, MenuInfoProvider<?, D> menuInfo);
- @Nullable <C extends AbstractContainerMenu, D extends Display> MenuInfo<C, D> get(CategoryIdentifier<D> category, Class<C> menuClass);
+ @Nullable
+ @ApiStatus.ScheduledForRemoval
+ @Deprecated
+ <C extends AbstractContainerMenu, D extends Display> MenuInfo<C, D> get(CategoryIdentifier<D> category, Class<C> menuClass);
+
+ @Nullable
+ @Environment(EnvType.CLIENT)
+ <C extends AbstractContainerMenu, D extends Display> MenuInfo<C, D> getClient(D display, C menu);
+
+ @Nullable
+ <C extends AbstractContainerMenu, D extends Display> MenuInfo<C, D> get(CategoryIdentifier<D> category, C menu, MenuSerializationProviderContext<C, ?, D> context, CompoundTag tag);
int infoSize();
}
diff --git a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationContext.java b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationContext.java
index 7a335c064..b3ed73d5f 100644
--- a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationContext.java
+++ b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationContext.java
@@ -34,12 +34,15 @@ import net.minecraft.world.inventory.AbstractContainerMenu;
* @param <T> the type of {@link AbstractContainerMenu}
* @param <P> the type of {@link Player}, server sided contexts may pass {@link net.minecraft.server.level.ServerPlayer} instead
*/
-public interface MenuSerializationContext<T extends AbstractContainerMenu, P extends Player, D extends Display> {
+public interface MenuSerializationContext<T extends AbstractContainerMenu, P extends Player, D extends Display> extends MenuSerializationProviderContext<T, P, D> {
+ @Override
T getMenu();
+ @Override
P getPlayerEntity();
MenuInfo<T, D> getContainerInfo();
+ @Override
CategoryIdentifier<D> getCategoryIdentifier();
}
diff --git a/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationProviderContext.java b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationProviderContext.java
new file mode 100644
index 000000000..19a8cb78a
--- /dev/null
+++ b/api/src/main/java/me/shedaniel/rei/api/common/transfer/info/MenuSerializationProviderContext.java
@@ -0,0 +1,43 @@
+/*
+ * This file is licensed under the MIT License, part of Roughly Enough Items.
+ * Copyright (c) 2018, 2019, 2020, 2021 shedaniel
+ *
+ * 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 me.shedaniel.rei.api.common.transfer.info;
+
+import me.shedaniel.rei.api.common.category.CategoryIdentifier;
+import me.shedaniel.rei.api.common.display.Display;
+import net.minecraft.world.entity.player.Player;
+import net.minecraft.world.inventory.AbstractContainerMenu;
+
+/**
+ * Context for menu display serialization.
+ *
+ * @param <T> the type of {@link AbstractContainerMenu}
+ * @param <P> the type of {@link Player}, server sided contexts may pass {@link net.minecraft.server.level.ServerPlayer} instead
+ */
+public interface MenuSerializationProviderContext<T extends AbstractContainerMenu, P extends Player, D extends Display> {
+ T getMenu();
+
+ P getPlayerEntity();
+
+ CategoryIdentifier<D> getCategoryIdentifier();
+}