Compare commits

..

13 commits

Author SHA1 Message Date
TheClashFruit db2d06817b
feat (ci): remove gradle cache as it's broken
All checks were successful
Build Project / build (push) Successful in 15m36s
2024-07-14 17:26:45 +02:00
TheClashFruit 88783230ea
fix: remove unused imports
Some checks failed
Build Project / build (push) Has been cancelled
2024-07-14 17:25:40 +02:00
TheClashFruit 04b0ba8ae0
fix: add the enchantment books back to the tools tab for 1.21 2024-07-14 17:23:33 +02:00
TheClashFruit 5068e3ed19
docs: remove gradle genSources instruction 2024-07-14 15:31:38 +02:00
TheClashFruit 42da315531
feat: add tuff stuff 2024-07-14 15:21:15 +02:00
TheClashFruit 989adfcc19
feat: multi version dev env (#4)
All checks were successful
Build Project / build (push) Successful in 25m38s
Reviewed-on: #4
2024-07-13 16:14:21 +02:00
TheClashFruit 3a82764c52
fix (ci): java was in the wrong order
Some checks failed
Build Project / build (pull_request) Has been cancelled
2024-07-13 16:12:55 +02:00
TheClashFruit 8daf7c7309
fix (ci): install multiple javas
Some checks failed
Build Project / build (pull_request) Has been cancelled
2024-07-13 16:09:47 +02:00
TheClashFruit 7d6a6e6400
feat (ci): update to java 21
Some checks failed
Build Project / build (pull_request) Failing after 9m36s
2024-07-13 15:57:54 +02:00
TheClashFruit a98760f350
feat: finish multi version except 1.20.5
Some checks failed
Build Project / build (pull_request) Failing after 4m33s
2024-07-13 15:49:33 +02:00
TheClashFruit 9f850881b3
feat: multi version start 2024-07-13 13:57:40 +02:00
TheClashFruit c9e5b11be9
feat: add pottery sherds and smithing templates
All checks were successful
Build Project / build (push) Successful in 4m13s
2024-07-13 10:43:47 +02:00
TheClashFruit d365e4197a
docs: add curseforge downloads badge
All checks were successful
Build Project / build (push) Successful in 5m48s
2023-12-09 11:53:25 +01:00
21 changed files with 464 additions and 187 deletions

View file

@ -12,12 +12,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
distribution: 'temurin'
java-version: |
17
21
- name: Make Gradle Executable
run: chmod +x ./gradlew
- name: Build with Gradle
@ -25,4 +27,4 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
path: build/libs/*.jar
path: 'versions/**/build/libs/*.jar'

View file

@ -8,12 +8,16 @@
<img alt="Issues" src="https://img.shields.io/badge/dynamic/json?color=yellow&label=issues&query=%24.open_issues_count&url=https%3A%2F%2Fgit.theclashfruit.me%2Fapi%2Fv1%2Frepos%2FTheClashFruit%2FClutteredCreative">
<img alt="Pull Requests" src="https://img.shields.io/badge/dynamic/json?color=brightgreen&label=pull+requests&query=%24.open_pr_counter&url=https%3A%2F%2Fgit.theclashfruit.me%2Fapi%2Fv1%2Frepos%2FTheClashFruit%2FClutteredCreative">
<img alt="Modrinth Downloads" src="https://img.shields.io/modrinth/dt/Fs6mB0ic">
<img alt="Version" src="https://img.shields.io/badge/dynamic/json?color=orange&label=version&query=%24%5B0%5D.name&url=https%3A%2F%2Fgit.theclashfruit.me%2Fapi%2Fv1%2Frepos%2FTheClashFruit%2FClutteredCreative%2Freleases">
<img alt="License (MIT)" src="https://img.shields.io/badge/license-MIT-green.svg">
</p>
<p align="center">
<img alt="Modrinth Downloads" src="https://img.shields.io/modrinth/dt/Fs6mB0ic?label=Modrinth%20Downloads">
<img alt="CurseForge Downloads" src="https://img.shields.io/curseforge/dt/901062?label=CurseForge%20Downloads">
</p>
<p align="center">
<a href="https://modrinth.com/mod/cluttered-creative">
<img alt="curseforge" height="40" src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact/available/modrinth_vector.svg">
@ -54,8 +58,9 @@ Development is mostly straight forward.
1. Clone the repository from your fork.
2. Open the project.
3. Run `gradle genSources` to generate the sources.
4. You can start developing!
3. You can start developing!
<!-- 3. Run `gradle genSources` to generate the sources. -->
### Git Commit Messages

View file

@ -1,96 +0,0 @@
plugins {
id 'fabric-loom' version '1.2-SNAPSHOT'
id 'maven-publish'
}
version = project.mod_version
group = project.maven_group
repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modLocalRuntime("maven.modrinth:modmenu:${project.modmenu_version}")
}
loom {
accessWidenerPath = file("src/main/resources/cc.accesswidener")
}
processResources {
inputs.property "version", project.version
inputs.property "minecraft_version", project.minecraft_version
inputs.property "loader_version", project.loader_version
filteringCharset "UTF-8"
filesMatching("fabric.mod.json") {
expand "version": project.version,
"minecraft_version": project.minecraft_version,
"loader_version": project.loader_version
}
}
def targetJavaVersion = 17
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
it.options.encoding = "UTF-8"
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
it.options.release = targetJavaVersion
}
}
java {
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
if (JavaVersion.current() < javaVersion) {
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
}
archivesBaseName = project.archives_base_name
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
}
jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}

86
build.gradle.kts Normal file
View file

@ -0,0 +1,86 @@
import dev.deftu.gradle.utils.*
import dev.deftu.gradle.tools.minecraft.CurseRelation
import dev.deftu.gradle.tools.minecraft.CurseRelationType
import com.modrinth.minotaur.dependencies.DependencyType
import com.modrinth.minotaur.dependencies.ModDependency
plugins {
java
id("dev.deftu.gradle.multiversion")
id("dev.deftu.gradle.tools")
id("dev.deftu.gradle.tools.resources")
id("dev.deftu.gradle.tools.minecraft.api")
id("dev.deftu.gradle.tools.minecraft.loom")
id("dev.deftu.gradle.tools.publishing.maven")
id("dev.deftu.gradle.tools.minecraft.releases")
}
repositories {
maven("https://api.modrinth.com/maven")
}
dependencies {
if (mcData.isFabric) {
modImplementation("net.fabricmc.fabric-api:fabric-api:${mcData.dependencies.fabric.fabricApiVersion}")
modImplementation(mcData.dependencies.fabric.modMenuDependency)
}
}
loom {
accessWidenerPath = file("../../src/main/resources/cc.accesswidener")
}
java {
base.archivesName.set(modData.id)
tasks {
if (isLoomPresent()) {
named<org.gradle.jvm.tasks.Jar>("remapJar") {
archiveBaseName.set(modData.id)
}
} else {
named<Jar>("jar") {
archiveBaseName.set(modData.id)
}
}
}
}
/*
minecraft {
accessTransformer = file("../../src/main/resources/META-INF/accesstransformer.cfg")
}
*/
toolkitReleases {
detectVersionType.set(true)
rootProject.file("changelogs/${modData.version}.md").let { file ->
if (file.exists())
changelogFile.set(file)
}
modrinth {
projectId.set("Fs6mB0ic")
if (mcData.loader == ModLoader.FABRIC) {
dependencies.addAll(listOf(
ModDependency("P7dR8mSH", DependencyType.REQUIRED), // Fabric API
ModDependency("mOgUt4GM", DependencyType.OPTIONAL) // Mod Menu
))
}
}
curseforge {
projectId.set("901062")
if (mcData.loader == ModLoader.FABRIC) {
relations.addAll(listOf(
CurseRelation("fabric-api", CurseRelationType.REQUIRED), // Fabric API
CurseRelation("modmenu", CurseRelationType.OPTIONAL) // Mod Menu
))
}
}
}

11
changelogs/2.0.0-rc.1.md Normal file
View file

@ -0,0 +1,11 @@
The mod has been revived from the dead!
### New
* 1.21 Support
* !! Enchantment books are missing from the tools tab.
### Fixes
1. Added Missing Items
* Pottery Sherds
* Smithing Templates
2. Fixed The Brewing Tab Icon

3
changelogs/2.0.0.md Normal file
View file

@ -0,0 +1,3 @@
### Fixes
* Added the tuff blocks
* Enchantment books are back in the tools tab.

View file

@ -1,20 +1,7 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G
org.gradle.jvmargs=-Xmx2G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.20.3
yarn_mappings=1.20.3+build.1
loader_version=0.15.1
# Mod Properties
mod_version = 1.0.0+mc1.20.3
maven_group = me.theclashfruit
archives_base_name = cc
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.91.1+1.20.3
# Local Dev Mods
modmenu_version=9.0.0-pre.1
mod.name=Cluttered Creative
mod.id=cc
mod.version=2.0.0
mod.group=me.theclashfruit

View file

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

23
root.gradle.kts Normal file
View file

@ -0,0 +1,23 @@
plugins {
id("dev.deftu.gradle.multiversion-root")
}
preprocess {
val fabric_1_21 = createNode("1.21-fabric", 1210, "yarn")
val fabric_1_20_6 = createNode("1.20.6-fabric", 1206, "yarn")
val fabric_1_20_5 = createNode("1.20.5-fabric", 1205, "yarn") // broken due to upstream issues
val fabric_1_20_4 = createNode("1.20.4-fabric", 1204, "yarn")
val fabric_1_20_3 = createNode("1.20.3-fabric", 1203, "yarn")
val fabric_1_20_2 = createNode("1.20.2-fabric", 1202, "yarn")
val fabric_1_20_1 = createNode("1.20.1-fabric", 1201, "yarn")
val fabric_1_20 = createNode("1.20-fabric", 1200, "yarn")
fabric_1_21.link(fabric_1_20_6)
//fabric_1_20_6.link(fabric_1_20_5)
fabric_1_20_6.link(fabric_1_20_4)
//fabric_1_20_5.link(fabric_1_20_4)
fabric_1_20_4.link(fabric_1_20_3)
fabric_1_20_3.link(fabric_1_20_2)
fabric_1_20_2.link(fabric_1_20_1)
fabric_1_20_1.link(fabric_1_20)
}

View file

@ -1,9 +0,0 @@
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
}

