Compare commits
4 Commits
main
...
add-config
| Author | SHA1 | Date | |
|---|---|---|---|
| 71c943f47d | |||
| 69d1d2aa1e | |||
| 203e06d455 | |||
| 1b05b30670 |
76
.gitignore
vendored
76
.gitignore
vendored
@@ -1,51 +1,43 @@
|
||||
# Compiled class files
|
||||
*.class
|
||||
### Gradle ###
|
||||
.gradle
|
||||
build/
|
||||
!gradle/wrapper/gradle-wrapper.jar
|
||||
!**/src/main/**/build/
|
||||
!**/src/test/**/build/
|
||||
|
||||
# Log files
|
||||
*.log
|
||||
### Hytale ###
|
||||
run/
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
|
||||
# Maven target folder
|
||||
/target/
|
||||
|
||||
# Gradle build folder
|
||||
/build/
|
||||
|
||||
# Eclipse
|
||||
.classpath
|
||||
.project
|
||||
.settings/
|
||||
bin/
|
||||
|
||||
# IntelliJ IDEA
|
||||
### IntelliJ IDEA ###
|
||||
.idea/
|
||||
*.iml
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
out/
|
||||
!**/src/main/**/out/
|
||||
!**/src/test/**/out/
|
||||
|
||||
# VS Code
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
!**/src/main/**/bin/
|
||||
!**/src/test/**/bin/
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
# NetBeans
|
||||
nbproject/private/
|
||||
build/
|
||||
nbbuild/
|
||||
dist/
|
||||
nbdist/
|
||||
.nb-gradle/
|
||||
|
||||
# Mac
|
||||
### Mac OS ###
|
||||
.DS_Store
|
||||
|
||||
# Linux
|
||||
*~
|
||||
|
||||
78
build.gradle
Normal file
78
build.gradle
Normal file
@@ -0,0 +1,78 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.jetbrains.gradle.plugin.idea-ext' version '1.3'
|
||||
}
|
||||
|
||||
ext {
|
||||
def os = System.getProperty("os.name").toLowerCase()
|
||||
def userHome = System.getProperty("user.home")
|
||||
if (os.contains("win")) {
|
||||
hytaleHome = "${userHome}/AppData/Roaming/Hytale"
|
||||
} else if (os.contains("mac")) {
|
||||
hytaleHome = "${userHome}/Library/Application Support/Hytale"
|
||||
} else {
|
||||
def localHytaleHome = "${userHome}/.local/share/Hytale"
|
||||
def flatpakHytaleHome = "${userHome}/.var/app/com.hypixel.HytaleLauncher/data/Hytale"
|
||||
hytaleHome = file(localHytaleHome).exists() ? localHytaleHome : flatpakHytaleHome
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain.languageVersion = JavaLanguageVersion.of(java_version)
|
||||
}
|
||||
|
||||
// Quiet warnings about missing Javadocs.
|
||||
javadoc {
|
||||
options.addStringOption('Xdoclint:-missing', '-quiet')
|
||||
}
|
||||
|
||||
// Adds the Hytale server as a build dependency, allowing you to reference and
|
||||
// compile against their code. This requires you to have Hytale installed using
|
||||
// the official launcher for now.
|
||||
dependencies {
|
||||
implementation(files("$hytaleHome/install/$patchline/package/game/latest/Server/HytaleServer.jar"))
|
||||
}
|
||||
|
||||
// Create the working directory to run the server if it does not already exist.
|
||||
def serverRunDir = file("$projectDir/run")
|
||||
if (!serverRunDir.exists()) {
|
||||
serverRunDir.mkdirs()
|
||||
}
|
||||
|
||||
// Updates the manifest.json file with the latest properties defined in the
|
||||
// build.properties file. Currently we update the version and if packs are
|
||||
// included with the plugin.
|
||||
tasks.register('updatePluginManifest') {
|
||||
def manifestFile = file('src/main/resources/manifest.json')
|
||||
doLast {
|
||||
if (!manifestFile.exists()) {
|
||||
throw new GradleException("Could not find manifest.json at ${manifestFile.path}!")
|
||||
}
|
||||
def manifestJson = new groovy.json.JsonSlurper().parseText(manifestFile.text)
|
||||
manifestJson.Version = version
|
||||
manifestJson.IncludesAssetPack = includes_pack.toBoolean()
|
||||
manifestFile.text = groovy.json.JsonOutput.prettyPrint(groovy.json.JsonOutput.toJson(manifestJson))
|
||||
}
|
||||
}
|
||||
|
||||
// Makes sure the plugin manifest is up to date.
|
||||
tasks.named('processResources') {
|
||||
dependsOn 'updatePluginManifest'
|
||||
}
|
||||
|
||||
// Creates a run configuration in IDEA that will run the Hytale server with
|
||||
// your plugin and the default assets.
|
||||
idea.project.settings.runConfigurations {
|
||||
'HytaleServer'(org.jetbrains.gradle.ext.Application) {
|
||||
mainClass = 'com.hypixel.hytale.Main'
|
||||
moduleName = project.idea.module.name + '.main'
|
||||
programParameters = "--allow-op --disable-sentry --assets=$hytaleHome/install/$patchline/package/game/latest/Assets.zip"
|
||||
if (includes_pack.toBoolean()) {
|
||||
programParameters += " --mods=${sourceSets.main.java.srcDirs.first().parentFile.absolutePath}"
|
||||
}
|
||||
if (load_user_mods.toBoolean()) {
|
||||
programParameters += " --mods=$hytaleHome/UserData/Mods"
|
||||
}
|
||||
workingDirectory = serverRunDir.absolutePath
|
||||
}
|
||||
}
|
||||
26
gradle.properties
Normal file
26
gradle.properties
Normal file
@@ -0,0 +1,26 @@
|
||||
# The current version of your project. Please use semantic versioning!
|
||||
version=1.1.0
|
||||
|
||||
# The group ID used for maven publishing. Usually the same as your package name
|
||||
# but not the same as your plugin group!
|
||||
maven_group=xyz.quickbasic
|
||||
|
||||
# The version of Java used by your plugin. The game is built on Java 21 but
|
||||
# actually runs on Java 25.
|
||||
java_version=25
|
||||
|
||||
# Determines if your plugin should also be loaded as an asset pack. If your
|
||||
# pack contains assets, or you intend to use the in-game asset editor, you
|
||||
# want this to be true.
|
||||
includes_pack=true
|
||||
|
||||
# The release channel your plugin should be built and ran against. This is
|
||||
# usually release or pre-release. You can verify your settings in the
|
||||
# official launcher.
|
||||
patchline=release
|
||||
|
||||
# Determines if the development server should also load mods from the user's
|
||||
# standard mods folder. This lets you test mods by installing them where a
|
||||
# normal player would, instead of adding them as dependencies or adding them
|
||||
# to the development server manually.
|
||||
load_user_mods=false
|
||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
#Tue Nov 25 02:23:10 MST 2025
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
234
gradlew
vendored
Executable file
234
gradlew
vendored
Executable file
@@ -0,0 +1,234 @@
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Copyright © 2015-2021 the original authors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
##############################################################################
|
||||
#
|
||||
# Gradle start up script for POSIX generated by Gradle.
|
||||
#
|
||||
# Important for running:
|
||||
#
|
||||
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
||||
# noncompliant, but you have some other compliant shell such as ksh or
|
||||
# bash, then to run this script, type that shell name before the whole
|
||||
# command line, like:
|
||||
#
|
||||
# ksh Gradle
|
||||
#
|
||||
# Busybox and similar reduced shells will NOT work, because this script
|
||||
# requires all of these POSIX shell features:
|
||||
# * functions;
|
||||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||
# * compound commands having a testable exit status, especially «case»;
|
||||
# * various built-in commands including «command», «set», and «ulimit».
|
||||
#
|
||||
# Important for patching:
|
||||
#
|
||||
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
||||
# by Bash, Ksh, etc; in particular arrays are avoided.
|
||||
#
|
||||
# The "traditional" practice of packing multiple parameters into a
|
||||
# space-separated string is a well documented source of bugs and security
|
||||
# problems, so this is (mostly) avoided, by progressively accumulating
|
||||
# options in "$@", and eventually passing that to Java.
|
||||
#
|
||||
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
||||
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
||||
# see the in-line comments for details.
|
||||
#
|
||||
# There are tweaks for specific operating systems such as AIX, CygWin,
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
|
||||
# Resolve links: $0 may be a link
|
||||
app_path=$0
|
||||
|
||||
# Need this for daisy-chained symlinks.
|
||||
while
|
||||
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||
[ -h "$app_path" ]
|
||||
do
|
||||
ls=$( ls -ld "$app_path" )
|
||||
link=${ls#*' -> '}
|
||||
case $link in #(
|
||||
/*) app_path=$link ;; #(
|
||||
*) app_path=$APP_HOME$link ;;
|
||||
esac
|
||||
done
|
||||
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=${0##*/}
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
|
||||
warn () {
|
||||
echo "$*"
|
||||
} >&2
|
||||
|
||||
die () {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
} >&2
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
nonstop=false
|
||||
case "$( uname )" in #(
|
||||
CYGWIN* ) cygwin=true ;; #(
|
||||
Darwin* ) darwin=true ;; #(
|
||||
MSYS* | MINGW* ) msys=true ;; #(
|
||||
NONSTOP* ) nonstop=true ;;
|
||||
esac
|
||||
|
||||
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" && ! "$darwin" && ! "$nonstop" ; then
|
||||
case $MAX_FD in #(
|
||||
max*)
|
||||
MAX_FD=$( ulimit -H -n ) ||
|
||||
warn "Could not query maximum file descriptor limit"
|
||||
esac
|
||||
case $MAX_FD in #(
|
||||
'' | soft) :;; #(
|
||||
*)
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
esac
|
||||
fi
|
||||
|
||||
# Collect all arguments for the java command, stacking in reverse order:
|
||||
# * args from the command line
|
||||
# * the main class name
|
||||
# * -classpath
|
||||
# * -D...appname settings
|
||||
# * --module-path (only if needed)
|
||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
||||
|
||||
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||
if "$cygwin" || "$msys" ; then
|
||||
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
||||
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
||||
|
||||
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
||||
|
||||
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||
for arg do
|
||||
if
|
||||
case $arg in #(
|
||||
-*) false ;; # don't mess with options #(
|
||||
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
|
||||
[ -e "$t" ] ;; #(
|
||||
*) false ;;
|
||||
esac
|
||||
then
|
||||
arg=$( cygpath --path --ignore --mixed "$arg" )
|
||||
fi
|
||||
# Roll the args list around exactly as many times as the number of
|
||||
# args, so each arg winds up back in the position where it started, but
|
||||
# possibly modified.
|
||||
#
|
||||
# NB: a `for` loop captures its iteration list before it begins, so
|
||||
# changing the positional parameters here affects neither the number of
|
||||
# iterations, nor the values presented in `arg`.
|
||||
shift # remove old arg
|
||||
set -- "$@" "$arg" # push replacement arg
|
||||
done
|
||||
fi
|
||||
|
||||
# Collect all arguments for the java command;
|
||||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||
# shell script including quotes and variable substitutions, so put them in
|
||||
# double quotes to make sure that they get re-expanded; and
|
||||
# * put everything else in single quotes, so that it's not re-expanded.
|
||||
|
||||
set -- \
|
||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||
-classpath "$CLASSPATH" \
|
||||
org.gradle.wrapper.GradleWrapperMain \
|
||||
"$@"
|
||||
|
||||
# Use "xargs" to parse quoted args.
|
||||
#
|
||||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||
#
|
||||
# In Bash we could simply go:
|
||||
#
|
||||
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
|
||||
# set -- "${ARGS[@]}" "$@"
|
||||
#
|
||||
# but POSIX shell has neither arrays nor command substitution, so instead we
|
||||
# post-process each arg (as a line of input to sed) to backslash-escape any
|
||||
# character that might be a shell metacharacter, then use eval to reverse
|
||||
# that process (while maintaining the separation between arguments), and wrap
|
||||
# the whole thing up as a single "set" statement.
|
||||
#
|
||||
# This will of course break if any of these variables contains a newline or
|
||||
# an unmatched quote.
|
||||
#
|
||||
|
||||
eval "set -- $(
|
||||
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
|
||||
xargs -n1 |
|
||||
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
|
||||
tr '\n' ' '
|
||||
)" '"$@"'
|
||||
|
||||
exec "$JAVACMD" "$@"
|
||||
89
gradlew.bat
vendored
Normal file
89
gradlew.bat
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
@rem
|
||||
@rem Copyright 2015 the original author or authors.
|
||||
@rem
|
||||
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@rem you may not use this file except in compliance with the License.
|
||||
@rem You may obtain a copy of the License at
|
||||
@rem
|
||||
@rem https://www.apache.org/licenses/LICENSE-2.0
|
||||
@rem
|
||||
@rem Unless required by applicable law or agreed to in writing, software
|
||||
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
||||
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@rem See the License for the specific language governing permissions and
|
||||
@rem limitations under the License.
|
||||
@rem
|
||||
|
||||
@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
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%" == "" set DIRNAME=.
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
||||
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
||||
|
||||
@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="-Xmx64m" "-Xms64m"
|
||||
|
||||
@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 execute
|
||||
|
||||
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 execute
|
||||
|
||||
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
|
||||
|
||||
: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 %*
|
||||
|
||||
: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
|
||||
1
settings.gradle
Normal file
1
settings.gradle
Normal file
@@ -0,0 +1 @@
|
||||
rootProject.name = 'TieredRepairKits'
|
||||
@@ -0,0 +1,43 @@
|
||||
package xyz.quickbasic.tieredrepairkits;
|
||||
|
||||
import xyz.quickbasic.tieredrepairkits.config.RepairTier;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
// Manages repair-kit data for the plugin
|
||||
public class RepairKitManager {
|
||||
|
||||
private final TieredRepairKits plugin;
|
||||
private Map<String, RepairTier> tiers;
|
||||
|
||||
public RepairKitManager(TieredRepairKits plugin) {
|
||||
this.plugin = plugin;
|
||||
loadConfig();
|
||||
}
|
||||
|
||||
public void loadConfig() {
|
||||
TRKConfig config = plugin.getConfig().get();
|
||||
tiers = config.getTiers();
|
||||
|
||||
// Log loaded tiers
|
||||
for (var entry : tiers.entrySet()) {
|
||||
String tierName = entry.getKey();
|
||||
RepairTier tier = entry.getValue();
|
||||
|
||||
TieredRepairKits.LOGGER.atInfo().log(
|
||||
"Tier " + tierName
|
||||
+ ": enabled=" + tier.isEnabled()
|
||||
+ " penalty=" + tier.getRepairPenalty()
|
||||
+ " ingredients=" + tier.getRecipe().length
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
public Map<String, RepairTier> getTiers() {
|
||||
return tiers;
|
||||
}
|
||||
|
||||
public RepairTier getTier(String name) {
|
||||
return tiers.get(name);
|
||||
}
|
||||
}
|
||||
217
src/main/java/xyz/quickbasic/tieredrepairkits/TRKConfig.java
Normal file
217
src/main/java/xyz/quickbasic/tieredrepairkits/TRKConfig.java
Normal file
@@ -0,0 +1,217 @@
|
||||
package xyz.quickbasic.tieredrepairkits;
|
||||
|
||||
import com.hypixel.hytale.codec.KeyedCodec;
|
||||
import com.hypixel.hytale.codec.builder.BuilderCodec;
|
||||
import xyz.quickbasic.tieredrepairkits.config.RepairTier;
|
||||
import xyz.quickbasic.tieredrepairkits.config.RecipeIngredient;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Arrays;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
// Main config class for TieredRepairKits
|
||||
public class TRKConfig {
|
||||
|
||||
public static final BuilderCodec<TRKConfig> CODEC = BuilderCodec.builder(TRKConfig.class, TRKConfig::new)
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierCopper", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierCopper = val,
|
||||
cfg -> cfg.tierCopper).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierIron", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierIron = val,
|
||||
cfg -> cfg.tierIron).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierSilver", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierSilver = val,
|
||||
cfg -> cfg.tierSilver).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierGold", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierGold = val,
|
||||
cfg -> cfg.tierGold).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierThorium", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierThorium = val,
|
||||
cfg -> cfg.tierThorium).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierCobalt", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierCobalt = val,
|
||||
cfg -> cfg.tierCobalt).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierAdamantite", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierAdamantite = val,
|
||||
cfg -> cfg.tierAdamantite).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierMithril", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierMithril = val,
|
||||
cfg -> cfg.tierMithril).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierOnyxium", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierOnyxium = val,
|
||||
cfg -> cfg.tierOnyxium).add()
|
||||
|
||||
.append(new KeyedCodec<RepairTier>("TierPrisma", RepairTier.CODEC),
|
||||
(cfg, val) -> cfg.tierPrisma = val,
|
||||
cfg -> cfg.tierPrisma).add()
|
||||
|
||||
.build();
|
||||
|
||||
// --- Tier fields ---
|
||||
private RepairTier tierCopper = new RepairTier();
|
||||
private RepairTier tierIron = new RepairTier();
|
||||
private RepairTier tierSilver = new RepairTier();
|
||||
private RepairTier tierGold = new RepairTier();
|
||||
private RepairTier tierThorium = new RepairTier();
|
||||
private RepairTier tierCobalt = new RepairTier();
|
||||
private RepairTier tierAdamantite = new RepairTier();
|
||||
private RepairTier tierMithril = new RepairTier();
|
||||
private RepairTier tierOnyxium = new RepairTier();
|
||||
private RepairTier tierPrisma = new RepairTier();
|
||||
|
||||
// Cached map for runtime convenience
|
||||
private Map<String, RepairTier> cachedMap;
|
||||
|
||||
public TRKConfig() {
|
||||
// Initialize all tiers with helper method
|
||||
tierCopper.setEnabled(true);
|
||||
tierCopper.setRepairPenalty(0.05);
|
||||
tierCopper.setRecipe(recipe(
|
||||
ing("Ingredient_Fibre", 2),
|
||||
ing("Ingredient_Bar_Copper", 4),
|
||||
ing("Ingredient_Stick", 2)
|
||||
));
|
||||
|
||||
tierIron.setEnabled(true);
|
||||
tierIron.setRepairPenalty(0);
|
||||
tierIron.setRecipe(recipe(
|
||||
ing("Ingredient_Fabric_Scrap_Linen", 2),
|
||||
ing("Ingredient_Bar_Iron", 8),
|
||||
ing("Ingredient_Leather_Light", 2)
|
||||
));
|
||||
|
||||
tierSilver.setEnabled(true);
|
||||
tierSilver.setRepairPenalty(-0.01);
|
||||
tierSilver.setRecipe(recipe(
|
||||
ing("Ingredient_Bolt_Wool", 4),
|
||||
ing("Ingredient_Bar_Silver", 16),
|
||||
ing("Ingredient_Fire_Essence", 4)
|
||||
));
|
||||
|
||||
tierGold.setEnabled(true);
|
||||
tierGold.setRepairPenalty(-0.01);
|
||||
tierGold.setRecipe(recipe(
|
||||
ing("Ingredient_Bolt_Wool", 4),
|
||||
ing("Ingredient_Bar_Gold", 16),
|
||||
ing("Ingredient_Fire_Essence", 4)
|
||||
));
|
||||
|
||||
tierThorium.setEnabled(true);
|
||||
tierThorium.setRepairPenalty(-0.025);
|
||||
tierThorium.setRecipe(recipe(
|
||||
ing("Ingredient_Chitin_Sturdy", 2),
|
||||
ing("Ingredient_Bar_Thorium", 16),
|
||||
ing("Ingredient_Sac_Venom", 2)
|
||||
));
|
||||
|
||||
tierCobalt.setEnabled(true);
|
||||
tierCobalt.setRepairPenalty(-0.05);
|
||||
tierCobalt.setRecipe(recipe(
|
||||
ing("Ingredient_Fabric_Scrap_Shadoweave", 4),
|
||||
ing("Ingredient_Bar_Cobalt", 16),
|
||||
ing("Ingredient_Ice_Essence", 4)
|
||||
));
|
||||
|
||||
tierAdamantite.setEnabled(true);
|
||||
tierAdamantite.setRepairPenalty(-0.075);
|
||||
tierAdamantite.setRecipe(recipe(
|
||||
ing("Ingredient_Crystal_Red", 4),
|
||||
ing("Ingredient_Bar_Adamantite", 16),
|
||||
ing("Ingredient_Fire_Essence", 4)
|
||||
));
|
||||
|
||||
tierMithril.setEnabled(true);
|
||||
tierMithril.setRepairPenalty(-0.1);
|
||||
tierMithril.setRecipe(recipe(
|
||||
ing("Ingredient_Voidheart", 4),
|
||||
ing("Ingredient_Bar_Mithril", 16),
|
||||
ing("Ingredient_Leather_Storm", 4)
|
||||
));
|
||||
|
||||
tierOnyxium.setEnabled(true);
|
||||
tierOnyxium.setRepairPenalty(-0.125);
|
||||
tierOnyxium.setRecipe(recipe(
|
||||
ing("Rock_Gem_Voidstone", 1),
|
||||
ing("Ingredient_Bar_Onyxium", 16),
|
||||
ing("Ingredient_Leather_Storm", 4)
|
||||
));
|
||||
|
||||
tierPrisma.setEnabled(true);
|
||||
tierPrisma.setRepairPenalty(-0.15);
|
||||
tierPrisma.setRecipe(recipe(
|
||||
ing("Rock_Gem_Diamond", 1),
|
||||
ing("Ingredient_Bar_Prisma", 16),
|
||||
ing("Ingredient_Leather_Storm", 4)
|
||||
));
|
||||
}
|
||||
|
||||
public Map<String, RepairTier> getTiers() {
|
||||
if (cachedMap == null) {
|
||||
cachedMap = new LinkedHashMap<>();
|
||||
cachedMap.put("TierCopper", tierCopper);
|
||||
cachedMap.put("TierIron", tierIron);
|
||||
cachedMap.put("TierSilver", tierSilver);
|
||||
cachedMap.put("TierGold", tierGold);
|
||||
cachedMap.put("TierThorium", tierThorium);
|
||||
cachedMap.put("TierCobalt", tierCobalt);
|
||||
cachedMap.put("TierAdamantite", tierAdamantite);
|
||||
cachedMap.put("TierMithril", tierMithril);
|
||||
cachedMap.put("TierOnyxium", tierOnyxium);
|
||||
cachedMap.put("TierPrisma", tierPrisma);
|
||||
}
|
||||
return cachedMap;
|
||||
}
|
||||
|
||||
// Individual tier getters
|
||||
public RepairTier getTierCopper() { return tierCopper; }
|
||||
public RepairTier getTierIron() { return tierIron; }
|
||||
public RepairTier getTierSilver() { return tierSilver; }
|
||||
public RepairTier getTierGold() { return tierGold; }
|
||||
public RepairTier getTierThorium() { return tierThorium; }
|
||||
public RepairTier getTierCobalt() { return tierCobalt; }
|
||||
public RepairTier getTierAdamantite() { return tierAdamantite; }
|
||||
public RepairTier getTierMithril() { return tierMithril; }
|
||||
public RepairTier getTierOnyxium() { return tierOnyxium; }
|
||||
public RepairTier getTierPrisma() { return tierPrisma; }
|
||||
|
||||
// Individual tier setters (also clears cached map)
|
||||
public void setTierCopper(RepairTier tier) { this.tierCopper = tier; cachedMap = null; }
|
||||
public void setTierIron(RepairTier tier) { this.tierIron = tier; cachedMap = null; }
|
||||
public void setTierSilver(RepairTier tier) { this.tierSilver = tier; cachedMap = null; }
|
||||
public void setTierGold(RepairTier tier) { this.tierGold = tier; cachedMap = null; }
|
||||
public void setTierThorium(RepairTier tier) { this.tierThorium = tier; cachedMap = null; }
|
||||
public void setTierCobalt(RepairTier tier) { this.tierCobalt = tier; cachedMap = null; }
|
||||
public void setTierAdamantite(RepairTier tier) { this.tierAdamantite = tier; cachedMap = null; }
|
||||
public void setTierMithril(RepairTier tier) { this.tierMithril = tier; cachedMap = null; }
|
||||
public void setTierOnyxium(RepairTier tier) { this.tierOnyxium = tier; cachedMap = null; }
|
||||
public void setTierPrisma(RepairTier tier) { this.tierPrisma = tier; cachedMap = null; }
|
||||
|
||||
// --- Helper methods ---
|
||||
private static RecipeIngredient ing(String id, int qty) {
|
||||
RecipeIngredient r = new RecipeIngredient();
|
||||
r.setItemId(id);
|
||||
r.setQuantity(qty);
|
||||
return r;
|
||||
}
|
||||
|
||||
@SafeVarargs
|
||||
private static <T> List<T> list(T... items) {
|
||||
return new ArrayList<>(Arrays.asList(items));
|
||||
}
|
||||
|
||||
@SafeVarargs
|
||||
private static RecipeIngredient[] recipe(RecipeIngredient... ingredients) {
|
||||
return ingredients; // Returns RecipeIngredient[] directly
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
package xyz.quickbasic.tieredrepairkits;
|
||||
|
||||
import com.hypixel.hytale.logger.HytaleLogger;
|
||||
import com.hypixel.hytale.server.core.plugin.JavaPlugin;
|
||||
import com.hypixel.hytale.server.core.plugin.JavaPluginInit;
|
||||
import com.hypixel.hytale.server.core.util.Config;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
|
||||
|
||||
// Main plugin class. All Hytale Java plugins extend JavaPlugin.
|
||||
public class TieredRepairKits extends JavaPlugin {
|
||||
|
||||
// Logger instance for writing messages to the server console/logs
|
||||
public static final HytaleLogger LOGGER = HytaleLogger.forEnclosingClass();
|
||||
|
||||
// Manager class that will contain the logic related to repair kits
|
||||
private RepairKitManager repairKitManager;
|
||||
|
||||
// Config wrapper provided by the Hytale server API.
|
||||
// This links the config file name ("TieredRepairKits") with the codec defined in TRKConfig.
|
||||
private final Config<TRKConfig> config = this.withConfig("TieredRepairKits", TRKConfig.CODEC);
|
||||
|
||||
// Public getter so other classes (like managers) can access the plugin config
|
||||
public Config<TRKConfig> getConfig() {
|
||||
return config;
|
||||
}
|
||||
|
||||
// Constructor called by the Hytale server when the plugin is created
|
||||
public TieredRepairKits(@Nonnull JavaPluginInit init) {
|
||||
super(init);
|
||||
}
|
||||
|
||||
// Called by the server when the plugin is being set up
|
||||
@Override
|
||||
protected void setup() {
|
||||
|
||||
// Create the RepairKitManager and pass the plugin instance to it
|
||||
// This allows the manager to access config, logger, etc.
|
||||
repairKitManager = new RepairKitManager(this);
|
||||
|
||||
// Save the config file if it does not exist yet
|
||||
// This ensures defaults from TRKConfig are written to disk
|
||||
config.save();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
package xyz.quickbasic.tieredrepairkits.config;
|
||||
|
||||
import com.hypixel.hytale.codec.Codec;
|
||||
import com.hypixel.hytale.codec.KeyedCodec;
|
||||
import com.hypixel.hytale.codec.builder.BuilderCodec;
|
||||
|
||||
public class RecipeIngredient {
|
||||
|
||||
public static final BuilderCodec<RecipeIngredient> CODEC =
|
||||
BuilderCodec.builder(RecipeIngredient.class, RecipeIngredient::new)
|
||||
.append(new KeyedCodec<>("ItemId", Codec.STRING),
|
||||
(obj, value) -> obj.itemId = value,
|
||||
obj -> obj.itemId).add()
|
||||
.append(new KeyedCodec<>("Quantity", Codec.INTEGER),
|
||||
(obj, value) -> obj.quantity = value,
|
||||
obj -> obj.quantity).add()
|
||||
.build();
|
||||
|
||||
private String itemId = "Ingredient_Fibre";
|
||||
private int quantity = 1;
|
||||
|
||||
public RecipeIngredient() {}
|
||||
|
||||
public RecipeIngredient(String itemId, int quantity) {
|
||||
this.itemId = itemId;
|
||||
this.quantity = quantity;
|
||||
}
|
||||
|
||||
public String getItemId() {
|
||||
return itemId;
|
||||
}
|
||||
|
||||
public int getQuantity() {
|
||||
return quantity;
|
||||
}
|
||||
|
||||
public void setItemId(String itemId) {
|
||||
this.itemId = itemId;
|
||||
}
|
||||
|
||||
public void setQuantity(int quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
package xyz.quickbasic.tieredrepairkits.config;
|
||||
|
||||
import com.hypixel.hytale.codec.builder.BuilderCodec;
|
||||
import com.hypixel.hytale.codec.KeyedCodec;
|
||||
import com.hypixel.hytale.codec.Codec;
|
||||
import com.hypixel.hytale.codec.codecs.array.ArrayCodec;
|
||||
|
||||
public class RepairTier {
|
||||
|
||||
private static final Codec<RecipeIngredient[]> INGREDIENT_ARRAY_CODEC =
|
||||
new ArrayCodec<>(RecipeIngredient.CODEC, RecipeIngredient[]::new);
|
||||
|
||||
public static final BuilderCodec<RepairTier> CODEC =
|
||||
BuilderCodec.builder(RepairTier.class, RepairTier::new)
|
||||
.append(new KeyedCodec<>("Enabled", Codec.BOOLEAN),
|
||||
(obj, value) -> obj.enabled = value,
|
||||
obj -> obj.enabled).add()
|
||||
.append(new KeyedCodec<>("RepairPenalty", Codec.DOUBLE),
|
||||
(obj, value) -> obj.repairPenalty = value,
|
||||
obj -> obj.repairPenalty).add()
|
||||
.append(new KeyedCodec<>("Recipe", INGREDIENT_ARRAY_CODEC),
|
||||
(obj, value) -> obj.recipe = value,
|
||||
obj -> obj.recipe).add()
|
||||
.build();
|
||||
|
||||
private boolean enabled = true;
|
||||
private double repairPenalty = 0.0;
|
||||
private RecipeIngredient[] recipe = new RecipeIngredient[0];
|
||||
|
||||
public RepairTier() {}
|
||||
|
||||
public boolean isEnabled() { return enabled; }
|
||||
public double getRepairPenalty() { return repairPenalty; }
|
||||
public RecipeIngredient[] getRecipe() { return recipe; }
|
||||
|
||||
public void setEnabled(boolean enabled) { this.enabled = enabled; }
|
||||
public void setRepairPenalty(double repairPenalty) { this.repairPenalty = repairPenalty; }
|
||||
public void setRecipe(RecipeIngredient[] recipe) { this.recipe = recipe; }
|
||||
|
||||
public void validate(String tierName) {
|
||||
if (repairPenalty < -1.0 || repairPenalty > 1.0) {
|
||||
repairPenalty = 0;
|
||||
}
|
||||
validateRecipe(recipe);
|
||||
}
|
||||
|
||||
private void validateRecipe(RecipeIngredient[] ingredients) {
|
||||
if (ingredients == null) return;
|
||||
int maxIngredients = 5;
|
||||
if (ingredients.length > maxIngredients) {
|
||||
RecipeIngredient[] truncated = new RecipeIngredient[maxIngredients];
|
||||
System.arraycopy(ingredients, 0, truncated, 0, maxIngredients);
|
||||
recipe = truncated;
|
||||
}
|
||||
for (RecipeIngredient ing : ingredients) {
|
||||
if (ing.getItemId() == null || ing.getItemId().isBlank()) {
|
||||
ing.setItemId("Unknown");
|
||||
}
|
||||
if (ing.getQuantity() <= 0) {
|
||||
ing.setQuantity(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"Group": "QuickBASIC",
|
||||
"Name": "QuickBASIC.TieredRepairKits",
|
||||
"Version": "1.0.1",
|
||||
"Group": "xyz.quickbasic",
|
||||
"Name": "TieredRepairKits",
|
||||
"Version": "1.1.0",
|
||||
"Main": "xyz.quickbasic.tieredrepairkits.TieredRepairKits",
|
||||
"ServerVersion": "2026.03.26-89796e57b",
|
||||
"Description": "Balanced tiered Repair Kits that can increase the maximum durability of items",
|
||||
"Authors": [
|
||||
@@ -12,10 +13,18 @@
|
||||
}
|
||||
],
|
||||
"Website": "https://git.quickbasic.xyz/hytale-modding/TieredRepairKits",
|
||||
"Dependencies": {},
|
||||
"OptionalDependencies": {},
|
||||
"LoadBefore": {},
|
||||
"Dependencies": {
|
||||
|
||||
},
|
||||
"OptionalDependencies": {
|
||||
|
||||
},
|
||||
"LoadBefore": {
|
||||
|
||||
},
|
||||
"DisabledByDefault": false,
|
||||
"IncludesAssetPack": false,
|
||||
"SubPlugins": []
|
||||
"IncludesAssetPack": true,
|
||||
"SubPlugins": [
|
||||
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user