Initial update to 1.8, not tested (it only compiles) with huge portions commented out (due to a lack of Forge)
|
|
@ -0,0 +1,14 @@
|
||||||
|
build/
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
.gradle/
|
||||||
|
eclipse/
|
||||||
|
bin/
|
||||||
|
repo/
|
||||||
|
/run/
|
||||||
|
.settings/
|
||||||
|
#IDEA files from Gradle
|
||||||
|
.idea/
|
||||||
|
/*.iml
|
||||||
|
/*.ipr
|
||||||
|
/*.iws
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
ironchest
|
||||||
|
=========
|
||||||
|
|
||||||
|
Iron Chest minecraft mod
|
||||||
|
|
||||||
|
a GPL v3 licensed mod by cpw
|
||||||
|
|
||||||
|
Currently Maintained by ProgWML6
|
||||||
|
|
||||||
|
See http://files.minecraftforge.net/IronChests2/ for downloads
|
||||||
|
|
@ -0,0 +1,196 @@
|
||||||
|
// This sets us up for building a forge project - you need all of these
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
name = "forge"
|
||||||
|
url = "http://files.minecraftforge.net/maven"
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
name = "sonatype"
|
||||||
|
url = "https://oss.sonatype.org/content/repositories/snapshots/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Apply the forge plugin - this adds all the magic for automatically obfuscating, deobfuscating etc
|
||||||
|
apply plugin: 'forge'
|
||||||
|
|
||||||
|
// This is a simple flatdir repository for "uploadArchives" when you don't have a remote repo to target
|
||||||
|
repositories {
|
||||||
|
flatDir {
|
||||||
|
name "fileRepo"
|
||||||
|
dirs "repo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// IronChest uses git tagging to mark major versions. This sets up the project version to that version data
|
||||||
|
def versionInfo = getGitVersion()
|
||||||
|
version = "${versionInfo['IronChest.version']}"
|
||||||
|
|
||||||
|
// This is our group. I'm cpw.mods
|
||||||
|
group= "cpw.mods" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
|
// This is our actual project within the group. Note: FML has "fml" here. But this is ironchest.
|
||||||
|
archivesBaseName = "ironchest"
|
||||||
|
|
||||||
|
// Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here
|
||||||
|
minecraft {
|
||||||
|
version = "1.7.10-10.13.0.1150"
|
||||||
|
}
|
||||||
|
|
||||||
|
// This wrangles the resources for the jar files- stuff like textures and languages
|
||||||
|
processResources
|
||||||
|
{
|
||||||
|
// we're omitting the .xcf files - they're development only
|
||||||
|
exclude '**/*.xcf'
|
||||||
|
// we only want to do search/replace stuff in mcmod.info, nothing else
|
||||||
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
|
include 'mcmod.info'
|
||||||
|
|
||||||
|
// replace version and mcversion
|
||||||
|
expand 'version':project.version, 'mcversion':project.minecraft.version
|
||||||
|
}
|
||||||
|
|
||||||
|
// copy everything else, thats not the mcmod.info
|
||||||
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
|
exclude 'mcmod.info'
|
||||||
|
}
|
||||||
|
|
||||||
|
// generate version.properties file from the git version data earlier
|
||||||
|
doLast {
|
||||||
|
def propsFile = new File(destinationDir, 'version.properties')
|
||||||
|
def properties = new Properties()
|
||||||
|
properties.putAll(versionInfo)
|
||||||
|
properties['IronChest.build.mcversion'] = project.minecraft.version
|
||||||
|
properties.store(propsFile.newWriter(), null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// this sets our output jar to have a 'tag' of 'universal' on it
|
||||||
|
// It also adds the minecraft version in a custom version name
|
||||||
|
// The result is files named <projectname>-<mcversion>-<version>-universal.jar
|
||||||
|
jar {
|
||||||
|
classifier = 'universal'
|
||||||
|
version = "${project.minecraft.version}-${project.version}"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
println "FISHBUM ${jar.version}"
|
||||||
|
|
||||||
|
// Add in a source jar for people, should they desire to download such a thing
|
||||||
|
task sourceJar(type: Jar) {
|
||||||
|
from sourceSets.main.allSource
|
||||||
|
classifier = 'src'
|
||||||
|
version = "${project.minecraft.version}-${project.version}"
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add in an mcp named jar, for those who wish to run in a development environment (assuming mcp naming matches)
|
||||||
|
task deobfJar(type: Jar) {
|
||||||
|
from sourceSets.main.output
|
||||||
|
classifier = 'deobf'
|
||||||
|
version = "${project.minecraft.version}-${project.version}"
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tell the artifact system about our extra jars
|
||||||
|
artifacts {
|
||||||
|
archives sourceJar, deobfJar
|
||||||
|
}
|
||||||
|
|
||||||
|
// Configure an upload task. this is setup for uploading to files.minecraftforge.net. There are other examples around
|
||||||
|
uploadArchives {
|
||||||
|
dependsOn 'reobf'
|
||||||
|
repositories {
|
||||||
|
if (project.hasProperty("filesmaven")) {
|
||||||
|
logger.info('Publishing to files server')
|
||||||
|
|
||||||
|
mavenDeployer {
|
||||||
|
configuration = configurations.deployJars
|
||||||
|
|
||||||
|
repository(url: project.filesmaven.url) {
|
||||||
|
authentication(userName: project.filesmaven.username, privateKey: project.filesmaven.key)
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is just the pom data for the maven repo
|
||||||
|
pom {
|
||||||
|
groupId = project.group
|
||||||
|
// Force the maven upload to use the <mcversion>-<version> syntax preferred at files
|
||||||
|
version = "${project.minecraft.version}-${project.version}"
|
||||||
|
artifactId = project.archivesBaseName
|
||||||
|
project {
|
||||||
|
name project.archivesBaseName
|
||||||
|
packaging 'jar'
|
||||||
|
description 'IronChest'
|
||||||
|
url 'https://github.com/cpw/IronChest'
|
||||||
|
|
||||||
|
scm {
|
||||||
|
url 'https://github.com/progwml6/IronChest'
|
||||||
|
connection 'scm:git:git://github.com/progwml6/IronChest.git'
|
||||||
|
developerConnection 'scm:git:git@github.com:progwml6/IronChest.git'
|
||||||
|
}
|
||||||
|
|
||||||
|
issueManagement {
|
||||||
|
system 'github'
|
||||||
|
url 'https://github.com/progwml6/IronChest/issues'
|
||||||
|
}
|
||||||
|
|
||||||
|
licenses {
|
||||||
|
license {
|
||||||
|
name 'GNU Public License (GPL), Version 3.0'
|
||||||
|
url 'http://www.gnu.org/licenses/gpl-3.0.txt'
|
||||||
|
distribution 'repo'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id 'cpw'
|
||||||
|
name 'cpw'
|
||||||
|
roles { role 'developer' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logger.info('Publishing to repo folder')
|
||||||
|
|
||||||
|
mavenDeployer {
|
||||||
|
pom.version = "${project.minecraft.version}-${project.version}"
|
||||||
|
repository(url: 'file://localhost/' + project.file('repo').getAbsolutePath())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is a special task for pulling the version information from git and the environment (for BUILD_NUMBER)
|
||||||
|
def getGitVersion()
|
||||||
|
{
|
||||||
|
def out = [:]
|
||||||
|
|
||||||
|
// call git command.
|
||||||
|
def outStream = new ByteArrayOutputStream()
|
||||||
|
def result = exec {
|
||||||
|
executable = 'git'
|
||||||
|
args = [ 'describe', '--long', "--match=[^(jenkins)]*"]
|
||||||
|
standardOutput = outStream
|
||||||
|
}
|
||||||
|
|
||||||
|
def fullVersion = outStream.toString().trim()
|
||||||
|
def matcher = fullVersion =~ /(\d+).(\d+)-(\d+)-(.*)/
|
||||||
|
|
||||||
|
def maj = matcher[0][1]
|
||||||
|
def min = matcher[0][2]
|
||||||
|
def rev = matcher[0][3]
|
||||||
|
def bn = System.getenv("BUILD_NUMBER") ?: "1"
|
||||||
|
|
||||||
|
out['IronChest.build.major.number'] = maj.toString()
|
||||||
|
out['IronChest.build.minor.number'] = min.toString()
|
||||||
|
out['IronChest.build.revision.number'] = rev.toString()
|
||||||
|
out['IronChest.build.githash'] = matcher[0][4].toString()
|
||||||
|
out['IronChest.build.number' ] = bn.toString()
|
||||||
|
out['IronChest.version' ] = "${maj}.${min}.${rev}.${bn}".toString()
|
||||||
|
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
#Wed Sep 10 01:32:34 EDT 2014
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-bin.zip
|
||||||
|
|
@ -0,0 +1,164 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
##
|
||||||
|
## Gradle start up script for UN*X
|
||||||
|
##
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS=""
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=`basename "$0"`
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD="maximum"
|
||||||
|
|
||||||
|
warn ( ) {
|
||||||
|
echo "$*"
|
||||||
|
}
|
||||||
|
|
||||||
|
die ( ) {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN* )
|
||||||
|
cygwin=true
|
||||||
|
;;
|
||||||
|
Darwin* )
|
||||||
|
darwin=true
|
||||||
|
;;
|
||||||
|
MINGW* )
|
||||||
|
msys=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# For Cygwin, ensure paths are in UNIX format before anything is touched.
|
||||||
|
if $cygwin ; then
|
||||||
|
[ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
PRG="$0"
|
||||||
|
# Need this for relative symlinks.
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG=`dirname "$PRG"`"/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
SAVED="`pwd`"
|
||||||
|
cd "`dirname \"$PRG\"`/" >&-
|
||||||
|
APP_HOME="`pwd -P`"
|
||||||
|
cd "$SAVED" >&-
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="java"
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
|
||||||
|
MAX_FD_LIMIT=`ulimit -H -n`
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||||
|
MAX_FD="$MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
ulimit -n $MAX_FD
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Darwin, add options to specify how the application appears in the dock
|
||||||
|
if $darwin; then
|
||||||
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin ; then
|
||||||
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||||
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||||
|
|
||||||
|
# We build the pattern for arguments to be converted via cygpath
|
||||||
|
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||||
|
SEP=""
|
||||||
|
for dir in $ROOTDIRSRAW ; do
|
||||||
|
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||||
|
SEP="|"
|
||||||
|
done
|
||||||
|
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||||
|
# Add a user-defined pattern to the cygpath arguments
|
||||||
|
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||||
|
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||||
|
fi
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
i=0
|
||||||
|
for arg in "$@" ; do
|
||||||
|
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||||
|
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||||
|
|
||||||
|
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||||
|
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||||
|
else
|
||||||
|
eval `echo args$i`="\"$arg\""
|
||||||
|
fi
|
||||||
|
i=$((i+1))
|
||||||
|
done
|
||||||
|
case $i in
|
||||||
|
(0) set -- ;;
|
||||||
|
(1) set -- "$args0" ;;
|
||||||
|
(2) set -- "$args0" "$args1" ;;
|
||||||
|
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||||
|
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||||
|
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||||
|
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||||
|
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||||
|
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||||
|
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
|
||||||
|
function splitJvmOpts() {
|
||||||
|
JVM_OPTS=("$@")
|
||||||
|
}
|
||||||
|
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
|
||||||
|
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
|
||||||
|
|
||||||
|
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
||||||
|
|
@ -0,0 +1,90 @@
|
||||||
|
@if "%DEBUG%" == "" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS=
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if "%ERRORLEVEL%" == "0" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:init
|
||||||
|
@rem Get command-line arguments, handling Windowz variants
|
||||||
|
|
||||||
|
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||||
|
if "%@eval[2+2]" == "4" goto 4NT_args
|
||||||
|
|
||||||
|
:win9xME_args
|
||||||
|
@rem Slurp the command line arguments.
|
||||||
|
set CMD_LINE_ARGS=
|
||||||
|
set _SKIP=2
|
||||||
|
|
||||||
|
:win9xME_args_slurp
|
||||||
|
if "x%~1" == "x" goto execute
|
||||||
|
|
||||||
|
set CMD_LINE_ARGS=%*
|
||||||
|
goto execute
|
||||||
|
|
||||||
|
:4NT_args
|
||||||
|
@rem Get arguments from the 4NT Shell from JP Software
|
||||||
|
set CMD_LINE_ARGS=%$
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
package invtweaks.api.container;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.RetentionPolicy;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A marker for containers that have a chest-like persistant storage component. Enables the Inventroy Tweaks sorting
|
||||||
|
* buttons for this container.
|
||||||
|
*/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.TYPE)
|
||||||
|
public @interface ChestContainer {
|
||||||
|
// Size of a chest row
|
||||||
|
int rowSize() default 9;
|
||||||
|
|
||||||
|
// Uses 'large chest' mode for sorting buttons
|
||||||
|
// (Renders buttons vertically down the right side of the GUI)
|
||||||
|
boolean isLargeChest() default false;
|
||||||
|
|
||||||
|
// Annotation for method to get size of a chest row if it is not a fixed size for this container class
|
||||||
|
// Signature int func()
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.METHOD)
|
||||||
|
public @interface RowSizeCallback {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,275 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.block.BlockContainer;
|
||||||
|
import net.minecraft.block.material.Material;
|
||||||
|
import net.minecraft.block.state.IBlockState;
|
||||||
|
import net.minecraft.creativetab.CreativeTabs;
|
||||||
|
import net.minecraft.entity.Entity;
|
||||||
|
import net.minecraft.entity.EntityLivingBase;
|
||||||
|
import net.minecraft.entity.item.EntityItem;
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.inventory.Container;
|
||||||
|
import net.minecraft.inventory.IInventory;
|
||||||
|
import net.minecraft.item.Item;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.nbt.NBTTagCompound;
|
||||||
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.util.BlockPos;
|
||||||
|
import net.minecraft.util.EnumFacing;
|
||||||
|
import net.minecraft.util.MathHelper;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
import net.minecraftforge.fml.relauncher.Side;
|
||||||
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
||||||
|
|
||||||
|
import com.google.common.collect.Lists;
|
||||||
|
|
||||||
|
public class BlockIronChest extends BlockContainer {
|
||||||
|
|
||||||
|
private Random random;
|
||||||
|
|
||||||
|
public BlockIronChest()
|
||||||
|
{
|
||||||
|
super(Material.iron);
|
||||||
|
setUnlocalizedName("IronChest");
|
||||||
|
setHardness(3.0F);
|
||||||
|
setBlockBounds(0.0625F, 0F, 0.0625F, 0.9375F, 0.875F, 0.9375F);
|
||||||
|
random = new Random();
|
||||||
|
setCreativeTab(CreativeTabs.tabDecorations);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isOpaqueCube()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean renderAsNormalBlock()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getRenderType()
|
||||||
|
{
|
||||||
|
return 22;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TileEntity createNewTileEntity(World world, int metadata)
|
||||||
|
{
|
||||||
|
return IronChestType.makeEntity(metadata);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*@Override
|
||||||
|
public ArrayList<ItemStack> getDrops(World world, int x, int y, int z, int metadata, int fortune)
|
||||||
|
{
|
||||||
|
ArrayList<ItemStack> items = Lists.newArrayList();
|
||||||
|
ItemStack stack = new ItemStack(this,1,metadata);
|
||||||
|
IronChestType.values()[IronChestType.validateMeta(metadata)].adornItemDrop(stack);
|
||||||
|
items.add(stack);
|
||||||
|
return items;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState blockState, EntityPlayer player, EnumFacing direction, float p_180639_6_, float p_180639_7_, float p_180639_8_)
|
||||||
|
{
|
||||||
|
TileEntity te = world.getTileEntity(pos);
|
||||||
|
|
||||||
|
if (te == null || !(te instanceof TileEntityIronChest))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*if (world.isSideSolid(i, j + 1, k, ForgeDirection.DOWN))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
if (world.isRemote)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
player.openGui(IronChest.instance, ((TileEntityIronChest) te).getType().ordinal(), world, pos.getX(), pos.getY(), pos.getZ());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBlockAdded(World world, BlockPos pos, IBlockState blockState)
|
||||||
|
{
|
||||||
|
super.onBlockAdded(world, pos, blockState);
|
||||||
|
world.markBlockForUpdate(pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBlockPlacedBy(World world, BlockPos pos, IBlockState blockState, EntityLivingBase entityliving, ItemStack itemStack)
|
||||||
|
{
|
||||||
|
byte chestFacing = 0;
|
||||||
|
int facing = MathHelper.floor_double((double) ((entityliving.rotationYaw * 4F) / 360F) + 0.5D) & 3;
|
||||||
|
if (facing == 0)
|
||||||
|
{
|
||||||
|
chestFacing = 2;
|
||||||
|
}
|
||||||
|
if (facing == 1)
|
||||||
|
{
|
||||||
|
chestFacing = 5;
|
||||||
|
}
|
||||||
|
if (facing == 2)
|
||||||
|
{
|
||||||
|
chestFacing = 3;
|
||||||
|
}
|
||||||
|
if (facing == 3)
|
||||||
|
{
|
||||||
|
chestFacing = 4;
|
||||||
|
}
|
||||||
|
TileEntity te = world.getTileEntity(pos);
|
||||||
|
if (te != null && te instanceof TileEntityIronChest)
|
||||||
|
{
|
||||||
|
TileEntityIronChest teic = (TileEntityIronChest) te;
|
||||||
|
teic.wasPlaced(entityliving, itemStack);
|
||||||
|
teic.setFacing(chestFacing);
|
||||||
|
world.markBlockForUpdate(pos);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*@Override
|
||||||
|
public int damageDropped(int i)
|
||||||
|
{
|
||||||
|
return i;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void breakBlock(World world, BlockPos pos, IBlockState blockState)
|
||||||
|
{
|
||||||
|
TileEntityIronChest tileentitychest = (TileEntityIronChest) world.getTileEntity(pos);
|
||||||
|
if (tileentitychest != null)
|
||||||
|
{
|
||||||
|
tileentitychest.removeAdornments();
|
||||||
|
dropContent(0, tileentitychest, world, tileentitychest.getPos());
|
||||||
|
}
|
||||||
|
super.breakBlock(world, pos, blockState);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void dropContent(int newSize, IInventory chest, World world, BlockPos pos)
|
||||||
|
{
|
||||||
|
for (int l = newSize; l < chest.getSizeInventory(); l++)
|
||||||
|
{
|
||||||
|
ItemStack itemstack = chest.getStackInSlot(l);
|
||||||
|
if (itemstack == null)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
float f = random.nextFloat() * 0.8F + 0.1F;
|
||||||
|
float f1 = random.nextFloat() * 0.8F + 0.1F;
|
||||||
|
float f2 = random.nextFloat() * 0.8F + 0.1F;
|
||||||
|
while (itemstack.stackSize > 0)
|
||||||
|
{
|
||||||
|
int i1 = random.nextInt(21) + 10;
|
||||||
|
if (i1 > itemstack.stackSize)
|
||||||
|
{
|
||||||
|
i1 = itemstack.stackSize;
|
||||||
|
}
|
||||||
|
itemstack.stackSize -= i1;
|
||||||
|
EntityItem entityitem = new EntityItem(world, (float) pos.getX() + f, (float) pos.getY() + (newSize > 0 ? 1 : 0) + f1, (float) pos.getZ() + f2,
|
||||||
|
new ItemStack(itemstack.getItem(), i1, itemstack.getMetadata()));
|
||||||
|
float f3 = 0.05F;
|
||||||
|
entityitem.motionX = (float) random.nextGaussian() * f3;
|
||||||
|
entityitem.motionY = (float) random.nextGaussian() * f3 + 0.2F;
|
||||||
|
entityitem.motionZ = (float) random.nextGaussian() * f3;
|
||||||
|
if (itemstack.hasTagCompound())
|
||||||
|
{
|
||||||
|
entityitem.getEntityItem().setTagCompound((NBTTagCompound) itemstack.getTagCompound().copy());
|
||||||
|
}
|
||||||
|
world.spawnEntityInWorld(entityitem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||||
|
@SideOnly(Side.CLIENT)
|
||||||
|
public void getSubBlocks(Item par1, CreativeTabs par2CreativeTabs, List par3List)
|
||||||
|
{
|
||||||
|
for (IronChestType type : IronChestType.values())
|
||||||
|
{
|
||||||
|
if (type.isValidForCreativeMode())
|
||||||
|
{
|
||||||
|
par3List.add(new ItemStack(this, 1, type.ordinal()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*@Override
|
||||||
|
public float getExplosionResistance(Entity par1Entity, World world, int x, int y, int z, double explosionX, double explosionY, double explosionZ)
|
||||||
|
{
|
||||||
|
TileEntity te = world.getTileEntity(x, y, z);
|
||||||
|
if (te instanceof TileEntityIronChest)
|
||||||
|
{
|
||||||
|
TileEntityIronChest teic = (TileEntityIronChest) te;
|
||||||
|
if (teic.getType().isExplosionResistant())
|
||||||
|
{
|
||||||
|
return 10000f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.getExplosionResistance(par1Entity, world, x, y, z, explosionX, explosionY, explosionZ);
|
||||||
|
}*/
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasComparatorInputOverride() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getComparatorInputOverride(World world, BlockPos pos)
|
||||||
|
{
|
||||||
|
TileEntity te = world.getTileEntity(pos);
|
||||||
|
if (te instanceof IInventory)
|
||||||
|
{
|
||||||
|
return Container.calcRedstoneFromInventory((IInventory)te);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*private static final ForgeDirection[] validRotationAxes = new ForgeDirection[] { UP, DOWN };
|
||||||
|
@Override
|
||||||
|
public ForgeDirection[] getValidRotations(World worldObj, int x, int y, int z)
|
||||||
|
{
|
||||||
|
return validRotationAxes;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean rotateBlock(World worldObj, int x, int y, int z, ForgeDirection axis)
|
||||||
|
{
|
||||||
|
if (worldObj.isRemote)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (axis == UP || axis == DOWN)
|
||||||
|
{
|
||||||
|
TileEntity tileEntity = worldObj.getTileEntity(x, y, z);
|
||||||
|
if (tileEntity instanceof TileEntityIronChest) {
|
||||||
|
TileEntityIronChest icte = (TileEntityIronChest) tileEntity;
|
||||||
|
icte.rotateAround(axis);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,93 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw. All rights reserved. This program and the accompanying materials are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors: cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import static cpw.mods.ironchest.IronChestType.COPPER;
|
||||||
|
import static cpw.mods.ironchest.IronChestType.CRYSTAL;
|
||||||
|
import static cpw.mods.ironchest.IronChestType.DIAMOND;
|
||||||
|
import static cpw.mods.ironchest.IronChestType.GOLD;
|
||||||
|
import static cpw.mods.ironchest.IronChestType.IRON;
|
||||||
|
import static cpw.mods.ironchest.IronChestType.OBSIDIAN;
|
||||||
|
import static cpw.mods.ironchest.IronChestType.SILVER;
|
||||||
|
import static cpw.mods.ironchest.IronChestType.WOOD;
|
||||||
|
import net.minecraft.init.Blocks;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
||||||
|
|
||||||
|
public enum ChestChangerType {
|
||||||
|
IRONGOLD(IRON, GOLD, "ironGoldUpgrade", "Iron to Gold Chest Upgrade", "mmm", "msm", "mmm"),
|
||||||
|
GOLDDIAMOND(GOLD, DIAMOND, "goldDiamondUpgrade", "Gold to Diamond Chest Upgrade", "GGG", "msm", "GGG"),
|
||||||
|
COPPERSILVER(COPPER, SILVER, "copperSilverUpgrade", "Copper to Silver Chest Upgrade", "mmm", "msm", "mmm"),
|
||||||
|
SILVERGOLD(SILVER, GOLD, "silverGoldUpgrade", "Silver to Gold Chest Upgrade", "mGm", "GsG", "mGm"),
|
||||||
|
COPPERIRON(COPPER, IRON, "copperIronUpgrade", "Copper to Iron Chest Upgrade", "mGm", "GsG", "mGm"),
|
||||||
|
DIAMONDCRYSTAL(DIAMOND, CRYSTAL, "diamondCrystalUpgrade", "Diamond to Crystal Chest Upgrade", "GGG", "GOG", "GGG"),
|
||||||
|
WOODIRON(WOOD, IRON, "woodIronUpgrade", "Normal chest to Iron Chest Upgrade", "mmm", "msm", "mmm"),
|
||||||
|
WOODCOPPER(WOOD, COPPER, "woodCopperUpgrade", "Normal chest to Copper Chest Upgrade", "mmm", "msm", "mmm"),
|
||||||
|
DIAMONDOBSIDIAN(DIAMOND, OBSIDIAN, "diamondObsidianUpgrade", "Diamond to Obsidian Chest Upgrade", "mmm", "mGm", "mmm");
|
||||||
|
|
||||||
|
private IronChestType source;
|
||||||
|
private IronChestType target;
|
||||||
|
public String itemName;
|
||||||
|
public String descriptiveName;
|
||||||
|
private ItemChestChanger item;
|
||||||
|
private String[] recipe;
|
||||||
|
|
||||||
|
private ChestChangerType(IronChestType source, IronChestType target, String itemName, String descriptiveName, String... recipe)
|
||||||
|
{
|
||||||
|
this.source = source;
|
||||||
|
this.target = target;
|
||||||
|
this.itemName = itemName;
|
||||||
|
this.descriptiveName = descriptiveName;
|
||||||
|
this.recipe = recipe;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean canUpgrade(IronChestType from)
|
||||||
|
{
|
||||||
|
return from == this.source;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getTarget()
|
||||||
|
{
|
||||||
|
return this.target.ordinal();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemChestChanger buildItem()
|
||||||
|
{
|
||||||
|
item = new ItemChestChanger(this);
|
||||||
|
GameRegistry.registerItem(item, itemName);
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addRecipes()
|
||||||
|
{
|
||||||
|
for (String sourceMat : source.getMatList())
|
||||||
|
{
|
||||||
|
for (String targetMat : target.getMatList())
|
||||||
|
{
|
||||||
|
Object targetMaterial = IronChestType.translateOreName(targetMat);
|
||||||
|
Object sourceMaterial = IronChestType.translateOreName(sourceMat);
|
||||||
|
IronChestType.addRecipe(new ItemStack(item), recipe, 'm', targetMaterial, 's', sourceMaterial, 'G', Blocks.glass, 'O', Blocks.obsidian);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void buildItems()
|
||||||
|
{
|
||||||
|
for (ChestChangerType type : values())
|
||||||
|
{
|
||||||
|
type.buildItem();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void generateRecipes()
|
||||||
|
{
|
||||||
|
for (ChestChangerType item : values())
|
||||||
|
{
|
||||||
|
item.addRecipes();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,56 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.util.BlockPos;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
import net.minecraftforge.fml.common.network.IGuiHandler;
|
||||||
|
|
||||||
|
public class CommonProxy implements IGuiHandler {
|
||||||
|
public void registerRenderInformation()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void registerTileEntitySpecialRenderer(IronChestType typ)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
|
||||||
|
{
|
||||||
|
TileEntity te = world.getTileEntity(new BlockPos(x, y, z));
|
||||||
|
if (te != null && te instanceof TileEntityIronChest)
|
||||||
|
{
|
||||||
|
TileEntityIronChest icte = (TileEntityIronChest) te;
|
||||||
|
return new ContainerIronChest(player.inventory, icte, icte.getType(), 0, 0);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public World getClientWorld()
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,124 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.entity.player.InventoryPlayer;
|
||||||
|
import net.minecraft.inventory.Container;
|
||||||
|
import net.minecraft.inventory.IInventory;
|
||||||
|
import net.minecraft.inventory.Slot;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
|
||||||
|
//@ChestContainer(isLargeChest = true)
|
||||||
|
public class ContainerIronChest extends Container {
|
||||||
|
private IronChestType type;
|
||||||
|
private EntityPlayer player;
|
||||||
|
private IInventory chest;
|
||||||
|
|
||||||
|
public ContainerIronChest(IInventory playerInventory, IInventory chestInventory, IronChestType type, int xSize, int ySize)
|
||||||
|
{
|
||||||
|
chest = chestInventory;
|
||||||
|
player = ((InventoryPlayer) playerInventory).player;
|
||||||
|
this.type = type;
|
||||||
|
chestInventory.openInventory(player);
|
||||||
|
layoutContainer(playerInventory, chestInventory, type, xSize, ySize);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean canInteractWith(EntityPlayer player)
|
||||||
|
{
|
||||||
|
return chest.isUseableByPlayer(player);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ItemStack transferStackInSlot(EntityPlayer p, int i)
|
||||||
|
{
|
||||||
|
ItemStack itemstack = null;
|
||||||
|
Slot slot = (Slot) inventorySlots.get(i);
|
||||||
|
if (slot != null && slot.getHasStack())
|
||||||
|
{
|
||||||
|
ItemStack itemstack1 = slot.getStack();
|
||||||
|
itemstack = itemstack1.copy();
|
||||||
|
if (i < type.size)
|
||||||
|
{
|
||||||
|
if (!mergeItemStack(itemstack1, type.size, inventorySlots.size(), true))
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (!type.acceptsStack(itemstack1))
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
else if (!mergeItemStack(itemstack1, 0, type.size, false))
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if (itemstack1.stackSize == 0)
|
||||||
|
{
|
||||||
|
slot.putStack(null);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
slot.onSlotChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return itemstack;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onContainerClosed(EntityPlayer entityplayer)
|
||||||
|
{
|
||||||
|
super.onContainerClosed(entityplayer);
|
||||||
|
chest.closeInventory(entityplayer);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void layoutContainer(IInventory playerInventory, IInventory chestInventory, IronChestType type, int xSize, int ySize)
|
||||||
|
{
|
||||||
|
if (type == IronChestType.DIRTCHEST9000) {
|
||||||
|
addSlotToContainer(type.makeSlot(chestInventory, 0, 12 + 4 * 18, 8 + 2 * 18));
|
||||||
|
} else {
|
||||||
|
for (int chestRow = 0; chestRow < type.getRowCount(); chestRow++)
|
||||||
|
{
|
||||||
|
for (int chestCol = 0; chestCol < type.getRowLength(); chestCol++)
|
||||||
|
{
|
||||||
|
addSlotToContainer(type.makeSlot(chestInventory, chestCol + chestRow * type.getRowLength(), 12 + chestCol * 18, 8 + chestRow * 18));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int leftCol = (xSize - 162) / 2 + 1;
|
||||||
|
for (int playerInvRow = 0; playerInvRow < 3; playerInvRow++)
|
||||||
|
{
|
||||||
|
for (int playerInvCol = 0; playerInvCol < 9; playerInvCol++)
|
||||||
|
{
|
||||||
|
addSlotToContainer(new Slot(playerInventory, playerInvCol + playerInvRow * 9 + 9, leftCol + playerInvCol * 18, ySize - (4 - playerInvRow) * 18
|
||||||
|
- 10));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int hotbarSlot = 0; hotbarSlot < 9; hotbarSlot++)
|
||||||
|
{
|
||||||
|
addSlotToContainer(new Slot(playerInventory, hotbarSlot, leftCol + hotbarSlot * 18, ySize - 24));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public EntityPlayer getPlayer()
|
||||||
|
{
|
||||||
|
return player;
|
||||||
|
}
|
||||||
|
|
||||||
|
//@ChestContainer.RowSizeCallback
|
||||||
|
public int getNumColumns() {
|
||||||
|
return type.getRowLength();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,78 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.init.Blocks;
|
||||||
|
import net.minecraftforge.fml.common.Mod;
|
||||||
|
import net.minecraftforge.fml.common.Mod.EventHandler;
|
||||||
|
import net.minecraftforge.fml.common.Mod.Instance;
|
||||||
|
import net.minecraftforge.fml.common.SidedProxy;
|
||||||
|
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
|
||||||
|
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
||||||
|
import net.minecraftforge.fml.common.network.NetworkRegistry;
|
||||||
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
||||||
|
|
||||||
|
@Mod(modid = "IronChest", name = "Iron Chests", dependencies = "required-after:Forge@[10.10,);required-after:FML@[7.2,)")
|
||||||
|
public class IronChest {
|
||||||
|
public static BlockIronChest ironChestBlock;
|
||||||
|
@SidedProxy(clientSide = "cpw.mods.ironchest.client.ClientProxy", serverSide = "cpw.mods.ironchest.CommonProxy")
|
||||||
|
public static CommonProxy proxy;
|
||||||
|
@Instance("IronChest")
|
||||||
|
public static IronChest instance;
|
||||||
|
public static boolean CACHE_RENDER = true;
|
||||||
|
public static boolean OCELOTS_SITONCHESTS = true;
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void preInit(FMLPreInitializationEvent event)
|
||||||
|
{
|
||||||
|
Version.init(event.getVersionProperties());
|
||||||
|
event.getModMetadata().version = Version.fullVersionString();
|
||||||
|
/*TODO Configuration cfg = new Configuration(event.getSuggestedConfigurationFile());
|
||||||
|
try
|
||||||
|
{
|
||||||
|
cfg.load();
|
||||||
|
ChestChangerType.buildItems(cfg);
|
||||||
|
CACHE_RENDER = cfg.get(Configuration.CATEGORY_GENERAL, "cacheRenderingInformation", true).getBoolean(true);
|
||||||
|
OCELOTS_SITONCHESTS = cfg.get(Configuration.CATEGORY_GENERAL, "ocelotsSitOnChests", true).getBoolean(true);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
FMLLog.log(Level.ERROR, e, "IronChest has a problem loading its configuration");
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
if (cfg.hasChanged())
|
||||||
|
cfg.save();
|
||||||
|
}*/
|
||||||
|
ironChestBlock = new BlockIronChest();
|
||||||
|
GameRegistry.registerBlock(ironChestBlock, ItemIronChest.class, "BlockIronChest");
|
||||||
|
PacketHandler.INSTANCE.ordinal();
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void load(FMLInitializationEvent evt)
|
||||||
|
{
|
||||||
|
for (IronChestType typ : IronChestType.values())
|
||||||
|
{
|
||||||
|
GameRegistry.registerTileEntityWithAlternatives(typ.clazz, "IronChest."+typ.name(), typ.name());
|
||||||
|
proxy.registerTileEntitySpecialRenderer(typ);
|
||||||
|
}
|
||||||
|
//OreDictionary.registerOre("chestWood", Blocks.chest);
|
||||||
|
IronChestType.registerBlocksAndRecipes(ironChestBlock);
|
||||||
|
ChestChangerType.generateRecipes();
|
||||||
|
NetworkRegistry.INSTANCE.registerGuiHandler(instance, proxy);
|
||||||
|
proxy.registerRenderInformation();
|
||||||
|
// if (OCELOTS_SITONCHESTS)
|
||||||
|
// {
|
||||||
|
// MinecraftForge.EVENT_BUS.register(new OcelotsSitOnChestsHandler());
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.entity.ai.EntityAIOcelotSit;
|
||||||
|
import net.minecraft.entity.passive.EntityOcelot;
|
||||||
|
|
||||||
|
public class IronChestAIOcelotSit extends EntityAIOcelotSit
|
||||||
|
{
|
||||||
|
public IronChestAIOcelotSit(EntityOcelot par1EntityOcelot, float par2)
|
||||||
|
{
|
||||||
|
super(par1EntityOcelot, par2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @Override
|
||||||
|
protected boolean func_151486_a(World world, int x, int y, int z)
|
||||||
|
{
|
||||||
|
if (world.getBlock(x, y, z) == IronChest.ironChestBlock)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return super.func_151486_a(world, x, y, z);
|
||||||
|
}
|
||||||
|
*/}
|
||||||
|
|
@ -0,0 +1,240 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import net.minecraft.init.Blocks;
|
||||||
|
import net.minecraft.inventory.IInventory;
|
||||||
|
import net.minecraft.inventory.Slot;
|
||||||
|
import net.minecraft.item.Item;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.nbt.NBTTagByte;
|
||||||
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
||||||
|
|
||||||
|
public enum IronChestType {
|
||||||
|
IRON(54, 9, true, "Iron Chest", "ironchest.png", 0, Arrays.asList("ingotIron", "ingotRefinedIron"), TileEntityIronChest.class, "mmmmPmmmm", "mGmG3GmGm"),
|
||||||
|
GOLD(81, 9, true, "Gold Chest", "goldchest.png", 1, Arrays.asList("ingotGold"), TileEntityGoldChest.class, "mmmmPmmmm", "mGmG4GmGm"),
|
||||||
|
DIAMOND(108, 12, true, "Diamond Chest", "diamondchest.png", 2, Arrays.asList("gemDiamond"), TileEntityDiamondChest.class, "GGGmPmGGG", "GGGG4Gmmm"),
|
||||||
|
COPPER(45, 9, false, "Copper Chest", "copperchest.png", 3, Arrays.asList("ingotCopper"), TileEntityCopperChest.class, "mmmmCmmmm"),
|
||||||
|
SILVER(72, 9, false, "Silver Chest", "silverchest.png", 4, Arrays.asList("ingotSilver"), TileEntitySilverChest.class, "mmmm3mmmm", "mGmG0GmGm"),
|
||||||
|
CRYSTAL(108, 12, true, "Crystal Chest", "crystalchest.png", 5, Arrays.asList("blockGlass"), TileEntityCrystalChest.class, "GGGGPGGGG"),
|
||||||
|
OBSIDIAN(108, 12, false, "Obsidian Chest", "obsidianchest.png", 6, Arrays.asList("obsidian"), TileEntityObsidianChest.class, "mmmm2mmmm"),
|
||||||
|
DIRTCHEST9000(1, 1, false, "Dirt Chest 9000", "dirtchest.png",7,Arrays.asList("dirt"), TileEntityDirtChest.class,Item.getItemFromBlock(Blocks.dirt),"mmmmCmmmm"),
|
||||||
|
WOOD(0, 0, false, "", "", -1, Arrays.asList("plankWood"), null);
|
||||||
|
int size;
|
||||||
|
private int rowLength;
|
||||||
|
public String friendlyName;
|
||||||
|
private boolean tieredChest;
|
||||||
|
private String modelTexture;
|
||||||
|
private int textureRow;
|
||||||
|
public Class<? extends TileEntityIronChest> clazz;
|
||||||
|
private String[] recipes;
|
||||||
|
private ArrayList<String> matList;
|
||||||
|
private Item itemFilter;
|
||||||
|
|
||||||
|
IronChestType(int size, int rowLength, boolean tieredChest, String friendlyName, String modelTexture, int textureRow, List<String> mats,
|
||||||
|
Class<? extends TileEntityIronChest> clazz, String... recipes)
|
||||||
|
{
|
||||||
|
this(size, rowLength, tieredChest, friendlyName, modelTexture, textureRow, mats, clazz, (Item)null, recipes);
|
||||||
|
}
|
||||||
|
IronChestType(int size, int rowLength, boolean tieredChest, String friendlyName, String modelTexture, int textureRow, List<String> mats,
|
||||||
|
Class<? extends TileEntityIronChest> clazz, Item itemFilter, String... recipes)
|
||||||
|
{
|
||||||
|
this.size = size;
|
||||||
|
this.rowLength = rowLength;
|
||||||
|
this.tieredChest = tieredChest;
|
||||||
|
this.friendlyName = friendlyName;
|
||||||
|
this.modelTexture = modelTexture;
|
||||||
|
this.textureRow = textureRow;
|
||||||
|
this.clazz = clazz;
|
||||||
|
this.itemFilter = itemFilter;
|
||||||
|
this.recipes = recipes;
|
||||||
|
this.matList = new ArrayList<String>();
|
||||||
|
matList.addAll(mats);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getModelTexture()
|
||||||
|
{
|
||||||
|
return modelTexture;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getTextureRow()
|
||||||
|
{
|
||||||
|
return textureRow;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static TileEntityIronChest makeEntity(int metadata)
|
||||||
|
{
|
||||||
|
// Compatibility
|
||||||
|
int chesttype = validateMeta(metadata);
|
||||||
|
if (chesttype == metadata)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
TileEntityIronChest te = values()[chesttype].clazz.newInstance();
|
||||||
|
return te;
|
||||||
|
}
|
||||||
|
catch (InstantiationException e)
|
||||||
|
{
|
||||||
|
// unpossible
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
catch (IllegalAccessException e)
|
||||||
|
{
|
||||||
|
// unpossible
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void registerBlocksAndRecipes(BlockIronChest blockResult)
|
||||||
|
{
|
||||||
|
Object previous = "chestWood";
|
||||||
|
for (IronChestType typ : values())
|
||||||
|
{
|
||||||
|
generateRecipesForType(blockResult, previous, typ);
|
||||||
|
ItemStack chest = new ItemStack(blockResult, 1, typ.ordinal());
|
||||||
|
if (typ.isValidForCreativeMode()) GameRegistry.registerCustomItemStack(typ.friendlyName, chest);
|
||||||
|
if (typ.tieredChest) previous = chest;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void generateRecipesForType(BlockIronChest blockResult, Object previousTier, IronChestType type)
|
||||||
|
{
|
||||||
|
for (String recipe : type.recipes)
|
||||||
|
{
|
||||||
|
String[] recipeSplit = new String[] { recipe.substring(0, 3), recipe.substring(3, 6), recipe.substring(6, 9) };
|
||||||
|
Object mainMaterial = null;
|
||||||
|
for (String mat : type.matList)
|
||||||
|
{
|
||||||
|
mainMaterial = translateOreName(mat);
|
||||||
|
addRecipe(new ItemStack(blockResult, 1, type.ordinal()), recipeSplit,
|
||||||
|
'm', mainMaterial, 'P', previousTier, /* previous tier of chest */
|
||||||
|
'G', "blockGlass", 'C', "chestWood",
|
||||||
|
'0', new ItemStack(blockResult, 1, 0), /* Iron Chest */
|
||||||
|
'1', new ItemStack(blockResult, 1, 1), /* Gold Chest */
|
||||||
|
'2', new ItemStack(blockResult, 1, 2), /* Diamond Chest */
|
||||||
|
'3', new ItemStack(blockResult, 1, 3), /* Copper Chest */
|
||||||
|
'4', new ItemStack(blockResult, 1, 4) /* Silver Chest */
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Object translateOreName(String mat)
|
||||||
|
{
|
||||||
|
if (mat.equals("obsidian"))
|
||||||
|
{
|
||||||
|
return Blocks.obsidian;
|
||||||
|
}
|
||||||
|
else if (mat.equals("dirt"))
|
||||||
|
{
|
||||||
|
return Blocks.dirt;
|
||||||
|
}
|
||||||
|
return mat;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void addRecipe(ItemStack is, Object... parts)
|
||||||
|
{
|
||||||
|
//ShapedOreRecipe oreRecipe = new ShapedOreRecipe(is, parts);
|
||||||
|
//GameRegistry.addRecipe(oreRecipe);
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getRowCount()
|
||||||
|
{
|
||||||
|
return size / rowLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getRowLength()
|
||||||
|
{
|
||||||
|
return rowLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isTransparent()
|
||||||
|
{
|
||||||
|
return this == CRYSTAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> getMatList()
|
||||||
|
{
|
||||||
|
return matList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int validateMeta(int i)
|
||||||
|
{
|
||||||
|
if (i < values().length && values()[i].size > 0)
|
||||||
|
{
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isValidForCreativeMode()
|
||||||
|
{
|
||||||
|
return validateMeta(ordinal()) == ordinal();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isExplosionResistant()
|
||||||
|
{
|
||||||
|
return this == OBSIDIAN;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*TODO @SideOnly(Side.CLIENT)
|
||||||
|
private IIcon[] icons;
|
||||||
|
|
||||||
|
@SideOnly(Side.CLIENT)
|
||||||
|
public void makeIcons(IIconRegister par1IconRegister)
|
||||||
|
{
|
||||||
|
if (isValidForCreativeMode())
|
||||||
|
{
|
||||||
|
icons = new IIcon[3];
|
||||||
|
int i = 0;
|
||||||
|
for (String s : sideNames)
|
||||||
|
{
|
||||||
|
icons[i++] = par1IconRegister.registerIcon(String.format("ironchest:%s_%s",name().toLowerCase(),s));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SideOnly(Side.CLIENT)
|
||||||
|
public IIcon getIcon(int side)
|
||||||
|
{
|
||||||
|
|
||||||
|
return icons[sideMapping[side]];
|
||||||
|
}*/
|
||||||
|
|
||||||
|
private static String[] sideNames = { "top", "front", "side" };
|
||||||
|
private static int[] sideMapping = { 0, 0, 2, 1, 2, 2, 2 };
|
||||||
|
|
||||||
|
public Slot makeSlot(IInventory chestInventory, int index, int x, int y)
|
||||||
|
{
|
||||||
|
return new ValidatingSlot(chestInventory, index, x, y, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean acceptsStack(ItemStack itemstack)
|
||||||
|
{
|
||||||
|
return itemFilter == null || itemstack == null || itemstack.getItem() == itemFilter;
|
||||||
|
}
|
||||||
|
public void adornItemDrop(ItemStack item)
|
||||||
|
{
|
||||||
|
if (this == DIRTCHEST9000)
|
||||||
|
{
|
||||||
|
item.setTagInfo("dirtchest", new NBTTagByte((byte) 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,106 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.creativetab.CreativeTabs;
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.init.Blocks;
|
||||||
|
import net.minecraft.item.Item;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.tileentity.TileEntityChest;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
import net.minecraftforge.fml.common.ObfuscationReflectionHelper;
|
||||||
|
import net.minecraftforge.fml.relauncher.Side;
|
||||||
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
||||||
|
|
||||||
|
public class ItemChestChanger extends Item {
|
||||||
|
|
||||||
|
private ChestChangerType type;
|
||||||
|
|
||||||
|
public ItemChestChanger(ChestChangerType type)
|
||||||
|
{
|
||||||
|
super();
|
||||||
|
setMaxStackSize(1);
|
||||||
|
this.type = type;
|
||||||
|
setUnlocalizedName("ironchest:"+type.name());
|
||||||
|
setCreativeTab(CreativeTabs.tabMisc);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*@Override
|
||||||
|
public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int X, int Y, int Z, int side, float hitX, float hitY, float hitZ)
|
||||||
|
{
|
||||||
|
if (world.isRemote) return false;
|
||||||
|
TileEntity te = world.getTileEntity(X, Y, Z);
|
||||||
|
TileEntityIronChest newchest;
|
||||||
|
if (te != null && te instanceof TileEntityIronChest)
|
||||||
|
{
|
||||||
|
TileEntityIronChest ironchest = (TileEntityIronChest) te;
|
||||||
|
newchest = ironchest.applyUpgradeItem(this);
|
||||||
|
if (newchest == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (te != null && te instanceof TileEntityChest)
|
||||||
|
{
|
||||||
|
TileEntityChest tec = (TileEntityChest) te;
|
||||||
|
if (tec.numPlayersUsing > 0)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!getType().canUpgrade(IronChestType.WOOD))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// Force old TE out of the world so that adjacent chests can update
|
||||||
|
newchest = IronChestType.makeEntity(getTargetChestOrdinal(IronChestType.WOOD.ordinal()));
|
||||||
|
int newSize = newchest.chestContents.length;
|
||||||
|
ItemStack[] chestContents = ObfuscationReflectionHelper.getPrivateValue(TileEntityChest.class, tec, 0);
|
||||||
|
System.arraycopy(chestContents, 0, newchest.chestContents, 0, Math.min(newSize, chestContents.length));
|
||||||
|
BlockIronChest block = IronChest.ironChestBlock;
|
||||||
|
block.dropContent(newSize, tec, world, tec.xCoord, tec.yCoord, tec.zCoord);
|
||||||
|
newchest.setFacing((byte) tec.getBlockMetadata());
|
||||||
|
newchest.sortTopStacks();
|
||||||
|
for (int i = 0; i < Math.min(newSize, chestContents.length); i++)
|
||||||
|
{
|
||||||
|
chestContents[i] = null;
|
||||||
|
}
|
||||||
|
// Clear the old block out
|
||||||
|
world.setBlock(X, Y, Z, Blocks.air, 0, 3);
|
||||||
|
// Force the Chest TE to reset it's knowledge of neighbouring blocks
|
||||||
|
tec.updateContainingBlockInfo();
|
||||||
|
// Force the Chest TE to update any neighbours so they update next
|
||||||
|
// tick
|
||||||
|
tec.checkForAdjacentChests();
|
||||||
|
// And put in our block instead
|
||||||
|
world.setBlock(X, Y, Z, block, newchest.getType().ordinal(), 3);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
world.setTileEntity(X, Y, Z, newchest);
|
||||||
|
world.setBlockMetadataWithNotify(X, Y, Z, newchest.getType().ordinal(), 3);
|
||||||
|
stack.stackSize = 0;
|
||||||
|
return true;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
public int getTargetChestOrdinal(int sourceOrdinal)
|
||||||
|
{
|
||||||
|
return type.getTarget();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ChestChangerType getType()
|
||||||
|
{
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.item.ItemBlock;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
|
||||||
|
public class ItemIronChest extends ItemBlock {
|
||||||
|
|
||||||
|
public ItemIronChest(Block block)
|
||||||
|
{
|
||||||
|
super(block);
|
||||||
|
setHasSubtypes(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMetadata(int i)
|
||||||
|
{
|
||||||
|
return IronChestType.validateMeta(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getUnlocalizedName(ItemStack itemstack)
|
||||||
|
{
|
||||||
|
return "tile.ironchest:"+IronChestType.values()[itemstack.getMetadata()].name();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
|
||||||
|
public class MappableItemStackWrapper {
|
||||||
|
private ItemStack wrap;
|
||||||
|
|
||||||
|
public MappableItemStackWrapper(ItemStack toWrap)
|
||||||
|
{
|
||||||
|
wrap = toWrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(Object obj)
|
||||||
|
{
|
||||||
|
if (!(obj instanceof MappableItemStackWrapper)) return false;
|
||||||
|
MappableItemStackWrapper isw = (MappableItemStackWrapper) obj;
|
||||||
|
if (wrap.getHasSubtypes())
|
||||||
|
{
|
||||||
|
return isw.wrap.isItemEqual(wrap);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return isw.wrap == wrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode()
|
||||||
|
{
|
||||||
|
return System.identityHashCode(wrap);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import net.minecraft.entity.ai.EntityAIOcelotSit;
|
||||||
|
import net.minecraft.entity.ai.EntityAITasks;
|
||||||
|
import net.minecraft.entity.passive.EntityOcelot;
|
||||||
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
||||||
|
|
||||||
|
/*public class OcelotsSitOnChestsHandler {
|
||||||
|
@SubscribeEvent
|
||||||
|
public void changeSittingTaskForOcelots(LivingEvent.LivingUpdateEvent evt)
|
||||||
|
{
|
||||||
|
if (evt.entityLiving.ticksExisted < 5 && evt.entityLiving instanceof EntityOcelot)
|
||||||
|
{
|
||||||
|
EntityOcelot ocelot = (EntityOcelot) evt.entityLiving;
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
List<EntityAITasks.EntityAITaskEntry> tasks = ocelot.tasks.taskEntries;
|
||||||
|
|
||||||
|
for (EntityAITasks.EntityAITaskEntry task : tasks) {
|
||||||
|
if (task.priority == 6 && (task.action instanceof EntityAIOcelotSit) && !(task.action instanceof IronChestAIOcelotSit)) {
|
||||||
|
task.action = new IronChestAIOcelotSit(ocelot, 0.4F);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
@ -0,0 +1,203 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import io.netty.buffer.ByteBuf;
|
||||||
|
import io.netty.channel.ChannelHandlerContext;
|
||||||
|
import io.netty.channel.SimpleChannelInboundHandler;
|
||||||
|
|
||||||
|
import java.util.EnumMap;
|
||||||
|
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.network.Packet;
|
||||||
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.util.BlockPos;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
import net.minecraftforge.fml.common.FMLCommonHandler;
|
||||||
|
import net.minecraftforge.fml.common.network.ByteBufUtils;
|
||||||
|
import net.minecraftforge.fml.common.network.FMLEmbeddedChannel;
|
||||||
|
import net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec;
|
||||||
|
import net.minecraftforge.fml.common.network.NetworkRegistry;
|
||||||
|
import net.minecraftforge.fml.common.network.internal.FMLProxyPacket;
|
||||||
|
import net.minecraftforge.fml.relauncher.Side;
|
||||||
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the packet wrangling for IronChest
|
||||||
|
* @author cpw
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public enum PacketHandler {
|
||||||
|
INSTANCE;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Our channel "pair" from {@link NetworkRegistry}
|
||||||
|
*/
|
||||||
|
private EnumMap<Side, FMLEmbeddedChannel> channels;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make our packet handler, and add an {@link IronChestCodec} always
|
||||||
|
*/
|
||||||
|
private PacketHandler()
|
||||||
|
{
|
||||||
|
// request a channel pair for IronChest from the network registry
|
||||||
|
// Add the IronChestCodec as a member of both channel pipelines
|
||||||
|
this.channels = NetworkRegistry.INSTANCE.newChannel("IronChest", new IronChestCodec());
|
||||||
|
if (FMLCommonHandler.instance().getSide() == Side.CLIENT)
|
||||||
|
{
|
||||||
|
addClientHandler();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is only called on the client side - it adds an
|
||||||
|
* {@link IronChestMessageHandler} to the client side pipeline, since the
|
||||||
|
* only place we expect to <em>handle</em> messages is on the client.
|
||||||
|
*/
|
||||||
|
@SideOnly(Side.CLIENT)
|
||||||
|
private void addClientHandler() {
|
||||||
|
FMLEmbeddedChannel clientChannel = this.channels.get(Side.CLIENT);
|
||||||
|
// These two lines find the existing codec (Ironchestcodec) and insert our message handler after it
|
||||||
|
// in the pipeline
|
||||||
|
String codec = clientChannel.findChannelHandlerNameForType(IronChestCodec.class);
|
||||||
|
clientChannel.pipeline().addAfter(codec, "ClientHandler", new IronChestMessageHandler());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class simply handles the {@link IronChestMessage} when it's received
|
||||||
|
* at the client side It can contain client only code, because it's only run
|
||||||
|
* on the client.
|
||||||
|
*
|
||||||
|
* @author cpw
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static class IronChestMessageHandler extends SimpleChannelInboundHandler<IronChestMessage>
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
protected void channelRead0(ChannelHandlerContext ctx, IronChestMessage msg) throws Exception
|
||||||
|
{
|
||||||
|
World world = IronChest.proxy.getClientWorld();
|
||||||
|
TileEntity te = world.getTileEntity(new BlockPos(msg.x, msg.y, msg.z));
|
||||||
|
if (te instanceof TileEntityIronChest)
|
||||||
|
{
|
||||||
|
TileEntityIronChest icte = (TileEntityIronChest) te;
|
||||||
|
icte.setFacing(msg.facing);
|
||||||
|
icte.handlePacketData(msg.type, msg.itemStacks);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is our "message". In fact, {@link FMLIndexedMessageToMessageCodec}
|
||||||
|
* can handle many messages on the same channel at once, using a
|
||||||
|
* discriminator byte. But for IronChest, we only need the one message, so
|
||||||
|
* we have just this.
|
||||||
|
*
|
||||||
|
* @author cpw
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public static class IronChestMessage
|
||||||
|
{
|
||||||
|
int x;
|
||||||
|
int y;
|
||||||
|
int z;
|
||||||
|
int type;
|
||||||
|
int facing;
|
||||||
|
ItemStack[] itemStacks;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the codec that automatically transforms the
|
||||||
|
* {@link FMLProxyPacket} which wraps the client and server custom payload
|
||||||
|
* packets into a message we care about.
|
||||||
|
*
|
||||||
|
* @author cpw
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private class IronChestCodec extends FMLIndexedMessageToMessageCodec<IronChestMessage>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* We register our discriminator bytes here. We only have the one type, so we only
|
||||||
|
* register one.
|
||||||
|
*/
|
||||||
|
public IronChestCodec()
|
||||||
|
{
|
||||||
|
addDiscriminator(0, IronChestMessage.class);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void encodeInto(ChannelHandlerContext ctx, IronChestMessage msg, ByteBuf target) throws Exception
|
||||||
|
{
|
||||||
|
target.writeInt(msg.x);
|
||||||
|
target.writeInt(msg.y);
|
||||||
|
target.writeInt(msg.z);
|
||||||
|
int typeAndFacing = ((msg.type & 0x0F) | ((msg.facing & 0x0F) << 4)) & 0xFF;
|
||||||
|
target.writeByte(typeAndFacing);
|
||||||
|
target.writeBoolean(msg.itemStacks != null);
|
||||||
|
if (msg.itemStacks != null)
|
||||||
|
{
|
||||||
|
for (ItemStack i: msg.itemStacks)
|
||||||
|
{
|
||||||
|
ByteBufUtils.writeItemStack(target, i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void decodeInto(ChannelHandlerContext ctx, ByteBuf dat, IronChestMessage msg)
|
||||||
|
{
|
||||||
|
msg.x = dat.readInt();
|
||||||
|
msg.y = dat.readInt();
|
||||||
|
msg.z = dat.readInt();
|
||||||
|
int typDat = dat.readByte();
|
||||||
|
msg.type = (byte)(typDat & 0xf);
|
||||||
|
msg.facing = (byte)((typDat >> 4) & 0xf);
|
||||||
|
boolean hasStacks = dat.readBoolean();
|
||||||
|
msg.itemStacks = new ItemStack[0];
|
||||||
|
if (hasStacks)
|
||||||
|
{
|
||||||
|
msg.itemStacks = new ItemStack[8];
|
||||||
|
for (int i = 0; i < msg.itemStacks.length; i++)
|
||||||
|
{
|
||||||
|
msg.itemStacks[i] = ByteBufUtils.readItemStack(dat);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is a utility method called to transform a packet from a custom
|
||||||
|
* packet into a "system packet". We're called from
|
||||||
|
* {@link TileEntity#getDescriptionPacket()} in this case, but there are
|
||||||
|
* others. All network packet methods in minecraft have been adapted to
|
||||||
|
* handle {@link FMLProxyPacket} but general purpose objects can't be
|
||||||
|
* handled sadly.
|
||||||
|
*
|
||||||
|
* This method uses the {@link IronChestCodec} to transform a custom packet
|
||||||
|
* {@link IronChestMessage} into an {@link FMLProxyPacket} by using the
|
||||||
|
* utility method {@link FMLEmbeddedChannel#generatePacketFrom(Object)} on
|
||||||
|
* the channel to do exactly that.
|
||||||
|
*
|
||||||
|
* @param tileEntityIronChest
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static Packet getPacket(TileEntityIronChest tileEntityIronChest)
|
||||||
|
{
|
||||||
|
IronChestMessage msg = new IronChestMessage();
|
||||||
|
msg.x = tileEntityIronChest.getPos().getX();
|
||||||
|
msg.y = tileEntityIronChest.getPos().getY();
|
||||||
|
msg.z = tileEntityIronChest.getPos().getZ();
|
||||||
|
msg.type = tileEntityIronChest.getType().ordinal();
|
||||||
|
msg.facing = tileEntityIronChest.getFacing();
|
||||||
|
msg.itemStacks = tileEntityIronChest.buildItemStackDataList();
|
||||||
|
return INSTANCE.channels.get(Side.SERVER).generatePacketFrom(msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
public class TileEntityCopperChest extends TileEntityIronChest {
|
||||||
|
public TileEntityCopperChest()
|
||||||
|
{
|
||||||
|
super(IronChestType.COPPER);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
public class TileEntityCrystalChest extends TileEntityIronChest {
|
||||||
|
public TileEntityCrystalChest()
|
||||||
|
{
|
||||||
|
super(IronChestType.CRYSTAL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
public class TileEntityDiamondChest extends TileEntityIronChest {
|
||||||
|
public TileEntityDiamondChest()
|
||||||
|
{
|
||||||
|
super(IronChestType.DIAMOND);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,42 @@
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.entity.EntityLivingBase;
|
||||||
|
import net.minecraft.init.Items;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.nbt.NBTTagList;
|
||||||
|
import net.minecraft.nbt.NBTTagString;
|
||||||
|
import net.minecraft.util.StatCollector;
|
||||||
|
|
||||||
|
public class TileEntityDirtChest extends TileEntityIronChest {
|
||||||
|
private static ItemStack dirtChest9000GuideBook = new ItemStack(Items.written_book);
|
||||||
|
static {
|
||||||
|
dirtChest9000GuideBook.setTagInfo("author", new NBTTagString("cpw"));
|
||||||
|
dirtChest9000GuideBook.setTagInfo("title", new NBTTagString(StatCollector.translateToLocal("book.ironchest:dirtchest9000.title")));
|
||||||
|
NBTTagList pages = new NBTTagList();
|
||||||
|
pages.appendTag(new NBTTagString(StatCollector.translateToLocal("book.ironchest:dirtchest9000.page1")));
|
||||||
|
pages.appendTag(new NBTTagString(StatCollector.translateToLocal("book.ironchest:dirtchest9000.page2")));
|
||||||
|
pages.appendTag(new NBTTagString(StatCollector.translateToLocal("book.ironchest:dirtchest9000.page3")));
|
||||||
|
pages.appendTag(new NBTTagString(StatCollector.translateToLocal("book.ironchest:dirtchest9000.page4")));
|
||||||
|
pages.appendTag(new NBTTagString(StatCollector.translateToLocal("book.ironchest:dirtchest9000.page5")));
|
||||||
|
dirtChest9000GuideBook.setTagInfo("pages", pages);
|
||||||
|
}
|
||||||
|
public TileEntityDirtChest() {
|
||||||
|
super(IronChestType.DIRTCHEST9000);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void wasPlaced(EntityLivingBase entityliving, ItemStack itemStack)
|
||||||
|
{
|
||||||
|
if (!(itemStack.hasTagCompound() && itemStack.getTagCompound().getBoolean("dirtchest"))) {
|
||||||
|
setInventorySlotContents(0, dirtChest9000GuideBook.copy());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void removeAdornments()
|
||||||
|
{
|
||||||
|
if (chestContents[0] != null && chestContents[0].isItemEqual(dirtChest9000GuideBook)) {
|
||||||
|
chestContents[0] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
public class TileEntityGoldChest extends TileEntityIronChest {
|
||||||
|
|
||||||
|
public TileEntityGoldChest()
|
||||||
|
{
|
||||||
|
super(IronChestType.GOLD);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,549 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Comparator;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import net.minecraft.entity.EntityLivingBase;
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.inventory.IInventory;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.nbt.NBTTagCompound;
|
||||||
|
import net.minecraft.nbt.NBTTagList;
|
||||||
|
import net.minecraft.network.Packet;
|
||||||
|
import net.minecraft.server.gui.IUpdatePlayerListBox;
|
||||||
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.util.AxisAlignedBB;
|
||||||
|
import net.minecraft.util.IChatComponent;
|
||||||
|
|
||||||
|
public class TileEntityIronChest extends TileEntity implements IUpdatePlayerListBox, IInventory {
|
||||||
|
private int ticksSinceSync = -1;
|
||||||
|
public float prevLidAngle;
|
||||||
|
public float lidAngle;
|
||||||
|
private int numUsingPlayers;
|
||||||
|
private IronChestType type;
|
||||||
|
public ItemStack[] chestContents;
|
||||||
|
private ItemStack[] topStacks;
|
||||||
|
private int facing;
|
||||||
|
private boolean inventoryTouched;
|
||||||
|
private boolean hadStuff;
|
||||||
|
|
||||||
|
public TileEntityIronChest()
|
||||||
|
{
|
||||||
|
this(IronChestType.IRON);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected TileEntityIronChest(IronChestType type)
|
||||||
|
{
|
||||||
|
super();
|
||||||
|
this.type = type;
|
||||||
|
this.chestContents = new ItemStack[getSizeInventory()];
|
||||||
|
this.topStacks = new ItemStack[8];
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemStack[] getContents()
|
||||||
|
{
|
||||||
|
return chestContents;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getSizeInventory()
|
||||||
|
{
|
||||||
|
return type.size;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getFacing()
|
||||||
|
{
|
||||||
|
return this.facing;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getCommandSenderName()
|
||||||
|
{
|
||||||
|
return type.name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public IronChestType getType()
|
||||||
|
{
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ItemStack getStackInSlot(int i)
|
||||||
|
{
|
||||||
|
inventoryTouched = true;
|
||||||
|
return chestContents[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void markDirty()
|
||||||
|
{
|
||||||
|
super.markDirty();
|
||||||
|
sortTopStacks();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void sortTopStacks()
|
||||||
|
{
|
||||||
|
if (!type.isTransparent() || (worldObj != null && worldObj.isRemote))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ItemStack[] tempCopy = new ItemStack[getSizeInventory()];
|
||||||
|
boolean hasStuff = false;
|
||||||
|
int compressedIdx = 0;
|
||||||
|
mainLoop: for (int i = 0; i < getSizeInventory(); i++)
|
||||||
|
{
|
||||||
|
if (chestContents[i] != null)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < compressedIdx; j++)
|
||||||
|
{
|
||||||
|
if (tempCopy[j].isItemEqual(chestContents[i]))
|
||||||
|
{
|
||||||
|
tempCopy[j].stackSize += chestContents[i].stackSize;
|
||||||
|
continue mainLoop;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tempCopy[compressedIdx++] = chestContents[i].copy();
|
||||||
|
hasStuff = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!hasStuff && hadStuff)
|
||||||
|
{
|
||||||
|
hadStuff = false;
|
||||||
|
for (int i = 0; i < topStacks.length; i++)
|
||||||
|
{
|
||||||
|
topStacks[i] = null;
|
||||||
|
}
|
||||||
|
if (worldObj != null)
|
||||||
|
{
|
||||||
|
worldObj.markBlockForUpdate(pos);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
hadStuff = true;
|
||||||
|
Arrays.sort(tempCopy, new Comparator<ItemStack>() {
|
||||||
|
@Override
|
||||||
|
public int compare(ItemStack o1, ItemStack o2)
|
||||||
|
{
|
||||||
|
if (o1 == null)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else if (o2 == null)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return o2.stackSize - o1.stackSize;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
int p = 0;
|
||||||
|
for (int i = 0; i < tempCopy.length; i++)
|
||||||
|
{
|
||||||
|
if (tempCopy[i] != null && tempCopy[i].stackSize > 0)
|
||||||
|
{
|
||||||
|
topStacks[p++] = tempCopy[i];
|
||||||
|
if (p == topStacks.length)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = p; i < topStacks.length; i++)
|
||||||
|
{
|
||||||
|
topStacks[i] = null;
|
||||||
|
}
|
||||||
|
if (worldObj != null)
|
||||||
|
{
|
||||||
|
worldObj.markBlockForUpdate(pos);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ItemStack decrStackSize(int i, int j)
|
||||||
|
{
|
||||||
|
if (chestContents[i] != null)
|
||||||
|
{
|
||||||
|
if (chestContents[i].stackSize <= j)
|
||||||
|
{
|
||||||
|
ItemStack itemstack = chestContents[i];
|
||||||
|
chestContents[i] = null;
|
||||||
|
markDirty();
|
||||||
|
return itemstack;
|
||||||
|
}
|
||||||
|
ItemStack itemstack1 = chestContents[i].splitStack(j);
|
||||||
|
if (chestContents[i].stackSize == 0)
|
||||||
|
{
|
||||||
|
chestContents[i] = null;
|
||||||
|
}
|
||||||
|
markDirty();
|
||||||
|
return itemstack1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setInventorySlotContents(int i, ItemStack itemstack)
|
||||||
|
{
|
||||||
|
chestContents[i] = itemstack;
|
||||||
|
if (itemstack != null && itemstack.stackSize > getInventoryStackLimit())
|
||||||
|
{
|
||||||
|
itemstack.stackSize = getInventoryStackLimit();
|
||||||
|
}
|
||||||
|
markDirty();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void readFromNBT(NBTTagCompound nbttagcompound)
|
||||||
|
{
|
||||||
|
super.readFromNBT(nbttagcompound);
|
||||||
|
NBTTagList nbttaglist = nbttagcompound.getTagList("Items", 10);
|
||||||
|
chestContents = new ItemStack[getSizeInventory()];
|
||||||
|
for (int i = 0; i < nbttaglist.tagCount(); i++)
|
||||||
|
{
|
||||||
|
NBTTagCompound nbttagcompound1 = nbttaglist.getCompoundTagAt(i);
|
||||||
|
int j = nbttagcompound1.getByte("Slot") & 0xff;
|
||||||
|
if (j >= 0 && j < chestContents.length)
|
||||||
|
{
|
||||||
|
chestContents[j] = ItemStack.loadItemStackFromNBT(nbttagcompound1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
facing = nbttagcompound.getByte("facing");
|
||||||
|
sortTopStacks();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void writeToNBT(NBTTagCompound nbttagcompound)
|
||||||
|
{
|
||||||
|
super.writeToNBT(nbttagcompound);
|
||||||
|
NBTTagList nbttaglist = new NBTTagList();
|
||||||
|
for (int i = 0; i < chestContents.length; i++)
|
||||||
|
{
|
||||||
|
if (chestContents[i] != null)
|
||||||
|
{
|
||||||
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
||||||
|
nbttagcompound1.setByte("Slot", (byte) i);
|
||||||
|
chestContents[i].writeToNBT(nbttagcompound1);
|
||||||
|
nbttaglist.appendTag(nbttagcompound1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nbttagcompound.setTag("Items", nbttaglist);
|
||||||
|
nbttagcompound.setByte("facing", (byte)facing);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getInventoryStackLimit()
|
||||||
|
{
|
||||||
|
return 64;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isUseableByPlayer(EntityPlayer entityplayer)
|
||||||
|
{
|
||||||
|
if (worldObj == null)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (worldObj.getTileEntity(pos) != this)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return entityplayer.getDistanceSq((double) pos.getX() + 0.5D, (double) pos.getY() + 0.5D, (double) pos.getZ() + 0.5D) <= 64D;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void update()
|
||||||
|
{
|
||||||
|
// Resynchronize clients with the server state
|
||||||
|
if (worldObj != null && !this.worldObj.isRemote && this.numUsingPlayers != 0 && (this.ticksSinceSync + pos.getX() + pos.getY() + pos.getZ()) % 200 == 0)
|
||||||
|
{
|
||||||
|
this.numUsingPlayers = 0;
|
||||||
|
float var1 = 5.0F;
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
List<EntityPlayer> var2 = this.worldObj.getEntitiesWithinAABB(EntityPlayer.class, new AxisAlignedBB((double)((float)pos.getX() - var1), (double)((float)pos.getY() - var1), (double)((float)pos.getZ() - var1), (double)((float)(pos.getX() + 1) + var1), (double)((float)(pos.getY() + 1) + var1), (double)((float)(pos.getZ() + 1) + var1)));
|
||||||
|
|
||||||
|
for (EntityPlayer var4 : var2) {
|
||||||
|
if (var4.openContainer instanceof ContainerIronChest) {
|
||||||
|
++this.numUsingPlayers;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (worldObj != null && !worldObj.isRemote && ticksSinceSync < 0)
|
||||||
|
{
|
||||||
|
worldObj.addBlockEvent(pos, IronChest.ironChestBlock, 3, ((numUsingPlayers << 3) & 0xF8) | (facing & 0x7));
|
||||||
|
}
|
||||||
|
if (!worldObj.isRemote && inventoryTouched)
|
||||||
|
{
|
||||||
|
inventoryTouched = false;
|
||||||
|
sortTopStacks();
|
||||||
|
}
|
||||||
|
|
||||||
|
this.ticksSinceSync++;
|
||||||
|
prevLidAngle = lidAngle;
|
||||||
|
float f = 0.1F;
|
||||||
|
if (numUsingPlayers > 0 && lidAngle == 0.0F)
|
||||||
|
{
|
||||||
|
double d = (double) pos.getX() + 0.5D;
|
||||||
|
double d1 = (double) pos.getZ() + 0.5D;
|
||||||
|
worldObj.playSoundEffect(d, (double) pos.getY() + 0.5D, d1, "random.chestopen", 0.5F, worldObj.rand.nextFloat() * 0.1F + 0.9F);
|
||||||
|
}
|
||||||
|
if (numUsingPlayers == 0 && lidAngle > 0.0F || numUsingPlayers > 0 && lidAngle < 1.0F)
|
||||||
|
{
|
||||||
|
float f1 = lidAngle;
|
||||||
|
if (numUsingPlayers > 0)
|
||||||
|
{
|
||||||
|
lidAngle += f;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
lidAngle -= f;
|
||||||
|
}
|
||||||
|
if (lidAngle > 1.0F)
|
||||||
|
{
|
||||||
|
lidAngle = 1.0F;
|
||||||
|
}
|
||||||
|
float f2 = 0.5F;
|
||||||
|
if (lidAngle < f2 && f1 >= f2)
|
||||||
|
{
|
||||||
|
double d2 = (double) pos.getX() + 0.5D;
|
||||||
|
double d3 = (double) pos.getZ() + 0.5D;
|
||||||
|
worldObj.playSoundEffect(d2, (double) pos.getY() + 0.5D, d3, "random.chestclosed", 0.5F, worldObj.rand.nextFloat() * 0.1F + 0.9F);
|
||||||
|
}
|
||||||
|
if (lidAngle < 0.0F)
|
||||||
|
{
|
||||||
|
lidAngle = 0.0F;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean receiveClientEvent(int i, int j)
|
||||||
|
{
|
||||||
|
if (i == 1)
|
||||||
|
{
|
||||||
|
numUsingPlayers = j;
|
||||||
|
}
|
||||||
|
else if (i == 2)
|
||||||
|
{
|
||||||
|
facing = (byte) j;
|
||||||
|
}
|
||||||
|
else if (i == 3)
|
||||||
|
{
|
||||||
|
facing = (byte) (j & 0x7);
|
||||||
|
numUsingPlayers = (j & 0xF8) >> 3;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void openInventory(EntityPlayer player)
|
||||||
|
{
|
||||||
|
if (worldObj == null) return;
|
||||||
|
numUsingPlayers++;
|
||||||
|
worldObj.addBlockEvent(pos, IronChest.ironChestBlock, 1, numUsingPlayers);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void closeInventory(EntityPlayer player)
|
||||||
|
{
|
||||||
|
if (worldObj == null) return;
|
||||||
|
numUsingPlayers--;
|
||||||
|
worldObj.addBlockEvent(pos, IronChest.ironChestBlock, 1, numUsingPlayers);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFacing(int facing2)
|
||||||
|
{
|
||||||
|
this.facing = facing2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TileEntityIronChest applyUpgradeItem(ItemChestChanger itemChestChanger)
|
||||||
|
{
|
||||||
|
if (numUsingPlayers > 0)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if (!itemChestChanger.getType().canUpgrade(this.getType()))
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
TileEntityIronChest newEntity = IronChestType.makeEntity(itemChestChanger.getTargetChestOrdinal(getType().ordinal()));
|
||||||
|
int newSize = newEntity.chestContents.length;
|
||||||
|
System.arraycopy(chestContents, 0, newEntity.chestContents, 0, Math.min(newSize, chestContents.length));
|
||||||
|
BlockIronChest block = IronChest.ironChestBlock;
|
||||||
|
block.dropContent(newSize, this, this.worldObj, pos);
|
||||||
|
newEntity.setFacing(facing);
|
||||||
|
newEntity.sortTopStacks();
|
||||||
|
newEntity.ticksSinceSync = -1;
|
||||||
|
return newEntity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemStack[] getTopItemStacks()
|
||||||
|
{
|
||||||
|
return topStacks;
|
||||||
|
}
|
||||||
|
|
||||||
|
public TileEntityIronChest updateFromMetadata(int l)
|
||||||
|
{
|
||||||
|
if (worldObj != null && worldObj.isRemote)
|
||||||
|
{
|
||||||
|
if (l != type.ordinal())
|
||||||
|
{
|
||||||
|
worldObj.setTileEntity(pos, IronChestType.makeEntity(l));
|
||||||
|
return (TileEntityIronChest) worldObj.getTileEntity(pos);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Packet getDescriptionPacket()
|
||||||
|
{
|
||||||
|
return PacketHandler.getPacket(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void handlePacketData(int typeData, ItemStack[] intData)
|
||||||
|
{
|
||||||
|
TileEntityIronChest chest = this;
|
||||||
|
if (this.type.ordinal() != typeData)
|
||||||
|
{
|
||||||
|
chest = updateFromMetadata(typeData);
|
||||||
|
}
|
||||||
|
if (IronChestType.values()[typeData].isTransparent() && intData != null)
|
||||||
|
{
|
||||||
|
int pos = 0;
|
||||||
|
for (int i = 0; i < chest.topStacks.length; i++)
|
||||||
|
{
|
||||||
|
if (intData[pos] != null)
|
||||||
|
{
|
||||||
|
chest.topStacks[i] = intData[pos];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
chest.topStacks[i] = null;
|
||||||
|
}
|
||||||
|
pos ++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemStack[] buildItemStackDataList()
|
||||||
|
{
|
||||||
|
if (type.isTransparent())
|
||||||
|
{
|
||||||
|
ItemStack[] sortList = new ItemStack[topStacks.length];
|
||||||
|
int pos = 0;
|
||||||
|
for (ItemStack is : topStacks)
|
||||||
|
{
|
||||||
|
if (is != null)
|
||||||
|
{
|
||||||
|
sortList[pos++] = is;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sortList[pos++] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return sortList;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ItemStack getStackInSlotOnClosing(int par1)
|
||||||
|
{
|
||||||
|
if (this.chestContents[par1] != null)
|
||||||
|
{
|
||||||
|
ItemStack var2 = this.chestContents[par1];
|
||||||
|
this.chestContents[par1] = null;
|
||||||
|
return var2;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMaxStackSize(int size)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isItemValidForSlot(int i, ItemStack itemstack)
|
||||||
|
{
|
||||||
|
return type.acceptsStack(itemstack);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isCustomInventoryName()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*void rotateAround(ForgeDirection axis)
|
||||||
|
{
|
||||||
|
setFacing((byte)ForgeDirection.getOrientation(facing).getRotation(axis).ordinal());
|
||||||
|
worldObj.addBlockEvent(this.xCoord, this.yCoord, this.zCoord, IronChest.ironChestBlock, 2, getFacing());
|
||||||
|
}*/
|
||||||
|
|
||||||
|
public void wasPlaced(EntityLivingBase entityliving, ItemStack itemStack)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removeAdornments()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IChatComponent getFormattedCommandSenderName()
|
||||||
|
{
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int func_174887_a_(int p_174887_1_)
|
||||||
|
{
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void func_174885_b(int p_174885_1_, int p_174885_2_)
|
||||||
|
{
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int func_174890_g()
|
||||||
|
{
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void func_174888_l()
|
||||||
|
{
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
public class TileEntityObsidianChest extends TileEntityIronChest {
|
||||||
|
|
||||||
|
public TileEntityObsidianChest()
|
||||||
|
{
|
||||||
|
super(IronChestType.OBSIDIAN);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
public class TileEntitySilverChest extends TileEntityIronChest {
|
||||||
|
public TileEntitySilverChest()
|
||||||
|
{
|
||||||
|
super(IronChestType.SILVER);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import net.minecraft.inventory.IInventory;
|
||||||
|
import net.minecraft.inventory.Slot;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
|
||||||
|
public class ValidatingSlot extends Slot {
|
||||||
|
private IronChestType type;
|
||||||
|
|
||||||
|
public ValidatingSlot(IInventory par1iInventory, int par2, int par3, int par4, IronChestType type)
|
||||||
|
{
|
||||||
|
super(par1iInventory, par2, par3, par4);
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isItemValid(ItemStack par1ItemStack)
|
||||||
|
{
|
||||||
|
return type.acceptsStack(par1ItemStack);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw. All rights reserved. This program and the accompanying materials are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors: cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest;
|
||||||
|
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
public class Version
|
||||||
|
{
|
||||||
|
private static String major;
|
||||||
|
private static String minor;
|
||||||
|
private static String rev;
|
||||||
|
private static String build;
|
||||||
|
@SuppressWarnings("unused")
|
||||||
|
private static String mcversion;
|
||||||
|
|
||||||
|
static void init(Properties properties)
|
||||||
|
{
|
||||||
|
if (properties != null)
|
||||||
|
{
|
||||||
|
major = properties.getProperty("IronChest.build.major.number");
|
||||||
|
minor = properties.getProperty("IronChest.build.minor.number");
|
||||||
|
rev = properties.getProperty("IronChest.build.revision.number");
|
||||||
|
build = properties.getProperty("IronChest.build.number");
|
||||||
|
mcversion = properties.getProperty("IronChest.build.mcversion");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String fullVersionString()
|
||||||
|
{
|
||||||
|
return String.format("%s.%s.%s build %s", major, minor, rev, build);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,56 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest.client;
|
||||||
|
|
||||||
|
import net.minecraft.client.renderer.tileentity.TileEntityRendererChestHelper;
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.util.BlockPos;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
import net.minecraftforge.fml.client.FMLClientHandler;
|
||||||
|
import net.minecraftforge.fml.client.registry.ClientRegistry;
|
||||||
|
import cpw.mods.ironchest.CommonProxy;
|
||||||
|
import cpw.mods.ironchest.IronChestType;
|
||||||
|
import cpw.mods.ironchest.TileEntityIronChest;
|
||||||
|
|
||||||
|
public class ClientProxy extends CommonProxy {
|
||||||
|
@Override
|
||||||
|
public void registerRenderInformation()
|
||||||
|
{
|
||||||
|
//TileEntityRendererChestHelper.instance = new IronChestRenderHelper();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerTileEntitySpecialRenderer(IronChestType typ)
|
||||||
|
{
|
||||||
|
//ClientRegistry.bindTileEntitySpecialRenderer(typ.clazz, new TileEntityIronChestRenderer());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public World getClientWorld()
|
||||||
|
{
|
||||||
|
return FMLClientHandler.instance().getClient().theWorld;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
|
||||||
|
{
|
||||||
|
TileEntity te = world.getTileEntity(new BlockPos(x, y, z));
|
||||||
|
if (te != null && te instanceof TileEntityIronChest)
|
||||||
|
{
|
||||||
|
return GUIChest.GUI.buildGUI(IronChestType.values()[ID], player.inventory, (TileEntityIronChest) te);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,98 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest.client;
|
||||||
|
|
||||||
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
||||||
|
import net.minecraft.inventory.Container;
|
||||||
|
import net.minecraft.inventory.IInventory;
|
||||||
|
import net.minecraft.util.ResourceLocation;
|
||||||
|
|
||||||
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
|
import cpw.mods.ironchest.ContainerIronChest;
|
||||||
|
import cpw.mods.ironchest.IronChestType;
|
||||||
|
import cpw.mods.ironchest.TileEntityIronChest;
|
||||||
|
|
||||||
|
public class GUIChest extends GuiContainer {
|
||||||
|
public enum ResourceList {
|
||||||
|
IRON(new ResourceLocation("ironchest", "textures/gui/ironcontainer.png")),
|
||||||
|
COPPER(new ResourceLocation("ironchest", "textures/gui/coppercontainer.png")),
|
||||||
|
SILVER(new ResourceLocation("ironchest", "textures/gui/silvercontainer.png")),
|
||||||
|
GOLD(new ResourceLocation("ironchest", "textures/gui/goldcontainer.png")),
|
||||||
|
DIAMOND(new ResourceLocation("ironchest", "textures/gui/diamondcontainer.png")),
|
||||||
|
DIRT(new ResourceLocation("ironchest", "textures/gui/dirtcontainer.png"));
|
||||||
|
public final ResourceLocation location;
|
||||||
|
private ResourceList(ResourceLocation loc) {
|
||||||
|
this.location = loc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public enum GUI {
|
||||||
|
IRON(184, 202, ResourceList.IRON, IronChestType.IRON),
|
||||||
|
GOLD(184, 256, ResourceList.GOLD, IronChestType.GOLD),
|
||||||
|
DIAMOND(238, 256, ResourceList.DIAMOND, IronChestType.DIAMOND),
|
||||||
|
COPPER(184, 184, ResourceList.COPPER, IronChestType.COPPER),
|
||||||
|
SILVER(184, 238, ResourceList.SILVER, IronChestType.SILVER),
|
||||||
|
CRYSTAL(238, 256, ResourceList.DIAMOND, IronChestType.CRYSTAL),
|
||||||
|
OBSIDIAN(238, 256, ResourceList.DIAMOND, IronChestType.OBSIDIAN),
|
||||||
|
DIRTCHEST9000(184, 184, ResourceList.DIRT, IronChestType.DIRTCHEST9000);
|
||||||
|
|
||||||
|
private int xSize;
|
||||||
|
private int ySize;
|
||||||
|
private ResourceList guiResourceList;
|
||||||
|
private IronChestType mainType;
|
||||||
|
|
||||||
|
private GUI(int xSize, int ySize, ResourceList guiResourceList, IronChestType mainType)
|
||||||
|
{
|
||||||
|
this.xSize = xSize;
|
||||||
|
this.ySize = ySize;
|
||||||
|
this.guiResourceList = guiResourceList;
|
||||||
|
this.mainType = mainType;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Container makeContainer(IInventory player, IInventory chest)
|
||||||
|
{
|
||||||
|
return new ContainerIronChest(player, chest, mainType, xSize, ySize);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GUIChest buildGUI(IronChestType type, IInventory playerInventory, TileEntityIronChest chestInventory)
|
||||||
|
{
|
||||||
|
return new GUIChest(values()[chestInventory.getType().ordinal()], playerInventory, chestInventory);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getRowLength()
|
||||||
|
{
|
||||||
|
return type.mainType.getRowLength();
|
||||||
|
}
|
||||||
|
|
||||||
|
private GUI type;
|
||||||
|
|
||||||
|
private GUIChest(GUI type, IInventory player, IInventory chest)
|
||||||
|
{
|
||||||
|
super(type.makeContainer(player, chest));
|
||||||
|
this.type = type;
|
||||||
|
this.xSize = type.xSize;
|
||||||
|
this.ySize = type.ySize;
|
||||||
|
this.allowUserInput = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void drawGuiContainerBackgroundLayer(float f, int i, int j)
|
||||||
|
{
|
||||||
|
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
||||||
|
// new "bind tex"
|
||||||
|
this.mc.getTextureManager().bindTexture(type.guiResourceList.location);
|
||||||
|
int x = (width - xSize) / 2;
|
||||||
|
int y = (height - ySize) / 2;
|
||||||
|
drawTexturedModalRect(x, y, 0, 0, xSize, ySize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest.client;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import net.minecraft.client.renderer.tileentity.TileEntityRendererChestHelper;
|
||||||
|
import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;
|
||||||
|
|
||||||
|
import com.google.common.collect.Maps;
|
||||||
|
|
||||||
|
import cpw.mods.ironchest.IronChest;
|
||||||
|
import cpw.mods.ironchest.IronChestType;
|
||||||
|
import cpw.mods.ironchest.TileEntityIronChest;
|
||||||
|
|
||||||
|
/*public class IronChestRenderHelper extends TileEntityRendererChestHelper {
|
||||||
|
private Map<Integer, TileEntityIronChest> itemRenders = Maps.newHashMap();
|
||||||
|
|
||||||
|
public IronChestRenderHelper()
|
||||||
|
{
|
||||||
|
for (IronChestType typ : IronChestType.values())
|
||||||
|
{
|
||||||
|
itemRenders.put(typ.ordinal(), (TileEntityIronChest) IronChest.ironChestBlock.createTileEntity(null, typ.ordinal()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void renderChest(Block block, int i, float f)
|
||||||
|
{
|
||||||
|
if (block == IronChest.ironChestBlock)
|
||||||
|
{
|
||||||
|
TileEntityRendererDispatcher.instance.renderTileEntityAt(itemRenders.get(i), 0.0D, 0.0D, 0.0D, 0.0F);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
super.renderChest(block, i, f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
@ -0,0 +1,184 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2012 cpw.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the GNU Public License v3.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* cpw - initial API and implementation
|
||||||
|
******************************************************************************/
|
||||||
|
package cpw.mods.ironchest.client;
|
||||||
|
|
||||||
|
import static org.lwjgl.opengl.GL11.glColor4f;
|
||||||
|
import static org.lwjgl.opengl.GL11.glDisable;
|
||||||
|
import static org.lwjgl.opengl.GL11.glEnable;
|
||||||
|
import static org.lwjgl.opengl.GL11.glPopMatrix;
|
||||||
|
import static org.lwjgl.opengl.GL11.glPushMatrix;
|
||||||
|
import static org.lwjgl.opengl.GL11.glRotatef;
|
||||||
|
import static org.lwjgl.opengl.GL11.glScalef;
|
||||||
|
import static org.lwjgl.opengl.GL11.glTranslatef;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
import net.minecraft.client.model.ModelChest;
|
||||||
|
import net.minecraft.client.renderer.entity.RenderItem;
|
||||||
|
import net.minecraft.client.renderer.entity.RenderManager;
|
||||||
|
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
|
||||||
|
import net.minecraft.entity.item.EntityItem;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.util.ResourceLocation;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableMap;
|
||||||
|
import com.google.common.collect.ImmutableMap.Builder;
|
||||||
|
import com.google.common.primitives.SignedBytes;
|
||||||
|
|
||||||
|
import cpw.mods.ironchest.IronChestType;
|
||||||
|
import cpw.mods.ironchest.MappableItemStackWrapper;
|
||||||
|
import cpw.mods.ironchest.TileEntityIronChest;
|
||||||
|
|
||||||
|
/*public class TileEntityIronChestRenderer extends TileEntitySpecialRenderer {
|
||||||
|
@SuppressWarnings("unused")
|
||||||
|
private static Map<MappableItemStackWrapper, Integer> renderList = new HashMap<MappableItemStackWrapper, Integer>();
|
||||||
|
|
||||||
|
private static Map<IronChestType, ResourceLocation> locations;
|
||||||
|
static {
|
||||||
|
Builder<IronChestType, ResourceLocation> builder = ImmutableMap.<IronChestType,ResourceLocation>builder();
|
||||||
|
for (IronChestType typ : IronChestType.values()) {
|
||||||
|
builder.put(typ, new ResourceLocation("ironchest","textures/model/"+typ.getModelTexture()));
|
||||||
|
}
|
||||||
|
locations = builder.build();
|
||||||
|
}
|
||||||
|
private Random random;
|
||||||
|
|
||||||
|
@SuppressWarnings("unused")
|
||||||
|
private RenderBlocks renderBlocks;
|
||||||
|
|
||||||
|
private RenderItem itemRenderer;
|
||||||
|
|
||||||
|
private static float[][] shifts = { { 0.3F, 0.45F, 0.3F }, { 0.7F, 0.45F, 0.3F }, { 0.3F, 0.45F, 0.7F }, { 0.7F, 0.45F, 0.7F }, { 0.3F, 0.1F, 0.3F },
|
||||||
|
{ 0.7F, 0.1F, 0.3F }, { 0.3F, 0.1F, 0.7F }, { 0.7F, 0.1F, 0.7F }, { 0.5F, 0.32F, 0.5F }, };
|
||||||
|
|
||||||
|
public TileEntityIronChestRenderer()
|
||||||
|
{
|
||||||
|
model = new ModelChest();
|
||||||
|
random = new Random();
|
||||||
|
renderBlocks = new RenderBlocks();
|
||||||
|
itemRenderer = new RenderItem() {
|
||||||
|
@Override
|
||||||
|
public byte getMiniBlockCount(ItemStack stack, byte original) {
|
||||||
|
return SignedBytes.saturatedCast(Math.min(stack.stackSize / 32, 15) + 1);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public byte getMiniItemCount(ItemStack stack, byte original) {
|
||||||
|
return SignedBytes.saturatedCast(Math.min(stack.stackSize / 32, 7) + 1);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public boolean shouldBob() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public boolean shouldSpreadItems() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
itemRenderer.setRenderManager(RenderManager.instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*public void render(TileEntityIronChest tile, double x, double y, double z, float partialTick) {
|
||||||
|
if (tile == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int facing = 3;
|
||||||
|
IronChestType type = tile.getType();
|
||||||
|
if (tile != null && tile.hasWorldObj()) {
|
||||||
|
facing = tile.getFacing();
|
||||||
|
type = tile.getType();
|
||||||
|
int typ = tile.getWorldObj().getBlockMetadata(tile.xCoord, tile.yCoord, tile.zCoord);
|
||||||
|
type = IronChestType.values()[typ];
|
||||||
|
}
|
||||||
|
bindTexture(locations.get(type));
|
||||||
|
glPushMatrix();
|
||||||
|
glEnable(32826 /* GL_RESCALE_NORMAL_EXT *//*);
|
||||||
|
/*glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
||||||
|
glTranslatef((float) x, (float) y + 1.0F, (float) z + 1.0F);
|
||||||
|
glScalef(1.0F, -1F, -1F);
|
||||||
|
glTranslatef(0.5F, 0.5F, 0.5F);
|
||||||
|
int k = 0;
|
||||||
|
if (facing == 2) {
|
||||||
|
k = 180;
|
||||||
|
}
|
||||||
|
if (facing == 3) {
|
||||||
|
k = 0;
|
||||||
|
}
|
||||||
|
if (facing == 4) {
|
||||||
|
k = 90;
|
||||||
|
}
|
||||||
|
if (facing == 5) {
|
||||||
|
k = -90;
|
||||||
|
}
|
||||||
|
glRotatef(k, 0.0F, 1.0F, 0.0F);
|
||||||
|
glTranslatef(-0.5F, -0.5F, -0.5F);
|
||||||
|
float lidangle = tile.prevLidAngle + (tile.lidAngle - tile.prevLidAngle) * partialTick;
|
||||||
|
lidangle = 1.0F - lidangle;
|
||||||
|
lidangle = 1.0F - lidangle * lidangle * lidangle;
|
||||||
|
model.chestLid.rotateAngleX = -((lidangle * 3.141593F) / 2.0F);
|
||||||
|
// Render the chest itself
|
||||||
|
model.renderAll();
|
||||||
|
glDisable(32826 /* GL_RESCALE_NORMAL_EXT *//*);
|
||||||
|
/*glPopMatrix();
|
||||||
|
glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
||||||
|
if (type.isTransparent() && tile.getDistanceFrom(this.field_147501_a.field_147560_j, this.field_147501_a.field_147561_k, this.field_147501_a.field_147558_l) < 128d) {
|
||||||
|
random.setSeed(254L);
|
||||||
|
float shiftX;
|
||||||
|
float shiftY;
|
||||||
|
float shiftZ;
|
||||||
|
int shift = 0;
|
||||||
|
float blockScale = 0.70F;
|
||||||
|
float timeD = (float) (360.0 * (double) (System.currentTimeMillis() & 0x3FFFL) / (double) 0x3FFFL);
|
||||||
|
if (tile.getTopItemStacks()[1] == null) {
|
||||||
|
shift = 8;
|
||||||
|
blockScale = 0.85F;
|
||||||
|
}
|
||||||
|
glPushMatrix();
|
||||||
|
glDisable(2896 /* GL_LIGHTING *//*);
|
||||||
|
/*glTranslatef((float) x, (float) y, (float) z);
|
||||||
|
EntityItem customitem = new EntityItem(field_147501_a.field_147550_f);
|
||||||
|
customitem.hoverStart = 0f;
|
||||||
|
for (ItemStack item : tile.getTopItemStacks()) {
|
||||||
|
if (shift > shifts.length) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (item == null) {
|
||||||
|
shift++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
shiftX = shifts[shift][0];
|
||||||
|
shiftY = shifts[shift][1];
|
||||||
|
shiftZ = shifts[shift][2];
|
||||||
|
shift++;
|
||||||
|
glPushMatrix();
|
||||||
|
glTranslatef(shiftX, shiftY, shiftZ);
|
||||||
|
glRotatef(timeD, 0.0F, 1.0F, 0.0F);
|
||||||
|
glScalef(blockScale, blockScale, blockScale);
|
||||||
|
customitem.setEntityItemStack(item);
|
||||||
|
itemRenderer.doRender(customitem, 0, 0, 0, 0, 0);
|
||||||
|
glPopMatrix();
|
||||||
|
}
|
||||||
|
glEnable(2896 /* GL_LIGHTING *//*);
|
||||||
|
/*glPopMatrix();
|
||||||
|
glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*@Override
|
||||||
|
public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float partialTick)
|
||||||
|
{
|
||||||
|
render((TileEntityIronChest) tileentity, x, y, z, partialTick);
|
||||||
|
}
|
||||||
|
|
||||||
|
private ModelChest model;
|
||||||
|
}*/
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Železná truhla
|
||||||
|
tile.ironchest:GOLD.name=Zlatá truhla
|
||||||
|
tile.ironchest:DIAMOND.name=Diamantová truhla
|
||||||
|
tile.ironchest:COPPER.name=Měděná truhla
|
||||||
|
tile.ironchest:SILVER.name=Stříbrná truhla
|
||||||
|
tile.ironchest:CRYSTAL.name=Krystalová truhla
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidiánová truhla
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Vylepšení železné truhly na zlatou
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Vylepšení zlaté truhly na diamantovou
|
||||||
|
item.ironchest:COPPERSILVER.name=Vylepšení měděné truhly na stříbrnou
|
||||||
|
item.ironchest:SILVERGOLD.name=Vylepšení stříbrné truhly na zlatou
|
||||||
|
item.ironchest:COPPERIRON.name=Vylepšení měděné truhly na železnou
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Vylepšení diamantové truhly na krystalovou
|
||||||
|
item.ironchest:WOODIRON.name=Vylepšení dřevěné truhly na železnou
|
||||||
|
item.ironchest:WOODCOPPER.name=Vylepšení dřevěné truhly na měděnou
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Vylepšení diamantové truhly na obsidiánovou
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Jern Kiste
|
||||||
|
tile.ironchest:GOLD.name=Guld Kiste
|
||||||
|
tile.ironchest:DIAMOND.name=Diamant Kiste
|
||||||
|
tile.ironchest:COPPER.name=Kobber Kiste
|
||||||
|
tile.ironchest:SILVER.name=Sølv Kiste
|
||||||
|
tile.ironchest:CRYSTAL.name=Krystal Kiste
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidian Kiste
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Jern til Guld Kiste Opgradering
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Guld til Diamant Kiste Opgradering
|
||||||
|
item.ironchest:COPPERSILVER.name=Kobber til Sølv Kiste Opgradering
|
||||||
|
item.ironchest:SILVERGOLD.name=Sølv til Guld Kiste Opgradering
|
||||||
|
item.ironchest:COPPERIRON.name=Kobber til Jern Kiste Opgradering
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Diamant til Krystal Kiste Opgradering
|
||||||
|
item.ironchest:WOODIRON.name=Træ til Jern Kiste Opgradering
|
||||||
|
item.ironchest:WOODCOPPER.name=Træ til Kobber Kiste Opgradering
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamant til Obsidian Kiste Opgradering
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Eisentruhe
|
||||||
|
tile.ironchest:GOLD.name=Goldtruhe
|
||||||
|
tile.ironchest:DIAMOND.name=Diamanttruhe
|
||||||
|
tile.ironchest:COPPER.name=Kupfertruhe
|
||||||
|
tile.ironchest:SILVER.name=Silbertruhe
|
||||||
|
tile.ironchest:CRYSTAL.name=Kristalltruhe
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidiantruhe
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=DirtChest 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Eisen-zu-Goldtruhen-Upgrade
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Gold-zu-Diamanttruhen-Upgrade
|
||||||
|
item.ironchest:COPPERSILVER.name=Kupfer-zu-Silbertruhen-Upgrade
|
||||||
|
item.ironchest:SILVERGOLD.name=Silber-zu-Goldtruhen-Upgrade
|
||||||
|
item.ironchest:COPPERIRON.name=Kupfer-zu-Eisentruhen-Upgrade
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Diamant-zu-Kristalltruhen-Upgrade
|
||||||
|
item.ironchest:WOODIRON.name=Holz-zu-Eisentruhen-Upgrade
|
||||||
|
item.ironchest:WOODCOPPER.name=Holz-zu-Kupfertruhen-Upgrade
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamant-zu-Obsidiantruhen-Upgrade
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=Wie du deine neue DirtChest 9000 nutzt!
|
||||||
|
book.ironchest:dirtchest9000.page1=Willkommen zu Ihrer neuen DirtChest 9000! Wir hoffen, dass Sie viele freudige Jahre genießen werden, wenn Sie Ihre Erd-Stacks in unserem nützlichen Speichergerät lagern.
|
||||||
|
book.ironchest:dirtchest9000.page2=Nutzung: Werfen Sie einfach den Erd-Stack Ihrer Wahl in den äußerst rezeptiven Slot und genießen Sie die Annehmlichkeit, diese Erde für Sie verfügbar zu haben, jedes mal, wenn Sie diese Truhe passieren!
|
||||||
|
book.ironchest:dirtchest9000.page3=Wir hoffen, Sie haben das Durchgehen dieser Bedienungsanleitung genossen, und hoffen, dass sie sich weiterhin entscheiden werden, in Zukunft unsere Produkte zu nutzen! Mit freundlichen Grüßen, Die DirtChest 9000 manual writers incorporated.
|
||||||
|
book.ironchest:dirtchest9000.page4=Garantie: Dieses Produkt hat keine Garantie jeglicher Sorte. Ihre Erde könnte nicht gespeichert werden, er könnte langsam in die Umwelt gesaugt werden, oder stattdessen könnte das Produkt gar nichts machen.
|
||||||
|
book.ironchest:dirtchest9000.page5=DirtChest 9000 ist freundlich zur Umwelt. Bitte entsorgen Sie diesen Guide verantwortungsbewusst, und tun sie nicht, was Sie immer tun und schmeißen ihn in irgendwelche Lava. Wir würden sehr traurig sein.
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Σιδερένιο Σεντούκι
|
||||||
|
tile.ironchest:GOLD.name=Χρυσό Σεντούκι
|
||||||
|
tile.ironchest:DIAMOND.name=Διαμαντένιο Σεντούκι
|
||||||
|
tile.ironchest:COPPER.name=Χάλκινο Σεντούκι
|
||||||
|
tile.ironchest:SILVER.name=Ασημένιο Σεντούκι
|
||||||
|
tile.ironchest:CRYSTAL.name=Κρυστάλλινο Σεντούκι
|
||||||
|
tile.ironchest:OBSIDIAN.name=Σεντούκι Οψιδιανού
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Αναβάθμιση από Σιδερένιο σε Χρυσό Σεντούκι
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Αναβάθμιση από Χρυσό σε Διαμαντένιο Σεντούκι
|
||||||
|
item.ironchest:COPPERSILVER.name=Αναβάθμιση από Χάλκινο σε Ασημένιο Σεντούκι
|
||||||
|
item.ironchest:SILVERGOLD.name=Αναβάθμιση από Ασημένιο σε Χρυσό Σεντούκι
|
||||||
|
item.ironchest:COPPERIRON.name=Αναβάθμιση από Χάλκινο σε Σιδερένιο Σεντούκι
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Αναβάθμιση από Διαμαντένιο σε Κρυστάλλινο Σεντούκι
|
||||||
|
item.ironchest:WOODIRON.name=Αναβάθμιση από Ξύλινο σε Σιδερένιο Σεντούκι
|
||||||
|
item.ironchest:WOODCOPPER.name=Αναβάθμιση από Ξύλινο σε Χάλκινο Σεντούκι
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Αναβάθμιση από Διαμαντένιο σε Σεντούκι Οψιδιανού
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Steel Coffer
|
||||||
|
tile.ironchest:GOLD.name=Gold Coffer
|
||||||
|
tile.ironchest:DIAMOND.name=Diamond Coffer
|
||||||
|
tile.ironchest:COPPER.name=Copper Coffer
|
||||||
|
tile.ironchest:SILVER.name=Silver Coffer
|
||||||
|
tile.ironchest:CRYSTAL.name=Shinin' Coffer
|
||||||
|
tile.ironchest:OBSIDIAN.name=Coffer o' tears
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=FilthCoffer 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Steel to Gold Coffer Upgradin'
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Gold to Diamond Coffer Upgradin'
|
||||||
|
item.ironchest:COPPERSILVER.name=Copper to Silver Coffer Upgradin'
|
||||||
|
item.ironchest:SILVERGOLD.name=Silver to Gold Coffer Upgradin'
|
||||||
|
item.ironchest:COPPERIRON.name=Copper to Steel Coffer Upgradin'
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Diamond to Shinin' Coffer Upgradin'
|
||||||
|
item.ironchest:WOODIRON.name=Timber to Steel Coffer Upgradin'
|
||||||
|
item.ironchest:WOODCOPPER.name=Wood to Copper Coffer Upgradin'
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamond to Coffer o' Tears Upgradin'
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=How to use yer FilthCoffer 9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=Welcome to yer new FilthCoffer 9000! We hope ye will enjoy many happy years of storing yer filth wit yer coffer .
|
||||||
|
book.ironchest:dirtchest9000.page2=Usage: simply put yer filth in yer slot and yer got yerself some filth any time ye need it!
|
||||||
|
book.ironchest:dirtchest9000.page3=We hope you have enjoyed reviewing this instruction manual, and hope you will consider using our products in future! Kind regards, The DirtChest 9000 manual writers incorporated.
|
||||||
|
book.ironchest:dirtchest9000.page4=Warranty: We can't keep yer filth from pirates. Yer filth may not be stored, it may slowly return to yer world, or it may stay in yer coffer.
|
||||||
|
book.ironchest:dirtchest9000.page5=FilthCoffer 9000 is kind to yer voyage. Throw yer paper in a coffer near by wit yer booty, and don't just chuck it into some molten rock. We wouldn't be the happiest o' pirates.
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Iron Chest
|
||||||
|
tile.ironchest:GOLD.name=Gold Chest
|
||||||
|
tile.ironchest:DIAMOND.name=Diamond Chest
|
||||||
|
tile.ironchest:COPPER.name=Copper Chest
|
||||||
|
tile.ironchest:SILVER.name=Silver Chest
|
||||||
|
tile.ironchest:CRYSTAL.name=Crystal Chest
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidian Chest
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=DirtChest 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Iron to Gold Chest Upgrade
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Gold to Diamond Chest Upgrade
|
||||||
|
item.ironchest:COPPERSILVER.name=Copper to Silver Chest Upgrade
|
||||||
|
item.ironchest:SILVERGOLD.name=Silver to Gold Chest Upgrade
|
||||||
|
item.ironchest:COPPERIRON.name=Copper to Iron Chest Upgrade
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Diamond to Crystal Chest Upgrade
|
||||||
|
item.ironchest:WOODIRON.name=Wood to Iron Chest Upgrade
|
||||||
|
item.ironchest:WOODCOPPER.name=Wood to Copper Chest Upgrade
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamond to Obsidian Chest Upgrade
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=How to use your DirtChest 9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=Welcome to your new DirtChest 9000! We hope you will enjoy many happy years of storing your stack of dirt in our storage utility.
|
||||||
|
book.ironchest:dirtchest9000.page2=Usage: simply insert the stack of dirt of your choice into the highly receptive slot and enjoy the great convenience of having that dirt available to you, any time you pass by this chest!
|
||||||
|
book.ironchest:dirtchest9000.page3=We hope you have enjoyed reviewing this instruction manual, and hope you will consider using our products in future! Kind regards, The DirtChest 9000 manual writers incorporated.
|
||||||
|
book.ironchest:dirtchest9000.page4=Warranty: This product has no warranty of any kind. Your dirt may not be stored, it may slowly leech into the environment, or alternatively, it may not do anything at all.
|
||||||
|
book.ironchest:dirtchest9000.page5=DirtChest 9000 is kind to the environment. Please dispose of this guide book responsibly, and do not whatever you do just chuck it into some lava. We would be very sad.
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Cofre de Hierro
|
||||||
|
tile.ironchest:GOLD.name=Cofre de Oro
|
||||||
|
tile.ironchest:DIAMOND.name=Cofre de Diamante
|
||||||
|
tile.ironchest:COPPER.name=Cofre de Cobre
|
||||||
|
tile.ironchest:SILVER.name=Cofre de Plata
|
||||||
|
tile.ironchest:CRYSTAL.name=Cofre de Cristal
|
||||||
|
tile.ironchest:OBSIDIAN.name=Cofre de Obsidiana
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Mejora de Cofre de Hierro a Oro
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Mejora de Cofre de Oro a Diamante
|
||||||
|
item.ironchest:COPPERSILVER.name=Mejora de Cofre de Cobre a Plata
|
||||||
|
item.ironchest:SILVERGOLD.name=Mejora de Cofre de Plata a Oro
|
||||||
|
item.ironchest:COPPERIRON.name=Mejora de Cofre de Cobre a Hierro
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Mejora de Cofre de Diamante a Cristal
|
||||||
|
item.ironchest:WOODIRON.name=Mejora de Cofre de Madera a Hierro
|
||||||
|
item.ironchest:WOODCOPPER.name=Mejora de Cofre de Madera a Cobre
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Mejora de Cofre de Diamante a Obsidiana
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
tile.ironchest:IRON.name=Raudkirst
|
||||||
|
tile.ironchest:GOLD.name=Kuldkirst
|
||||||
|
tile.ironchest:DIAMOND.name=Teemantkirst
|
||||||
|
tile.ironchest:COPPER.name=Vaskkirst
|
||||||
|
tile.ironchest:SILVER.name=Hõbekirst
|
||||||
|
tile.ironchest:CRYSTAL.name=Kristallkirst
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidiaankirst
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=Muldkirst 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Raudkirst kuld kirstuks
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Kuldkirst teemandist kirstuks
|
||||||
|
item.ironchest:COPPERSILVER.name=Vaskkirst hõbedast kirstuks
|
||||||
|
item.ironchest:SILVERGOLD.name=Hõbekirst kullast kirstuks
|
||||||
|
item.ironchest:COPPERIRON.name=Vaskkirst rauast kirstuks
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Teemantkirst kristallist kirstuks
|
||||||
|
item.ironchest:WOODIRON.name=Puukirst rauast kirstuks
|
||||||
|
item.ironchest:WOODCOPPER.name=Puukirst vasest kirstuks
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Teemantkirst obsidiaanist kirstuks
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
#fr_FR translated by robin4002
|
||||||
|
|
||||||
|
tile.ironchest:IRON.name=Coffre en fer
|
||||||
|
tile.ironchest:GOLD.name=Coffre en or
|
||||||
|
tile.ironchest:DIAMOND.name=Coffre en diamant
|
||||||
|
tile.ironchest:COPPER.name=Coffre en cuivre
|
||||||
|
tile.ironchest:SILVER.name=Coffre en argent
|
||||||
|
tile.ironchest:CRYSTAL.name=Coffre en cristal
|
||||||
|
tile.ironchest:OBSIDIAN.name=Coffre en obsidian
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Amélioration de coffre en fer à or
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Amélioration de coffre en or à diamant
|
||||||
|
item.ironchest:COPPERSILVER.name=Amélioration de coffre en cuivre à argent
|
||||||
|
item.ironchest:SILVERGOLD.name=Amélioration de coffre en argent à or
|
||||||
|
item.ironchest:COPPERIRON.name=Amélioration de coffre en cuivre à fer
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Amélioration de coffre en diamant à crital
|
||||||
|
item.ironchest:WOODIRON.name=Amélioration de coffre en bois à fer
|
||||||
|
item.ironchest:WOODCOPPER.name=Amélioration de coffre en bois à cuivre
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Amélioration de coffre en diamant à obsidian
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Baule di ferro
|
||||||
|
tile.ironchest:GOLD.name=Baule d'oro
|
||||||
|
tile.ironchest:DIAMOND.name=Baule di diamante
|
||||||
|
tile.ironchest:COPPER.name=Baule di rame
|
||||||
|
tile.ironchest:SILVER.name=Baule d'argento
|
||||||
|
tile.ironchest:CRYSTAL.name=Baule di cristallo
|
||||||
|
tile.ironchest:OBSIDIAN.name=Baule di ossidiana
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=DirtChest 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Potenziamento da ferro a oro
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Potenziamento da oro a diamante
|
||||||
|
item.ironchest:COPPERSILVER.name=Potenziamento da rame a argento
|
||||||
|
item.ironchest:SILVERGOLD.name=Potenziamento da argento a oro
|
||||||
|
item.ironchest:COPPERIRON.name=Potenziamento da rame a ferro
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Potenziamento da diamante a cristallo
|
||||||
|
item.ironchest:WOODIRON.name=Potenziamento da legno a ferro
|
||||||
|
item.ironchest:WOODCOPPER.name=Potenziamento da legno a rame
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Potenziamento da diamante a ossidiana
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=Come usare la tua DirtChest 9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=Benvenuto alla tua nuova DirtChest 9000! Speriamo che possiate godere di molti anni felici in cui imagazzinate grandi quantità di terra nei nostri contenitori.
|
||||||
|
book.ironchest:dirtchest9000.page2=Uso: inserisci uno stack di terra nello slot e goditi la grande convenienza di avere della terra a tua disposizione ogni volta che passi vicino alla cassa!
|
||||||
|
book.ironchest:dirtchest9000.page3=Speriamo che questo manuale vi sia stato utile, e speriamo che prenderete in considerazione usare i nostri prodotti in futuro ! I migliori saluti, i scrittori del manuale per la DirtChest 9000.
|
||||||
|
book.ironchest:dirtchest9000.page4=Garanzia: Questo prodotto non ha nessuna garanzia di alcun tipo. La tua terra potrebbe non essere imagazzinata, potrebbe lentamente fuoriuscire nell'ambiente, oppure, non farà niente.
|
||||||
|
book.ironchest:dirtchest9000.page5=La DirtChest 9000 è amico dell'ambiente. Per favore conservate questo libro in un modo responsabile, e non buttatelo nella lava come un oggetto qualsiasi. Saremmo veramente tristi.
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=철 상자
|
||||||
|
tile.ironchest:GOLD.name=금 상자
|
||||||
|
tile.ironchest:DIAMOND.name=다이아몬드 상자
|
||||||
|
tile.ironchest:COPPER.name=구리 상자
|
||||||
|
tile.ironchest:SILVER.name=은 상자
|
||||||
|
tile.ironchest:CRYSTAL.name=수정 상자
|
||||||
|
tile.ironchest:OBSIDIAN.name=흑요석 상자
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=흙 상자 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=철 상자를 금 상자로 업그레이드
|
||||||
|
item.ironchest:GOLDDIAMOND.name=금 상자를 다이아몬드 상자로 업그레이드
|
||||||
|
item.ironchest:COPPERSILVER.name=구리 상자를 은 상자로 업그레이드
|
||||||
|
item.ironchest:SILVERGOLD.name=은 상자를 금 상자로 업그레이드
|
||||||
|
item.ironchest:COPPERIRON.name=구리 상자를 철 상자로 업그레이드
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=다이아몬드 상자를 수정 상자로 업그레이드
|
||||||
|
item.ironchest:WOODIRON.name=나무 상자를 철 상자로 업그레이드
|
||||||
|
item.ironchest:WOODCOPPER.name=나무 상자를 구리 상자로 업그레이드
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=다이아몬드 상자를 흑요석 상자로 업그레이드
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=흙 상자 9000을 사용하는 방법!
|
||||||
|
book.ironchest:dirtchest9000.page1=새로운 흙 상자 9000을 사용하게 되신 것을 환영합니다! 우리는 당신이 이 저장 도구에서 흙들을 많은 해 동안 행복하게 저장하기를 기원합니다.
|
||||||
|
사용법: 단순히 흙 뭉치들을 아이템 슬롯에 넣고 이 상자를 지나갈 때마다 언제나 당신에게 제공되어지는 흙들의 편리함을 누리세요!
|
||||||
|
book.ironchest:dirtchest9000.page3=우리는 당신이 이 사용설명서를 즐겁게 읽었고, 나중에 이 제품을 사용하기를 바랍니다! 흙 상자 9000 매뉴얼
|
||||||
|
book.ironchest:dirtchest9000.page4=주의: 이 제품에는 어떤 종류의 보증도 하지 않습니다 당신의 흙들은 저장되지 않을 수도 있습니다. 그러면 이 흙 상자는 천천히 환경 속으로 돌아가거나, 혹은 아무것도 하지 않을 것입니다.
|
||||||
|
book.ironchest:dirtchest9000.page5=흙 상자 9000은 환경 친화적입니다. 가이드북의 처분에는 책임이 따릅니다, 그러니 어떠한 경우라도 용암에 버리지 마세요. 우리는 매우 슬플 것입니다.
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Jernkiste
|
||||||
|
tile.ironchest:GOLD.name=Gullkiste
|
||||||
|
tile.ironchest:DIAMOND.name=Diamantkiste
|
||||||
|
tile.ironchest:COPPER.name=Kobberkiste
|
||||||
|
tile.ironchest:SILVER.name=Sølvkiste
|
||||||
|
tile.ironchest:CRYSTAL.name=Krystallkiste
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidiankiste
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=JordKiste 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Jern til Gull Kisteoppgradering
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Gull til Diamant Kisteoppgradering
|
||||||
|
item.ironchest:COPPERSILVER.name=Kobber til Sølv Kisteoppgradering
|
||||||
|
item.ironchest:SILVERGOLD.name=Sølv til Gull Kisteoppgradering
|
||||||
|
item.ironchest:COPPERIRON.name=Kobber til Jern Kisteoppgradering
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Diamant til Krystall Kisteoppgradering
|
||||||
|
item.ironchest:WOODIRON.name=Tre til Jern Kisteoppgradering
|
||||||
|
item.ironchest:WOODCOPPER.name=Tre til Kobber Kisteoppgradering
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamant til Obsidian Kisteoppgradering
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=Hvordan bruker din JordKiste 9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=Velkommen til din nye JordKiste9000! Vi håper du vil nyte mange lykkelige år med lagring av din stabel av jord i vå lager verktøy.
|
||||||
|
book.ironchest:dirtchest9000.page2=Bruk: bare å sette bunken med jord av ditt valg i den svært mottakelige sporet og nyte den store fordelen med åa den jorden tilgjengelig for deg, nådu passerer denne kisten!
|
||||||
|
book.ironchest:dirtchest9000.page3=Vi håper du har hatt en god fornøyelse gjennom denne bruksanvisningen, og hår du vil vurdere å bruke vå produkter i fremtiden! Vennlig hilsen, JordKiste9000 manual forfattere innarbeidet.
|
||||||
|
book.ironchest:dirtchest9000.page4=Garanti: Dette produktet har ingen garantier av noe slag. Din jord kan ikke lagres, det kan sakte lekke ut i miljøet, eller alternativt, kan det ikke gjøre noe i det hele tatt.
|
||||||
|
book.ironchest:dirtchest9000.page5=JordKiste 9000 er snill mot miljøet. Vennligst ta hånd om denne veileder boken ansvarlig, og hva du enn gjør ikke kast den inn i noe lav. Vi ville bli veldig trist.
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Ijzeren Kist
|
||||||
|
tile.ironchest:GOLD.name=Gouden Kist
|
||||||
|
tile.ironchest:DIAMOND.name=Diamanten Kist
|
||||||
|
tile.ironchest:COPPER.name=Koperen Kist
|
||||||
|
tile.ironchest:SILVER.name=Zilveren Kist
|
||||||
|
tile.ironchest:CRYSTAL.name=Kristallen Kist
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidiaanen Kist
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=Aarden Kist 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Ijzeren naar Gouden Kist Transformatie
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Gouden naar Diamanten Kist Transformatie
|
||||||
|
item.ironchest:COPPERSILVER.name=Koperen naar Zilveren Kist Transformatie
|
||||||
|
item.ironchest:SILVERGOLD.name=Zilveren naar Gouden Kist Transformatie
|
||||||
|
item.ironchest:COPPERIRON.name=Koperen naar Ijzeren Kist Transformatie
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Diamanten naar Kristallen Kist Transformatie
|
||||||
|
item.ironchest:WOODIRON.name=Houten naar Ijzeren Kist Transformatie
|
||||||
|
item.ironchest:WOODCOPPER.name=Houten naar Koperen Kist Transformatie
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamanten naar Obsidiaanen Kist Transformatie
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=Hoe gebruik je uw Aarden Kist 9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=Welkom voor uw nieuwe Aarden Kist 9000! We hopen dat je veel geluk zal beleven om uw hoop aarde te bewaren in onze stokeer faciliteit.
|
||||||
|
book.ironchest:dirtchest9000.page2=Gebruik: Plaats simpelweg uw hoop aarde naar uw keuze in de zeer ontvankelijke gleuf en geniet van de geriefelijkheid om dat hoop aarde altijd beschikbaar tot u te hebben, wanneer dan ook!
|
||||||
|
book.ironchest:dirtchest9000.page3=We hopen dat u heeft genoten om deze handleiding te lezen en we hopen dat u overweegt om onze producten in de toekomst te gebruiken! Met vriendelijke groeten, De Aarden Kist 9000 Handleiding Auteurs.
|
||||||
|
book.ironchest:dirtchest9000.page4=Garantie: Deze product biedt geen enkele garantie. Uw aarde kan mogenlijk niet gestockeerd worden, het kan langzaam verdampen of het kan ook helemaal niks doen.
|
||||||
|
book.ironchest:dirtchest9000.page5=Aarden Kist 9000 is mileuvriendelijk. Gelieve deze handleiding verantwoordlijk te ontdoen en gooi het niet zomaar in wat lava. We zouden zeer verdrietig zijn.
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Żelazna skrzynia
|
||||||
|
tile.ironchest:GOLD.name=Złota skrzynia
|
||||||
|
tile.ironchest:DIAMOND.name=Diamentowa skrzynia
|
||||||
|
tile.ironchest:COPPER.name=Miedziana skrzynia
|
||||||
|
tile.ironchest:SILVER.name=Srebrna skrzynia
|
||||||
|
tile.ironchest:CRYSTAL.name=Kryształowa skrzynia
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsydianowa skrzynia
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Ulepszenie żelaznej skrzyni na złotą
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Ulepszenie złotej skrzyni na diamentową
|
||||||
|
item.ironchest:COPPERSILVER.name=Ulepszenie miedzianej skrzyni na srebrną
|
||||||
|
item.ironchest:SILVERGOLD.name=Ulepszenie srebrnej skrzyni na złotą
|
||||||
|
item.ironchest:COPPERIRON.name=Ulepszenie miedzianej skrzyni na żelazną
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Ulepszenie diamentowej skrzyni na kryształową
|
||||||
|
item.ironchest:WOODIRON.name=Ulepszenie drewnianej skrzyni na żelazną
|
||||||
|
item.ironchest:WOODCOPPER.name=Ulepszenie drewnianej skrzyni na miedzianą
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Ulepszenie diamentowej skrzyni na obsydianową
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Baú de Ferro
|
||||||
|
tile.ironchest:GOLD.name=Baú de Ouro
|
||||||
|
tile.ironchest:DIAMOND.name=Baú de Diamante
|
||||||
|
tile.ironchest:COPPER.name=Baú de Cobre
|
||||||
|
tile.ironchest:SILVER.name=Baú de Prata
|
||||||
|
tile.ironchest:CRYSTAL.name=Baú de Cristal
|
||||||
|
tile.ironchest:OBSIDIAN.name=Baú de Obsidiana
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=BaúDeSujeira 9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Aprimoramento de Baú de Ferro para Ouro
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Aprimoramento de Baú de Ouro para Diamante
|
||||||
|
item.ironchest:COPPERSILVER.name=Aprimoramento de Baú de Cobre para Prata
|
||||||
|
item.ironchest:SILVERGOLD.name=Aprimoramento de Baú de Prata para Ouro
|
||||||
|
item.ironchest:COPPERIRON.name=Aprimoramento de Baú de Cobre para Ferro
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Aprimoramento de Baú de Diamante para Cristal
|
||||||
|
item.ironchest:WOODIRON.name=Aprimoramento de Baú de Madeira para Ferro
|
||||||
|
item.ironchest:WOODCOPPER.name=Aprimoramento de Baú de Madeira para Cobre
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Aprimoramento de Baú de Diamante para Obsidiana
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=Como utilizar seu BaúDeSujeira 9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=Bem-vindo ao seu novo BaúDeSujeira 9000! Esperamos que desfrute de muitos anos felizes de armazenagem de sua pilha de sujeira em nosso utilitário de armazenamento.
|
||||||
|
book.ironchest:dirtchest9000.page2=Uso: basta inserir o monte de sujeira de sua escolha no slot altamente receptivo e apreciar a grande conveniência de ter essa sujeira disponíveis para você, a qualquer momento que você passar pelo baú!
|
||||||
|
book.ironchest:dirtchest9000.page3=Esperamos que tenham gostado de rever este manual de instruções, e espero que você considere o uso de nossos produtos no futuro! Atenciosamente, manual do BaúDeSujeira 9000 escritores incorporados.
|
||||||
|
book.ironchest:dirtchest9000.page4=Garantia: Este produto não tem qualquer tipo de garantia. Sua sujeira pode não ser armazenada, pode vazar lentamente para o ambiente, ou alternativamente, pode não fazer absolutamente nada.
|
||||||
|
book.ironchest:dirtchest9000.page5=BaúDeSujeira 9000 é bom para o meio ambiente. Elimine este guia de forma responsável, e não o que você faz apenas lançando-o em alguma lava. Ficaríamos muito triste.
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Baú de Ferro
|
||||||
|
tile.ironchest:GOLD.name=Baú de Ouro
|
||||||
|
tile.ironchest:DIAMOND.name=Baú de Diamante
|
||||||
|
tile.ironchest:COPPER.name=Baú de Cobre
|
||||||
|
tile.ironchest:SILVER.name=Baú de Prata
|
||||||
|
tile.ironchest:CRYSTAL.name=Baú de Cristal
|
||||||
|
tile.ironchest:OBSIDIAN.name=Baú de Obsidiana
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Melhoria de Baú de Ferro para Ouro
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Melhoria de Baú de Ouro para Diamante
|
||||||
|
item.ironchest:COPPERSILVER.name=Melhoria de Baú de Cobre para Prata
|
||||||
|
item.ironchest:SILVERGOLD.name=Melhoria de Baú de Prata para Ouro
|
||||||
|
item.ironchest:COPPERIRON.name=Melhoria de Baú de Cobre para Ferro
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Melhoria de Baú de Diamante para Cristal
|
||||||
|
item.ironchest:WOODIRON.name=Melhoria de Baú de Madeira para Ferro
|
||||||
|
item.ironchest:WOODCOPPER.name=Melhoria de Baú de Madeira para Cobre
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Melhoria de Baú de Diamante para Obsidiana
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Железный сундук
|
||||||
|
tile.ironchest:GOLD.name=Золотой сундук
|
||||||
|
tile.ironchest:DIAMOND.name=Алмазный сундук
|
||||||
|
tile.ironchest:COPPER.name=Медный сундук
|
||||||
|
tile.ironchest:SILVER.name=Серебряный сундук
|
||||||
|
tile.ironchest:CRYSTAL.name=Кристальный сундук
|
||||||
|
tile.ironchest:OBSIDIAN.name=Обсидиановый сундук
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Улучшение из железного в золотой сундук
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Улучшение из золотого в алмазный сундук
|
||||||
|
item.ironchest:COPPERSILVER.name=Улучшение из медного в серебряный сундук
|
||||||
|
item.ironchest:SILVERGOLD.name=Улучшение из серебряного в золотой сундук
|
||||||
|
item.ironchest:COPPERIRON.name=Улучшение из медного в железный сундук
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Улучшение из алмазного в кристальный сундук
|
||||||
|
item.ironchest:WOODIRON.name=Улучшение из деревянного в железный сундук
|
||||||
|
item.ironchest:WOODCOPPER.name=Улучшение из деревянного в медный сундук
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Улучшение из алмазного в обсидиановый сундук
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
tile.ironchest:IRON.name=Järnkista
|
||||||
|
tile.ironchest:GOLD.name=Guldkista
|
||||||
|
tile.ironchest:DIAMOND.name=Diamantkista
|
||||||
|
tile.ironchest:COPPER.name=Kopparkista
|
||||||
|
tile.ironchest:SILVER.name=Silverkista
|
||||||
|
tile.ironchest:CRYSTAL.name=Kristallkista
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidiankista
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Järn till Guld Kistuppgradering
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Guld till Diamant Kistuppgradering
|
||||||
|
item.ironchest:COPPERSILVER.name=Koppar till Silver Kistuppgradering
|
||||||
|
item.ironchest:SILVERGOLD.name=Silver till Guld Kistuppgradering
|
||||||
|
item.ironchest:COPPERIRON.name=Koppar till Järn Kistuppgradering
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Diamant till Kristal Kistuppgradering
|
||||||
|
item.ironchest:WOODIRON.name=Trä till Järn Kistuppgradering
|
||||||
|
item.ironchest:WOODCOPPER.name=Trä till Koppar Kistuppgradering
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamant till Obsidian Kistuppgradering
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=Demir Sandık
|
||||||
|
tile.ironchest:GOLD.name=Altın Sandık
|
||||||
|
tile.ironchest:DIAMOND.name=Elmas Sandık
|
||||||
|
tile.ironchest:COPPER.name=Bakır Sandık
|
||||||
|
tile.ironchest:SILVER.name=Gümüş Sandık
|
||||||
|
tile.ironchest:CRYSTAL.name=Kristal Sandık
|
||||||
|
tile.ironchest:OBSIDIAN.name=Obsidyen Sandık
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=Toprak Sandık-9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=Demir Sandığı Altın Sandığa Yükselt
|
||||||
|
item.ironchest:GOLDDIAMOND.name=Altın Sandığı Elmas Sandığa Yükselt
|
||||||
|
item.ironchest:COPPERSILVER.name=Bakır Sandığı Gümüş Sandığa Yükselt
|
||||||
|
item.ironchest:SILVERGOLD.name=Gümüş Sandığı Altın Sandığa Yükselt
|
||||||
|
item.ironchest:COPPERIRON.name=Bakır Sandığı Demir Sandığa Yükselt
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=Elmas Sandığı Kristal Sandığa Yükselt
|
||||||
|
item.ironchest:WOODIRON.name=Tahta Sandığı Demir Sandığa Yükselt
|
||||||
|
item.ironchest:WOODCOPPER.name=Tahta Sandığı Bakır Sandığa Yükselt
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=Elmas Sandığı Obsidyen Sandığa Yükselt
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=Toprak Sandık-9000 Kullanım Kılavuzu
|
||||||
|
book.ironchest:dirtchest9000.page1=Yeni sandık olan Toprak Sandık-9000 yaptığınız için teşekkürler.Bu sandık ile topraklarınızı depolayabilirsiniz.
|
||||||
|
book.ironchest:dirtchest9000.page2=Kullanımı: 64 adet toprak alarak içine koyunuz. Böylece sadece toprak depolanır.
|
||||||
|
book.ironchest:dirtchest9000.page3=Biz bu kılavuzu gözden keyif aldık umuyoruz, ve gelecekte ürünlerimizi kullanmayı düşünün umuyoruz! Saygılarımızla, dahil DirtChest 9000 manuel yazar.
|
||||||
|
book.ironchest:dirtchest9000.page4=Garanti: Bu ürün herhangi bir garanti vardır. Sizin kir depolanabilir değil, yavaş yavaş çevreye sülük olabilir, ya da alternatif olarak, hiç bir şey yapamazsınız.
|
||||||
|
book.ironchest:dirtchest9000.page5=Toprak Sandık-9000 çevreye türüdür. Sorumlu bu rehber kitap imha edin ve ne olursa olsun sadece bazı lav içine ayna yok yok. Bizim için çok üzücü olacaktır.
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=铁箱子
|
||||||
|
tile.ironchest:GOLD.name=金箱子
|
||||||
|
tile.ironchest:DIAMOND.name=钻石箱子
|
||||||
|
tile.ironchest:COPPER.name=铜箱子
|
||||||
|
tile.ironchest:SILVER.name=银箱子
|
||||||
|
tile.ironchest:CRYSTAL.name=水晶箱子
|
||||||
|
tile.ironchest:OBSIDIAN.name=黑曜石箱子
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=泥箱子9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=升级:铁>金
|
||||||
|
item.ironchest:GOLDDIAMOND.name=升级:金>钻石
|
||||||
|
item.ironchest:COPPERSILVER.name=升级:铜>银
|
||||||
|
item.ironchest:SILVERGOLD.name=升级:银>金
|
||||||
|
item.ironchest:COPPERIRON.name=升级:铜>铁
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=升级:钻石>水晶
|
||||||
|
item.ironchest:WOODIRON.name=升级:木>铁
|
||||||
|
item.ironchest:WOODCOPPER.name=升级:木>铜
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=升级:钻石>黑曜石
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=傻瓜也一定会用的泥箱子9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=欢迎使用这台全新的泥箱子9000!希望你能愉快地常年使用我们的设备来储存(大量)泥土(大雾)。
|
||||||
|
book.ironchest:dirtchest9000.page2=使用方法: 把一组泥土丢进去就行了。每次您经过的时候都可以打开它(很方便地)取出来用。
|
||||||
|
book.ironchest:dirtchest9000.page3=希望您阅读本手册愉快,并选择使用我们的产品。作为泥箱子9000手册作者我谨向您致以诚挚问候。
|
||||||
|
book.ironchest:dirtchest9000.page4=质量保障: 恕本产品不提供任何质量保障。您的泥土或者能安全存储其内,或者会逐渐流失到环境中,或者什么也不会发生。(读者:我了个去!)
|
||||||
|
book.ironchest:dirtchest9000.page5=泥箱子9000十分环保。请小心收藏好本手册,如果您随手丢进岩浆的话,我们可会伤心的。
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
tile.ironchest:IRON.name=鐵箱
|
||||||
|
tile.ironchest:GOLD.name=黃金箱
|
||||||
|
tile.ironchest:DIAMOND.name=鑽石箱
|
||||||
|
tile.ironchest:COPPER.name=銅箱
|
||||||
|
tile.ironchest:SILVER.name=銀箱
|
||||||
|
tile.ironchest:CRYSTAL.name=水晶箱
|
||||||
|
tile.ironchest:OBSIDIAN.name=黑曜石箱
|
||||||
|
tile.ironchest:DIRTCHEST9000.name=泥土箱9000!
|
||||||
|
|
||||||
|
item.ironchest:IRONGOLD.name=鐵箱升級成金箱
|
||||||
|
item.ironchest:GOLDDIAMOND.name=金箱升級成鑽石箱
|
||||||
|
item.ironchest:COPPERSILVER.name=銅箱升級成銀箱
|
||||||
|
item.ironchest:SILVERGOLD.name=銀箱升級成金箱
|
||||||
|
item.ironchest:COPPERIRON.name=銅箱升級成鐵箱
|
||||||
|
item.ironchest:DIAMONDCRYSTAL.name=鑽石箱升級成水晶箱
|
||||||
|
item.ironchest:WOODIRON.name=木箱升級成鐵箱
|
||||||
|
item.ironchest:WOODCOPPER.name=木箱升級成銅箱
|
||||||
|
item.ironchest:DIAMONDOBSIDIAN.name=鑽石箱升級成黑曜石箱
|
||||||
|
|
||||||
|
book.ironchest:dirtchest9000.title=笨蛋也一定會用的泥土箱9000!
|
||||||
|
book.ironchest:dirtchest9000.page1=歡迎使用這台全新的泥土箱9000!希望你能愉快地常年使用我們的設備來儲存泥土。
|
||||||
|
book.ironchest:dirtchest9000.page2=使用方法:把一組泥土丟進去就行了。每次您經過的時候都可以打開它很方便地取出來用。
|
||||||
|
book.ironchest:dirtchest9000.page3=希望您閱讀本手冊愉快,並選擇使用我們的產品。作為泥土箱9000手冊作者我謹向您致以誠摯問候。
|
||||||
|
book.ironchest:dirtchest9000.page4=質量保障:恕本產品不提供任何質量保障。您的泥土或許能安全存儲其內,或許會逐漸流失到環境中,或者什麼也不會發生。
|
||||||
|
book.ironchest:dirtchest9000.page5=泥土箱9000十分環保。請小心收藏好本手冊,如果您隨手丟進岩漿的話,我們可會傷心的。
|
||||||
|
After Width: | Height: | Size: 679 B |
|
After Width: | Height: | Size: 661 B |
|
After Width: | Height: | Size: 546 B |
|
After Width: | Height: | Size: 396 B |
|
After Width: | Height: | Size: 396 B |
|
After Width: | Height: | Size: 382 B |
|
After Width: | Height: | Size: 762 B |
|
After Width: | Height: | Size: 719 B |
|
After Width: | Height: | Size: 572 B |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 784 B |
|
After Width: | Height: | Size: 726 B |
|
After Width: | Height: | Size: 572 B |
|
After Width: | Height: | Size: 787 B |
|
After Width: | Height: | Size: 726 B |
|
After Width: | Height: | Size: 572 B |
|
After Width: | Height: | Size: 586 B |
|
After Width: | Height: | Size: 593 B |
|
After Width: | Height: | Size: 604 B |
|
After Width: | Height: | Size: 625 B |
|
After Width: | Height: | Size: 608 B |
|
After Width: | Height: | Size: 527 B |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 480 B |
|
After Width: | Height: | Size: 480 B |
|
After Width: | Height: | Size: 418 B |
|
After Width: | Height: | Size: 466 B |
|
After Width: | Height: | Size: 480 B |
|
After Width: | Height: | Size: 526 B |
|
After Width: | Height: | Size: 526 B |
|
After Width: | Height: | Size: 542 B |
|
After Width: | Height: | Size: 540 B |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 4.2 KiB |