44
settings.gradle.kts Normal file
View file

@ -0,0 +1,44 @@
pluginManagement {
repositories {
maven("https://maven.deftu.dev/releases")
maven("https://maven.fabricmc.net")
maven("https://maven.architectury.dev/")
maven("https://maven.minecraftforge.net")
maven("https://maven.neoforged.net/releases")
maven("https://repo.essential.gg/repository/maven-public")
maven("https://server.bbkr.space/artifactory/libs-release/")
maven("https://jitpack.io/")
maven("https://maven.deftu.dev/snapshots")
mavenLocal()
gradlePluginPortal()
mavenCentral()
}
plugins {
id("dev.deftu.gradle.multiversion-root") version("2.2.3")
}
}
val projectName: String = "Cluttered Creative"
rootProject.name = projectName
rootProject.buildFileName = "root.gradle.kts"
listOf(
"1.20-fabric",
"1.20.1-fabric",
"1.20.2-fabric",
"1.20.3-fabric",
"1.20.4-fabric",
//"1.20.5-fabric",
"1.20.6-fabric",
"1.21-fabric",
).forEach { version ->
include(":$version")
project(":$version").apply {
projectDir = file("versions/$version")
buildFileName = "../../build.gradle.kts"
}
}

View file

@ -9,6 +9,6 @@ public class ClutteredCreative implements ModInitializer {
@Override
public void onInitialize() {
LOGGER.info("ClutteredCreative has been initialized!");
}
}

