aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2022-06-20 00:33:48 +0800
committershedaniel <daniel@shedaniel.me>2022-06-28 03:21:12 +0800
commit8d4e35e2982b1ee1598564a41cf02e38729c0d1b (patch)
tree53b039658dab6c07a186dddcc5c46eb4f013898e /api
parentb5e41c49497a0fe7a234563b61af8d694f0b98f2 (diff)
downloadRoughlyEnoughItems-8d4e35e2982b1ee1598564a41cf02e38729c0d1b.tar.gz
RoughlyEnoughItems-8d4e35e2982b1ee1598564a41cf02e38729c0d1b.tar.bz2
RoughlyEnoughItems-8d4e35e2982b1ee1598564a41cf02e38729c0d1b.zip
Implement Config Addons, Close #908
Diffstat (limited to 'api')
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddon.java59
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddonRegistry.java56
-rw-r--r--api/src/main/java/me/shedaniel/rei/api/client/plugins/REIClientPlugin.java12
3 files changed, 127 insertions, 0 deletions
diff --git a/api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddon.java b/api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddon.java
new file mode 100644
index 000000000..ef1855128
--- /dev/null
+++ b/api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddon.java
@@ -0,0 +1,59 @@
+/*
+ * This file is licensed under the MIT License, part of Roughly Enough Items.
+ * Copyright (c) 2018, 2019, 2020, 2021, 2022 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.client.config.addon;
+
+import net.minecraft.client.gui.screens.Screen;
+import net.minecraft.network.chat.Component;
+import org.jetbrains.annotations.ApiStatus;
+
+/**
+ * A config addon, which will be shown in the REI config screen.
+ *
+ * @since 8.3
+ */
+@ApiStatus.Experimental
+public interface ConfigAddon {
+ /**
+ * Returns the name of the addon, this will be shown in the addons list.
+ *
+ * @return the name of the addon
+ */
+ Component getName();
+
+ /**
+ * Returns the description of the addon, this will be shown in the addons list.
+ *
+ * @return the description of the addon
+ */
+ Component getDescription();
+
+ /**
+ * Opens the config screen for this addon, given the parent screen.
+ * Do not call {@link net.minecraft.client.Minecraft#setScreen(Screen)} directly,
+ * and make sure to set the screen as the parent screen to exit the config screen.
+ *
+ * @param parent the parent screen
+ */
+ Screen createScreen(Screen parent);
+}
diff --git a/api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddonRegistry.java b/api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddonRegistry.java
new file mode 100644
index 000000000..0156e1347
--- /dev/null
+++ b/api/src/main/java/me/shedaniel/rei/api/client/config/addon/ConfigAddonRegistry.java
@@ -0,0 +1,56 @@
+/*
+ * This file is licensed under the MIT License, part of Roughly Enough Items.
+ * Copyright (c) 2018, 2019, 2020, 2021, 2022 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.client.config.addon;
+
+import me.shedaniel.rei.api.client.plugins.REIClientPlugin;
+import me.shedaniel.rei.api.common.plugins.PluginManager;
+import me.shedaniel.rei.api.common.registry.Reloadable;
+import org.jetbrains.annotations.ApiStatus;
+
+/**
+ * Registry for {@link ConfigAddon}s.
+ * Registered config addons will show up at the top of the config screen,
+ * and allow users to search and configure them easily.
+ * <p>
+ * REI does not provide serialization for config addons,
+ * that is up to the developer to implement.
+ *
+ * @since 8.3
+ */
+@ApiStatus.Experimental
+public interface ConfigAddonRegistry extends Reloadable<REIClientPlugin> {
+ /**
+ * @return the {@link PluginManager} instance
+ */
+ static ConfigAddonRegistry getInstance() {
+ return PluginManager.getClientInstance().get(ConfigAddonRegistry.class);
+ }
+
+ /**
+ * Registers a config addon. The addons displayed will be sorted by their name alphabetically.
+ *
+ * @param addon the addon to register
+ */
+ void register(ConfigAddon addon);
+}
diff --git a/api/src/main/java/me/shedaniel/rei/api/client/plugins/REIClientPlugin.java b/api/src/main/java/me/shedaniel/rei/api/client/plugins/REIClientPlugin.java
index 8eca42c42..9cf6cdbb1 100644
--- a/api/src/main/java/me/shedaniel/rei/api/client/plugins/REIClientPlugin.java
+++ b/api/src/main/java/me/shedaniel/rei/api/client/plugins/REIClientPlugin.java
@@ -23,6 +23,7 @@
package me.shedaniel.rei.api.client.plugins;
+import me.shedaniel.rei.api.client.config.addon.ConfigAddonRegistry;
import me.shedaniel.rei.api.client.entry.renderer.EntryRendererRegistry;
import me.shedaniel.rei.api.client.favorites.FavoriteEntryType;
import me.shedaniel.rei.api.client.registry.category.CategoryRegistry;
@@ -121,6 +122,17 @@ public interface REIClientPlugin extends REIPlugin<REIClientPlugin> {
default void registerTransferHandlers(TransferHandlerRegistry registry) {
}
+ /**
+ * Registers new config addons.
+ *
+ * @param registry the registry
+ * @since 8.3
+ */
+ @ApiStatus.OverrideOnly
+ @ApiStatus.Experimental
+ default void registerConfigAddons(ConfigAddonRegistry registry) {
+ }
+
@Override
default Class<REIClientPlugin> getPluginProviderClass() {
return REIClientPlugin.class;