├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── re │ └── domi │ └── fastchest │ └── mixin │ ├── BlockEntityRenderDispatcherMixin.java │ ├── ChestBlockMixin.java │ └── EnderChestBlockMixin.java └── resources ├── assets ├── fastchest │ └── icon.png └── minecraft │ ├── blockstates │ ├── chest.json │ ├── ender_chest.json │ └── trapped_chest.json │ └── models │ ├── block │ ├── chest.json │ ├── chest_left.json │ ├── chest_right.json │ ├── ender_chest.json │ ├── template_chest.json │ ├── template_chest_left.json │ ├── template_chest_right.json │ ├── trapped_chest.json │ ├── trapped_chest_left.json │ └── trapped_chest_right.json │ └── item │ ├── chest.json │ ├── ender_chest.json │ └── trapped_chest.json ├── fabric.mod.json └── fc.mixins.json /.gitignore: -------------------------------------------------------------------------------- 1 | # gradle 2 | 3 | .gradle/ 4 | build/ 5 | out/ 6 | classes/ 7 | 8 | # eclipse 9 | 10 | *.launch 11 | 12 | # idea 13 | 14 | .idea/ 15 | *.iml 16 | *.ipr 17 | *.iws 18 | 19 | # vscode 20 | 21 | .settings/ 22 | .vscode/ 23 | bin/ 24 | .classpath 25 | .project 26 | 27 | # macos 28 | 29 | *.DS_Store 30 | 31 | # fabric 32 | 33 | run/ 34 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'fabric-loom' version '0.5-SNAPSHOT' 3 | id 'maven-publish' 4 | } 5 | 6 | sourceCompatibility = JavaVersion.VERSION_1_8 7 | targetCompatibility = JavaVersion.VERSION_1_8 8 | 9 | archivesBaseName = project.archives_base_name 10 | version = project.mod_version 11 | group = project.maven_group 12 | 13 | dependencies { 14 | // To change the versions see the gradle.properties file 15 | minecraft "com.mojang:minecraft:${project.minecraft_version}" 16 | mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" 17 | modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" 18 | 19 | // Fabric API. This is technically optional, but you probably want it anyway. 20 | modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" 21 | 22 | // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. 23 | // You may need to force-disable transitiveness on them. 24 | } 25 | 26 | processResources { 27 | inputs.property "version", project.version 28 | 29 | filesMatching("fabric.mod.json") { 30 | expand "version": project.version 31 | } 32 | } 33 | 34 | tasks.withType(JavaCompile).configureEach { 35 | // ensure that the encoding is set to UTF-8, no matter what the system default is 36 | // this fixes some edge cases with special characters not displaying correctly 37 | // see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html 38 | // If Javadoc is generated, this must be specified in that task too. 39 | it.options.encoding = "UTF-8" 40 | 41 | // The Minecraft launcher currently installs Java 8 for users, so your mod probably wants to target Java 8 too 42 | // JDK 9 introduced a new way of specifying this that will make sure no newer classes or methods are used. 43 | // We'll use that if it's available, but otherwise we'll use the older option. 44 | def targetVersion = 8 45 | if (JavaVersion.current().isJava9Compatible()) { 46 | it.options.release = targetVersion 47 | } 48 | } 49 | 50 | java { 51 | // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task 52 | // if it is present. 53 | // If you remove this line, sources will not be generated. 54 | withSourcesJar() 55 | } 56 | 57 | jar { 58 | from("LICENSE") { 59 | rename { "${it}_${project.archivesBaseName}"} 60 | } 61 | } 62 | 63 | // configure the maven publication 64 | publishing { 65 | publications { 66 | mavenJava(MavenPublication) { 67 | // add all the jars that should be included when publishing to maven 68 | artifact(remapJar) { 69 | builtBy remapJar 70 | } 71 | artifact(sourcesJar) { 72 | builtBy remapSourcesJar 73 | } 74 | } 75 | } 76 | 77 | // Select the repositories you want to publish to 78 | // To publish to maven local, no extra repositories are necessary. Just use the task `publishToMavenLocal`. 79 | repositories { 80 | // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Done to increase the memory available to gradle. 2 | org.gradle.jvmargs=-Xmx1G 3 | 4 | # Fabric Properties 5 | # check these on https://fabricmc.net/use 6 | minecraft_version=1.16.4 7 | yarn_mappings=1.16.4+build.6 8 | loader_version=0.10.6+build.214 9 | 10 | # Mod Properties 11 | mod_version = 1.0 12 | maven_group = re.domi 13 | archives_base_name = fast-chest 14 | 15 | # Dependencies 16 | # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api 17 | fabric_version=0.25.1+build.416-1.16 18 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Green/FastChest/3b57264923ad308abcbb9a2809e287b247c9b17b/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | jcenter() 4 | maven { 5 | name = 'Fabric' 6 | url = 'https://maven.fabricmc.net/' 7 | } 8 | gradlePluginPortal() 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/re/domi/fastchest/mixin/BlockEntityRenderDispatcherMixin.java: -------------------------------------------------------------------------------- 1 | package re.domi.fastchest.mixin; 2 | 3 | import com.google.common.collect.Maps; 4 | import net.minecraft.block.entity.BlockEntityType; 5 | import net.minecraft.client.render.block.entity.BlockEntityRenderDispatcher; 6 | import net.minecraft.client.render.block.entity.BlockEntityRenderer; 7 | import org.spongepowered.asm.mixin.Mixin; 8 | import org.spongepowered.asm.mixin.Shadow; 9 | import org.spongepowered.asm.mixin.injection.At; 10 | import org.spongepowered.asm.mixin.injection.Inject; 11 | import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; 12 | 13 | import java.util.Map; 14 | 15 | @Mixin(BlockEntityRenderDispatcher.class) 16 | public class BlockEntityRenderDispatcherMixin 17 | { 18 | @SuppressWarnings("MismatchedQueryAndUpdateOfCollection") 19 | @Shadow 20 | private final Map, BlockEntityRenderer> renderers = Maps.newHashMap(); 21 | 22 | @Inject(method = "()V", at = @At("TAIL")) 23 | private void constructor(CallbackInfo info) 24 | { 25 | this.renderers.remove(BlockEntityType.CHEST); 26 | this.renderers.remove(BlockEntityType.ENDER_CHEST); 27 | this.renderers.remove(BlockEntityType.TRAPPED_CHEST); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/re/domi/fastchest/mixin/ChestBlockMixin.java: -------------------------------------------------------------------------------- 1 | package re.domi.fastchest.mixin; 2 | 3 | import net.minecraft.block.BlockRenderType; 4 | import net.minecraft.block.BlockState; 5 | import net.minecraft.block.ChestBlock; 6 | import org.spongepowered.asm.mixin.Mixin; 7 | import org.spongepowered.asm.mixin.Overwrite; 8 | 9 | @Mixin(ChestBlock.class) 10 | public class ChestBlockMixin 11 | { 12 | @Overwrite 13 | public BlockRenderType getRenderType(BlockState state) 14 | { 15 | return BlockRenderType.MODEL; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/re/domi/fastchest/mixin/EnderChestBlockMixin.java: -------------------------------------------------------------------------------- 1 | package re.domi.fastchest.mixin; 2 | 3 | import net.minecraft.block.BlockRenderType; 4 | import net.minecraft.block.BlockState; 5 | import net.minecraft.block.EnderChestBlock; 6 | import org.spongepowered.asm.mixin.Mixin; 7 | import org.spongepowered.asm.mixin.Overwrite; 8 | 9 | @Mixin(EnderChestBlock.class) 10 | public class EnderChestBlockMixin 11 | { 12 | @Overwrite 13 | public BlockRenderType getRenderType(BlockState state) 14 | { 15 | return BlockRenderType.MODEL; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/assets/fastchest/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Green/FastChest/3b57264923ad308abcbb9a2809e287b247c9b17b/src/main/resources/assets/fastchest/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/blockstates/chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north,type=single": { 4 | "model": "minecraft:block/chest" 5 | }, 6 | "facing=east,type=single": { 7 | "model": "minecraft:block/chest", 8 | "y": 90 9 | }, 10 | "facing=south,type=single": { 11 | "model": "minecraft:block/chest", 12 | "y": 180 13 | }, 14 | "facing=west,type=single": { 15 | "model": "minecraft:block/chest", 16 | "y": 270 17 | }, 18 | "facing=north,type=left": { 19 | "model": "minecraft:block/chest_left" 20 | }, 21 | "facing=east,type=left": { 22 | "model": "minecraft:block/chest_left", 23 | "y": 90 24 | }, 25 | "facing=south,type=left": { 26 | "model": "minecraft:block/chest_left", 27 | "y": 180 28 | }, 29 | "facing=west,type=left": { 30 | "model": "minecraft:block/chest_left", 31 | "y": 270 32 | }, 33 | "facing=north,type=right": { 34 | "model": "minecraft:block/chest_right" 35 | }, 36 | "facing=east,type=right": { 37 | "model": "minecraft:block/chest_right", 38 | "y": 90 39 | }, 40 | "facing=south,type=right": { 41 | "model": "minecraft:block/chest_right", 42 | "y": 180 43 | }, 44 | "facing=west,type=right": { 45 | "model": "minecraft:block/chest_right", 46 | "y": 270 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/blockstates/ender_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": { 4 | "model": "minecraft:block/ender_chest" 5 | }, 6 | "facing=east": { 7 | "model": "minecraft:block/ender_chest", 8 | "y": 90 9 | }, 10 | "facing=south": { 11 | "model": "minecraft:block/ender_chest", 12 | "y": 180 13 | }, 14 | "facing=west": { 15 | "model": "minecraft:block/ender_chest", 16 | "y": 270 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/blockstates/trapped_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north,type=single": { 4 | "model": "minecraft:block/trapped_chest" 5 | }, 6 | "facing=east,type=single": { 7 | "model": "minecraft:block/trapped_chest", 8 | "y": 90 9 | }, 10 | "facing=south,type=single": { 11 | "model": "minecraft:block/trapped_chest", 12 | "y": 180 13 | }, 14 | "facing=west,type=single": { 15 | "model": "minecraft:block/trapped_chest", 16 | "y": 270 17 | }, 18 | "facing=north,type=left": { 19 | "model": "minecraft:block/trapped_chest_left" 20 | }, 21 | "facing=east,type=left": { 22 | "model": "minecraft:block/trapped_chest_left", 23 | "y": 90 24 | }, 25 | "facing=south,type=left": { 26 | "model": "minecraft:block/trapped_chest_left", 27 | "y": 180 28 | }, 29 | "facing=west,type=left": { 30 | "model": "minecraft:block/trapped_chest_left", 31 | "y": 270 32 | }, 33 | "facing=north,type=right": { 34 | "model": "minecraft:block/trapped_chest_right" 35 | }, 36 | "facing=east,type=right": { 37 | "model": "minecraft:block/trapped_chest_right", 38 | "y": 90 39 | }, 40 | "facing=south,type=right": { 41 | "model": "minecraft:block/trapped_chest_right", 42 | "y": 180 43 | }, 44 | "facing=west,type=right": { 45 | "model": "minecraft:block/trapped_chest_right", 46 | "y": 270 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_chest", 3 | "textures": { 4 | "particle": "minecraft:block/oak_planks", 5 | "chest": "minecraft:entity/chest/normal" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/chest_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_chest_left", 3 | "textures": { 4 | "particle": "minecraft:block/oak_planks", 5 | "chest": "minecraft:entity/chest/normal_left" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/chest_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_chest_right", 3 | "textures": { 4 | "particle": "minecraft:block/oak_planks", 5 | "chest": "minecraft:entity/chest/normal_right" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/ender_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_chest", 3 | "textures": { 4 | "particle": "minecraft:block/obsidian", 5 | "chest": "minecraft:entity/chest/ender" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/template_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "#particles" 5 | }, 6 | "elements": [ 7 | { 8 | "from": [ 1, 0, 1 ], 9 | "to": [ 15, 10, 15 ], 10 | "faces": { 11 | "down": { "texture": "#chest", "uv": [ 3.5, 4.75, 7, 8.25 ], "rotation": 180 }, 12 | "north": { "texture": "#chest", "uv": [ 10.5, 8.25, 14, 10.75 ], "rotation": 180 }, 13 | "east": { "texture": "#chest", "uv": [ 0, 8.25, 3.5, 10.75 ], "rotation": 180 }, 14 | "south": { "texture": "#chest", "uv": [ 3.5, 8.25, 7, 10.75 ], "rotation": 180 }, 15 | "west": { "texture": "#chest", "uv": [ 7, 8.25, 10.5, 10.75 ], "rotation": 180 } 16 | } 17 | }, 18 | { 19 | "from": [ 1, 10, 1 ], 20 | "to": [ 15, 14, 15 ], 21 | "faces": { 22 | "up": { "texture": "#chest", "uv": [ 7, 0, 10.5, 3.5 ], "rotation": 180 }, 23 | "north": { "texture": "#chest", "uv": [ 10.5, 3.75, 14, 4.75 ], "rotation": 180 }, 24 | "east": { "texture": "#chest", "uv": [ 0, 3.75, 3.5, 4.75 ], "rotation": 180 }, 25 | "south": { "texture": "#chest", "uv": [ 3.5, 3.75, 7, 4.75 ], "rotation": 180 }, 26 | "west": { "texture": "#chest", "uv": [ 7, 3.75, 10.5, 4.75 ], "rotation": 180 } 27 | } 28 | }, 29 | { 30 | "from": [ 7, 7, 0 ], 31 | "to": [ 9, 11, 1], 32 | "faces": { 33 | "down": { "texture": "#chest", "uv": [ 0.25, 0, 0.75, 0.25 ], "rotation": 180 }, 34 | "up": { "texture": "#chest", "uv": [ 0.75, 0, 1.25, 0.25 ], "rotation": 180 }, 35 | "north": { "texture": "#chest", "uv": [ 1, 0.25, 1.5, 1.25 ], "rotation": 180 }, 36 | "west": { "texture": "#chest", "uv": [ 0.75, 0.25, 1, 1.25 ], "rotation": 180 }, 37 | "east": { "texture": "#chest", "uv": [ 0, 0.25, 0.25, 1.25 ], "rotation": 180 } 38 | } 39 | } 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/template_chest_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "#particles" 5 | }, 6 | "elements": [ 7 | { 8 | "from": [ 1, 0, 1 ], 9 | "to": [ 16, 10, 15 ], 10 | "faces": { 11 | "down": { "texture": "#chest", "uv": [ 3.5, 4.75, 7.25, 8.25 ], "rotation": 180 }, 12 | "north": { "texture": "#chest", "uv": [ 10.75, 8.25, 14.5, 10.75 ], "rotation": 180 }, 13 | "south": { "texture": "#chest", "uv": [ 3.5, 8.25, 7.25, 10.75 ], "rotation": 180 }, 14 | "west": { "texture": "#chest", "uv": [ 7.25, 8.25, 10.75, 10.75 ], "rotation": 180 } 15 | } 16 | }, 17 | { 18 | "from": [ 1, 10, 1 ], 19 | "to": [ 16, 14, 15 ], 20 | "faces": { 21 | "up": { "texture": "#chest", "uv": [ 7.25, 0, 11, 3.5 ], "rotation": 180 }, 22 | "north": { "texture": "#chest", "uv": [ 10.75, 3.75, 14.5, 4.75 ], "rotation": 180 }, 23 | "south": { "texture": "#chest", "uv": [ 3.5, 3.75, 7.25, 4.75 ], "rotation": 180 }, 24 | "west": { "texture": "#chest", "uv": [ 7.25, 3.75, 10.75, 4.75 ], "rotation": 180 } 25 | } 26 | }, 27 | { 28 | "from": [ 15, 7, 0 ], 29 | "to": [ 16, 11, 1], 30 | "faces": { 31 | "down": { "texture": "#chest", "uv": [ 0.25, 0, 0.5, 0.25 ], "rotation": 180 }, 32 | "up": { "texture": "#chest", "uv": [ 0.5, 0, 0.75, 0.25 ], "rotation": 180 }, 33 | "north": { "texture": "#chest", "uv": [ 0.75, 0.25, 1, 1.25 ], "rotation": 180 }, 34 | "west": { "texture": "#chest", "uv": [ 0.5, 0.25, 0.75, 1.25 ], "rotation": 180 } 35 | } 36 | } 37 | ] 38 | } 39 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/template_chest_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "#particles" 5 | }, 6 | "elements": [ 7 | { 8 | "from": [ 0, 0, 1 ], 9 | "to": [ 15, 10, 15 ], 10 | "faces": { 11 | "down": { "texture": "#chest", "uv": [ 3.5, 4.75, 7.25, 8.25 ], "rotation": 180 }, 12 | "north": { "texture": "#chest", "uv": [ 10.75, 8.25, 14.5, 10.75 ], "rotation": 180 }, 13 | "east": { "texture": "#chest", "uv": [ 0, 8.25, 3.5, 10.75 ], "rotation": 180 }, 14 | "south": { "texture": "#chest", "uv": [ 3.5, 8.25, 7.25, 10.75 ], "rotation": 180 } 15 | } 16 | }, 17 | { 18 | "from": [ 0, 10, 1 ], 19 | "to": [ 15, 14, 15 ], 20 | "faces": { 21 | "up": { "texture": "#chest", "uv": [ 7.25, 0, 11, 3.5 ], "rotation": 180 }, 22 | "north": { "texture": "#chest", "uv": [ 10.75, 3.75, 14.5, 4.75 ], "rotation": 180 }, 23 | "east": { "texture": "#chest", "uv": [ 0, 3.75, 3.5, 4.75 ], "rotation": 180 }, 24 | "south": { "texture": "#chest", "uv": [ 3.5, 3.75, 7.25, 4.75 ], "rotation": 180 } 25 | } 26 | }, 27 | { 28 | "from": [ 0, 7, 0 ], 29 | "to": [ 1, 11, 1], 30 | "faces": { 31 | "down": { "texture": "#chest", "uv": [ 0.25, 0, 0.5, 0.25 ], "rotation": 180 }, 32 | "up": { "texture": "#chest", "uv": [ 0.5, 0, 0.75, 0.25 ], "rotation": 180 }, 33 | "north": { "texture": "#chest", "uv": [ 0.75, 0.25, 1, 1.25 ], "rotation": 180 }, 34 | "east": { "texture": "#chest", "uv": [ 0.0, 0.25, 0.25, 1.25 ], "rotation": 180 } 35 | } 36 | } 37 | ] 38 | } 39 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/trapped_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_chest", 3 | "textures": { 4 | "particle": "minecraft:block/oak_planks", 5 | "chest": "minecraft:entity/chest/trapped" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/trapped_chest_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_chest_left", 3 | "textures": { 4 | "particle": "minecraft:block/oak_planks", 5 | "chest": "minecraft:entity/chest/trapped_left" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/block/trapped_chest_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_chest_right", 3 | "textures": { 4 | "particle": "minecraft:block/oak_planks", 5 | "chest": "minecraft:entity/chest/trapped_right" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/chest" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/ender_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/ender_chest" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/trapped_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/trapped_chest" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- 1 | { 2 | "schemaVersion": 1, 3 | "id": "fastchest", 4 | "version": "${version}", 5 | 6 | "name": "FastChest", 7 | "description": "Makes Chests use static models instead of BERs.", 8 | "authors": [ 9 | "Domi" 10 | ], 11 | "contact": { 12 | "homepage": "https://www.curseforge.com/minecraft/mc-mods/fastchest", 13 | "sources": "https://github.com/FakeDomi/FastChest" 14 | }, 15 | 16 | "license": "MIT", 17 | "icon": "assets/fastchest/icon.png", 18 | 19 | "environment": "*", 20 | "entrypoints": { 21 | "main": [ 22 | ] 23 | }, 24 | "mixins": [ 25 | "fc.mixins.json" 26 | ], 27 | 28 | "depends": { 29 | "fabricloader": ">=0.7.4", 30 | "minecraft": "1.16.x" 31 | }, 32 | "suggests": { 33 | "flamingo": "*" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/main/resources/fc.mixins.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": true, 3 | "minVersion": "0.8", 4 | "package": "re.domi.fastchest.mixin", 5 | "compatibilityLevel": "JAVA_8", 6 | "mixins": [ 7 | ], 8 | "client": [ 9 | "BlockEntityRenderDispatcherMixin", 10 | "ChestBlockMixin", 11 | "EnderChestBlockMixin" 12 | ], 13 | "injectors": { 14 | "defaultRequire": 1 15 | } 16 | } 17 | --------------------------------------------------------------------------------