View file

@ -1,10 +0,0 @@
package me.theclashfruit.cc.client;
import net.fabricmc.api.ClientModInitializer;
public class ClutteredCreativeClient implements ClientModInitializer {
@Override
public void onInitializeClient() {
}
}

View file

@ -1,7 +1,6 @@
package me.theclashfruit.cc.mixin;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentTarget;
import net.minecraft.item.Instrument;
import net.minecraft.item.Item;
import net.minecraft.item.ItemGroup;
@ -12,6 +11,12 @@ import net.minecraft.registry.tag.TagKey;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
//#if MC >= 1.20.6
import net.minecraft.resource.featuretoggle.FeatureSet;
//#elseif MC < 1.20.5
//$$ import net.minecraft.enchantment.EnchantmentTarget;
//#endif
import java.util.Set;
@Mixin(ItemGroups.class)
@ -21,13 +26,42 @@ public interface ItemGroupsInterfaceMixin {
throw new AssertionError();
}
//#if MC >= 1.20.6
@Invoker("addPotions")
static void invokeAddPotions(ItemGroup.Entries entries, RegistryWrapper<Potion> registryWrapper, Item item, ItemGroup.StackVisibility visibility) {
static void invokeAddPotions(ItemGroup.Entries entries, RegistryWrapper<Potion> registryWrapper, Item item, ItemGroup.StackVisibility stackVisibility, FeatureSet featureSet) {
throw new AssertionError();
}
//#elseif MC >= 1.20.5
//$$ @Invoker("addPotions")
//$$ static void invokeAddPotions(ItemGroup.Entries entries, RegistryWrapper<Potion> registryWrapper, Item item, ItemGroup.StackVisibility visibility) {
//$$ throw new AssertionError();
//$$ }
//#else
//$$ @Invoker("addPotions")
//$$ static void invokeAddPotions(ItemGroup.Entries entries, RegistryWrapper<Potion> registryWrapper, Item item, ItemGroup.StackVisibility visibility) {
//$$ throw new AssertionError();
//$$ }
//#endif
//#if MC >= 1.21
@Invoker("addMaxLevelEnchantedBooks")
static void invokeAddMaxLevelEnchantedBooks(ItemGroup.Entries entries, RegistryWrapper<Enchantment> registryWrapper, Set<EnchantmentTarget> enchantmentTargets, ItemGroup.StackVisibility visibility) {
static void invokeAddMaxLevelEnchantedBooks(ItemGroup.Entries entries, RegistryWrapper<Enchantment> registryWrapper, ItemGroup.StackVisibility visibility) {
throw new AssertionError();
}
//#elseif MC >= 1.20.6
//$$ @Invoker("addMaxLevelEnchantedBooks")
//$$ static void invokeAddMaxLevelEnchantedBooks(ItemGroup.Entries entries, RegistryWrapper<Enchantment> registryWrapper, Set<TagKey<Item>> set, ItemGroup.StackVisibility stackVisibility, FeatureSet featureSet) {
//$$ throw new AssertionError();
//$$ }
//#elseif MC >= 1.20.5
//$$ @Invoker("addMaxLevelEnchantedBooks")
//$$ static void invokeAddMaxLevelEnchantedBooks(ItemGroup.Entries entries, RegistryWrapper<Enchantment> registryWrapper, Set<TagKey<Item>> enchantmentTargets, ItemGroup.StackVisibility visibility) {
//$$ throw new AssertionError();
//$$ }
//#else
//$$ @Invoker("addMaxLevelEnchantedBooks")
//$$ static void invokeAddMaxLevelEnchantedBooks(ItemGroup.Entries entries, RegistryWrapper<Enchantment> registryWrapper, Set<EnchantmentTarget> enchantmentTargets, ItemGroup.StackVisibility visibility) {
//$$ throw new AssertionError();
//$$ }
//#endif
}

View file

@ -1,25 +1,41 @@
package me.theclashfruit.cc.mixin;
import net.minecraft.block.Blocks;
import net.minecraft.client.gui.screen.ingame.EnchantmentScreen;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.enchantment.EnchantmentLevelEntry;
import net.minecraft.enchantment.EnchantmentTarget;
import net.minecraft.enchantment.Enchantments;
import net.minecraft.entity.Entity;
import net.minecraft.item.*;
import net.minecraft.potion.PotionUtil;
import net.minecraft.potion.Potions;
import net.minecraft.predicate.item.EnchantmentPredicate;
import net.minecraft.registry.Registries;
import net.minecraft.registry.Registry;
import net.minecraft.registry.RegistryKey;
import net.minecraft.registry.RegistryKeys;
import net.minecraft.registry.RegistryWrapper;
import net.minecraft.registry.entry.RegistryEntry;
import net.minecraft.registry.tag.InstrumentTags;
import net.minecraft.registry.tag.ItemTags;
import net.minecraft.registry.tag.TagKey;
import net.minecraft.text.Text;
import net.minecraft.village.raid.Raid;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Overwrite;
import org.spongepowered.asm.mixin.Unique;
import org.spongepowered.asm.mixin.*;
import org.spongepowered.asm.mixin.gen.Invoker;
//#if MC >= 1.20.6
import net.minecraft.util.Identifier;
import net.minecraft.component.type.ItemEnchantmentsComponent;
import net.minecraft.component.type.PotionContentsComponent;
//#else
//$$ import net.minecraft.enchantment.EnchantmentTarget;
//$$ import net.minecraft.potion.PotionUtil;
//#endif
import java.util.EnumSet;
import java.util.Set;
import java.util.stream.IntStream;
import static me.theclashfruit.cc.ClutteredCreative.LOGGER;
import static net.minecraft.item.ItemGroups.*;
@ -58,12 +74,25 @@ public class ItemGroupsMixin {
.type(ItemGroup.Type.HOTBAR)
.build();
//#if MC >= 1.21
@Unique
private static final Identifier INVENTORY_TAB_TEXTURE_ID = ItemGroup.getTabTextureId("inventory");
@Unique
private static final Identifier ITEM_SEARCH_TAB_TEXTURE_ID = ItemGroup.getTabTextureId("item_search");
//#endif
@Unique
private static final ItemGroup inventoryGroup = ItemGroup
.create(ItemGroup.Row.BOTTOM, 6)
.displayName(Text.translatable("itemGroup.inventory"))
.icon(() -> new ItemStack(Blocks.CHEST))
.texture("inventory.png")
.texture(
//#if MC >= 1.21
INVENTORY_TAB_TEXTURE_ID
//#else
//$$ "inventory.png"
//#endif
)
.noRenderedName()
.special()
.type(ItemGroup.Type.INVENTORY)
@ -76,8 +105,6 @@ public class ItemGroupsMixin {
*/
@Overwrite
public static ItemGroup registerAndGetDefault(Registry<ItemGroup> registry) {
LOGGER.info("ItemGroups Working!");
final ItemGroup searchGroup = ItemGroup
.create(ItemGroup.Row.TOP, 6)
.displayName(Text.translatable("itemGroup.search"))
@ -91,7 +118,13 @@ public class ItemGroupsMixin {
content.addAll(itemGroupSet);
})
.texture("item_search.png")
.texture(
//#if MC >= 1.21
ITEM_SEARCH_TAB_TEXTURE_ID
//#else
//$$ "item_search.png"
//#endif
)
.special()
.type(ItemGroup.Type.SEARCH)
.build();
@ -364,6 +397,13 @@ public class ItemGroupsMixin {
content.add(Items.CHISELED_DEEPSLATE);
content.add(Items.REINFORCED_DEEPSLATE);
//#if MC >= 1.21
content.add(Items.CHISELED_TUFF);
content.add(Items.POLISHED_TUFF);
content.add(Items.TUFF_BRICKS);
content.add(Items.CHISELED_TUFF_BRICKS);
//#endif
content.add(Items.MELON);
content.add(Items.BRICK_STAIRS);
@ -524,6 +564,12 @@ public class ItemGroupsMixin {
content.add(Items.DEEPSLATE_BRICK_STAIRS);
content.add(Items.DEEPSLATE_TILE_STAIRS);
//#if MC >= 1.21
content.add(Items.TUFF_BRICK_STAIRS);
content.add(Items.POLISHED_TUFF_STAIRS);
content.add(Items.TUFF_STAIRS);
//#endif
content.add(Items.POLISHED_GRANITE_SLAB);
content.add(Items.SMOOTH_RED_SANDSTONE_SLAB);
content.add(Items.MOSSY_STONE_BRICK_SLAB);
@ -542,6 +588,12 @@ public class ItemGroupsMixin {
content.add(Items.DEEPSLATE_BRICK_SLAB);
content.add(Items.DEEPSLATE_TILE_SLAB);
//#if MC >= 1.21
content.add(Items.TUFF_SLAB);
content.add(Items.POLISHED_TUFF_SLAB);
content.add(Items.TUFF_BRICK_SLAB);
//#endif
content.add(Items.DRIED_KELP_BLOCK);
content.add(Items.CRYING_OBSIDIAN);
@ -721,6 +773,12 @@ public class ItemGroupsMixin {
content.add(Items.DEEPSLATE_BRICK_WALL);
content.add(Items.DEEPSLATE_TILE_WALL);
//#if MC >= 1.21
content.add(Items.TUFF_WALL);
content.add(Items.POLISHED_TUFF_WALL);
content.add(Items.TUFF_BRICK_WALL);
//#endif
content.add(Items.ANVIL);
content.add(Items.CHIPPED_ANVIL);
content.add(Items.DAMAGED_ANVIL);
@ -902,7 +960,12 @@ public class ItemGroupsMixin {
content.add(Items.GREEN_BANNER);
content.add(Items.RED_BANNER);
content.add(Items.BLACK_BANNER);
content.add(Raid.getOminousBanner());
//#if MC >= 1.20.6
content.add(Raid.getOminousBanner(displayContext.lookup().getWrapperOrThrow(RegistryKeys.BANNER_PATTERN)));
//#else
//$$ content.add(Raid.getOminousBanner());
//#endif
content.add(Items.END_CRYSTAL);
@ -967,7 +1030,7 @@ public class ItemGroupsMixin {
Registry.register(
registry,
REDSTONE,
ItemGroupsMixin.REDSTONE,
ItemGroup
.create(ItemGroup.Row.TOP, 2)
.type(ItemGroup.Type.CATEGORY)
@ -1132,7 +1195,12 @@ public class ItemGroupsMixin {
content.add(Items.BEACON);
content.add(Items.TURTLE_EGG);
content.add(Items.CONDUIT);
content.add(Items.SCUTE);
//#if MC >= 1.20
content.add(Items.TURTLE_SCUTE);
//#else
//$$ content.add(Items.SCUTE);
//#endif
content.add(Items.COAL);
content.add(Items.CHARCOAL);
@ -1360,6 +1428,29 @@ public class ItemGroupsMixin {
content.add(Items.HONEYCOMB);
content.add(Items.FROGSPAWN);
content.add(Items.ECHO_SHARD);
//#if MC >= 1.20
content.add(Items.ANGLER_POTTERY_SHERD);
content.add(Items.ARCHER_POTTERY_SHERD);
content.add(Items.ARMS_UP_POTTERY_SHERD);
content.add(Items.BLADE_POTTERY_SHERD);
content.add(Items.BREWER_POTTERY_SHERD);
content.add(Items.BURN_POTTERY_SHERD);
content.add(Items.DANGER_POTTERY_SHERD);
content.add(Items.EXPLORER_POTTERY_SHERD);
content.add(Items.FRIEND_POTTERY_SHERD);
content.add(Items.HEART_POTTERY_SHERD);
content.add(Items.HEARTBREAK_POTTERY_SHERD);
content.add(Items.HOWL_POTTERY_SHERD);
content.add(Items.MINER_POTTERY_SHERD);
content.add(Items.MOURNER_POTTERY_SHERD);
content.add(Items.PLENTY_POTTERY_SHERD);
content.add(Items.PRIZE_POTTERY_SHERD);
content.add(Items.SHEAF_POTTERY_SHERD);
content.add(Items.SHELTER_POTTERY_SHERD);
content.add(Items.SKULL_POTTERY_SHERD);
content.add(Items.SNORT_POTTERY_SHERD);
//#endif
})
.build()
);
@ -1417,7 +1508,7 @@ public class ItemGroupsMixin {
Registry.register(
registry,
TOOLS,
ItemGroupsMixin.TOOLS,
ItemGroup
.create(ItemGroup.Row.BOTTOM, 2)
.type(ItemGroup.Type.CATEGORY)
@ -1466,14 +1557,27 @@ public class ItemGroupsMixin {
content.add(Items.SPYGLASS);
content.add(Items.SHEARS);
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.EFFICIENCY, 5)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.SILK_TOUCH, 1)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.UNBREAKING, 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.FORTUNE, 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.LUCK_OF_THE_SEA, 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.LURE, 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.MENDING, 1)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.VANISHING_CURSE, 1)));
//#if MC >= 1.21
displayContext.lookup().getOptionalWrapper(RegistryKeys.ENCHANTMENT).ifPresent(impl -> {
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.EFFICIENCY), 5)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.SILK_TOUCH), 1)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.UNBREAKING), 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.FORTUNE), 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.LUCK_OF_THE_SEA), 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.LURE), 3)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.MENDING), 1)));
content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(impl.getOrThrow(Enchantments.VANISHING_CURSE), 1)));
});
//#else
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.EFFICIENCY, 5)));
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.SILK_TOUCH, 1)));
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.UNBREAKING, 3)));
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.FORTUNE, 3)));
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.LUCK_OF_THE_SEA, 3)));
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.LURE, 3)));
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.MENDING, 1)));
//$$ content.add(EnchantedBookItem.forEnchantment(new EnchantmentLevelEntry(Enchantments.VANISHING_CURSE, 1)));
//#endif
content.add(Items.LEAD);
content.add(Items.NAME_TAG);
@ -1531,19 +1635,58 @@ public class ItemGroupsMixin {
content.add(Items.NETHERITE_LEGGINGS);
content.add(Items.NETHERITE_BOOTS);
EnumSet<EnchantmentTarget> set = EnumSet.allOf(EnchantmentTarget.class);
displayContext.lookup().getOptionalWrapper(RegistryKeys.ENCHANTMENT).ifPresent(wrapper -> {
ItemGroupsInterfaceMixin.invokeAddMaxLevelEnchantedBooks(content, wrapper, set, ItemGroup.StackVisibility.PARENT_TAB_ONLY);
//#if MC >= 1.21
displayContext.lookup().getOptionalWrapper(RegistryKeys.ENCHANTMENT).ifPresent((impl) -> {
ItemGroupsInterfaceMixin.invokeAddMaxLevelEnchantedBooks(content, impl, ItemGroup.StackVisibility.PARENT_TAB_ONLY);
});
//#elseif MC >= 1.20.6
//$$ Set<TagKey<Item>> set = Set.of(ItemTags.FOOT_ARMOR_ENCHANTABLE, ItemTags.LEG_ARMOR_ENCHANTABLE, ItemTags.CHEST_ARMOR_ENCHANTABLE, ItemTags.HEAD_ARMOR_ENCHANTABLE, ItemTags.ARMOR_ENCHANTABLE, ItemTags.SWORD_ENCHANTABLE, ItemTags.SHARP_WEAPON_ENCHANTABLE, ItemTags.MACE_ENCHANTABLE, ItemTags.FIRE_ASPECT_ENCHANTABLE, ItemTags.WEAPON_ENCHANTABLE, ItemTags.MINING_ENCHANTABLE, ItemTags.MINING_LOOT_ENCHANTABLE, ItemTags.FISHING_ENCHANTABLE, ItemTags.TRIDENT_ENCHANTABLE, ItemTags.DURABILITY_ENCHANTABLE, ItemTags.BOW_ENCHANTABLE, ItemTags.EQUIPPABLE_ENCHANTABLE, ItemTags.CROSSBOW_ENCHANTABLE, ItemTags.VANISHING_ENCHANTABLE);
//$$
//$$ displayContext.lookup().getOptionalWrapper(RegistryKeys.ENCHANTMENT).ifPresent((impl) -> {
//$$ ItemGroupsInterfaceMixin.invokeAddMaxLevelEnchantedBooks(content, impl, set, ItemGroup.StackVisibility.PARENT_TAB_ONLY, displayContext.comp_1251());
//$$ });
//#else
//$$ EnumSet<EnchantmentTarget> set = EnumSet.allOf(EnchantmentTarget.class);
//$$
//$$ displayContext.lookup().getOptionalWrapper(RegistryKeys.ENCHANTMENT).ifPresent(wrapper -> {
//$$ ItemGroupsInterfaceMixin.invokeAddMaxLevelEnchantedBooks(content, wrapper, set, ItemGroup.StackVisibility.PARENT_TAB_ONLY);
//$$ });
//#endif
content.add(Items.SPECTRAL_ARROW);
displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent(wrapper -> ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.TIPPED_ARROW, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS));
//#if MC >= 1.20.6
displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent((impl) -> {
ItemGroupsInterfaceMixin.invokeAddPotions(content, impl, Items.TIPPED_ARROW, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS, displayContext.comp_1251());
});
//#else
//$$ displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent(wrapper -> ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.TIPPED_ARROW, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS));
//#endif
content.add(Items.SHIELD);
content.add(Items.TOTEM_OF_UNDYING);
content.add(Items.TRIDENT);
content.add(Items.CROSSBOW);
//#if MC >= 1.20
content.add(Items.NETHERITE_UPGRADE_SMITHING_TEMPLATE);
content.add(Items.SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.VEX_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.WILD_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.COAST_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.DUNE_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.RAISER_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.HOST_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.WARD_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.TIDE_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.RIB_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.EYE_ARMOR_TRIM_SMITHING_TEMPLATE);
content.add(Items.SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE);
//#endif
})
.build()
);
@ -1555,13 +1698,24 @@ public class ItemGroupsMixin {
.create(ItemGroup.Row.BOTTOM, 4)
.type(ItemGroup.Type.CATEGORY)
.displayName(Text.translatable("itemGroup.brewing"))
.icon(() -> new ItemStack(PotionUtil.setPotion(new ItemStack(Items.POTION), Potions.WATER).getItem()))
.entries((displayContext, content) -> {
.icon(() ->
//#if MC >= 1.20.6
PotionContentsComponent.createStack(Items.POTION, Potions.WATER)
//#else
//$$ PotionUtil.setPotion(new ItemStack(Items.POTION), Potions.WATER)
//#endif
).entries((displayContext, content) -> {
content.add(Items.GHAST_TEAR);
displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent(wrapper -> {
ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS);
//#if MC >= 1.20.6
displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent((impl) -> {
ItemGroupsInterfaceMixin.invokeAddPotions(content, impl, Items.POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS, displayContext.comp_1251());
});
//#else
//$$ displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent(wrapper -> {
//$$ ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS);
//$$ });
//#endif
content.add(Items.GLASS_BOTTLE);
content.add(Items.FERMENTED_SPIDER_EYE);
@ -1574,10 +1728,17 @@ public class ItemGroupsMixin {
content.add(Items.RABBIT_FOOT);
content.add(Items.DRAGON_BREATH);
displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent(wrapper -> {
ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.SPLASH_POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS);
ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.LINGERING_POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS);
//#if MC >= 1.20.6
displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent((impl) -> {
ItemGroupsInterfaceMixin.invokeAddPotions(content, impl, Items.SPLASH_POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS, displayContext.comp_1251());
ItemGroupsInterfaceMixin.invokeAddPotions(content, impl, Items.LINGERING_POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS, displayContext.comp_1251());
});
//#else
//$$ displayContext.lookup().getOptionalWrapper(RegistryKeys.POTION).ifPresent(wrapper -> {
//$$ ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.SPLASH_POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS);
//$$ ItemGroupsInterfaceMixin.invokeAddPotions(content, wrapper, Items.LINGERING_POTION, ItemGroup.StackVisibility.PARENT_AND_SEARCH_TABS);
//$$ });
//#endif
content.add(Items.PHANTOM_MEMBRANE);
})

View file

@ -0,0 +1 @@
public net.minecraft.world.item.CreativeModeTab.Builder type(Lnet/minecraft/world/item/CreativeModeTab.Type;)Lnet/minecraft/world/item/CreativeModeTab/Builder;

View file

@ -0,0 +1,15 @@
modLoader="javafml"
loaderVersion="[31,)"
issueTrackerURL="https://git.theclashfruit.me/TheClashFruit/ClutteredCreative/issues"
license="MIT"
[[mods]]
modId="cc"
version="${mod_version}"
displayName="Cluttered Creative"
description="Bring back the old cluttered creative inventory."
authors="TheClashFruit"
logoFile="assets/cc/icon.png"
[[mixins]]
config = "cc.mixins.json"

View file

@ -0,0 +1,15 @@
modLoader="javafml"
loaderVersion="[1,)"
issueTrackerURL="https://git.theclashfruit.me/TheClashFruit/ClutteredCreative/issues"
license="MIT"
[[mods]]
modId="cc"
version="${mod_version}"
displayName="Cluttered Creative"
description="Bring back the old cluttered creative inventory."
authors="TheClashFruit"
logoFile="assets/cc/icon.png"
[[mixins]]
config = "cc.mixins.json"

View file

@ -1,3 +1,10 @@
accessWidener v1 named
accessible class net/minecraft/item/ItemGroup$StackVisibility
accessible method net/minecraft/item/ItemGroup$Builder type (Lnet/minecraft/item/ItemGroup$Type;)Lnet/minecraft/item/ItemGroup$Builder;
accessible field net/minecraft/item/ItemGroups INVENTORY Lnet/minecraft/registry/RegistryKey;
accessible field net/minecraft/item/ItemGroups HOTBAR Lnet/minecraft/registry/RegistryKey;
accessible field net/minecraft/item/ItemGroups SEARCH Lnet/minecraft/registry/RegistryKey;
accessible field net/minecraft/item/ItemGroups COMBAT Lnet/minecraft/registry/RegistryKey;

View file

@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "cc",
"version": "${version}",
"version": "${mod_version}",
"name": "Cluttered Creative",
"description": "Bring back the old cluttered creative inventory.",
"authors": [
@ -16,9 +16,6 @@
"icon": "assets/cc/icon.png",
"environment": "*",
"entrypoints": {
"client": [
"me.theclashfruit.cc.client.ClutteredCreativeClient"
],
"main": [
"me.theclashfruit.cc.ClutteredCreative"
]
@ -28,9 +25,9 @@
],
"accessWidener" : "cc.accesswidener",
"depends": {
"fabricloader": ">=${loader_version}",
"fabricloader": ">=0.15.1",
"fabric": "*",
"minecraft": ">=${minecraft_version}"
"minecraft": "${mc_version}"
},
"custom": {
"modmenu": {

1
versions/mainProject Normal file
View file

@ -0,0 +1 @@
1.21-fabric