diff --git a/.gitignore b/.gitignore index 9563893..ad3d73b 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,10 @@ classes/ *.ipr *.iws +# eclipse + +*.launch + # vscode .settings/ @@ -22,4 +26,8 @@ bin/ # fabric -run/ \ No newline at end of file +run/ + +# old files + +*.old diff --git a/build.gradle b/build.gradle index 68661f8..ccd2cc9 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.12-SNAPSHOT' + id 'fabric-loom' version '1.0-SNAPSHOT' id 'maven-publish' } @@ -16,6 +16,11 @@ repositories { // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. // See https://docs.gradle.org/current/userguide/declaring_repositories.html // for more information about repositories. + + // Cloth Config + maven { url "https://maven.shedaniel.me/" } + // Mod Menu + maven { url "https://maven.terraformersmc.com/releases/" } } dependencies { @@ -26,13 +31,19 @@ dependencies { // Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + + // Cloth Config API. Needed for Mod Menu compatibility + modApi ("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") { + exclude(group: "net.fabricmc.fabric-api") + } + modApi ("com.terraformersmc:modmenu:${project.modmenu_version}") { + exclude(group: "net.fabricmc.fabric-api") + } } processResources { - inputs.property "version", project.version - filesMatching("fabric.mod.json") { - expand "version": project.version + expand (project: project) } } @@ -45,7 +56,7 @@ java { // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task // if it is present. // If you remove this line, sources will not be generated. - withSourcesJar() + // withSourcesJar() } jar { diff --git a/gradle.properties b/gradle.properties index 7440bf3..6925a84 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,15 +1,18 @@ # Done to increase the memory available to gradle. org.gradle.jvmargs=-Xmx4G -# Fabric Properties from the Fabric insaller +# Fabric Properties from the Fabric installer minecraft_version=1.19.2 -yarn_mappings=1.19.2+build.1 +yarn_mappings=1.19.2+build.9 loader_version=0.14.9 # Mod Properties -mod_version = 0.0.17 +mod_version = 0.2.0+1.19.2 maven_group = com.logicalgeekboy.logical_zoom archives_base_name = logical_zoom # Fabric API version -fabric_version=0.58.6+1.19.2 +fabric_version=0.60.0+1.19.2 + +cloth_config_version=8.2.88 +modmenu_version=4.0.6 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 5c2d1cf..249e583 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 41dfb87..ae04661 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew old mode 100644 new mode 100755 index 8e25e6c..a69d9cb --- a/gradlew +++ b/gradlew @@ -1,7 +1,7 @@ -#!/usr/bin/env sh +#!/bin/sh # -# Copyright 2015 the original author or authors. +# 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. @@ -17,78 +17,113 @@ # ############################################################################## -## -## Gradle start up script for UN*X -## +# +# 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 -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 +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 -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` +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" +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 - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; +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" + JAVACMD=$JAVA_HOME/jre/sh/java else - JAVACMD="$JAVA_HOME/bin/java" + JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME @@ -97,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi else - JAVACMD="java" + 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 @@ -105,84 +140,101 @@ location of your Java installation." fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "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 +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 -# 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 +# 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" ) -# 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"` - JAVACMD=`cygpath --unix "$JAVACMD"` - - # 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\"" + 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 - i=$((i+1)) + # 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 - 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 -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=$(save "$@") +# 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 \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" +# 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. +# -# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong -if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then - cd "$(dirname "$0")" -fi +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat index 9618d8d..53a6b23 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -1,100 +1,91 @@ -@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 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 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 Windows variants - -if not "%OS%" == "Windows_NT" goto win9xME_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=%* - -: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 +@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% equ 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% equ 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! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle index 5b60df3..27e3d10 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,6 +1,6 @@ pluginManagement { repositories { - jcenter() + mavenCentral() maven { name = 'Fabric' url = 'https://maven.fabricmc.net/' diff --git a/src/main/java/com/logicalgeekboy/logical_zoom/LogicalZoom.java b/src/main/java/com/logicalgeekboy/logical_zoom/LogicalZoom.java index bc00cf4..b6d0598 100644 --- a/src/main/java/com/logicalgeekboy/logical_zoom/LogicalZoom.java +++ b/src/main/java/com/logicalgeekboy/logical_zoom/LogicalZoom.java @@ -1,82 +1,288 @@ package com.logicalgeekboy.logical_zoom; +import com.logicalgeekboy.logical_zoom.config.ConfigHandler; +import com.logicalgeekboy.logical_zoom.config.ConfigUtil; + import net.fabricmc.api.ClientModInitializer; import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper; -import net.minecraft.client.util.InputUtil; import net.minecraft.client.MinecraftClient; import net.minecraft.client.option.KeyBinding; +import net.minecraft.client.util.InputUtil; -import org.lwjgl.glfw.GLFW; - +/** + * This class puts the "Logic" in "Logical Zoom" (i.e. it contains most part of + * the mod logic). It controls the zoom activation and animation, smooth camera + * management, and also registers the key bind such that it is configurable via + * Minecraft's native option menu. + * + * @author LogicalGeekBoy, marcelbpunkt + * + */ public class LogicalZoom implements ClientModInitializer { - private static boolean currentlyZoomed; - private static KeyBinding keyBinding; - private static boolean originalSmoothCameraEnabled; - private static final MinecraftClient mc = MinecraftClient.getInstance(); - - public static final double zoomLevel = 0.23; - - @Override - public void onInitializeClient() { - keyBinding = new KeyBinding("key.logical_zoom.zoom", InputUtil.Type.KEYSYM, GLFW.GLFW_KEY_C, "category.logical_zoom.zoom"); - - currentlyZoomed = false; - originalSmoothCameraEnabled = false; - - KeyBindingHelper.registerKeyBinding(keyBinding); - } - - public static boolean isZooming() { - return keyBinding.isPressed(); - } - - public static void manageSmoothCamera() { - if (zoomStarting()) { - zoomStarted(); - enableSmoothCamera(); - } - - if (zoomStopping()) { - zoomStopped(); - resetSmoothCamera(); - } - } - - private static boolean isSmoothCamera() { - return mc.options.smoothCameraEnabled; - } - - private static void enableSmoothCamera() { - mc.options.smoothCameraEnabled = true; - } - - private static void disableSmoothCamera() { - mc.options.smoothCameraEnabled = false; - } - - private static boolean zoomStarting() { - return isZooming() && !currentlyZoomed; - } - - private static boolean zoomStopping() { - return !isZooming() && currentlyZoomed; - } - - private static void zoomStarted() { - originalSmoothCameraEnabled = isSmoothCamera(); - currentlyZoomed = true; - } - - private static void zoomStopped() { - currentlyZoomed = false; - } - - private static void resetSmoothCamera() { - if (originalSmoothCameraEnabled) { - enableSmoothCamera(); - } else { - disableSmoothCamera(); - } - } + private static long lastZoomKeyActionTimestamp; + private static KeyBinding zoomKeyBinding; + private static boolean originalSmoothCameraEnabled; + private static ZoomState currentState; + + private static final MinecraftClient MC = MinecraftClient.getInstance(); + private static final ConfigHandler HANDLER = ConfigHandler.getInstance(); + + @Override + public void onInitializeClient() { + /* + * The order of "key"/"category", the namespace and "zoom" is slightly different + * than in ConfigUtil in order to be consistent with the rest of the keybinds. + * It's also not included in the config classes because the zoom key is only + * configurable via Options -> Controls -> Key Binds. + */ + zoomKeyBinding = new KeyBinding("key." + ConfigUtil.NAMESPACE + ".zoom", InputUtil.Type.KEYSYM, + InputUtil.GLFW_KEY_C, "category." + ConfigUtil.NAMESPACE + ".zoom"); + + lastZoomKeyActionTimestamp = 0L; + originalSmoothCameraEnabled = false; + currentState = ZoomState.NO_ZOOM; + + KeyBindingHelper.registerKeyBinding(zoomKeyBinding); + } + + /** + * Returns the current FOV multiplier, i.e. the inverse value of the current + * zoom factor. + * + * @return the inverse value of the current zoom factor; if smooth zoom is + * disabled, it returns either 1 or the inverse of the full zoom factor + * depending on whether the zoom key is currently pressed. If smooth + * zoom is enabled, it can also return values in between for when the + * camera is currently zooming in or out. + */ + public static double getCurrentFOVMultiplier() { + updateZoomStateAndSmoothCamera(); + double currentDurationMillis = getCurrentDuration(); + return currentState.getZoomFactorFunction().apply(1 / HANDLER.getZoomFactor(), + HANDLER.getSmoothZoomDurationMillis(), currentDurationMillis); + } + + private static boolean isZoomKeyPressed() { + return zoomKeyBinding.isPressed(); + } + + private static boolean hasMaxDurationPassed() { + return getCurrentRemainingDuration() <= 0.0; + } + + private static void updateZoomStateAndSmoothCamera() { + if (isZoomKeyPressed()) { + switch (currentState) { + case NO_ZOOM: + // zoom key is pressed while not currently zooming at all + // => begin zoom-in if smooth zoom is enabled + initZoomIn(0L); + break; + case ZOOM_OUT: + // zoom key is pressed while zooming out + // -> zoom back in from current camera position + // (i.e. not from "fully zoomed out" position) + initZoomIn(getCurrentRemainingDuration()); + break; + case ZOOM_IN: + // zoom key is still pressed while currently zooming in + // -> continue zooming in until full zoom is reached + if (hasMaxDurationPassed()) { + currentState = ZoomState.FULL_ZOOM; + } + break; + case FULL_ZOOM: + // do nothing, i.e. keep up full zoom and full zoom state + } + } else { + switch (currentState) { + case FULL_ZOOM: + // zoom key is released while fully zoomed in + // -> begin zoom-out if smooth zoom is enabled + initZoomOut(0L); + break; + case ZOOM_IN: + // zoom key is released while zooming in + // -> zoom back out from current camera position + // (i.e. not from "fully zoomed in" position) + initZoomOut(getCurrentRemainingDuration()); + break; + case ZOOM_OUT: + // zoom key is still released while currently zooming out + // -> continue zooming back out to no zoom + if (hasMaxDurationPassed()) { + currentState = ZoomState.NO_ZOOM; + } + break; + case NO_ZOOM: + // do nothing, i.e. keep up 1.0x zoom and no zoom state + } + } + } + + /** + * Changes the current state to {@link ZoomState#ZOOM_IN} or + * {@link ZoomState#FULL_ZOOM} depending on whether smooth zoom is enabled, + * determines the current camera position, remembers the player's smooth camera + * setting, and enables smooth camera while the zoom key is pressed. + * + * @param offset zero if the camera is currently fully zoomed out,
+ * a value between 0 and the smooth zoom duration otherwise + */ + private static void initZoomIn(long offset) { + markKeyEvent(offset); + originalSmoothCameraEnabled = isSmoothCameraEnabled(); + enableSmoothCamera(); + currentState = HANDLER.isSmoothZoomEnabled() ? ZoomState.ZOOM_IN : ZoomState.FULL_ZOOM; + } + + /** + * Changes the current state to {@link ZoomState#ZOOM_OUT} or + * {@link ZoomState#NO_ZOOM} depending on whether smooth zoom is enabled, + * determines the current camera position, and resets the smooth camera state to + * the player's original setting. + * + * @param offset zero if the camera is currently fully zoomed in,
+ * a value between 0 and the smooth zoom duration otherwise + */ + private static void initZoomOut(long offset) { + markKeyEvent(offset); + resetSmoothCamera(); + currentState = HANDLER.isSmoothZoomEnabled() ? ZoomState.ZOOM_OUT : ZoomState.NO_ZOOM; + } + + private static void markKeyEvent(long offset) { + lastZoomKeyActionTimestamp = System.currentTimeMillis() - offset; + } + + private static boolean isSmoothCameraEnabled() { + return MC.options.smoothCameraEnabled; + } + + private static void enableSmoothCamera() { + MC.options.smoothCameraEnabled = true; + } + + private static void resetSmoothCamera() { + MC.options.smoothCameraEnabled = originalSmoothCameraEnabled; + } + + private static long getCurrentDuration() { + return System.currentTimeMillis() - lastZoomKeyActionTimestamp; + } + + private static long getCurrentRemainingDuration() { + return HANDLER.getSmoothZoomDurationMillis() - getCurrentDuration(); + } + + /** + * Contains all zoom states and their respective {@link FOVMultiplier}. + * + * @author marcelbpunkt + * + */ + private static enum ZoomState { + + /** + * No zoom. The zoom factor function always returns 1. + */ + NO_ZOOM((zf, md, x) -> 1.0), + /** + * Zooming in. The zoom factor function returns a logarithmically increasing + * value between 1.0 and the full zoom factor. + */ + ZOOM_IN((zf, md, x) -> 1 - logAdjusted(zf, md, x)), + /** + * Full zoom. The zoom factor function always returns the full zoom factor. + */ + FULL_ZOOM((zf, md, x) -> zf), + /** + * Zooming out. The zoom factor function returns a logarithmically decreasing + * value between the full zoom factor and 1.0. + */ + ZOOM_OUT((zf, md, x) -> zf + logAdjusted(zf, md, x)); + + //////////////////////////////// + // Function domain definition // + //////////////////////////////// + + /* + * The function domain influences the slope of the zoom factor function, + * especially near x_min and x_max. The lower y_min is, the steeper the slope is + * near x_min, zooming in/out faster at the beginning of the animation. The + * higher y_max is, the more shallow the slope is near x_max, zooming in/out + * more slowly towards the end of the animation. + */ + private static final double Y_MIN = -2.5; + private static final double Y_MAX = 3.0; + private static final double Y_RANGE = Y_MAX - Y_MIN; + + /* + * The min and max x values equal e^y_min and e^y_max respectively such that the + * x range matches the y range exactly (since e.g. log(e^y_min) == y_min) + */ + private static final double X_MIN = Math.pow(Math.E, Y_MIN); + private static final double X_MAX = Math.pow(Math.E, Y_MAX); + private static final double X_RANGE = X_MAX - X_MIN; + + private final FOVMultiplier zoomFactorFunction; + + private ZoomState(FOVMultiplier zoomFactorFunction) { + this.zoomFactorFunction = zoomFactorFunction; + } + + /** + * Returns the zoom factor function of the current zoom state. + * + * @return the zoom factor function of the current zoom state + */ + public FOVMultiplier getZoomFactorFunction() { + return zoomFactorFunction; + } + + /** + * A logarithmic function that calculates and returns a value between + * {@code 0.0} and {@code 1.0 - zoomFactorInverse}. + * + * @param zoomFactorInverse the inverse value of the zoom factor setting + * @param maxDuration the smooth zoom duration setting + * @param currentDuration the current duration counting from {@code 0.0} to + * {@code maxDuration} + * @return a logarithmic value between {@code 0} and + * {@code 1.0 - zoomFactorInverse} + */ + private static double logAdjusted(double zoomFactorInverse, double maxDuration, double currentDuration) { + return (Math.log(toDomain(maxDuration, currentDuration)) - Y_MIN) / (Y_RANGE) * (1.0 - zoomFactorInverse); + } + + /** + * Converts a number in the range between {@code 0} and {@code maxDuration} to a + * number in the range between {@link #X_MIN} and {@link #X_MAX} and returns it. + * + * @param maxDuration the smooth zoom duration setting + * @param currentDuration the current duration counting from {@code 0.0} to + * {@code maxDuration} + * @return the converted number (between {@code X_MIN} and {@code X_MAX} + */ + private static double toDomain(double maxDuration, double currentDuration) { + return X_RANGE / maxDuration * currentDuration + X_MIN; + } + } + + /** + * A function that calculates the current Field of View (FOV) multiplier which + * represents the inverse value of the current zoom factor. The current FOV + * multiplier function value depends on how much time has passed since the last + * zoom key press (zoom-in) or release (zoom-out) and must produce values + * between the inverse value of the zoom factor setting and 1.0. + * + * @author marcelbpunkt + * + */ + @FunctionalInterface + private static interface FOVMultiplier { + + double apply(double zoomFactor, double maxDuration, double currentDuration); + } } diff --git a/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigHandler.java b/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigHandler.java new file mode 100644 index 0000000..180867a --- /dev/null +++ b/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigHandler.java @@ -0,0 +1,186 @@ +package com.logicalgeekboy.logical_zoom.config; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.Optional; +import java.util.Properties; + +import org.slf4j.Logger; + +import com.mojang.logging.LogUtils; + +import net.minecraft.text.Text; + +/** + * Handles reading from and writing to the config file + * ({@link ConfigUtil#CONFIG_FILE_NAME}), as well as getting and setting the + * properties in-game. + * + * @author marcelbpunkt + * + */ +public class ConfigHandler { + + private static final File CONFIG_FILE = new File(ConfigUtil.CONFIG_FILE_NAME); + private static final ConfigHandler INSTANCE = new ConfigHandler(); + private static final Logger LOG = LogUtils.getLogger(); + + private Properties properties; + + private ConfigHandler() { + this.properties = new Properties(); + loadProperties(); + } + + /** + * Returns the only instance of this class. + * + * @return the only instance of this class + */ + public static ConfigHandler getInstance() { + return INSTANCE; + } + + /** + * Returns the zoom factor setting. + * + * @return the zoom factor setting + */ + public double getZoomFactor() { + String property = (String) this.properties.getOrDefault(ConfigUtil.OPTION_ZOOM_FACTOR, + ConfigUtil.DEFAULT_ENABLE_SMOOTH_ZOOM); + return Double.parseDouble(property); + } + + /** + * Returns the "Enable Smooth Zoom" setting. + * + * @return the "Enable Smooth Zoom" setting + */ + public boolean isSmoothZoomEnabled() { + return "true".equals(this.properties.getProperty(ConfigUtil.OPTION_ENABLE_SMOOTH_ZOOM)); + } + + /** + * Returns the smooth zoom duration setting. + * + * @return the smooth zoom duration setting in milliseconds + */ + public long getSmoothZoomDurationMillis() { + return Long.parseLong((String) this.properties.getOrDefault(ConfigUtil.OPTION_SMOOTH_ZOOM_DURATION_MILLIS, + ConfigUtil.DEFAULT_SMOOTH_ZOOM_DURATION_MILLIS)); + } + + /** + * Returns the zoom factor setting. + * + * @param zoomFactor the zoom factor setting + */ + public void setZoomFactor(double zoomFactor) { + this.properties.put(ConfigUtil.OPTION_ZOOM_FACTOR, Double.toString(zoomFactor)); + } + + /** + * Sets the "Enable Smooth Zoom" setting. + * + * @param isSmoothZoomEnabled the new "Enable Smooth Zoom" setting + */ + public void setSmoothZoomEnabled(boolean isSmoothZoomEnabled) { + this.properties.put(ConfigUtil.OPTION_ENABLE_SMOOTH_ZOOM, Boolean.toString(isSmoothZoomEnabled)); + } + + /** + * Sets the smooth zoom duration setting. + * + * @param millis the new smooth zoom duration in milliseconds + */ + public void setSmoothZoomDurationMillis(long millis) { + this.properties.put(ConfigUtil.OPTION_SMOOTH_ZOOM_DURATION_MILLIS, Long.toString(millis)); + } + + /** + * Checks a specified zoom factor setting and returns an error message if it is + * too small or too large. + * + * @param zoomFactor the zoom factor setting that is to be checked + * @return + * + */ + public Optional getZoomFactorError(double zoomFactor) { + if (zoomFactor < ConfigUtil.MIN_ZOOM_FACTOR) { + return Optional.of(Text.translatable(ConfigUtil.ERROR_ZOOM_FACTOR_TOO_SMALL)); + } else if (zoomFactor > ConfigUtil.MAX_ZOOM_FACTOR) { + return Optional.of(Text.translatable(ConfigUtil.ERROR_ZOOM_FACTOR_TOO_LARGE)); + } + + return Optional.empty(); + } + + /** + * Checks a specified smooth zoom duration setting and returns an error message + * if it is too small or too large. + * + * @param millis the smooth zoom duration setting that is to be checked + * @return + * + */ + public Optional getSmoothZoomDurationMillisError(long millis) { + if (millis < ConfigUtil.MIN_SMOOTH_ZOOM_DURATION_MILLIS) { + return Optional.of(Text.translatable(ConfigUtil.ERROR_SMOOTH_ZOOM_DURATION_MILLIS_TOO_SMALL)); + } else if (millis > ConfigUtil.MAX_SMOOTH_ZOOM_DURATION_MILLIS) { + return Optional.of(Text.translatable(ConfigUtil.ERROR_SMOOTH_ZOOM_DURATION_MILLIS_TOO_LARGE)); + } + + return Optional.empty(); + } + + private void loadProperties() { + if (!CONFIG_FILE.exists()) { + loadDefaultProperties(); + return; + } + + try (InputStream is = new FileInputStream(CONFIG_FILE)) { + this.properties.load(is); + } catch (IOException e) { + LOG.error("Could not read from config file!", e); + loadDefaultProperties(); + } + } + + private void loadDefaultProperties() { + // don't synchronize since this method is called only by loadProperties() which + // already has a lock on this.properties at this point! + properties.put(ConfigUtil.OPTION_ENABLE_SMOOTH_ZOOM, ConfigUtil.DEFAULT_ENABLE_SMOOTH_ZOOM); + properties.put(ConfigUtil.OPTION_ZOOM_FACTOR, ConfigUtil.DEFAULT_ZOOM_FACTOR); + + // since the default properties are only loaded if the properties file does not + // exist or cannot be accessed for whatever reason, let's create/overwrite the + // file. + saveProperties(); + } + + void saveProperties() { + try (OutputStream out = new FileOutputStream(CONFIG_FILE)) { + this.properties.store(out, null); + } catch (IOException e) { + LOG.error("Could not write to config file!", e); + } + } +} diff --git a/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigScreen.java b/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigScreen.java new file mode 100644 index 0000000..ade4608 --- /dev/null +++ b/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigScreen.java @@ -0,0 +1,66 @@ +package com.logicalgeekboy.logical_zoom.config; + +import com.terraformersmc.modmenu.api.ConfigScreenFactory; +import com.terraformersmc.modmenu.api.ModMenuApi; + +import me.shedaniel.clothconfig2.api.ConfigBuilder; +import me.shedaniel.clothconfig2.api.ConfigCategory; +import net.minecraft.client.gui.screen.Screen; +import net.minecraft.text.Text; + +/** + * Builds and registers the Logical Zoom configuration screen and registers it + * with Mod Menu (if installed). + * + * @author marcelbpunkt + * + */ +public class ConfigScreen implements ModMenuApi { + + private static final ConfigHandler HANDLER = ConfigHandler.getInstance(); + + /** + * Builds and returns the Logical Zoom configuration screen. + * + * @param parent the screen from which this screen is opened + * @return the Logical Zoom configuration screen + */ + public static Screen createConfigScreen(Screen parent) { + ConfigBuilder builder = ConfigBuilder.create().setParentScreen(parent) + .setTitle(Text.translatable(ConfigUtil.MENU_TITLE)).setSavingRunnable(HANDLER::saveProperties); + + ConfigCategory general = builder.getOrCreateCategory(Text.translatable(ConfigUtil.CATEGORY_GENERAL)); + + // add zoom factor field (double value) + general.addEntry(builder.entryBuilder() + .startDoubleField(Text.translatable(ConfigUtil.OPTION_ZOOM_FACTOR), HANDLER.getZoomFactor()) + .setDefaultValue(ConfigUtil.getDefaultZoomFactor()).setSaveConsumer(HANDLER::setZoomFactor) + .setMin(ConfigUtil.MIN_ZOOM_FACTOR).setMax(ConfigUtil.MAX_ZOOM_FACTOR) + .setTooltip(Text.translatable(ConfigUtil.TOOLTIP_ZOOM_FACTOR)) + .setErrorSupplier(HANDLER::getZoomFactorError).build()); + + // add enable smooth zoom button + general.addEntry(builder.entryBuilder() + .startBooleanToggle(Text.translatable(ConfigUtil.OPTION_ENABLE_SMOOTH_ZOOM), + HANDLER.isSmoothZoomEnabled()) + .setDefaultValue(ConfigUtil.getDefaultEnableSmoothZoom()).setSaveConsumer(HANDLER::setSmoothZoomEnabled) + .setTooltip(Text.translatable(ConfigUtil.TOOLTIP_ENABLE_SMOOTH_ZOOM)).build()); + + // add smooth zoom duration field (long value) + general.addEntry(builder.entryBuilder() + .startLongField(Text.translatable(ConfigUtil.OPTION_SMOOTH_ZOOM_DURATION_MILLIS), + HANDLER.getSmoothZoomDurationMillis()) + .setDefaultValue(ConfigUtil.getDefaultSmoothZoomDurationMillis()) + .setSaveConsumer(HANDLER::setSmoothZoomDurationMillis) + .setMin(ConfigUtil.MIN_SMOOTH_ZOOM_DURATION_MILLIS).setMax(ConfigUtil.MAX_SMOOTH_ZOOM_DURATION_MILLIS) + .setTooltip(Text.translatable(ConfigUtil.TOOLTIP_SMOOTH_ZOOM_DURATION_MILLIS)) + .setErrorSupplier(HANDLER::getSmoothZoomDurationMillisError).build()); + + return builder.build(); + } + + @Override + public ConfigScreenFactory getModConfigScreenFactory() { + return ConfigScreen::createConfigScreen; + } +} diff --git a/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigUtil.java b/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigUtil.java new file mode 100644 index 0000000..b655489 --- /dev/null +++ b/src/main/java/com/logicalgeekboy/logical_zoom/config/ConfigUtil.java @@ -0,0 +1,146 @@ +package com.logicalgeekboy.logical_zoom.config; + +import com.logicalgeekboy.logical_zoom.LogicalZoom; + +/** + * Contains constants for all translation keys and default values except for the + * zoom key bind which is defined in {@link LogicalZoom}. All properties stored + * in the config file are String values in order to make use of + * {@code Properties.load} and {@code Properties.store}. + *

+ * The default values can also be retrieved in their correct data type via the + * respective getter methods. + * + * @author marcelbpunkt + * + */ +public class ConfigUtil { + + /** + * The namespace of this mod + */ + public static final String NAMESPACE = "logical_zoom"; + + private static final String CATEGORY_PREFIX = NAMESPACE + ".category"; + private static final String OPTION_PREFIX = NAMESPACE + ".option"; + private static final String TOOLTIP_PREFIX = NAMESPACE + ".tooltip"; + private static final String ERROR_PREFIX = NAMESPACE + ".error"; + + /** + * The title displayed when this mod is configured via the Mod Menu screen + */ + public static final String MENU_TITLE = NAMESPACE + ".menu_title"; + + /** + * The "General" settings category + */ + public static final String CATEGORY_GENERAL = CATEGORY_PREFIX + ".general"; + + /** + * The translation key for the zoom factor setting + */ + public static final String OPTION_ZOOM_FACTOR = OPTION_PREFIX + ".zoom_factor"; + /** + * The translation key for the "Enable Smooth Zoom" setting + */ + public static final String OPTION_ENABLE_SMOOTH_ZOOM = OPTION_PREFIX + ".enable_smooth_zoom"; + /** + * The translation key for the smooth zoom duration setting + */ + public static final String OPTION_SMOOTH_ZOOM_DURATION_MILLIS = OPTION_PREFIX + ".smooth_zoom_duration_millis"; + + /** + * The default value for the zoom factor setting + */ + public static final String DEFAULT_ZOOM_FACTOR = "3.0"; + /** + * The smallest possible zoom factor setting + */ + public static final double MIN_ZOOM_FACTOR = 1.0; + /** + * The greatest possible zoom factor setting + */ + public static final double MAX_ZOOM_FACTOR = 5.0; + /** + * The default "Enable Smooth Zoom" setting + */ + public static final String DEFAULT_ENABLE_SMOOTH_ZOOM = "true"; + /** + * The default smooth zoom duration setting in milliseconds + */ + public static final String DEFAULT_SMOOTH_ZOOM_DURATION_MILLIS = "120"; + /** + * The smallest possible smooth zoom duration setting. + *

+ * The smooth zoom duration value must not be zero or it will lead to a division + * by zero! + */ + public static final long MIN_SMOOTH_ZOOM_DURATION_MILLIS = 1L; + /** + * The greatest possible smooth zoom duration setting + */ + public static final long MAX_SMOOTH_ZOOM_DURATION_MILLIS = 10000L; + + /** + * The translation key for the zoom factor tooltip + */ + public static final String TOOLTIP_ZOOM_FACTOR = TOOLTIP_PREFIX + ".zoom_factor"; + /** + * The translation key for the "Enable Smooth Zoom" tooltip + */ + public static final String TOOLTIP_ENABLE_SMOOTH_ZOOM = TOOLTIP_PREFIX + ".enable_smooth_zoom"; + /** + * The translation key for the smooth zoom duration tooltip + */ + public static final String TOOLTIP_SMOOTH_ZOOM_DURATION_MILLIS = TOOLTIP_PREFIX + ".smooth_zoom_duration_millis"; + + /** + * The file name of the properties file to which all settings are written + */ + public static final String CONFIG_FILE_NAME = "config/logical_zoom.properties"; + /** + * The translation key for the "zoom factor too small" error message + */ + public static final String ERROR_ZOOM_FACTOR_TOO_SMALL = ERROR_PREFIX + ".zoom_factor_too_small"; + /** + * The translation key for the "zoom factor too large" error message + */ + public static final String ERROR_ZOOM_FACTOR_TOO_LARGE = ERROR_PREFIX + ".zoom_factor_too_large"; + /** + * The translation key for the "smooth zoom duration too small" error message + */ + public static final String ERROR_SMOOTH_ZOOM_DURATION_MILLIS_TOO_SMALL = ERROR_PREFIX + + ".smooth_zoom_duration_millis_too_small"; + /** + * The translation key for the "smooth zoom duration too large" error message + */ + public static final String ERROR_SMOOTH_ZOOM_DURATION_MILLIS_TOO_LARGE = ERROR_PREFIX + + ".smooth_zoom_duration_millis_too_large"; + + /** + * Returns the default zoom factor setting. + * + * @return the default zoom factor setting + */ + public static double getDefaultZoomFactor() { + return Double.parseDouble(DEFAULT_ZOOM_FACTOR); + } + + /** + * Returns the default "Enable Smooth Zoom" setting. + * + * @return the default "Enable Smooth Zoom" setting + */ + public static boolean getDefaultEnableSmoothZoom() { + return Boolean.parseBoolean(DEFAULT_ENABLE_SMOOTH_ZOOM); + } + + /** + * Returns the default smooth zoom duration setting in milliseconds. + * + * @return the default smooth zoom duration setting in milliseconds + */ + public static long getDefaultSmoothZoomDurationMillis() { + return Long.parseLong(DEFAULT_SMOOTH_ZOOM_DURATION_MILLIS); + } +} diff --git a/src/main/java/com/logicalgeekboy/logical_zoom/mixin/LogicalZoomMixin.java b/src/main/java/com/logicalgeekboy/logical_zoom/mixin/LogicalZoomMixin.java index f1293b9..9a621a3 100644 --- a/src/main/java/com/logicalgeekboy/logical_zoom/mixin/LogicalZoomMixin.java +++ b/src/main/java/com/logicalgeekboy/logical_zoom/mixin/LogicalZoomMixin.java @@ -1,28 +1,23 @@ package com.logicalgeekboy.logical_zoom.mixin; -import com.logicalgeekboy.logical_zoom.LogicalZoom; - import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; +import com.logicalgeekboy.logical_zoom.LogicalZoom; + import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; - import net.minecraft.client.render.GameRenderer; @Environment(EnvType.CLIENT) @Mixin(GameRenderer.class) public class LogicalZoomMixin { - @Inject(method = "getFov(Lnet/minecraft/client/render/Camera;FZ)D", at = @At("RETURN"), cancellable = true) - public void getZoomLevel(CallbackInfoReturnable callbackInfo) { - if(LogicalZoom.isZooming()) { - double fov = callbackInfo.getReturnValue(); - callbackInfo.setReturnValue(fov * LogicalZoom.zoomLevel); - } - - LogicalZoom.manageSmoothCamera(); - } + @Inject(method = "getFov(Lnet/minecraft/client/render/Camera;FZ)D", at = @At("RETURN"), cancellable = true) + public void getZoomLevel(CallbackInfoReturnable callbackInfo) { + double fov = callbackInfo.getReturnValue(); + callbackInfo.setReturnValue(fov * LogicalZoom.getCurrentFOVMultiplier()); + } } diff --git a/src/main/resources/assets/logical_zoom/lang/en_us.json b/src/main/resources/assets/logical_zoom/lang/en_us.json index e288eb9..7b29558 100644 --- a/src/main/resources/assets/logical_zoom/lang/en_us.json +++ b/src/main/resources/assets/logical_zoom/lang/en_us.json @@ -1,4 +1,22 @@ { - "key.logical_zoom.zoom": "Toggle Zoom", - "category.logical_zoom.zoom": "Logical Zoom" + "key.logical_zoom.zoom": "Zoom", + "category.logical_zoom.zoom": "Logical Zoom", + + "logical_zoom.menu_title": "Logical Zoom Settings", + "logical_zoom.category.general": "General", + + + "logical_zoom.option.zoom_factor": "Zoom Factor", + "logical_zoom.tooltip.zoom_factor": "Defines how much the picture is zoomed when pressing the zoom key.", + + "logical_zoom.option.enable_smooth_zoom": "Enable Smooth Zoom", + "logical_zoom.tooltip.enable_smooth_zoom": "Enables/disables zoom-in/-out animations.", + + "logical_zoom.option.smooth_zoom_duration_millis": "Smooth Zoom Duration (in ms)", + "logical_zoom.tooltip.smooth_zoom_duration_millis": "Defines how long the animations take (higher value = slower).", + + "logical_zoom.error.zoom_factor_too_small": "Zoom factor too small (min. 1.0)!", + "logical_zoom.error.zoom_factor_too_large": "Zoom factor too large (max. 5.0)!", + "logical_zoom.error.smooth_zoom_duration_millis_too_small": "Duration must be positive!", + "logical_zoom.error.smooth_zoom_duration_millis_too_large": "Duration too large (max. 10000)!" } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 084e444..77f1d34 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "logical_zoom", - "version": "${version}", + "version": "${project.version}", "name": "Logical Zoom", "description": "A simple zoom", @@ -12,6 +12,17 @@ "homepage": "https://logicalgeekboy.com", "sources": "https://github.com/logicalgeekboy/logical_zoom" }, + "contributors": [ + { + "name": "marcelbpunkt", + "contact": { + "homepage": "https://github.com/marcelbpunkt", + "sources": "https://github.com/marcelbpunkt/logical_zoom", + "issues": "https://github.com/marcelbpunkt/logical_zoom/issues", + "discord": "https://discordapp.com/users/marcelbpunkt#8899" + } + } + ], "license": "MIT", "icon": "assets/logical_zoom/icon.png", @@ -20,6 +31,9 @@ "entrypoints": { "client": [ "com.logicalgeekboy.logical_zoom.LogicalZoom" + ], + "modmenu": [ + "com.logicalgeekboy.logical_zoom.config.ConfigScreen" ] }, "mixins": [ @@ -30,11 +44,13 @@ ], "depends": { - "fabricloader": ">=0.14.9", - "fabric": "*", - "minecraft": "1.19.2" + "fabricloader": ">=${project.loader_version}", + "fabric-api": "*", + "minecraft": ">=1.19 <1.20", + "cloth-config": ">=${project.cloth_config_version}" }, "suggests": { - "flamingo": "*" + "flamingo": "*", + "modmenu": ">=${project.modmenu_version}" } }