Compare commits
51 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
30b647938e | ||
|
|
a8c89b11c7 | ||
|
|
f8ff656daa | ||
|
|
f89fc08505 | ||
|
|
94afc8b0c0 | ||
|
|
64aa45a370 | ||
|
|
05bea0aab1 | ||
|
|
fbb368989e | ||
|
|
795759b4e5 | ||
|
|
2410b8ff54 | ||
|
|
d08889f186 | ||
|
|
2886fd509b | ||
|
|
8be9fc6872 | ||
|
|
87ebfdd3b6 | ||
|
|
e8e563ad7b | ||
|
|
417cd3e2f8 | ||
|
|
b95045e21a | ||
|
|
fbbfe773a8 | ||
|
|
222f842386 | ||
|
|
f5aad84b90 | ||
|
|
2d9c069b79 | ||
|
|
06cb75d518 | ||
|
|
9c775d8c06 | ||
|
|
bcda47d94c | ||
|
|
01bab4b885 | ||
|
|
b008d7b75e | ||
|
|
4a21d9eb91 | ||
|
|
2332192301 | ||
|
|
acefd614ec | ||
|
|
e55d62d9e9 | ||
|
|
488a12f417 | ||
|
|
d282d43f20 | ||
|
|
fa52471ade | ||
|
|
1ffe62f3af | ||
|
|
5cd113d060 | ||
|
|
88d6b4f5c3 | ||
|
|
49ddb467ae | ||
|
|
c0abca50f9 | ||
|
|
8e86674dff | ||
|
|
da4f52561e | ||
|
|
1a1335a659 | ||
|
|
d8ce15e5da | ||
|
|
066cc56268 | ||
|
|
301b777152 | ||
|
|
92439549cc | ||
|
|
c9b0e81f77 | ||
|
|
14f63e2758 | ||
|
|
f28f2cd38b | ||
|
|
60e484e004 | ||
|
|
73ff9615b5 | ||
|
|
2ee6f0be51 |
3
.gitignore
vendored
@@ -23,3 +23,6 @@ bin/
|
|||||||
# fabric
|
# fabric
|
||||||
|
|
||||||
run/
|
run/
|
||||||
|
|
||||||
|
# unfinished
|
||||||
|
puzzle-randomentities/
|
||||||
240
build.gradle
@@ -1,106 +1,168 @@
|
|||||||
|
// Based on https://github.com/OnyxStudios/Cardinal-Components-API/blob/1.17/build.gradle
|
||||||
plugins {
|
plugins {
|
||||||
id 'fabric-loom' version '0.7-SNAPSHOT'
|
id "fabric-loom" version "0.12-SNAPSHOT" apply false
|
||||||
id 'maven-publish'
|
id "com.matthewprenger.cursegradle" version "1.4.0"
|
||||||
|
id "maven-publish"
|
||||||
|
id "java-library"
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
group = "net.puzzlemc"
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
archivesBaseName = "puzzle"
|
||||||
|
|
||||||
archivesBaseName = project.archives_base_name
|
subprojects {
|
||||||
version = project.mod_version
|
apply plugin: 'fabric-loom'
|
||||||
group = project.maven_group
|
apply plugin: 'com.matthewprenger.cursegradle'
|
||||||
|
apply plugin: 'maven-publish'
|
||||||
|
apply plugin: 'java-library'
|
||||||
|
|
||||||
minecraft {
|
archivesBaseName = project.name
|
||||||
|
group = "${rootProject.group}.${rootProject.archivesBaseName}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
apply plugin: "fabric-loom"
|
||||||
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
|
||||||
|
version = System.getenv("TRAVIS_TAG") ?: rootProject.mod_version
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
dev
|
||||||
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven { url 'https://jitpack.io' }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
|
||||||
|
mappings "net.fabricmc:yarn:${rootProject.yarn_mappings}:v2"
|
||||||
|
modApi "net.fabricmc:fabric-loader:${rootProject.loader_version}"
|
||||||
|
modApi "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_version}"
|
||||||
|
}
|
||||||
|
|
||||||
|
processResources {
|
||||||
|
inputs.property "version", project.version
|
||||||
|
|
||||||
|
filesMatching("fabric.mod.json") {
|
||||||
|
expand "version": project.version
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ensure that the encoding is set to UTF-8, no matter what the system default is
|
||||||
|
// this fixes some edge cases with special characters not displaying correctly
|
||||||
|
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
|
||||||
|
tasks.withType(JavaCompile).configureEach {
|
||||||
|
it.options.encoding = "UTF-8"
|
||||||
|
it.options.release = 17
|
||||||
|
}
|
||||||
|
|
||||||
|
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()
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
}
|
||||||
|
|
||||||
|
afterEvaluate {
|
||||||
|
artifacts {
|
||||||
|
dev file: file("${project.buildDir}/libs/$archivesBaseName-${version}-dev.jar"), type: "jar", builtBy: sourcesJar
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
subprojects {
|
||||||
|
version = rootProject.version
|
||||||
|
}
|
||||||
|
|
||||||
|
subprojects.each { remapJar.dependsOn("${it.path}:remapJar") }
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "https://maven.shedaniel.me/" }
|
maven {
|
||||||
maven { url "https://jitpack.io" }
|
name = "JitPack"
|
||||||
maven { url "https://maven.terraformersmc.com/releases" }
|
url = "https://jitpack.io"
|
||||||
maven { url "https://aperlambda.github.io/maven" }
|
}
|
||||||
|
maven {
|
||||||
|
name = "TerraformersMC"
|
||||||
|
url = "https://maven.terraformersmc.com/releases"
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
name = 'AperLambda'
|
||||||
|
url = 'https://aperlambda.github.io/maven'
|
||||||
|
}
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
name 'Gegy'
|
||||||
|
url 'https://maven.gegy.dev'
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
url = "https://api.modrinth.com/maven"
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
url "https://www.cursemaven.com"
|
||||||
|
content {
|
||||||
|
includeGroup "curse.maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
name = 'JitPack'
|
||||||
|
url 'https://jitpack.io'
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
url "https://maven.shedaniel.me/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
//to change the versions see the gradle.properties file
|
modImplementation ("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
|
||||||
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
modImplementation ("com.terraformersmc:modmenu:${project.mod_menu_version}") {
|
||||||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
exclude group: "net.fabricmc.fabric-api"
|
||||||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
}
|
||||||
|
modImplementation ("maven.modrinth:cull-leaves:${project.cull_leaves_version}")
|
||||||
|
modImplementation ("maven.modrinth:lambdynamiclights:${project.ldl_version}")
|
||||||
|
modImplementation ("maven.modrinth:lambdabettergrass:${project.lbg_version}")
|
||||||
|
modImplementation ("maven.modrinth:iris:${project.iris_version}")
|
||||||
|
modCompileOnly ("maven.modrinth:cit-resewn:${project.cit_resewn_version}")
|
||||||
|
modImplementation ("maven.modrinth:continuity:${project.continuity_version}")
|
||||||
|
modImplementation ("maven.modrinth:animatica:${project.animatica_version}")
|
||||||
|
modImplementation ("maven.modrinth:colormatic:${project.colormatic_version}")
|
||||||
|
modImplementation ("maven.modrinth:borderless-mining:${project.borderless_mining_version}")
|
||||||
|
modImplementation ("maven.modrinth:dynamic-fps:${project.dynamic_fps_version}")
|
||||||
|
modImplementation("com.moandjiezana.toml:toml4j:${project.toml4j_version}")
|
||||||
|
modImplementation ("maven.modrinth:entitytexturefeatures:${project.entitytexturefeatures_version}")
|
||||||
|
modImplementation ("maven.modrinth:cem:${project.cem_version}")
|
||||||
|
modImplementation "com.gitlab.Lortseam:completeconfig:${project.complete_config_version}"
|
||||||
|
|
||||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
modImplementation("org.aperlambda:lambdajcommon:1.8.1") {
|
||||||
|
exclude group: 'com.google.code.gson'
|
||||||
|
exclude group: 'com.google.guava'
|
||||||
|
}
|
||||||
|
modImplementation "dev.lambdaurora:spruceui:${project.spruceui_version}"
|
||||||
|
modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||||
|
include "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||||
|
|
||||||
modImplementation "com.terraformersmc:modmenu:${project.mod_menu_version}"
|
subprojects.each {
|
||||||
modImplementation ("com.github.TeamMidnightDust:CullLeaves:${project.cull_leaves_version}"){
|
api project(path: ":${it.name}", configuration: "dev")
|
||||||
exclude module: "modmenu"
|
include project(":${it.name}")
|
||||||
}
|
}
|
||||||
modImplementation ("com.github.LambdAurora:LambDynamicLights:${project.ldl_version}") {
|
|
||||||
exclude module: "modmenu"
|
|
||||||
exclude module: "sodium-fabric"
|
|
||||||
}
|
|
||||||
modImplementation ("com.github.LambdAurora:LambdaBetterGrass:${project.lbg_version}") {
|
|
||||||
exclude module: "modmenu"
|
|
||||||
}
|
|
||||||
modImplementation ("com.github.IrisShaders:Iris:${project.iris_version}") {
|
|
||||||
exclude module: "modmenu"
|
|
||||||
}
|
|
||||||
modImplementation ("com.github.PepperCode1:ConnectedTexturesMod-Fabric:${project.ctmf_version}") {
|
|
||||||
exclude module: "modmenu"
|
|
||||||
}
|
|
||||||
modImplementation ("com.github.LambdAurora:LambdaControls:${project.lc_version}") {
|
|
||||||
exclude module: "modmenu"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
processResources {
|
|
||||||
inputs.property "version", project.version
|
|
||||||
|
|
||||||
filesMatching("fabric.mod.json") {
|
|
||||||
expand "version": project.version
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType(JavaCompile).configureEach {
|
|
||||||
// ensure that the encoding is set to UTF-8, no matter what the system default is
|
|
||||||
// this fixes some edge cases with special characters not displaying correctly
|
|
||||||
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
|
|
||||||
// If Javadoc is generated, this must be specified in that task too.
|
|
||||||
it.options.encoding = "UTF-8"
|
|
||||||
|
|
||||||
// Minecraft 1.17 (21w19a) upwards uses Java 16.
|
|
||||||
//it.options.release = 8
|
|
||||||
}
|
|
||||||
|
|
||||||
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()
|
|
||||||
}
|
|
||||||
|
|
||||||
jar {
|
|
||||||
from("LICENSE") {
|
|
||||||
rename { "${it}_${project.archivesBaseName}"}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// configure the maven publication
|
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
mavenJava(MavenPublication) {
|
mavenJava(MavenPublication) {
|
||||||
// add all the jars that should be included when publishing to maven
|
artifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) {
|
||||||
artifact(remapJar) {
|
builtBy(remapJar)
|
||||||
builtBy remapJar
|
}
|
||||||
}
|
pom.withXml {
|
||||||
artifact(sourcesJar) {
|
subprojects.each {
|
||||||
builtBy remapSourcesJar
|
depNode.appendNode("groupId", it.group)
|
||||||
}
|
depNode.appendNode("artifactId", it.name)
|
||||||
}
|
depNode.appendNode("version", it.version)
|
||||||
}
|
depNode.appendNode("scope", "compile")
|
||||||
|
}
|
||||||
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
|
}
|
||||||
repositories {
|
}
|
||||||
// Add repositories to publish to here.
|
}
|
||||||
// Notice: This block does NOT have the same function as the block in the top level.
|
|
||||||
// The repositories here will be used for publishing your artifact, not for
|
|
||||||
// retrieving dependencies.
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +1,35 @@
|
|||||||
# Done to increase the memory available to gradle.
|
# Done to increase the memory available to gradle.
|
||||||
org.gradle.jvmargs=-Xmx1G
|
org.gradle.jvmargs=-Xmx4G
|
||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/use
|
# check these on https://fabricmc.net/use
|
||||||
minecraft_version=1.16.5
|
minecraft_version=1.19
|
||||||
yarn_mappings=1.16.5+build.6
|
yarn_mappings=1.19+build.4
|
||||||
loader_version=0.11.3
|
loader_version=0.14.8
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 0.2.0
|
mod_version = 1.4.2-1.19
|
||||||
maven_group = eu.midnightdust
|
maven_group = net.puzzlemc
|
||||||
archives_base_name = puzzle
|
archives_base_name = puzzle
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
||||||
fabric_version=0.32.5+1.16
|
fabric_version=0.57.0+1.19
|
||||||
mod_menu_version = 1.16.9
|
mod_menu_version = 4.0.0
|
||||||
|
|
||||||
cull_leaves_version = 2.1.0
|
cull_leaves_version = 2.3.3
|
||||||
ldl_version = 1.3.4-1.16
|
ldl_version = 2.1.2+1.19
|
||||||
lbg_version = 1.0.3-1.16
|
lbg_version = 1.3.0+1.19
|
||||||
lc_version = 1.6.0-1.16
|
iris_version = 1.19.x-v1.2.5
|
||||||
iris_version = v0.4.0
|
continuity_version = 2.0.0+1.19
|
||||||
ctmf_version = v0.4.0
|
animatica_version = 0.5+1.19
|
||||||
|
colormatic_version = 3.1.2
|
||||||
|
borderless_mining_version = 1.1.5+1.19
|
||||||
|
dynamic_fps_version = 2.2.0
|
||||||
|
toml4j_version = 0.7.2
|
||||||
|
cit_resewn_version = 1.1.1+1.19
|
||||||
|
cem_version = 0.7.1-1.19
|
||||||
|
complete_config_version = 1.0.0
|
||||||
|
spruceui_version=4.0.0+1.19
|
||||||
|
midnightlib_version=0.5.2
|
||||||
|
entitytexturefeatures_version=4.3.1.fabric.1.19.2
|
||||||
|
|||||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
269
gradlew
vendored
@@ -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");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
@@ -17,67 +17,101 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
##
|
#
|
||||||
## 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
|
# Attempt to set APP_HOME
|
||||||
|
|
||||||
# Resolve links: $0 may be a link
|
# Resolve links: $0 may be a link
|
||||||
PRG="$0"
|
app_path=$0
|
||||||
# Need this for relative symlinks.
|
|
||||||
while [ -h "$PRG" ] ; do
|
# Need this for daisy-chained symlinks.
|
||||||
ls=`ls -ld "$PRG"`
|
while
|
||||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||||
if expr "$link" : '/.*' > /dev/null; then
|
[ -h "$app_path" ]
|
||||||
PRG="$link"
|
do
|
||||||
else
|
ls=$( ls -ld "$app_path" )
|
||||||
PRG=`dirname "$PRG"`"/$link"
|
link=${ls#*' -> '}
|
||||||
fi
|
case $link in #(
|
||||||
|
/*) app_path=$link ;; #(
|
||||||
|
*) app_path=$APP_HOME$link ;;
|
||||||
|
esac
|
||||||
done
|
done
|
||||||
SAVED="`pwd`"
|
|
||||||
cd "`dirname \"$PRG\"`/" >/dev/null
|
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||||
APP_HOME="`pwd -P`"
|
|
||||||
cd "$SAVED" >/dev/null
|
|
||||||
|
|
||||||
APP_NAME="Gradle"
|
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.
|
# 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"'
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
|
|
||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD="maximum"
|
MAX_FD=maximum
|
||||||
|
|
||||||
warn () {
|
warn () {
|
||||||
echo "$*"
|
echo "$*"
|
||||||
}
|
} >&2
|
||||||
|
|
||||||
die () {
|
die () {
|
||||||
echo
|
echo
|
||||||
echo "$*"
|
echo "$*"
|
||||||
echo
|
echo
|
||||||
exit 1
|
exit 1
|
||||||
}
|
} >&2
|
||||||
|
|
||||||
# OS specific support (must be 'true' or 'false').
|
# OS specific support (must be 'true' or 'false').
|
||||||
cygwin=false
|
cygwin=false
|
||||||
msys=false
|
msys=false
|
||||||
darwin=false
|
darwin=false
|
||||||
nonstop=false
|
nonstop=false
|
||||||
case "`uname`" in
|
case "$( uname )" in #(
|
||||||
CYGWIN* )
|
CYGWIN* ) cygwin=true ;; #(
|
||||||
cygwin=true
|
Darwin* ) darwin=true ;; #(
|
||||||
;;
|
MSYS* | MINGW* ) msys=true ;; #(
|
||||||
Darwin* )
|
NONSTOP* ) nonstop=true ;;
|
||||||
darwin=true
|
|
||||||
;;
|
|
||||||
MINGW* )
|
|
||||||
msys=true
|
|
||||||
;;
|
|
||||||
NONSTOP* )
|
|
||||||
nonstop=true
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
@@ -87,9 +121,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
|||||||
if [ -n "$JAVA_HOME" ] ; then
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
# IBM's JDK on AIX uses strange locations for the executables
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
JAVACMD=$JAVA_HOME/jre/sh/java
|
||||||
else
|
else
|
||||||
JAVACMD="$JAVA_HOME/bin/java"
|
JAVACMD=$JAVA_HOME/bin/java
|
||||||
fi
|
fi
|
||||||
if [ ! -x "$JAVACMD" ] ; then
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
@@ -98,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
|
|||||||
location of your Java installation."
|
location of your Java installation."
|
||||||
fi
|
fi
|
||||||
else
|
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.
|
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
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
@@ -106,80 +140,95 @@ location of your Java installation."
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Increase the maximum file descriptors if we can.
|
# Increase the maximum file descriptors if we can.
|
||||||
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||||
MAX_FD_LIMIT=`ulimit -H -n`
|
case $MAX_FD in #(
|
||||||
if [ $? -eq 0 ] ; then
|
max*)
|
||||||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
MAX_FD=$( ulimit -H -n ) ||
|
||||||
MAX_FD="$MAX_FD_LIMIT"
|
warn "Could not query maximum file descriptor limit"
|
||||||
fi
|
esac
|
||||||
ulimit -n $MAX_FD
|
case $MAX_FD in #(
|
||||||
if [ $? -ne 0 ] ; then
|
'' | soft) :;; #(
|
||||||
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
*)
|
||||||
fi
|
ulimit -n "$MAX_FD" ||
|
||||||
else
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||||
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 or MSYS, switch paths to Windows format before running java
|
|
||||||
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; 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\""
|
|
||||||
fi
|
|
||||||
i=`expr $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
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Escape application args
|
# Collect all arguments for the java command, stacking in reverse order:
|
||||||
save () {
|
# * args from the command line
|
||||||
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
# * the main class name
|
||||||
echo " "
|
# * -classpath
|
||||||
}
|
# * -D...appname settings
|
||||||
APP_ARGS=`save "$@"`
|
# * --module-path (only if needed)
|
||||||
|
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
||||||
|
|
||||||
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||||
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
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" "$@"
|
exec "$JAVACMD" "$@"
|
||||||
|
|||||||
9
puzzle-base/build.gradle
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
archivesBaseName = "puzzle-base"
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url = "https://api.modrinth.com/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||||
|
}
|
||||||
23
puzzle-base/src/main/java/net/puzzlemc/core/PuzzleCore.java
Executable file
@@ -0,0 +1,23 @@
|
|||||||
|
package net.puzzlemc.core;
|
||||||
|
|
||||||
|
import net.fabricmc.loader.api.FabricLoader;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.puzzlemc.core.util.UpdateChecker;
|
||||||
|
import net.fabricmc.api.ClientModInitializer;
|
||||||
|
|
||||||
|
public class PuzzleCore implements ClientModInitializer {
|
||||||
|
|
||||||
|
public final static String version = "Puzzle "+ (FabricLoader.getInstance().getModContainer("puzzle").isPresent() ? FabricLoader.getInstance().getModContainer("puzzle").get().getMetadata().getVersion() : "Test");
|
||||||
|
public final static String name = "Puzzle";
|
||||||
|
public final static String id = "puzzle";
|
||||||
|
public final static String website = "https://github.com/PuzzleMC/Puzzle";
|
||||||
|
public final static String updateURL = "https://modrinth.com/mod/puzzle";
|
||||||
|
|
||||||
|
public final static String UPDATE_CHECKER_URL = "https://raw.githubusercontent.com/PuzzleMC/Puzzle-Versions/main/puzzle_versions.json";
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onInitializeClient() {
|
||||||
|
PuzzleConfig.init(id, PuzzleConfig.class);
|
||||||
|
if (PuzzleConfig.checkUpdates) UpdateChecker.init();
|
||||||
|
}
|
||||||
|
}
|
||||||
24
puzzle-base/src/main/java/net/puzzlemc/core/config/PuzzleConfig.java
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
package net.puzzlemc.core.config;
|
||||||
|
|
||||||
|
import eu.midnightdust.lib.config.MidnightConfig;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class PuzzleConfig extends MidnightConfig {
|
||||||
|
@Entry public static List<String> disabledIntegrations = new ArrayList<>();
|
||||||
|
@Entry public static boolean enablePuzzleButton = true;
|
||||||
|
@Entry public static boolean debugMessages = false;
|
||||||
|
|
||||||
|
@Entry public static boolean checkUpdates = true;
|
||||||
|
@Entry public static boolean showPuzzleInfo = true;
|
||||||
|
@Entry public static boolean resourcepackSplashScreen = true;
|
||||||
|
@Entry public static boolean unlimitedRotations = true;
|
||||||
|
@Entry public static boolean biggerModels = true;
|
||||||
|
|
||||||
|
@Entry public static int backgroundColor = 15675965;
|
||||||
|
@Entry public static int progressBarColor = 16777215;
|
||||||
|
@Entry public static int progressBarBackgroundColor = 15675965;
|
||||||
|
@Entry public static int progressFrameColor = 16777215;
|
||||||
|
@Entry public static boolean disableBlend = false;
|
||||||
|
}
|
||||||
38
puzzle-base/src/main/java/net/puzzlemc/core/mixin/MixinDebugHud.java
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
package net.puzzlemc.core.mixin;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.platform.GlDebugInfo;
|
||||||
|
import net.puzzlemc.core.PuzzleCore;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.puzzlemc.core.util.UpdateChecker;
|
||||||
|
import net.minecraft.client.gui.DrawableHelper;
|
||||||
|
import net.minecraft.client.gui.hud.DebugHud;
|
||||||
|
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 java.util.List;
|
||||||
|
|
||||||
|
@Mixin(DebugHud.class)
|
||||||
|
public abstract class MixinDebugHud extends DrawableHelper {
|
||||||
|
@Inject(at = @At("RETURN"), method = "getRightText")
|
||||||
|
private void puzzle$getRightText(CallbackInfoReturnable<List<String>> cir) {
|
||||||
|
if (PuzzleConfig.showPuzzleInfo) {
|
||||||
|
List<String> entries = cir.getReturnValue();
|
||||||
|
String message;
|
||||||
|
if (UpdateChecker.isUpToDate) {
|
||||||
|
message = "Puzzle is up to date (" + PuzzleCore.version + ")";
|
||||||
|
} else {
|
||||||
|
message = "Puzzle is outdated (" + PuzzleCore.version + " -> " + UpdateChecker.latestVersion + ")";
|
||||||
|
}
|
||||||
|
for (int i = 0; i < entries.size(); i++) {
|
||||||
|
String str = entries.get(i);
|
||||||
|
|
||||||
|
if (str.startsWith(GlDebugInfo.getVersion())) {
|
||||||
|
entries.add(i + 1, message);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
78
puzzle-base/src/main/java/net/puzzlemc/core/mixin/MixinTitleScreen.java
Executable file
@@ -0,0 +1,78 @@
|
|||||||
|
package net.puzzlemc.core.mixin;
|
||||||
|
|
||||||
|
import net.fabricmc.loader.api.FabricLoader;
|
||||||
|
import net.puzzlemc.core.PuzzleCore;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.puzzlemc.core.util.UpdateChecker;
|
||||||
|
import net.minecraft.client.gui.screen.*;
|
||||||
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.minecraft.util.Util;
|
||||||
|
import net.minecraft.util.math.MathHelper;
|
||||||
|
import org.spongepowered.asm.mixin.Final;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
@Mixin(TitleScreen.class)
|
||||||
|
public abstract class MixinTitleScreen extends Screen {
|
||||||
|
|
||||||
|
@Shadow @Final private boolean doBackgroundFade;
|
||||||
|
@Shadow private long backgroundFadeStart;
|
||||||
|
private Text puzzleText;
|
||||||
|
private int puzzleTextWidth;
|
||||||
|
private int yOffset;
|
||||||
|
|
||||||
|
protected MixinTitleScreen(Text title) {
|
||||||
|
super(title);
|
||||||
|
}
|
||||||
|
@Inject(at = @At("TAIL"), method = "init")
|
||||||
|
private void puzzle$init(CallbackInfo ci) {
|
||||||
|
yOffset = 20;
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("dashloader")) yOffset = yOffset + 10;
|
||||||
|
if (UpdateChecker.isUpToDate) {
|
||||||
|
puzzleText = Text.of(PuzzleCore.version);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
puzzleText = Text.translatable("").append(Text.of(PuzzleCore.version + " | ")).append(Text.translatable("puzzle.text.update_available"));
|
||||||
|
this.puzzleTextWidth = this.textRenderer.getWidth(puzzleText);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Inject(at = @At("TAIL"), method = "render")
|
||||||
|
private void puzzle$render(MatrixStack matrices, int mouseX, int mouseY, float delta, CallbackInfo ci) {
|
||||||
|
if (PuzzleConfig.showPuzzleInfo) {
|
||||||
|
float f = this.doBackgroundFade ? (float) (Util.getMeasuringTimeMs() - this.backgroundFadeStart) / 1000.0F : 1.0F;
|
||||||
|
float g = this.doBackgroundFade ? MathHelper.clamp(f - 1.0F, 0.0F, 1.0F) : 1.0F;
|
||||||
|
int l = MathHelper.ceil(g * 255.0F) << 24;
|
||||||
|
textRenderer.drawWithShadow(matrices, puzzleText,2,this.height - yOffset, 16777215 | l);
|
||||||
|
if (mouseX > 2 && mouseX < 2 + this.puzzleTextWidth && mouseY > this.height - yOffset && mouseY < this.height - yOffset + 10) {
|
||||||
|
fill(matrices, 2, this.height - yOffset + 9, 2 + this.puzzleTextWidth, this.height - yOffset + 10, 16777215 | l);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void confirmLink(boolean open) {
|
||||||
|
if (open) {
|
||||||
|
Util.getOperatingSystem().open(PuzzleCore.updateURL);
|
||||||
|
}
|
||||||
|
Objects.requireNonNull(this.client).setScreen(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Inject(at = @At("HEAD"), method = "mouseClicked",cancellable = true)
|
||||||
|
private void puzzle$mouseClicked(double mouseX, double mouseY, int button, CallbackInfoReturnable<Boolean> cir) {
|
||||||
|
if (mouseX > 2 && mouseX < (double)(2 + this.puzzleTextWidth) && mouseY > (double)(this.height - yOffset) && mouseY < (double)this.height - yOffset + 10) {
|
||||||
|
if (Objects.requireNonNull(this.client).options.getChatLinksPrompt().getValue()) {
|
||||||
|
this.client.setScreen(new ConfirmChatLinkScreen(this::confirmLink, PuzzleCore.updateURL, true));
|
||||||
|
} else {
|
||||||
|
Util.getOperatingSystem().open(PuzzleCore.updateURL);
|
||||||
|
}
|
||||||
|
cir.setReturnValue(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
54
puzzle-base/src/main/java/net/puzzlemc/core/util/UpdateChecker.java
Executable file
@@ -0,0 +1,54 @@
|
|||||||
|
package net.puzzlemc.core.util;
|
||||||
|
|
||||||
|
import com.google.common.reflect.TypeToken;
|
||||||
|
import com.google.gson.Gson;
|
||||||
|
import net.puzzlemc.core.PuzzleCore;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import org.apache.logging.log4j.Level;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.io.Reader;
|
||||||
|
import java.lang.reflect.Type;
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.*;
|
||||||
|
import java.util.concurrent.CompletableFuture;
|
||||||
|
|
||||||
|
|
||||||
|
public class UpdateChecker {
|
||||||
|
private static final Gson GSON = new Gson();
|
||||||
|
private static final String minecraftVersion = MinecraftClient.getInstance().getGame().getVersion().getId();
|
||||||
|
public static final Logger logger = LogManager.getLogger(PuzzleCore.name);
|
||||||
|
|
||||||
|
public static final Type UPDATE_TYPE_TOKEN = new TypeToken<Map<String, String>>(){}.getType();
|
||||||
|
public static String latestVersion;
|
||||||
|
public static boolean isUpToDate = true;
|
||||||
|
|
||||||
|
public static void init() {
|
||||||
|
CompletableFuture.supplyAsync(() -> {
|
||||||
|
try (Reader reader = new InputStreamReader(new URL(PuzzleCore.UPDATE_CHECKER_URL).openStream())) {
|
||||||
|
return GSON.<Map<String, String>>fromJson(reader, UPDATE_TYPE_TOKEN);
|
||||||
|
} catch (MalformedURLException error) {
|
||||||
|
logger.log(Level.ERROR, "Unable to check for updates because of connection problems: " + error.getMessage());
|
||||||
|
} catch (IOException error) {
|
||||||
|
logger.log(Level.ERROR, "Unable to check for updates because of an I/O Exception: " + error.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}).thenAcceptAsync(versionMap -> {
|
||||||
|
if (versionMap != null && versionMap.containsKey(minecraftVersion)) {
|
||||||
|
latestVersion = versionMap.get(minecraftVersion);
|
||||||
|
if (!latestVersion.equals(PuzzleCore.version)) {
|
||||||
|
isUpToDate = false;
|
||||||
|
logger.log(Level.INFO, "There is a newer version of "+ PuzzleCore.name +" available: " + latestVersion);
|
||||||
|
logger.log(Level.INFO, "Please update immediately!");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logger.log(Level.WARN, "A problem with the database occurred, could not check for updates.");
|
||||||
|
}
|
||||||
|
}, MinecraftClient.getInstance());
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
puzzle-base/src/main/resources/assets/puzzle/icon.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
40
puzzle-base/src/main/resources/fabric.mod.json
Executable file
@@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": 1,
|
||||||
|
"id": "puzzle-base",
|
||||||
|
"version": "${version}",
|
||||||
|
|
||||||
|
"name": "Puzzle Base",
|
||||||
|
"description": "Shared code between all Puzzle modules",
|
||||||
|
"authors": [
|
||||||
|
"PuzzleMC",
|
||||||
|
"Motschen"
|
||||||
|
],
|
||||||
|
"contact": {
|
||||||
|
"homepage": "https://www.midnightdust.eu/",
|
||||||
|
"sources": "https://github.com/TeamMidnightDust/Puzzle",
|
||||||
|
"issues": "https://github.com/TeamMidnightDust/Puzzle/issues"
|
||||||
|
},
|
||||||
|
|
||||||
|
"license": "MIT",
|
||||||
|
"icon": "assets/puzzle/icon.png",
|
||||||
|
|
||||||
|
"environment": "client",
|
||||||
|
"entrypoints": {
|
||||||
|
"client": [
|
||||||
|
"net.puzzlemc.core.PuzzleCore"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"custom": {
|
||||||
|
"modmenu": {
|
||||||
|
"parent": "puzzle"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"mixins": [
|
||||||
|
"puzzle-base.mixins.json"
|
||||||
|
],
|
||||||
|
|
||||||
|
"depends": {
|
||||||
|
"fabric": "*"
|
||||||
|
}
|
||||||
|
}
|
||||||
12
puzzle-base/src/main/resources/puzzle-base.mixins.json
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"required": true,
|
||||||
|
"package": "net.puzzlemc.core.mixin",
|
||||||
|
"compatibilityLevel": "JAVA_17",
|
||||||
|
"client": [
|
||||||
|
"MixinTitleScreen",
|
||||||
|
"MixinDebugHud"
|
||||||
|
],
|
||||||
|
"injectors": {
|
||||||
|
"defaultRequire": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
59
puzzle-gui/build.gradle
Executable file
@@ -0,0 +1,59 @@
|
|||||||
|
archivesBaseName = "puzzle-gui"
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven { url "https://maven.terraformersmc.com/releases" }
|
||||||
|
maven {
|
||||||
|
name = 'AperLambda'
|
||||||
|
url = 'https://aperlambda.github.io/maven'
|
||||||
|
}
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
name 'Gegy'
|
||||||
|
url 'https://maven.gegy.dev'
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
url = "https://api.modrinth.com/maven"
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
url "https://www.cursemaven.com"
|
||||||
|
content {
|
||||||
|
includeGroup "curse.maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
name = 'JitPack'
|
||||||
|
url 'https://jitpack.io'
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
url "https://maven.shedaniel.me/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api project(":puzzle-base")
|
||||||
|
api project(":puzzle-splashscreen")
|
||||||
|
|
||||||
|
modImplementation "dev.lambdaurora:spruceui:${project.spruceui_version}"
|
||||||
|
modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||||
|
|
||||||
|
modImplementation ("com.terraformersmc:modmenu:${project.mod_menu_version}")
|
||||||
|
modImplementation ("maven.modrinth:cull-leaves:${project.cull_leaves_version}")
|
||||||
|
modImplementation ("maven.modrinth:lambdynamiclights:${project.ldl_version}")
|
||||||
|
modImplementation ("maven.modrinth:lambdabettergrass:${project.lbg_version}")
|
||||||
|
modImplementation ("maven.modrinth:iris:${project.iris_version}")
|
||||||
|
modImplementation ("maven.modrinth:cit-resewn:${project.cit_resewn_version}")
|
||||||
|
modImplementation ("maven.modrinth:colormatic:${project.colormatic_version}")
|
||||||
|
modImplementation ("maven.modrinth:borderless-mining:${project.borderless_mining_version}")
|
||||||
|
modImplementation ("maven.modrinth:dynamic-fps:${project.dynamic_fps_version}")
|
||||||
|
modImplementation ("maven.modrinth:entitytexturefeatures:${project.entitytexturefeatures_version}")
|
||||||
|
modImplementation ("maven.modrinth:cem:${project.cem_version}")
|
||||||
|
modImplementation "com.gitlab.Lortseam:completeconfig:${project.complete_config_version}"
|
||||||
|
|
||||||
|
modImplementation("org.aperlambda:lambdajcommon:1.8.1") {
|
||||||
|
exclude group: 'com.google.code.gson'
|
||||||
|
exclude group: 'com.google.guava'
|
||||||
|
}
|
||||||
|
modImplementation ("maven.modrinth:continuity:${project.continuity_version}") {
|
||||||
|
exclude module: "modmenu"
|
||||||
|
}
|
||||||
|
}
|
||||||
27
puzzle-gui/src/main/java/net/puzzlemc/gui/IrisCompat.java
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
package net.puzzlemc.gui;
|
||||||
|
|
||||||
|
import eu.midnightdust.lib.util.MidnightColorUtil;
|
||||||
|
import net.fabricmc.loader.api.FabricLoader;
|
||||||
|
import net.irisshaders.iris.api.v0.IrisApi;
|
||||||
|
import net.irisshaders.iris.api.v0.IrisApiConfig;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
import net.minecraft.text.Style;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.puzzlemc.gui.screen.widget.PuzzleWidget;
|
||||||
|
|
||||||
|
public class IrisCompat {
|
||||||
|
public static void init() {
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("iris")) {
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.of("Iris")));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("iris.puzzle.option.enableShaders"), (button) -> button.setMessage(IrisApi.getInstance().getConfig().areShadersEnabled() ? PuzzleClient.YES : PuzzleClient.NO), (button) -> {
|
||||||
|
IrisApiConfig irisConfig = IrisApi.getInstance().getConfig();
|
||||||
|
irisConfig.setShadersEnabledAndApply(!irisConfig.areShadersEnabled());
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("options.iris.shaderPackSelection.title"), (button) -> button.setMessage(Text.literal("➥ ").append(Text.translatable("iris.puzzle.option.open").setStyle(Style.EMPTY.withColor(MidnightColorUtil.radialRainbow(0.5f, 1).getRGB())))), (button) -> {
|
||||||
|
MinecraftClient client = MinecraftClient.getInstance();
|
||||||
|
client.setScreen((Screen) IrisApi.getInstance().openMainIrisScreenObj(client.currentScreen));
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
35
puzzle-gui/src/main/java/net/puzzlemc/gui/PuzzleApi.java
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
package net.puzzlemc.gui;
|
||||||
|
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.puzzlemc.gui.screen.widget.PuzzleWidget;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class PuzzleApi {
|
||||||
|
private static Logger LOGGER = LogManager.getLogger("puzzle-gui");
|
||||||
|
|
||||||
|
public static List<PuzzleWidget> GRAPHICS_OPTIONS = new ArrayList<>();
|
||||||
|
public static List<PuzzleWidget> MISC_OPTIONS = new ArrayList<>();
|
||||||
|
public static List<PuzzleWidget> PERFORMANCE_OPTIONS = new ArrayList<>();
|
||||||
|
public static List<PuzzleWidget> RESOURCE_OPTIONS = new ArrayList<>();
|
||||||
|
|
||||||
|
public static void addToGraphicsOptions(PuzzleWidget button) {
|
||||||
|
GRAPHICS_OPTIONS.add(button);
|
||||||
|
if (PuzzleConfig.debugMessages) LOGGER.info(button.descriptionText.getContent().toString() + " -> Graphics Options");
|
||||||
|
}
|
||||||
|
public static void addToMiscOptions(PuzzleWidget button) {
|
||||||
|
MISC_OPTIONS.add(button);
|
||||||
|
if (PuzzleConfig.debugMessages) LOGGER.info(button.descriptionText.getContent().toString() + " -> Misc Options");
|
||||||
|
}
|
||||||
|
public static void addToPerformanceOptions(PuzzleWidget button) {
|
||||||
|
PERFORMANCE_OPTIONS.add(button);
|
||||||
|
if (PuzzleConfig.debugMessages) LOGGER.info(button.descriptionText.getContent().toString() + "- > Performance Options");
|
||||||
|
}
|
||||||
|
public static void addToResourceOptions(PuzzleWidget button) {
|
||||||
|
RESOURCE_OPTIONS.add(button);
|
||||||
|
if (PuzzleConfig.debugMessages) LOGGER.info(button.descriptionText.getContent().toString() + " -> Resource Options");
|
||||||
|
}
|
||||||
|
}
|
||||||
309
puzzle-gui/src/main/java/net/puzzlemc/gui/PuzzleClient.java
Executable file
@@ -0,0 +1,309 @@
|
|||||||
|
package net.puzzlemc.gui;
|
||||||
|
|
||||||
|
import dev.lambdaurora.lambdabettergrass.LBGConfig;
|
||||||
|
import dev.lambdaurora.lambdabettergrass.LambdaBetterGrass;
|
||||||
|
import dev.lambdaurora.lambdynlights.DynamicLightsConfig;
|
||||||
|
import dev.lambdaurora.lambdynlights.LambDynLights;
|
||||||
|
import dynamicfps.DynamicFPSConfig;
|
||||||
|
import dynamicfps.DynamicFPSMod;
|
||||||
|
import eu.midnightdust.core.MidnightLibClient;
|
||||||
|
import eu.midnightdust.cullleaves.config.CullLeavesConfig;
|
||||||
|
import io.github.kvverti.colormatic.Colormatic;
|
||||||
|
import io.github.kvverti.colormatic.ColormaticConfigController;
|
||||||
|
import link.infra.borderlessmining.config.ConfigHandler;
|
||||||
|
import me.pepperbell.continuity.client.config.ContinuityConfig;
|
||||||
|
import me.pepperbell.continuity.client.config.Option;
|
||||||
|
import net.dorianpb.cem.internal.config.CemConfig;
|
||||||
|
import net.dorianpb.cem.internal.config.CemConfigFairy;
|
||||||
|
import net.dorianpb.cem.internal.config.CemOptions;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.puzzlemc.gui.mixin.CemConfigAccessor;
|
||||||
|
import net.puzzlemc.gui.screen.widget.PuzzleWidget;
|
||||||
|
import net.fabricmc.api.ClientModInitializer;
|
||||||
|
import net.fabricmc.loader.api.FabricLoader;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.minecraft.util.Formatting;
|
||||||
|
import net.puzzlemc.splashscreen.PuzzleSplashScreen;
|
||||||
|
import shcm.shsupercm.fabric.citresewn.config.CITResewnConfig;
|
||||||
|
import traben.entity_texture_features.ETFApi;
|
||||||
|
import traben.entity_texture_features.config.ETFConfig;
|
||||||
|
import io.github.kvverti.colormatic.ColormaticConfig;
|
||||||
|
|
||||||
|
public class PuzzleClient implements ClientModInitializer {
|
||||||
|
|
||||||
|
public final static String id = "puzzle";
|
||||||
|
public static final Text YES = Text.translatable("gui.yes").formatted(Formatting.GREEN);
|
||||||
|
public static final Text NO = Text.translatable("gui.no").formatted(Formatting.RED);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onInitializeClient() {
|
||||||
|
MidnightLibClient.hiddenMods.add("puzzle");
|
||||||
|
MinecraftClient client = MinecraftClient.getInstance();
|
||||||
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.of("Puzzle")));
|
||||||
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.option.check_for_updates"), (button) -> button.setMessage(PuzzleConfig.checkUpdates ? YES : NO), (button) -> {
|
||||||
|
PuzzleConfig.checkUpdates = !PuzzleConfig.checkUpdates;
|
||||||
|
PuzzleConfig.write(id);
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.option.show_version_info"), (button) -> button.setMessage(PuzzleConfig.showPuzzleInfo ? YES : NO), (button) -> {
|
||||||
|
PuzzleConfig.showPuzzleInfo = !PuzzleConfig.showPuzzleInfo;
|
||||||
|
PuzzleConfig.write(id);
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.midnightconfig.title"), (button) -> button.setMessage(Text.of("OPEN")), (button) -> {
|
||||||
|
client.setScreen(PuzzleConfig.getScreen(client.currentScreen, "puzzle"));
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Puzzle")));
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("puzzle-splashscreen") && !PuzzleConfig.disabledIntegrations.contains("puzzle-splashscreen")) {
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.resourcepack_splash_screen"), (button) -> button.setMessage(PuzzleConfig.resourcepackSplashScreen ? YES : NO), (button) -> {
|
||||||
|
PuzzleConfig.resourcepackSplashScreen = !PuzzleConfig.resourcepackSplashScreen;
|
||||||
|
PuzzleConfig.write(id);
|
||||||
|
PuzzleSplashScreen.resetColors();
|
||||||
|
MinecraftClient.getInstance().getTextureManager().registerTexture(PuzzleSplashScreen.LOGO, new PuzzleSplashScreen.LogoTexture(PuzzleSplashScreen.LOGO));
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("puzzle-models") && !PuzzleConfig.disabledIntegrations.contains("puzzle-models")) {
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.unlimited_model_rotations"), (button) -> button.setMessage(PuzzleConfig.unlimitedRotations ? YES : NO), (button) -> {
|
||||||
|
PuzzleConfig.unlimitedRotations = !PuzzleConfig.unlimitedRotations;
|
||||||
|
PuzzleConfig.write(id);
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.bigger_custom_models"), (button) -> button.setMessage(PuzzleConfig.biggerModels ? YES : NO), (button) -> {
|
||||||
|
PuzzleConfig.biggerModels = !PuzzleConfig.biggerModels;
|
||||||
|
PuzzleConfig.write(id);
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("cullleaves") && !PuzzleConfig.disabledIntegrations.contains("cullleaves")) {
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.of("CullLeaves")));
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("cullleaves.puzzle.option.enabled"), (button) -> button.setMessage(CullLeavesConfig.enabled ? YES : NO), (button) -> {
|
||||||
|
CullLeavesConfig.enabled = !CullLeavesConfig.enabled;
|
||||||
|
CullLeavesConfig.write("cullleaves");
|
||||||
|
MinecraftClient.getInstance().worldRenderer.reload();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("colormatic") && !PuzzleConfig.disabledIntegrations.contains("colormatic")) {
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Colormatic")));
|
||||||
|
ColormaticConfig colormaticConfig = Colormatic.config();
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.clearSky"), (button) -> button.setMessage(colormaticConfig.clearSky ? YES : NO), (button) -> {
|
||||||
|
colormaticConfig.clearSky = !colormaticConfig.clearSky;
|
||||||
|
ColormaticConfigController.persist(colormaticConfig);
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.clearVoid"), (button) -> button.setMessage(colormaticConfig.clearVoid ? YES : NO), (button) -> {
|
||||||
|
colormaticConfig.clearVoid = !colormaticConfig.clearVoid;
|
||||||
|
ColormaticConfigController.persist(colormaticConfig);
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.blendSkyLight"), (button) -> button.setMessage(colormaticConfig.blendSkyLight ? YES : NO), (button) -> {
|
||||||
|
colormaticConfig.blendSkyLight = !colormaticConfig.blendSkyLight;
|
||||||
|
ColormaticConfigController.persist(colormaticConfig);
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("colormatic.config.option.flickerBlockLight"), (button) -> button.setMessage(colormaticConfig.flickerBlockLight ? YES : NO), (button) -> {
|
||||||
|
colormaticConfig.flickerBlockLight = !colormaticConfig.flickerBlockLight;
|
||||||
|
ColormaticConfigController.persist(colormaticConfig);
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100, Text.translatable("colormatic.config.option.relativeBlockLightIntensity"),
|
||||||
|
() -> (int) (100*(1.0 - colormaticConfig.relativeBlockLightIntensityExponent / -16.0)),
|
||||||
|
(button) -> button.setMessage(Text.translatable("colormatic.config.option.relativeBlockLightIntensity")
|
||||||
|
.append(": ")
|
||||||
|
.append(Text.literal(String.valueOf((int)(100 * Math.exp(ColormaticConfig.scaled(colormaticConfig.relativeBlockLightIntensityExponent))))).append("%"))),
|
||||||
|
(slider) -> {
|
||||||
|
try {
|
||||||
|
colormaticConfig.relativeBlockLightIntensityExponent = ((1.00 - ((slider.getInt())/100f)) * -16.0);
|
||||||
|
ColormaticConfigController.persist(colormaticConfig);
|
||||||
|
}
|
||||||
|
catch (NumberFormatException ignored) {}
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("dynamicfps") && !PuzzleConfig.disabledIntegrations.contains("dynamicfps")) {
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.of("Dynamic FPS")));
|
||||||
|
DynamicFPSConfig fpsConfig = DynamicFPSMod.config;
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("config.dynamicfps.reduce_when_unfocused"), (button) -> button.setMessage(fpsConfig.reduceFPSWhenUnfocused ? YES : NO), (button) -> {
|
||||||
|
fpsConfig.reduceFPSWhenUnfocused = !fpsConfig.reduceFPSWhenUnfocused;
|
||||||
|
fpsConfig.save();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 60,Text.translatable("config.dynamicfps.unfocused_fps"), () -> fpsConfig.unfocusedFPS,
|
||||||
|
(button) -> button.setMessage(Text.of(fpsConfig.unfocusedFPS + " FPS")),
|
||||||
|
(slider) -> {
|
||||||
|
try {
|
||||||
|
fpsConfig.unfocusedFPS = slider.getInt();
|
||||||
|
}
|
||||||
|
catch (NumberFormatException ignored) {}
|
||||||
|
finally {fpsConfig.save();}
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("config.dynamicfps.restore_when_hovered"), (button) -> button.setMessage(fpsConfig.restoreFPSWhenHovered ? YES : NO), (button) -> {
|
||||||
|
fpsConfig.restoreFPSWhenHovered = !fpsConfig.restoreFPSWhenHovered;
|
||||||
|
fpsConfig.save();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.translatable("config.dynamicfps.run_gc_on_unfocus"), (button) -> button.setMessage(fpsConfig.runGCOnUnfocus ? YES : NO), (button) -> {
|
||||||
|
fpsConfig.runGCOnUnfocus = !fpsConfig.runGCOnUnfocus;
|
||||||
|
fpsConfig.save();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 100,Text.translatable("config.dynamicfps.unfocused_volume"), () -> ((Number)(fpsConfig.unfocusedVolumeMultiplier * 100)).intValue(),
|
||||||
|
(button) -> button.setMessage(Text.of(((Number)(fpsConfig.unfocusedVolumeMultiplier * 100)).intValue() + "%")),
|
||||||
|
(slider) -> {
|
||||||
|
try {
|
||||||
|
fpsConfig.unfocusedVolumeMultiplier = ((Number)slider.getInt()).floatValue() / 100;
|
||||||
|
}
|
||||||
|
catch (NumberFormatException ignored) {}
|
||||||
|
finally {fpsConfig.save();}
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(0, 100,Text.translatable("config.dynamicfps.hidden_volume"), () -> ((Number)(fpsConfig.hiddenVolumeMultiplier * 100)).intValue(),
|
||||||
|
(button) -> button.setMessage(Text.of(((Number)(fpsConfig.hiddenVolumeMultiplier * 100)).intValue() + "%")),
|
||||||
|
(slider) -> {
|
||||||
|
try {
|
||||||
|
fpsConfig.hiddenVolumeMultiplier = ((Number)slider.getInt()).floatValue() / 100;
|
||||||
|
}
|
||||||
|
catch (NumberFormatException ignored) {}
|
||||||
|
finally {fpsConfig.save();}
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("borderlessmining") && !PuzzleConfig.disabledIntegrations.contains("borderlessmining")) {
|
||||||
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.of("Borderless Mining")));
|
||||||
|
ConfigHandler bmConfig = ConfigHandler.getInstance();
|
||||||
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("config.borderlessmining.general.enabled"), (button) -> button.setMessage(bmConfig.isEnabledOrPending() ? YES : NO), (button) -> {
|
||||||
|
bmConfig.setEnabledPending(!bmConfig.isEnabledOrPending());
|
||||||
|
bmConfig.save();
|
||||||
|
}));
|
||||||
|
if (MinecraftClient.IS_SYSTEM_MAC) {
|
||||||
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("config.borderlessmining.general.enabledmac"), (button) -> button.setMessage(bmConfig.enableMacOS ? YES : NO), (button) -> {
|
||||||
|
bmConfig.enableMacOS = !bmConfig.enableMacOS;
|
||||||
|
bmConfig.setEnabledPending(bmConfig.isEnabled());
|
||||||
|
bmConfig.save();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("iris") && !PuzzleConfig.disabledIntegrations.contains("iris")) {
|
||||||
|
IrisCompat.init();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public static boolean lateInitDone = false;
|
||||||
|
public static void lateInit() { // Some mods are initialized after Puzzle, so we can't access them in our ClientModInitializer
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("lambdynlights") && !PuzzleConfig.disabledIntegrations.contains("lambdynlights")) {
|
||||||
|
DynamicLightsConfig ldlConfig = LambDynLights.get().config;
|
||||||
|
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.of("LambDynamicLights")));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdynlights.option.mode"), (button) -> button.setMessage(ldlConfig.getDynamicLightsMode().getTranslatedText()), (button) -> ldlConfig.setDynamicLightsMode(ldlConfig.getDynamicLightsMode().next())));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.entities")), (button) -> button.setMessage(ldlConfig.getEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getEntitiesLightSource().set(!ldlConfig.getEntitiesLightSource().get())));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.block_entities")), (button) -> button.setMessage(ldlConfig.getBlockEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getBlockEntitiesLightSource().set(!ldlConfig.getBlockEntitiesLightSource().get())));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("entity.minecraft.creeper")), (button) -> button.setMessage(ldlConfig.getCreeperLightingMode().getTranslatedText()), (button) -> ldlConfig.setCreeperLightingMode(ldlConfig.getCreeperLightingMode().next())));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("block.minecraft.tnt")), (button) -> button.setMessage(ldlConfig.getTntLightingMode().getTranslatedText()), (button) -> ldlConfig.setTntLightingMode(ldlConfig.getTntLightingMode().next())));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.water_sensitive_check")), (button) -> button.setMessage(ldlConfig.getWaterSensitiveCheck().get() ? YES : NO), (button) -> ldlConfig.getWaterSensitiveCheck().set(!ldlConfig.getWaterSensitiveCheck().get())));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("citresewn") && !PuzzleConfig.disabledIntegrations.contains("citresewn") && CITResewnConfig.INSTANCE != null) {
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("CIT Resewn")));
|
||||||
|
CITResewnConfig citConfig = CITResewnConfig.INSTANCE;
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.enabled.title"), (button) -> button.setMessage(citConfig.enabled ? YES : NO), (button) -> {
|
||||||
|
citConfig.enabled = !citConfig.enabled;
|
||||||
|
citConfig.write();
|
||||||
|
MinecraftClient.getInstance().reloadResources();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.mute_errors.title"), (button) -> button.setMessage(citConfig.mute_errors ? YES : NO), (button) -> {
|
||||||
|
citConfig.mute_errors = !citConfig.mute_errors;
|
||||||
|
citConfig.write();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.mute_warns.title"), (button) -> button.setMessage(citConfig.mute_warns ? YES : NO), (button) -> {
|
||||||
|
citConfig.mute_warns = !citConfig.mute_warns;
|
||||||
|
citConfig.write();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.broken_paths.title"), (button) -> button.setMessage(citConfig.broken_paths ? YES : NO), (button) -> {
|
||||||
|
citConfig.broken_paths = !citConfig.broken_paths;
|
||||||
|
citConfig.write();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100,Text.translatable("config.citresewn.cache_ms.title"), () -> citConfig.cache_ms,
|
||||||
|
(button) -> button.setMessage(message(citConfig)),
|
||||||
|
(slider) -> {
|
||||||
|
try {
|
||||||
|
citConfig.cache_ms = slider.getInt();
|
||||||
|
}
|
||||||
|
catch (NumberFormatException ignored) {}
|
||||||
|
citConfig.write();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("lambdabettergrass") && !PuzzleConfig.disabledIntegrations.contains("lambdabettergrass")) {
|
||||||
|
LBGConfig lbgConfig = LambdaBetterGrass.get().config;
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.of("LambdaBetterGrass")));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdabettergrass.option.mode"), (button) -> button.setMessage(lbgConfig.getMode().getTranslatedText()), (button) -> lbgConfig.setMode(lbgConfig.getMode().next())));
|
||||||
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdabettergrass.option.better_snow"), (button) -> button.setMessage(lbgConfig.hasBetterLayer() ? YES : NO), (button) -> lbgConfig.setBetterLayer(!lbgConfig.hasBetterLayer())));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("cem") && FabricLoader.getInstance().isModLoaded("completeconfig") && !PuzzleConfig.disabledIntegrations.contains("cem")) {
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Custom Entity Models")));
|
||||||
|
CemConfig cemConfig = (CemConfig) CemConfigFairy.getConfig();
|
||||||
|
CemOptions cemOptions = CemConfigFairy.getConfig();
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_optifine_folder"), (button) -> button.setMessage(cemConfig.useOptifineFolder() ? YES : NO), (button) -> {
|
||||||
|
((CemConfigAccessor)cemOptions).setUseOptifineFolder(!cemConfig.useOptifineFolder());
|
||||||
|
cemConfig.save();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_new_model_creation_fix"), (button) -> button.setMessage(cemConfig.useTransparentParts() ? YES : NO), (button) -> {
|
||||||
|
((CemConfigAccessor)cemOptions).setUseModelCreationFix(!cemConfig.useTransparentParts());
|
||||||
|
cemConfig.save();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_old_animations"), (button) -> button.setMessage(cemConfig.useOldAnimations() ? YES : NO), (button) -> {
|
||||||
|
((CemConfigAccessor)cemOptions).setUseOldAnimations(!cemConfig.useOldAnimations());
|
||||||
|
cemConfig.save();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("continuity") && !PuzzleConfig.disabledIntegrations.contains("continuity")) {
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Continuity")));
|
||||||
|
ContinuityConfig contConfig = ContinuityConfig.INSTANCE;
|
||||||
|
contConfig.getOptionMapView().forEach((s, option) -> {
|
||||||
|
if (s.equals("use_manual_culling")) return;
|
||||||
|
try {
|
||||||
|
Option.BooleanOption booleanOption = ((Option.BooleanOption)option);
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("options.continuity."+s), (button) -> button.setMessage(booleanOption.get() ? YES : NO), (button) -> {
|
||||||
|
booleanOption.set(!booleanOption.get());
|
||||||
|
contConfig.onChange();
|
||||||
|
contConfig.save();
|
||||||
|
}));
|
||||||
|
} catch (Exception ignored) {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("entity_texture_features") && !PuzzleConfig.disabledIntegrations.contains("entity_texture_features")) {
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.title")));
|
||||||
|
ETFConfig etfConfig = ETFApi.getETFConfigObject;
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.enable_custom_textures.title"), (button) -> button.setMessage(etfConfig.enableCustomTextures ? YES : NO), (button) -> {
|
||||||
|
etfConfig.enableCustomTextures = !etfConfig.enableCustomTextures;
|
||||||
|
ETFApi.saveETFConfigChangesAndResetETF();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.enable_emissive_textures.title"), (button) -> button.setMessage(etfConfig.enableEmissiveTextures ? YES : NO), (button) -> {
|
||||||
|
etfConfig.enableEmissiveTextures = !etfConfig.enableEmissiveTextures;
|
||||||
|
ETFApi.saveETFConfigChangesAndResetETF();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.emissive_mode.title"), (button) -> button.setMessage(
|
||||||
|
Text.literal(etfConfig.emissiveRenderMode.toString())), (button) -> {
|
||||||
|
etfConfig.emissiveRenderMode = etfConfig.emissiveRenderMode.next();
|
||||||
|
ETFApi.saveETFConfigChangesAndResetETF();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.blinking_mob_settings.title"), (button) -> button.setMessage(etfConfig.enableBlinking ? YES : NO), (button) -> {
|
||||||
|
etfConfig.enableBlinking = !etfConfig.enableBlinking;
|
||||||
|
ETFApi.saveETFConfigChangesAndResetETF();
|
||||||
|
}));
|
||||||
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.player_skin_features.title"), (button) -> button.setMessage(etfConfig.skinFeaturesEnabled ? YES : NO), (button) -> {
|
||||||
|
etfConfig.skinFeaturesEnabled = !etfConfig.skinFeaturesEnabled;
|
||||||
|
ETFApi.saveETFConfigChangesAndResetETF();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
lateInitDone = true;
|
||||||
|
}
|
||||||
|
public static Text message(CITResewnConfig config) {
|
||||||
|
int ticks = config.cache_ms;
|
||||||
|
if (ticks <= 1) {
|
||||||
|
return (Text.translatable("config.citresewn.cache_ms.ticks." + ticks)).formatted(Formatting.AQUA);
|
||||||
|
} else {
|
||||||
|
Formatting color = Formatting.DARK_RED;
|
||||||
|
if (ticks <= 40) {
|
||||||
|
color = Formatting.RED;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ticks <= 20) {
|
||||||
|
color = Formatting.GOLD;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ticks <= 10) {
|
||||||
|
color = Formatting.DARK_GREEN;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ticks <= 5) {
|
||||||
|
color = Formatting.GREEN;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (Text.translatable("config.citresewn.cache_ms.ticks.any", ticks)).formatted(color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
31
puzzle-gui/src/main/java/net/puzzlemc/gui/config/ModMenuIntegration.java
Executable file
@@ -0,0 +1,31 @@
|
|||||||
|
package net.puzzlemc.gui.config;
|
||||||
|
|
||||||
|
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
|
||||||
|
import com.terraformersmc.modmenu.api.ModMenuApi;
|
||||||
|
import net.puzzlemc.gui.screen.PuzzleOptionsScreen;
|
||||||
|
import net.fabricmc.api.EnvType;
|
||||||
|
import net.fabricmc.api.Environment;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public class ModMenuIntegration implements ModMenuApi {
|
||||||
|
@Override
|
||||||
|
public ConfigScreenFactory<?> getModConfigScreenFactory() {
|
||||||
|
return PuzzleOptionsScreen::new;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Used to set the config screen for all modules //
|
||||||
|
@Override
|
||||||
|
public Map<String, ConfigScreenFactory<?>> getProvidedConfigScreenFactories() {
|
||||||
|
Map<String, ConfigScreenFactory<?>> map = new HashMap<>();
|
||||||
|
map.put("puzzle-gui",PuzzleOptionsScreen::new);
|
||||||
|
map.put("puzzle-blocks",PuzzleOptionsScreen::new);
|
||||||
|
map.put("puzzle-base",PuzzleOptionsScreen::new);
|
||||||
|
map.put("puzzle-models",PuzzleOptionsScreen::new);
|
||||||
|
map.put("puzzle-splashscreen",PuzzleOptionsScreen::new);
|
||||||
|
map.put("puzzle",PuzzleOptionsScreen::new);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
package net.puzzlemc.gui.mixin;
|
||||||
|
|
||||||
|
import net.dorianpb.cem.internal.config.CemConfig;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
||||||
|
|
||||||
|
@Mixin(value = CemConfig.class, remap = false)
|
||||||
|
public interface CemConfigAccessor {
|
||||||
|
@Accessor("use_optifine_folder")
|
||||||
|
void setUseOptifineFolder(boolean value);
|
||||||
|
|
||||||
|
@Accessor("use_new_model_creation_fix")
|
||||||
|
void setUseModelCreationFix(boolean value);
|
||||||
|
|
||||||
|
@Accessor("use_old_animations")
|
||||||
|
void setUseOldAnimations(boolean value);
|
||||||
|
}
|
||||||
37
puzzle-gui/src/main/java/net/puzzlemc/gui/mixin/MixinOptionsScreen.java
Executable file
@@ -0,0 +1,37 @@
|
|||||||
|
package net.puzzlemc.gui.mixin;
|
||||||
|
|
||||||
|
import eu.midnightdust.core.config.MidnightLibConfig;
|
||||||
|
import eu.midnightdust.lib.util.screen.TexturedOverlayButtonWidget;
|
||||||
|
import net.fabricmc.loader.api.FabricLoader;
|
||||||
|
import net.minecraft.util.Identifier;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.puzzlemc.gui.PuzzleClient;
|
||||||
|
import net.puzzlemc.gui.screen.PuzzleOptionsScreen;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
import net.minecraft.client.gui.screen.option.OptionsScreen;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
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.CallbackInfo;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
@Mixin(OptionsScreen.class)
|
||||||
|
public abstract class MixinOptionsScreen extends Screen {
|
||||||
|
private static final Identifier PUZZLE_ICON_TEXTURE = new Identifier(PuzzleClient.id, "textures/gui/puzzle_button.png");
|
||||||
|
|
||||||
|
protected MixinOptionsScreen(Text title) {
|
||||||
|
super(title);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Inject(at = @At("HEAD"), method = "init")
|
||||||
|
private void puzzle$init(CallbackInfo ci) {
|
||||||
|
if (PuzzleConfig.enablePuzzleButton) {
|
||||||
|
int i = 0;
|
||||||
|
if (FabricLoader.getInstance().isModLoaded("lod")) i = i + 358;
|
||||||
|
if (MidnightLibConfig.config_screen_list.equals(MidnightLibConfig.ConfigButton.FALSE)) i = i - 25;
|
||||||
|
this.addDrawableChild(new TexturedOverlayButtonWidget(this.width / 2 - 178 + i, this.height / 6 - 12, 20, 20, 0, 0, 20, PUZZLE_ICON_TEXTURE, 32, 64, (buttonWidget) -> (Objects.requireNonNull(this.client)).setScreen(new PuzzleOptionsScreen(this)), Text.translatable("midnightlib.overview.title")));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
48
puzzle-gui/src/main/java/net/puzzlemc/gui/screen/PuzzleOptionsScreen.java
Executable file
@@ -0,0 +1,48 @@
|
|||||||
|
package net.puzzlemc.gui.screen;
|
||||||
|
|
||||||
|
import net.minecraft.screen.ScreenTexts;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.puzzlemc.gui.PuzzleApi;
|
||||||
|
import net.puzzlemc.gui.PuzzleClient;
|
||||||
|
import net.puzzlemc.gui.screen.page.GraphicsPage;
|
||||||
|
import net.puzzlemc.gui.screen.page.MiscPage;
|
||||||
|
import net.puzzlemc.gui.screen.page.PerformancePage;
|
||||||
|
import net.puzzlemc.gui.screen.page.ResourcesPage;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
import net.minecraft.client.gui.widget.ButtonWidget;
|
||||||
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
public class PuzzleOptionsScreen extends Screen {
|
||||||
|
|
||||||
|
public PuzzleOptionsScreen(Screen parent) {
|
||||||
|
super(Text.translatable("puzzle.screen.title"));
|
||||||
|
this.parent = parent;
|
||||||
|
}
|
||||||
|
private final Screen parent;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void init() {
|
||||||
|
super.init();
|
||||||
|
if (!PuzzleClient.lateInitDone) PuzzleClient.lateInit();
|
||||||
|
GraphicsPage graphicsPage = new GraphicsPage(this);
|
||||||
|
MiscPage miscPage = new MiscPage(this);
|
||||||
|
PerformancePage performancePage = new PerformancePage(this);
|
||||||
|
ResourcesPage resourcesPage = new ResourcesPage(this);
|
||||||
|
|
||||||
|
if (!PuzzleApi.GRAPHICS_OPTIONS.isEmpty()) this.addDrawableChild(new ButtonWidget(this.width / 2 - 155, this.height / 6 + 48 - 6, 150, 20, graphicsPage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).setScreen(graphicsPage)));
|
||||||
|
if (!PuzzleApi.RESOURCE_OPTIONS.isEmpty()) this.addDrawableChild(new ButtonWidget(this.width / 2 + 5, this.height / 6 + 48 - 6, 150, 20, resourcesPage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).setScreen(resourcesPage)));
|
||||||
|
if (!PuzzleApi.PERFORMANCE_OPTIONS.isEmpty()) this.addDrawableChild(new ButtonWidget(this.width / 2 - 155, this.height / 6 + 72 - 6, 150, 20, performancePage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).setScreen(performancePage)));
|
||||||
|
if (!PuzzleApi.MISC_OPTIONS.isEmpty()) this.addDrawableChild(new ButtonWidget(this.width / 2 + 5, this.height / 6 + 72 - 6, 150, 20, miscPage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).setScreen(miscPage)));
|
||||||
|
this.addDrawableChild(new ButtonWidget(this.width / 2 - 100, this.height / 6 + 168, 200, 20, ScreenTexts.DONE, (button) -> Objects.requireNonNull(client).setScreen(parent)));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
|
||||||
|
this.renderBackground(matrices);
|
||||||
|
|
||||||
|
super.render(matrices, mouseX, mouseY, delta);
|
||||||
|
drawCenteredText(matrices, textRenderer, title, width/2, 15, 0xFFFFFF);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
package net.puzzlemc.gui.screen.page;
|
||||||
|
|
||||||
|
import net.minecraft.screen.ScreenTexts;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.puzzlemc.gui.screen.widget.PuzzleOptionListWidget;
|
||||||
|
import net.puzzlemc.gui.screen.widget.PuzzleWidget;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
import net.minecraft.client.gui.widget.ButtonWidget;
|
||||||
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
public abstract class AbstractPuzzleOptionsPage extends Screen {
|
||||||
|
public PuzzleOptionListWidget list;
|
||||||
|
private final List<PuzzleWidget> options;
|
||||||
|
public List<Text> tooltip = null;
|
||||||
|
|
||||||
|
public AbstractPuzzleOptionsPage(Screen parent, Text title, List<PuzzleWidget> options) {
|
||||||
|
super(title);
|
||||||
|
this.parent = parent;
|
||||||
|
this.options = options;
|
||||||
|
}
|
||||||
|
private final Screen parent;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void init() {
|
||||||
|
this.list = new PuzzleOptionListWidget(this.client, this.width, this.height, 32, this.height - 32, 25);
|
||||||
|
list.addAll(options);
|
||||||
|
this.addSelectableChild(this.list);
|
||||||
|
|
||||||
|
super.init();
|
||||||
|
|
||||||
|
this.addDrawableChild(new ButtonWidget(this.width / 2 - 100, this.height - 28, 200, 20, ScreenTexts.DONE, (button) -> Objects.requireNonNull(client).setScreen(parent)));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
|
||||||
|
this.renderBackground(matrices);
|
||||||
|
if (client != null && client.world != null) this.list.setRenderBackground(false);
|
||||||
|
this.list.render(matrices, mouseX, mouseY, delta);
|
||||||
|
|
||||||
|
drawCenteredText(matrices, textRenderer, title, width/2, 15, 0xFFFFFF);
|
||||||
|
super.render(matrices, mouseX, mouseY, delta);
|
||||||
|
if (tooltip != null) {
|
||||||
|
if (this.list.getFocused() != null && (this.list.getHoveredEntry() == null || this.list.getHoveredEntry().button == null || !this.list.getHoveredEntry().button.isMouseOver(mouseX, mouseY))) {
|
||||||
|
renderTooltip(matrices, tooltip, this.list.getFocused().getX() + this.list.getFocused().getWidth(), this.list.getFocused().getY() + (this.list.getFocused().getHeight() * 2));
|
||||||
|
}
|
||||||
|
else renderTooltip(matrices, tooltip, mouseX, mouseY);
|
||||||
|
}
|
||||||
|
tooltip = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
12
puzzle-gui/src/main/java/net/puzzlemc/gui/screen/page/GraphicsPage.java
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
package net.puzzlemc.gui.screen.page;
|
||||||
|
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.puzzlemc.gui.PuzzleApi;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
|
||||||
|
public class GraphicsPage extends AbstractPuzzleOptionsPage {
|
||||||
|
|
||||||
|
public GraphicsPage(Screen parent) {
|
||||||
|
super(parent, Text.translatable("puzzle.page.graphics"), PuzzleApi.GRAPHICS_OPTIONS);
|
||||||
|
}
|
||||||
|
}
|
||||||
12
puzzle-gui/src/main/java/net/puzzlemc/gui/screen/page/MiscPage.java
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
package net.puzzlemc.gui.screen.page;
|
||||||
|
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.puzzlemc.gui.PuzzleApi;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
|
||||||
|
public class MiscPage extends AbstractPuzzleOptionsPage {
|
||||||
|
|
||||||
|
public MiscPage(Screen parent) {
|
||||||
|
super(parent, Text.translatable("puzzle.page.misc"), PuzzleApi.MISC_OPTIONS);
|
||||||
|
}
|
||||||
|
}
|
||||||
12
puzzle-gui/src/main/java/net/puzzlemc/gui/screen/page/PerformancePage.java
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
package net.puzzlemc.gui.screen.page;
|
||||||
|
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.puzzlemc.gui.PuzzleApi;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
|
||||||
|
public class PerformancePage extends AbstractPuzzleOptionsPage {
|
||||||
|
|
||||||
|
public PerformancePage(Screen parent) {
|
||||||
|
super(parent, Text.translatable("puzzle.page.performance"), PuzzleApi.PERFORMANCE_OPTIONS);
|
||||||
|
}
|
||||||
|
}
|
||||||
12
puzzle-gui/src/main/java/net/puzzlemc/gui/screen/page/ResourcesPage.java
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
package net.puzzlemc.gui.screen.page;
|
||||||
|
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.puzzlemc.gui.PuzzleApi;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
|
||||||
|
public class ResourcesPage extends AbstractPuzzleOptionsPage {
|
||||||
|
|
||||||
|
public ResourcesPage(Screen parent) {
|
||||||
|
super(parent, Text.translatable("puzzle.page.resources"), PuzzleApi.RESOURCE_OPTIONS);
|
||||||
|
}
|
||||||
|
}
|
||||||
5
puzzle-gui/src/main/java/net/puzzlemc/gui/screen/widget/ButtonType.java
Executable file
@@ -0,0 +1,5 @@
|
|||||||
|
package net.puzzlemc.gui.screen.widget;
|
||||||
|
|
||||||
|
public enum ButtonType {
|
||||||
|
TEXT, BUTTON, SLIDER, TEXT_FIELD
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package eu.midnightdust.puzzle.screen.widget;
|
package net.puzzlemc.gui.screen.widget;
|
||||||
|
|
||||||
import net.minecraft.client.gui.widget.ButtonWidget;
|
import net.minecraft.client.gui.widget.ButtonWidget;
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
@@ -0,0 +1,129 @@
|
|||||||
|
package net.puzzlemc.gui.screen.widget;
|
||||||
|
|
||||||
|
import net.fabricmc.api.EnvType;
|
||||||
|
import net.fabricmc.api.Environment;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.client.font.TextRenderer;
|
||||||
|
import net.minecraft.client.gui.Element;
|
||||||
|
import net.minecraft.client.gui.Selectable;
|
||||||
|
import net.minecraft.client.gui.widget.ClickableWidget;
|
||||||
|
import net.minecraft.client.gui.widget.ElementListWidget;
|
||||||
|
import net.minecraft.client.resource.language.I18n;
|
||||||
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.minecraft.text.TranslatableTextContent;
|
||||||
|
import net.puzzlemc.gui.screen.page.AbstractPuzzleOptionsPage;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public class PuzzleOptionListWidget extends ElementListWidget<PuzzleOptionListWidget.ButtonEntry> {
|
||||||
|
TextRenderer textRenderer;
|
||||||
|
|
||||||
|
public PuzzleOptionListWidget(MinecraftClient minecraftClient, int i, int j, int k, int l, int m) {
|
||||||
|
super(minecraftClient, i, j, k, l, m);
|
||||||
|
this.centerListVertically = false;
|
||||||
|
textRenderer = minecraftClient.textRenderer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addButton(ClickableWidget button, Text text) {
|
||||||
|
this.addEntry(ButtonEntry.create(button, text));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addAll(List<PuzzleWidget> buttons) {
|
||||||
|
for (PuzzleWidget button : buttons) {
|
||||||
|
if (button.buttonType == ButtonType.TEXT) {
|
||||||
|
this.addButton(null, button.descriptionText);
|
||||||
|
} else if (button.buttonType == ButtonType.BUTTON) {
|
||||||
|
this.addButton(new PuzzleButtonWidget(this.width / 2 + 25, 0, 150, 20, button.buttonTextAction, button.onPress), button.descriptionText);
|
||||||
|
} else if (button.buttonType == ButtonType.SLIDER) {
|
||||||
|
this.addButton(new PuzzleSliderWidget(button.min, button.max, this.width / 2 + 25, 0, 150, 20, button.defaultSliderValue.getAsInt(), button.buttonTextAction, button.changeSliderValue), button.descriptionText);
|
||||||
|
} else if (button.buttonType == ButtonType.TEXT_FIELD) {
|
||||||
|
this.addButton(new PuzzleTextFieldWidget(textRenderer, this.width / 2 + 25, 0, 150, 20, button.setTextValue, button.changeTextValue), button.descriptionText);
|
||||||
|
} else
|
||||||
|
LogManager.getLogger("Puzzle").warn("Button " + button + " is missing the buttonType variable. This shouldn't happen!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getRowWidth() {
|
||||||
|
return 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int getScrollbarPositionX() {
|
||||||
|
return super.getScrollbarPositionX() + 60;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ButtonEntry getHoveredEntry() {
|
||||||
|
return super.getHoveredEntry();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class ButtonEntry extends ElementListWidget.Entry<ButtonEntry> {
|
||||||
|
private static final TextRenderer textRenderer = MinecraftClient.getInstance().textRenderer;
|
||||||
|
private List<ClickableWidget> buttons = new ArrayList<>();
|
||||||
|
public final ClickableWidget button;
|
||||||
|
public final Text text;
|
||||||
|
private MinecraftClient client = MinecraftClient.getInstance();
|
||||||
|
|
||||||
|
private ButtonEntry(ClickableWidget button, Text text) {
|
||||||
|
if (button != null)
|
||||||
|
this.buttons.add(button);
|
||||||
|
this.button = button;
|
||||||
|
this.text = text;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ButtonEntry create(ClickableWidget button, Text text) {
|
||||||
|
return new ButtonEntry(button, text);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void render(MatrixStack matrices, int index, int y, int x, int entryWidth, int entryHeight, int mouseX, int mouseY, boolean hovered, float tickDelta) {
|
||||||
|
if (button != null) {
|
||||||
|
button.y = y;
|
||||||
|
button.render(matrices, mouseX, mouseY, tickDelta);
|
||||||
|
}
|
||||||
|
if (button == null) drawCenteredText(matrices,textRenderer, Text.literal("------ ").append(text).append(" ------"),x + 200,y+5,0xFFFFFF);
|
||||||
|
else drawTextWithShadow(matrices,textRenderer, text,x+15,y+5,0xFFFFFF);
|
||||||
|
|
||||||
|
if (!(client.currentScreen instanceof AbstractPuzzleOptionsPage page)) return;
|
||||||
|
if (button != null && (button.isMouseOver(mouseX, mouseY) || ((page.list.getHoveredEntry() == null || page.list.getHoveredEntry().button == null || !page.list.getHoveredEntry().button.isMouseOver(mouseX, mouseY)) && button.isFocused())) && text.getContent() instanceof TranslatableTextContent content) {
|
||||||
|
String key = null;
|
||||||
|
if (I18n.hasTranslation(content.getKey() + ".tooltip")) key = content.getKey() + ".tooltip";
|
||||||
|
else if (I18n.hasTranslation(content.getKey() + ".desc")) key = content.getKey() + ".desc";
|
||||||
|
if (key == null && content.getKey().endsWith(".title")) {
|
||||||
|
String strippedContent = content.getKey().substring(0, content.getKey().length()-6);
|
||||||
|
if (I18n.hasTranslation(strippedContent + ".tooltip")) key = strippedContent + ".tooltip";
|
||||||
|
else if (I18n.hasTranslation(strippedContent + ".desc")) key = strippedContent + ".desc";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (key != null) {
|
||||||
|
List<Text> list = new ArrayList<>();
|
||||||
|
for (String str : I18n.translate(key).split("\n"))
|
||||||
|
list.add(Text.literal(str));
|
||||||
|
page.tooltip = list;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public int getY() {
|
||||||
|
return button.y;
|
||||||
|
}
|
||||||
|
public int getX() {
|
||||||
|
return button.x;
|
||||||
|
}
|
||||||
|
public int getHeight() {
|
||||||
|
return button.getHeight();
|
||||||
|
}
|
||||||
|
public int getWidth() {
|
||||||
|
return button.getWidth();
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<? extends Element> children() {
|
||||||
|
return buttons;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<? extends Selectable> selectableChildren() {
|
||||||
|
return buttons;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
package net.puzzlemc.gui.screen.widget;
|
||||||
|
|
||||||
|
import net.minecraft.client.gui.widget.SliderWidget;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
|
||||||
|
public class PuzzleSliderWidget extends SliderWidget {
|
||||||
|
private final int min;
|
||||||
|
private final int max;
|
||||||
|
private final PuzzleWidget.TextAction setTextAction;
|
||||||
|
private final PuzzleWidget.ChangeSliderValueAction changeAction;
|
||||||
|
|
||||||
|
public PuzzleSliderWidget(int min, int max, int x, int y, int width, int height, float defaultValue, PuzzleWidget.TextAction setTextAction, PuzzleWidget.ChangeSliderValueAction changeAction) {
|
||||||
|
super(x,y,width,height,Text.of(""),(defaultValue-min) / (max - min));
|
||||||
|
|
||||||
|
this.min = min;
|
||||||
|
this.max = max;
|
||||||
|
|
||||||
|
this.setTextAction = setTextAction;
|
||||||
|
this.changeAction = changeAction;
|
||||||
|
this.updateMessage();
|
||||||
|
}
|
||||||
|
public int getInt() {
|
||||||
|
int difference = max - min;
|
||||||
|
int r = (int) (value * difference);
|
||||||
|
return r + min;
|
||||||
|
}
|
||||||
|
public void setInt(int v) {
|
||||||
|
value = value / v - value * min;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void updateMessage() {
|
||||||
|
this.setTextAction.setTitle(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void applyValue() {
|
||||||
|
this.changeAction.onChange(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
package net.puzzlemc.gui.screen.widget;
|
||||||
|
|
||||||
|
import net.minecraft.client.font.TextRenderer;
|
||||||
|
import net.minecraft.client.gui.widget.TextFieldWidget;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
|
||||||
|
public class PuzzleTextFieldWidget extends TextFieldWidget {
|
||||||
|
private final PuzzleWidget.SetTextValueAction setValueAction;
|
||||||
|
private final PuzzleWidget.ChangeTextValueAction change;
|
||||||
|
|
||||||
|
public PuzzleTextFieldWidget(TextRenderer textRenderer, int x, int y, int width, int height, PuzzleWidget.SetTextValueAction setValue, PuzzleWidget.ChangeTextValueAction change) {
|
||||||
|
super(textRenderer, x, y, width, height, Text.of(""));
|
||||||
|
this.setValueAction = setValue;
|
||||||
|
this.change = change;
|
||||||
|
setValueAction.setTextValue(this);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void write(String text) {
|
||||||
|
super.write(text);
|
||||||
|
this.change.onChange(this);
|
||||||
|
setValueAction.setTextValue(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
84
puzzle-gui/src/main/java/net/puzzlemc/gui/screen/widget/PuzzleWidget.java
Executable file
@@ -0,0 +1,84 @@
|
|||||||
|
package net.puzzlemc.gui.screen.widget;
|
||||||
|
|
||||||
|
import net.fabricmc.api.EnvType;
|
||||||
|
import net.fabricmc.api.Environment;
|
||||||
|
import net.minecraft.client.gui.widget.ButtonWidget;
|
||||||
|
import net.minecraft.client.gui.widget.ClickableWidget;
|
||||||
|
import net.minecraft.client.gui.widget.TextFieldWidget;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
|
||||||
|
import java.util.function.IntSupplier;
|
||||||
|
|
||||||
|
public class PuzzleWidget {
|
||||||
|
public ButtonType buttonType;
|
||||||
|
public int min;
|
||||||
|
public int max;
|
||||||
|
public Text descriptionText;
|
||||||
|
public TextAction buttonTextAction;
|
||||||
|
public ButtonWidget.PressAction onPress;
|
||||||
|
public PuzzleWidget.SetTextValueAction setTextValue;
|
||||||
|
public IntSupplier defaultSliderValue;
|
||||||
|
public PuzzleWidget.ChangeTextValueAction changeTextValue;
|
||||||
|
public PuzzleWidget.ChangeSliderValueAction changeSliderValue;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Puzzle Text Widget Container
|
||||||
|
* @param descriptionText The text you want to display.
|
||||||
|
*/
|
||||||
|
public PuzzleWidget(Text descriptionText) {
|
||||||
|
this.buttonType = ButtonType.TEXT;
|
||||||
|
this.descriptionText = descriptionText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Puzzle Button Widget Container
|
||||||
|
* @param descriptionText Tells the user what the option does.
|
||||||
|
* @param getTitle Function to set the text on the button.
|
||||||
|
* @param onPress Function to call when the user presses the button.
|
||||||
|
*/
|
||||||
|
public PuzzleWidget(Text descriptionText, PuzzleWidget.TextAction getTitle, ButtonWidget.PressAction onPress) {
|
||||||
|
this.buttonType = ButtonType.BUTTON;
|
||||||
|
this.descriptionText = descriptionText;
|
||||||
|
this.buttonTextAction = getTitle;
|
||||||
|
this.onPress = onPress;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Puzzle Slider Widget Container
|
||||||
|
*/
|
||||||
|
public PuzzleWidget(int min, int max, Text descriptionText, IntSupplier defaultSliderValue, PuzzleWidget.TextAction setTextAction, PuzzleWidget.ChangeSliderValueAction changeAction) {
|
||||||
|
this.buttonType = ButtonType.SLIDER;
|
||||||
|
this.min = min;
|
||||||
|
this.max = max;
|
||||||
|
this.descriptionText = descriptionText;
|
||||||
|
this.defaultSliderValue = defaultSliderValue;
|
||||||
|
this.buttonTextAction = setTextAction;
|
||||||
|
this.changeSliderValue = changeAction;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Puzzle Text Field Widget Container (WIP - Doesn't work)
|
||||||
|
*/
|
||||||
|
public PuzzleWidget(int min, int max, Text descriptionText, PuzzleWidget.SetTextValueAction setValue, ChangeTextValueAction changeAction) {
|
||||||
|
this.buttonType = ButtonType.TEXT_FIELD;
|
||||||
|
this.min = min;
|
||||||
|
this.max = max;
|
||||||
|
this.descriptionText = descriptionText;
|
||||||
|
this.setTextValue = setValue;
|
||||||
|
this.changeTextValue = changeAction;
|
||||||
|
}
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public interface ChangeTextValueAction {
|
||||||
|
void onChange(TextFieldWidget textField);
|
||||||
|
}
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public interface ChangeSliderValueAction {
|
||||||
|
void onChange(PuzzleSliderWidget slider);
|
||||||
|
}
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public interface SetTextValueAction {
|
||||||
|
void setTextValue(TextFieldWidget textField);
|
||||||
|
}
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public interface TextAction {
|
||||||
|
void setTitle(ClickableWidget button);
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
puzzle-gui/src/main/resources/assets/puzzle/icon.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 179 B |
48
puzzle-gui/src/main/resources/fabric.mod.json
Executable file
@@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": 1,
|
||||||
|
"id": "puzzle-gui",
|
||||||
|
"version": "${version}",
|
||||||
|
|
||||||
|
"name": "Puzzle GUI",
|
||||||
|
"description": "Unites optifine replacement mods in a clean & vanilla-style gui",
|
||||||
|
"authors": [
|
||||||
|
"PuzzleMC",
|
||||||
|
"Motschen"
|
||||||
|
],
|
||||||
|
"contact": {
|
||||||
|
"homepage": "https://www.midnightdust.eu/",
|
||||||
|
"sources": "https://github.com/TeamMidnightDust/Puzzle",
|
||||||
|
"issues": "https://github.com/TeamMidnightDust/Puzzle/issues"
|
||||||
|
},
|
||||||
|
|
||||||
|
"license": "MIT",
|
||||||
|
"icon": "assets/puzzle/icon.png",
|
||||||
|
|
||||||
|
"environment": "client",
|
||||||
|
"entrypoints": {
|
||||||
|
"client": [
|
||||||
|
"net.puzzlemc.gui.PuzzleClient"
|
||||||
|
],
|
||||||
|
"modmenu": [
|
||||||
|
"net.puzzlemc.gui.config.ModMenuIntegration"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"custom": {
|
||||||
|
"modmenu": {
|
||||||
|
"parent": "puzzle"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"mixins": [
|
||||||
|
"puzzle-gui.mixins.json"
|
||||||
|
],
|
||||||
|
|
||||||
|
"depends": {
|
||||||
|
"fabric": "*",
|
||||||
|
"midnightlib": "*"
|
||||||
|
},
|
||||||
|
"breaks": {
|
||||||
|
"citresewn": "<=1.0.0+1.18.2",
|
||||||
|
"entity_texture_features": "<3.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
12
puzzle-gui/src/main/resources/puzzle-gui.mixins.json
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"required": true,
|
||||||
|
"package": "net.puzzlemc.gui.mixin",
|
||||||
|
"compatibilityLevel": "JAVA_17",
|
||||||
|
"client": [
|
||||||
|
"MixinOptionsScreen",
|
||||||
|
"CemConfigAccessor"
|
||||||
|
],
|
||||||
|
"injectors": {
|
||||||
|
"defaultRequire": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
14
puzzle-models/build.gradle
Executable file
@@ -0,0 +1,14 @@
|
|||||||
|
archivesBaseName = "puzzle-models"
|
||||||
|
|
||||||
|
loom {
|
||||||
|
accessWidenerPath = file("src/main/resources/puzzle-models.accesswidener")
|
||||||
|
}
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url = "https://api.modrinth.com/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
api project(":puzzle-base")
|
||||||
|
modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
package net.puzzlemc.models.mixin;
|
||||||
|
|
||||||
|
import com.google.gson.JsonObject;
|
||||||
|
import com.google.gson.JsonParseException;
|
||||||
|
import net.minecraft.client.render.model.json.ModelElement;
|
||||||
|
import net.minecraft.util.JsonHelper;
|
||||||
|
import net.minecraft.util.math.Vec3f;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
||||||
|
|
||||||
|
@Mixin(ModelElement.Deserializer.class)
|
||||||
|
public abstract class MixinModelElementDeserializer {
|
||||||
|
@Shadow protected abstract Vec3f deserializeVec3f(JsonObject object, String name);
|
||||||
|
|
||||||
|
@Inject(at = @At("HEAD"),method = "deserializeRotationAngle", cancellable = true)
|
||||||
|
private void puzzle$deserializeRotationAngle(JsonObject object, CallbackInfoReturnable<Float> cir) {
|
||||||
|
if (PuzzleConfig.unlimitedRotations) {
|
||||||
|
float angle = JsonHelper.getFloat(object, "angle");
|
||||||
|
cir.setReturnValue(angle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@Inject(at = @At("HEAD"),method = "deserializeTo", cancellable = true)
|
||||||
|
private void puzzle$deserializeTo(JsonObject object, CallbackInfoReturnable<Vec3f> cir) {
|
||||||
|
if (PuzzleConfig.biggerModels) {
|
||||||
|
Vec3f vec3f = this.deserializeVec3f(object, "to");
|
||||||
|
if (!(vec3f.getX() < -32.0F) && !(vec3f.getY() < -32.0F) && !(vec3f.getZ() < -32.0F) && !(vec3f.getX() > 48.0F) && !(vec3f.getY() > 48.0F) && !(vec3f.getZ() > 48.0F)) {
|
||||||
|
cir.setReturnValue(vec3f);
|
||||||
|
} else {
|
||||||
|
throw new JsonParseException("'to' specifier exceeds the allowed boundaries: " + vec3f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@Inject(at = @At("HEAD"),method = "deserializeFrom", cancellable = true)
|
||||||
|
private void puzzle$deserializeFrom(JsonObject object, CallbackInfoReturnable<Vec3f> cir) {
|
||||||
|
if (PuzzleConfig.biggerModels) {
|
||||||
|
Vec3f vec3f = this.deserializeVec3f(object, "from");
|
||||||
|
if (!(vec3f.getX() < -32.0F) && !(vec3f.getY() < -32.0F) && !(vec3f.getZ() < -32.0F) && !(vec3f.getX() > 48.0F) && !(vec3f.getY() > 48.0F) && !(vec3f.getZ() > 48.0F)) {
|
||||||
|
cir.setReturnValue(vec3f);
|
||||||
|
} else {
|
||||||
|
throw new JsonParseException("'from' specifier exceeds the allowed boundaries: " + vec3f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
puzzle-models/src/main/resources/assets/puzzle/icon.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
35
puzzle-models/src/main/resources/fabric.mod.json
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": 1,
|
||||||
|
"id": "puzzle-models",
|
||||||
|
"version": "${version}",
|
||||||
|
|
||||||
|
"name": "Puzzle Models",
|
||||||
|
"description": "Provides more freedom for item and block models!",
|
||||||
|
"authors": [
|
||||||
|
"PuzzleMC",
|
||||||
|
"Motschen"
|
||||||
|
],
|
||||||
|
"contact": {
|
||||||
|
"homepage": "https://www.midnightdust.eu/",
|
||||||
|
"sources": "https://github.com/TeamMidnightDust/Puzzle",
|
||||||
|
"issues": "https://github.com/TeamMidnightDust/Puzzle/issues"
|
||||||
|
},
|
||||||
|
"custom": {
|
||||||
|
"modmenu": {
|
||||||
|
"parent": "puzzle"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"license": "MIT",
|
||||||
|
"icon": "assets/puzzle/icon.png",
|
||||||
|
|
||||||
|
"environment": "client",
|
||||||
|
"accessWidener" : "puzzle-models.accesswidener",
|
||||||
|
"mixins": [
|
||||||
|
"puzzle-models.mixins.json"
|
||||||
|
],
|
||||||
|
|
||||||
|
"depends": {
|
||||||
|
"fabric": "*"
|
||||||
|
}
|
||||||
|
}
|
||||||
2
puzzle-models/src/main/resources/puzzle-models.accesswidener
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
accessWidener v1 named
|
||||||
|
accessible class net/minecraft/client/render/model/json/ModelElement$Deserializer
|
||||||
11
puzzle-models/src/main/resources/puzzle-models.mixins.json
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"required": true,
|
||||||
|
"package": "net.puzzlemc.models.mixin",
|
||||||
|
"compatibilityLevel": "JAVA_17",
|
||||||
|
"client": [
|
||||||
|
"MixinModelElementDeserializer"
|
||||||
|
],
|
||||||
|
"injectors": {
|
||||||
|
"defaultRequire": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
10
puzzle-splashscreen/build.gradle
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
archivesBaseName = "puzzle-splashscreen"
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url = "https://api.modrinth.com/maven"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
api project(":puzzle-base")
|
||||||
|
modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||||
|
}
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
package net.puzzlemc.splashscreen;
|
||||||
|
|
||||||
|
import eu.midnightdust.lib.util.MidnightColorUtil;
|
||||||
|
import net.fabricmc.api.ClientModInitializer;
|
||||||
|
import net.minecraft.client.texture.NativeImageBackedTexture;
|
||||||
|
import net.minecraft.util.Util;
|
||||||
|
import net.minecraft.util.math.ColorHelper;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.fabricmc.api.EnvType;
|
||||||
|
import net.fabricmc.api.Environment;
|
||||||
|
import net.fabricmc.fabric.api.resource.ResourceManagerHelper;
|
||||||
|
import net.fabricmc.fabric.api.resource.SimpleSynchronousResourceReloadListener;
|
||||||
|
import net.fabricmc.loader.api.FabricLoader;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.client.resource.metadata.TextureResourceMetadata;
|
||||||
|
import net.minecraft.client.texture.NativeImage;
|
||||||
|
import net.minecraft.client.texture.ResourceTexture;
|
||||||
|
import net.minecraft.resource.DefaultResourcePack;
|
||||||
|
import net.minecraft.resource.ResourceManager;
|
||||||
|
import net.minecraft.resource.ResourceType;
|
||||||
|
import net.minecraft.util.Identifier;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.nio.file.Paths;
|
||||||
|
import java.nio.file.StandardCopyOption;
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
public class PuzzleSplashScreen implements ClientModInitializer {
|
||||||
|
public static final Identifier LOGO = new Identifier("textures/gui/title/mojangstudios.png");
|
||||||
|
public static final Identifier BACKGROUND = new Identifier("optifine/splash_background.png");
|
||||||
|
public static File CONFIG_PATH = new File(String.valueOf(FabricLoader.getInstance().getConfigDir().resolve(".puzzle_cache")));
|
||||||
|
public static Path LOGO_TEXTURE = Paths.get(CONFIG_PATH + "/mojangstudios.png");
|
||||||
|
public static Path BACKGROUND_TEXTURE = Paths.get(CONFIG_PATH + "/splash_background.png");
|
||||||
|
private static final MinecraftClient client = MinecraftClient.getInstance();
|
||||||
|
private static boolean keepBackground = true;
|
||||||
|
|
||||||
|
public static void resetColors() {
|
||||||
|
PuzzleConfig.backgroundColor = 15675965;
|
||||||
|
PuzzleConfig.progressBarColor = 16777215;
|
||||||
|
PuzzleConfig.progressBarBackgroundColor = 15675965;
|
||||||
|
PuzzleConfig.progressFrameColor = 16777215;
|
||||||
|
PuzzleConfig.disableBlend = false;
|
||||||
|
PuzzleConfig.write("puzzle");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void onInitializeClient() {
|
||||||
|
if (!CONFIG_PATH.exists()) { // Run when config directory is nonexistent //
|
||||||
|
if (CONFIG_PATH.mkdir()) { // Create our custom config directory //
|
||||||
|
if (Util.getOperatingSystem().equals(Util.OperatingSystem.WINDOWS)) {
|
||||||
|
try {
|
||||||
|
Files.setAttribute(CONFIG_PATH.toPath(), "dos:hidden", true);
|
||||||
|
} catch (IOException ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ResourceManagerHelper.get(ResourceType.CLIENT_RESOURCES).registerReloadListener(new SimpleSynchronousResourceReloadListener() {
|
||||||
|
@Override
|
||||||
|
public Identifier getFabricId() {
|
||||||
|
return new Identifier("puzzle", "splash_screen");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void method_14491(ResourceManager manager) {
|
||||||
|
reload(manager);
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void reload(ResourceManager manager) {
|
||||||
|
if (PuzzleConfig.resourcepackSplashScreen) {
|
||||||
|
PuzzleSplashScreen.resetColors();
|
||||||
|
client.getTextureManager().registerTexture(LOGO, new LogoTexture(LOGO));
|
||||||
|
client.getTextureManager().registerTexture(BACKGROUND, new LogoTexture(BACKGROUND));
|
||||||
|
|
||||||
|
manager.findResources("optifine", path -> path.getPath().contains("color.properties")).forEach((id, resource) -> {
|
||||||
|
try (InputStream stream = manager.getResource(id).get().getInputStream()) {
|
||||||
|
Properties properties = new Properties();
|
||||||
|
properties.load(stream);
|
||||||
|
|
||||||
|
if (properties.get("screen.loading") != null) {
|
||||||
|
PuzzleConfig.backgroundColor = MidnightColorUtil.hex2Rgb(properties.get("screen.loading").toString()).getRGB();
|
||||||
|
}
|
||||||
|
if (properties.get("screen.loading.bar") != null) {
|
||||||
|
PuzzleConfig.progressBarBackgroundColor = MidnightColorUtil.hex2Rgb(properties.get("screen.loading.bar").toString()).getRGB();
|
||||||
|
}
|
||||||
|
if (properties.get("screen.loading.progress") != null) {
|
||||||
|
PuzzleConfig.progressBarColor = MidnightColorUtil.hex2Rgb(properties.get("screen.loading.progress").toString()).getRGB();
|
||||||
|
}
|
||||||
|
if (properties.get("screen.loading.outline") != null) {
|
||||||
|
PuzzleConfig.progressFrameColor = MidnightColorUtil.hex2Rgb(properties.get("screen.loading.outline").toString()).getRGB();
|
||||||
|
}
|
||||||
|
if (properties.get("screen.loading.blend") != null) {
|
||||||
|
PuzzleConfig.disableBlend = properties.get("screen.loading.blend").toString().equals("off");
|
||||||
|
PuzzleConfig.progressFrameColor = MidnightColorUtil.hex2Rgb(properties.get("screen.loading.outline").toString()).getRGB();
|
||||||
|
}
|
||||||
|
PuzzleConfig.write("puzzle");
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogManager.getLogger("Puzzle").error("Error occurred while loading color.properties " + id.toString(), e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
manager.findResources("textures", path -> path.getPath().contains("mojangstudios.png")).forEach((id, resource) -> {
|
||||||
|
try (InputStream stream = manager.getResource(id).get().getInputStream()) {
|
||||||
|
Files.copy(stream, LOGO_TEXTURE, StandardCopyOption.REPLACE_EXISTING);
|
||||||
|
InputStream input = new FileInputStream(String.valueOf(PuzzleSplashScreen.LOGO_TEXTURE));
|
||||||
|
client.getTextureManager().registerTexture(LOGO, new NativeImageBackedTexture(NativeImage.read(input)));
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogManager.getLogger("Puzzle").error("Error occurred while loading custom minecraft logo " + id.toString(), e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
manager.findResources("puzzle", path -> path.getPath().contains("splash_background.png")).forEach((id, resource) -> {
|
||||||
|
try (InputStream stream = manager.getResource(id).get().getInputStream()) {
|
||||||
|
Files.copy(stream, BACKGROUND_TEXTURE, StandardCopyOption.REPLACE_EXISTING);
|
||||||
|
InputStream input = new FileInputStream(String.valueOf(PuzzleSplashScreen.BACKGROUND_TEXTURE));
|
||||||
|
client.getTextureManager().registerTexture(BACKGROUND, new NativeImageBackedTexture(NativeImage.read(input)));
|
||||||
|
keepBackground = true;
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogManager.getLogger("Puzzle").error("Error occurred while loading custom splash background " + id.toString(), e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (!keepBackground) {
|
||||||
|
try {
|
||||||
|
Files.delete(BACKGROUND_TEXTURE);
|
||||||
|
} catch (Exception ignored) {}
|
||||||
|
}
|
||||||
|
keepBackground = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public static class LogoTexture extends ResourceTexture {
|
||||||
|
public LogoTexture(Identifier logo) { super(logo); }
|
||||||
|
|
||||||
|
protected TextureData loadTextureData(ResourceManager resourceManager) {
|
||||||
|
MinecraftClient minecraftClient = MinecraftClient.getInstance();
|
||||||
|
DefaultResourcePack defaultResourcePack = minecraftClient.getResourcePackProvider().getPack();
|
||||||
|
try {
|
||||||
|
InputStream inputStream = defaultResourcePack.open(ResourceType.CLIENT_RESOURCES, LOGO);
|
||||||
|
TextureData var6;
|
||||||
|
try {
|
||||||
|
var6 = new TextureData(new TextureResourceMetadata(true, true), NativeImage.read(inputStream));
|
||||||
|
} finally {
|
||||||
|
if (inputStream != null) {
|
||||||
|
inputStream.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return var6;
|
||||||
|
} catch (IOException var18) {
|
||||||
|
return new TextureData(var18);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,115 @@
|
|||||||
|
package net.puzzlemc.splashscreen.mixin;
|
||||||
|
|
||||||
|
import com.mojang.blaze3d.systems.RenderSystem;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.client.gui.screen.Overlay;
|
||||||
|
import net.minecraft.client.gui.screen.SplashOverlay;
|
||||||
|
import net.minecraft.client.render.GameRenderer;
|
||||||
|
import net.minecraft.client.texture.NativeImage;
|
||||||
|
import net.minecraft.client.texture.NativeImageBackedTexture;
|
||||||
|
import net.minecraft.client.util.math.MatrixStack;
|
||||||
|
import net.minecraft.util.Identifier;
|
||||||
|
import net.minecraft.util.Util;
|
||||||
|
import net.minecraft.util.math.MathHelper;
|
||||||
|
import net.puzzlemc.core.config.PuzzleConfig;
|
||||||
|
import net.puzzlemc.splashscreen.PuzzleSplashScreen;
|
||||||
|
import org.spongepowered.asm.mixin.Final;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Shadow;
|
||||||
|
import org.spongepowered.asm.mixin.injection.*;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.util.function.IntSupplier;
|
||||||
|
|
||||||
|
@Mixin(value = SplashOverlay.class, priority = 2000)
|
||||||
|
public abstract class MixinSplashScreen extends Overlay {
|
||||||
|
@Shadow @Final static Identifier LOGO;
|
||||||
|
@Shadow private long reloadCompleteTime;
|
||||||
|
|
||||||
|
@Shadow
|
||||||
|
private static int withAlpha(int color, int alpha) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Shadow @Final private MinecraftClient client;
|
||||||
|
|
||||||
|
@Shadow @Final private boolean reloading;
|
||||||
|
|
||||||
|
@Shadow private long reloadStartTime;
|
||||||
|
|
||||||
|
@Inject(method = "init(Lnet/minecraft/client/MinecraftClient;)V", at = @At("TAIL"))
|
||||||
|
private static void puzzle$initSplashscreen(MinecraftClient client, CallbackInfo ci) { // Load our custom textures at game start //
|
||||||
|
if (PuzzleConfig.resourcepackSplashScreen) {
|
||||||
|
if (PuzzleSplashScreen.LOGO_TEXTURE.toFile().exists()) {
|
||||||
|
try {
|
||||||
|
InputStream input = new FileInputStream(String.valueOf(PuzzleSplashScreen.LOGO_TEXTURE));
|
||||||
|
client.getTextureManager().registerTexture(LOGO, new NativeImageBackedTexture(NativeImage.read(input)));
|
||||||
|
} catch (IOException ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (PuzzleSplashScreen.BACKGROUND_TEXTURE.toFile().exists()) {
|
||||||
|
try {
|
||||||
|
InputStream input = new FileInputStream(String.valueOf(PuzzleSplashScreen.BACKGROUND_TEXTURE));
|
||||||
|
client.getTextureManager().registerTexture(PuzzleSplashScreen.BACKGROUND, new NativeImageBackedTexture(NativeImage.read(input)));
|
||||||
|
} catch (IOException ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@Redirect(method = "render", at = @At(value = "INVOKE", target = "Ljava/util/function/IntSupplier;getAsInt()I"))
|
||||||
|
private int puzzle$modifyBackground(IntSupplier instance) { // Set the Progress Bar Frame Color to our configured value //
|
||||||
|
return (!PuzzleConfig.resourcepackSplashScreen || PuzzleConfig.progressBarBackgroundColor == 15675965) ? instance.getAsInt() : PuzzleConfig.backgroundColor | 255 << 24;
|
||||||
|
}
|
||||||
|
@Inject(method = "render", at = @At(value = "INVOKE", target = "Lcom/mojang/blaze3d/systems/RenderSystem;blendFunc(II)V", shift = At.Shift.AFTER), remap = false)
|
||||||
|
private void puzzle$betterBlend(MatrixStack matrices, int mouseX, int mouseY, float delta, CallbackInfo ci) {
|
||||||
|
if (PuzzleConfig.disableBlend) RenderSystem.defaultBlendFunc();
|
||||||
|
}
|
||||||
|
@Inject(method = "render", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/util/Window;getScaledWidth()I", shift = At.Shift.BEFORE))
|
||||||
|
private void puzzle$renderSplashBackground(MatrixStack matrices, int mouseX, int mouseY, float delta, CallbackInfo ci) {
|
||||||
|
if (Files.exists(PuzzleSplashScreen.BACKGROUND_TEXTURE)) {
|
||||||
|
int width = client.getWindow().getScaledWidth();
|
||||||
|
int height = client.getWindow().getScaledHeight();
|
||||||
|
long l = Util.getMeasuringTimeMs();
|
||||||
|
float f = this.reloadCompleteTime > -1L ? (float)(l - this.reloadCompleteTime) / 1000.0F : -1.0F;
|
||||||
|
float g = this.reloadStartTime> -1L ? (float)(l - this.reloadStartTime) / 500.0F : -1.0F;
|
||||||
|
float s;
|
||||||
|
if (f >= 1.0F)
|
||||||
|
s = 1.0F - MathHelper.clamp(f - 1.0F, 0.0F, 1.0F);
|
||||||
|
else if (reloading)
|
||||||
|
s = MathHelper.clamp(g, 0.0F, 1.0F);
|
||||||
|
else
|
||||||
|
s = 1.0F;
|
||||||
|
RenderSystem.setShaderTexture(0, PuzzleSplashScreen.BACKGROUND);
|
||||||
|
RenderSystem.enableBlend();
|
||||||
|
RenderSystem.blendEquation(32774);
|
||||||
|
RenderSystem.defaultBlendFunc();
|
||||||
|
RenderSystem.setShader(GameRenderer::getPositionTexShader);
|
||||||
|
RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, s);
|
||||||
|
drawTexture(matrices, 0, 0, 0, 0, 0, width, height, width, height);
|
||||||
|
RenderSystem.defaultBlendFunc();
|
||||||
|
RenderSystem.disableBlend();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@Inject(method = "renderProgressBar", at = @At("HEAD"))
|
||||||
|
private void puzzle$addProgressBarBackground(MatrixStack matrices, int minX, int minY, int maxX, int maxY, float opacity, CallbackInfo ci) {
|
||||||
|
RenderSystem.disableBlend();
|
||||||
|
if (!PuzzleConfig.resourcepackSplashScreen || PuzzleConfig.progressBarBackgroundColor == 15675965) return;
|
||||||
|
long l = Util.getMeasuringTimeMs();
|
||||||
|
float f = this.reloadCompleteTime > -1L ? (float)(l - this.reloadCompleteTime) / 1000.0F : -1.0F;
|
||||||
|
int m = MathHelper.ceil((1.0F - MathHelper.clamp(f - 1.0F, 0.0F, 1.0F)) * 255.0F);
|
||||||
|
fill(matrices, minX, minY, maxX, maxY, withAlpha(PuzzleConfig.progressBarBackgroundColor, m));
|
||||||
|
}
|
||||||
|
|
||||||
|
@ModifyArg(method = "renderProgressBar", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/screen/SplashOverlay;fill(Lnet/minecraft/client/util/math/MatrixStack;IIIII)V"), index = 5)
|
||||||
|
private int puzzle$modifyProgressFrame(int color) { // Set the Progress Bar Frame Color to our configured value //
|
||||||
|
return (!PuzzleConfig.resourcepackSplashScreen || PuzzleConfig.progressFrameColor == 16777215) ? color : PuzzleConfig.progressFrameColor | 255 << 24;
|
||||||
|
}
|
||||||
|
@ModifyArg(method = "renderProgressBar", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/screen/SplashOverlay;fill(Lnet/minecraft/client/util/math/MatrixStack;IIIII)V", ordinal = 0), index = 5)
|
||||||
|
private int puzzle$modifyProgressColor(int color) { // Set the Progress Bar Color to our configured value //
|
||||||
|
return (!PuzzleConfig.resourcepackSplashScreen || PuzzleConfig.progressBarColor == 16777215) ? color : PuzzleConfig.progressBarColor | 255 << 24;
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
puzzle-splashscreen/src/main/resources/assets/puzzle/icon.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
40
puzzle-splashscreen/src/main/resources/fabric.mod.json
Executable file
@@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": 1,
|
||||||
|
"id": "puzzle-splashscreen",
|
||||||
|
"version": "${version}",
|
||||||
|
|
||||||
|
"name": "Puzzle Splash Screen",
|
||||||
|
"description": "Allows resourcepacks to define a custom splash screen",
|
||||||
|
"authors": [
|
||||||
|
"PuzzleMC",
|
||||||
|
"Motschen"
|
||||||
|
],
|
||||||
|
"contact": {
|
||||||
|
"homepage": "https://www.midnightdust.eu/",
|
||||||
|
"sources": "https://github.com/TeamMidnightDust/Puzzle",
|
||||||
|
"issues": "https://github.com/TeamMidnightDust/Puzzle/issues"
|
||||||
|
},
|
||||||
|
|
||||||
|
"license": "MIT",
|
||||||
|
"icon": "assets/puzzle/icon.png",
|
||||||
|
|
||||||
|
"environment": "client",
|
||||||
|
"entrypoints": {
|
||||||
|
"client": [
|
||||||
|
"net.puzzlemc.splashscreen.PuzzleSplashScreen"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"custom": {
|
||||||
|
"modmenu": {
|
||||||
|
"parent": "puzzle"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"mixins": [
|
||||||
|
"puzzle-splashscreen.mixins.json"
|
||||||
|
],
|
||||||
|
|
||||||
|
"depends": {
|
||||||
|
"fabric": "*"
|
||||||
|
}
|
||||||
|
}
|
||||||
11
puzzle-splashscreen/src/main/resources/puzzle-splashscreen.mixins.json
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"required": true,
|
||||||
|
"package": "net.puzzlemc.splashscreen.mixin",
|
||||||
|
"compatibilityLevel": "JAVA_17",
|
||||||
|
"client": [
|
||||||
|
"MixinSplashScreen"
|
||||||
|
],
|
||||||
|
"injectors": {
|
||||||
|
"defaultRequire": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
puzzle-splashscreen_example_pack.zip
Normal file
@@ -1,6 +1,5 @@
|
|||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
|
||||||
maven {
|
maven {
|
||||||
name = 'Fabric'
|
name = 'Fabric'
|
||||||
url = 'https://maven.fabricmc.net/'
|
url = 'https://maven.fabricmc.net/'
|
||||||
@@ -8,3 +7,8 @@ pluginManagement {
|
|||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
include 'puzzle-base'
|
||||||
|
|
||||||
|
include 'puzzle-splashscreen'
|
||||||
|
include 'puzzle-models'
|
||||||
|
include 'puzzle-gui'
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.screen.widget.PuzzleWidget;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class PuzzleApi {
|
|
||||||
public static List<PuzzleWidget> GRAPHICS_OPTIONS = new ArrayList<>();
|
|
||||||
public static List<PuzzleWidget> MISC_OPTIONS = new ArrayList<>();
|
|
||||||
public static List<PuzzleWidget> PERFORMANCE_OPTIONS = new ArrayList<>();
|
|
||||||
public static List<PuzzleWidget> TEXTURE_OPTIONS = new ArrayList<>();
|
|
||||||
|
|
||||||
public static void addToGraphicsOptions(PuzzleWidget button) {GRAPHICS_OPTIONS.add(button);}
|
|
||||||
public static void addToMiscOptions(PuzzleWidget button) {MISC_OPTIONS.add(button);}
|
|
||||||
public static void addToPerformanceOptions(PuzzleWidget button) {PERFORMANCE_OPTIONS.add(button);}
|
|
||||||
public static void addToTextureOptions(PuzzleWidget button) {TEXTURE_OPTIONS.add(button);}
|
|
||||||
}
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle;
|
|
||||||
|
|
||||||
import eu.midnightdust.cullleaves.config.CullLeavesConfig;
|
|
||||||
import eu.midnightdust.puzzle.screen.widget.PuzzleWidget;
|
|
||||||
import me.lambdaurora.lambdabettergrass.LBGConfig;
|
|
||||||
import me.lambdaurora.lambdabettergrass.LambdaBetterGrass;
|
|
||||||
import me.lambdaurora.lambdynlights.DynamicLightsConfig;
|
|
||||||
import me.lambdaurora.lambdynlights.LambDynLights;
|
|
||||||
import net.fabricmc.api.ClientModInitializer;
|
|
||||||
import net.fabricmc.loader.api.FabricLoader;
|
|
||||||
import net.minecraft.client.MinecraftClient;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
import net.minecraft.util.Formatting;
|
|
||||||
import team.chisel.ctm.client.CTMClient;
|
|
||||||
import team.chisel.ctm.client.config.ConfigManager;
|
|
||||||
|
|
||||||
public class PuzzleClient implements ClientModInitializer {
|
|
||||||
|
|
||||||
public static final Text YES = new TranslatableText("gui.yes").formatted(Formatting.GREEN);
|
|
||||||
public static final Text NO = new TranslatableText("gui.no").formatted(Formatting.RED);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onInitializeClient() {
|
|
||||||
if (FabricLoader.getInstance().isModLoaded("cullleaves")) {
|
|
||||||
PuzzleApi.addToPerformanceOptions(new PuzzleWidget(Text.of("Cull Leaves"), (button) -> button.setMessage(CullLeavesConfig.enabled ? YES : NO), (button) -> {
|
|
||||||
CullLeavesConfig.enabled = !CullLeavesConfig.enabled;
|
|
||||||
CullLeavesConfig.write();
|
|
||||||
MinecraftClient.getInstance().worldRenderer.reload();
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
if (FabricLoader.getInstance().isModLoaded("lambdynlights")) {
|
|
||||||
DynamicLightsConfig ldlConfig = LambDynLights.get().config;
|
|
||||||
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode"), (button) -> button.setMessage(ldlConfig.getDynamicLightsMode().getTranslatedText()), (button) -> ldlConfig.setDynamicLightsMode(ldlConfig.getDynamicLightsMode().next())));
|
|
||||||
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode").append(": ").append(new TranslatableText("lambdynlights.option.entities")), (button) -> button.setMessage(ldlConfig.hasEntitiesLightSource() ? YES : NO), (button) -> ldlConfig.setEntitiesLightSource(!ldlConfig.hasEntitiesLightSource())));
|
|
||||||
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode").append(": ").append(new TranslatableText("lambdynlights.option.block_entities")), (button) -> button.setMessage(ldlConfig.hasBlockEntitiesLightSource() ? YES : NO), (button) -> ldlConfig.setBlockEntitiesLightSource(!ldlConfig.hasBlockEntitiesLightSource())));
|
|
||||||
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode").append(": ").append(new TranslatableText("entity.minecraft.creeper")), (button) -> button.setMessage(ldlConfig.getCreeperLightingMode().getTranslatedText()), (button) -> ldlConfig.setCreeperLightingMode(ldlConfig.getCreeperLightingMode().next())));
|
|
||||||
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode").append(": ").append(new TranslatableText("block.minecraft.tnt")), (button) -> button.setMessage(ldlConfig.getTntLightingMode().getTranslatedText()), (button) -> ldlConfig.setTntLightingMode(ldlConfig.getTntLightingMode().next())));
|
|
||||||
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode").append(": ").append(new TranslatableText("lambdynlights.option.water_sensitive")), (button) -> button.setMessage(ldlConfig.hasWaterSensitiveCheck() ? YES : NO), (button) -> ldlConfig.setWaterSensitiveCheck(!ldlConfig.hasWaterSensitiveCheck())));
|
|
||||||
}
|
|
||||||
if (FabricLoader.getInstance().isModLoaded("ctm")) {
|
|
||||||
ConfigManager ctmfConfigManager = CTMClient.getConfigManager();
|
|
||||||
ConfigManager.Config ctmfConfig = CTMClient.getConfigManager().getConfig();
|
|
||||||
PuzzleApi.addToTextureOptions(new PuzzleWidget(new TranslatableText("puzzle.option.ctm"), (button) -> button.setMessage(ctmfConfig.disableCTM ? NO : YES), (button) -> {
|
|
||||||
ctmfConfig.disableCTM = !ctmfConfig.disableCTM;
|
|
||||||
ctmfConfigManager.onConfigChange();
|
|
||||||
}));
|
|
||||||
PuzzleApi.addToTextureOptions(new PuzzleWidget(new TranslatableText("puzzle.option.inside_ctm"), (button) -> button.setMessage(ctmfConfig.connectInsideCTM ? YES : NO), (button) -> {
|
|
||||||
ctmfConfig.connectInsideCTM = !ctmfConfig.connectInsideCTM;
|
|
||||||
ctmfConfigManager.onConfigChange();
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
if (FabricLoader.getInstance().isModLoaded("lambdabettergrass")) {
|
|
||||||
LBGConfig lbgConfig = LambdaBetterGrass.get().config;
|
|
||||||
PuzzleApi.addToTextureOptions(new PuzzleWidget(new TranslatableText("lambdabettergrass.option.mode"), (button) -> button.setMessage(lbgConfig.getMode().getTranslatedText()), (button) -> lbgConfig.setMode(lbgConfig.getMode().next())));
|
|
||||||
PuzzleApi.addToTextureOptions(new PuzzleWidget(new TranslatableText("lambdabettergrass.option.better_snow"), (button) -> button.setMessage(lbgConfig.hasBetterLayer() ? YES : NO), (button) -> lbgConfig.setBetterLayer(!lbgConfig.hasBetterLayer())));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.config;
|
|
||||||
|
|
||||||
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
|
|
||||||
import com.terraformersmc.modmenu.api.ModMenuApi;
|
|
||||||
import eu.midnightdust.puzzle.screen.PuzzleOptionsScreen;
|
|
||||||
import net.fabricmc.api.EnvType;
|
|
||||||
import net.fabricmc.api.Environment;
|
|
||||||
|
|
||||||
@Environment(EnvType.CLIENT)
|
|
||||||
public class ModMenuIntegration implements ModMenuApi {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ConfigScreenFactory<?> getModConfigScreenFactory() {
|
|
||||||
return PuzzleOptionsScreen::new;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.mixin;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.screen.PuzzleOptionsScreen;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.client.gui.screen.options.OptionsScreen;
|
|
||||||
import net.minecraft.client.gui.widget.ButtonWidget;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
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.CallbackInfo;
|
|
||||||
|
|
||||||
@Mixin(OptionsScreen.class)
|
|
||||||
public class MixinOptionsScreen extends Screen {
|
|
||||||
|
|
||||||
protected MixinOptionsScreen(Text title) {
|
|
||||||
super(title);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Inject(at = @At("TAIL"),method = "init")
|
|
||||||
public void init(CallbackInfo ci) {
|
|
||||||
PuzzleOptionsScreen puzzleScreen = new PuzzleOptionsScreen(this);
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 - 155, this.height / 6 + 144 - 6, 150, 20, new TranslatableText("puzzle.screen.title").append("..."), (button) -> {
|
|
||||||
this.client.openScreen(puzzleScreen);
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.screen.page.GraphicsPage;
|
|
||||||
import eu.midnightdust.puzzle.screen.page.MiscPage;
|
|
||||||
import eu.midnightdust.puzzle.screen.page.PerformancePage;
|
|
||||||
import eu.midnightdust.puzzle.screen.page.TexturesPage;
|
|
||||||
import net.coderbot.iris.gui.screen.ShaderPackScreen;
|
|
||||||
import net.fabricmc.loader.api.FabricLoader;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.client.gui.screen.ScreenTexts;
|
|
||||||
import net.minecraft.client.gui.widget.ButtonWidget;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
public class PuzzleOptionsScreen extends Screen {
|
|
||||||
|
|
||||||
public PuzzleOptionsScreen(Screen parent) {
|
|
||||||
super(new TranslatableText("puzzle.screen.title"));
|
|
||||||
this.parent = parent;
|
|
||||||
}
|
|
||||||
private final Screen parent;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void init() {
|
|
||||||
super.init();
|
|
||||||
GraphicsPage graphicsPage = new GraphicsPage(this);
|
|
||||||
MiscPage miscPage = new MiscPage(this);
|
|
||||||
PerformancePage performancePage = new PerformancePage(this);
|
|
||||||
TexturesPage texturesPage = new TexturesPage(this);
|
|
||||||
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 - 155, this.height / 6 + 48 - 6, 150, 20, graphicsPage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).openScreen(graphicsPage)));
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 + 5, this.height / 6 + 48 - 6, 150, 20, texturesPage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).openScreen(texturesPage)));
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 - 155, this.height / 6 + 72 - 6, 150, 20, performancePage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).openScreen(performancePage)));
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 + 5, this.height / 6 + 72 - 6, 150, 20, miscPage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).openScreen(miscPage)));
|
|
||||||
if (FabricLoader.getInstance().isModLoaded("iris")) {
|
|
||||||
try {
|
|
||||||
ShaderPackScreen shaderPackPage = new ShaderPackScreen(this);
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 - 155, this.height / 6 + 96 - 6, 150, 20, shaderPackPage.getTitle().copy().append("..."), (button) -> Objects.requireNonNull(client).openScreen(shaderPackPage)));
|
|
||||||
}
|
|
||||||
catch (Exception | Error ignored) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 - 100, this.height / 6 + 168, 200, 20, ScreenTexts.DONE, (button) -> Objects.requireNonNull(client).openScreen(parent)));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
|
|
||||||
this.renderBackground(matrices);
|
|
||||||
|
|
||||||
super.render(matrices, mouseX, mouseY, delta);
|
|
||||||
drawCenteredText(matrices, textRenderer, title, width/2, 15, 0xFFFFFF);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.page;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.screen.widget.PuzzleOptionListWidget;
|
|
||||||
import eu.midnightdust.puzzle.screen.widget.PuzzleWidget;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.client.gui.screen.ScreenTexts;
|
|
||||||
import net.minecraft.client.gui.widget.ButtonWidget;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Objects;
|
|
||||||
|
|
||||||
public abstract class AbstractPuzzleOptionsPage extends Screen {
|
|
||||||
private PuzzleOptionListWidget list;
|
|
||||||
private final List<PuzzleWidget> options;
|
|
||||||
|
|
||||||
public AbstractPuzzleOptionsPage(Screen parent, TranslatableText title, List<PuzzleWidget> options) {
|
|
||||||
super(title);
|
|
||||||
this.parent = parent;
|
|
||||||
this.options = options;
|
|
||||||
}
|
|
||||||
private final Screen parent;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void init() {
|
|
||||||
this.list = new PuzzleOptionListWidget(this.client, this.width, this.height, 32, this.height - 32, 25);
|
|
||||||
list.addAll(options);
|
|
||||||
this.children.add(this.list);
|
|
||||||
|
|
||||||
super.init();
|
|
||||||
|
|
||||||
this.addButton(new ButtonWidget(this.width / 2 - 100, this.height - 28, 200, 20, ScreenTexts.DONE, (button) -> {
|
|
||||||
Objects.requireNonNull(client).openScreen(parent);
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
|
|
||||||
this.renderBackground(matrices);
|
|
||||||
this.list.render(matrices, mouseX, mouseY, delta);
|
|
||||||
|
|
||||||
drawCenteredText(matrices, textRenderer, title, width/2, 15, 0xFFFFFF);
|
|
||||||
super.render(matrices, mouseX, mouseY, delta);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.page;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.PuzzleApi;
|
|
||||||
import eu.midnightdust.puzzle.screen.page.AbstractPuzzleOptionsPage;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
public class GraphicsPage extends AbstractPuzzleOptionsPage {
|
|
||||||
|
|
||||||
public GraphicsPage(Screen parent) {
|
|
||||||
super(parent, new TranslatableText("puzzle.page.graphics"), PuzzleApi.GRAPHICS_OPTIONS);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.page;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.PuzzleApi;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
public class MiscPage extends AbstractPuzzleOptionsPage {
|
|
||||||
|
|
||||||
public MiscPage(Screen parent) {
|
|
||||||
super(parent, new TranslatableText("puzzle.page.misc"), PuzzleApi.MISC_OPTIONS);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.page;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.PuzzleApi;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
public class PerformancePage extends AbstractPuzzleOptionsPage {
|
|
||||||
|
|
||||||
public PerformancePage(Screen parent) {
|
|
||||||
super(parent, new TranslatableText("puzzle.page.performance"), PuzzleApi.PERFORMANCE_OPTIONS);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.page;
|
|
||||||
|
|
||||||
import eu.midnightdust.puzzle.PuzzleApi;
|
|
||||||
import eu.midnightdust.puzzle.screen.page.AbstractPuzzleOptionsPage;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
public class TexturesPage extends AbstractPuzzleOptionsPage {
|
|
||||||
|
|
||||||
public TexturesPage(Screen parent) {
|
|
||||||
super(parent, new TranslatableText("puzzle.page.textures"), PuzzleApi.TEXTURE_OPTIONS);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.widget;
|
|
||||||
|
|
||||||
public enum ButtonType {
|
|
||||||
BUTTON, SLIDER, TEXT_FIELD
|
|
||||||
}
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.widget;
|
|
||||||
|
|
||||||
import com.google.common.collect.ImmutableMap;
|
|
||||||
import net.fabricmc.api.EnvType;
|
|
||||||
import net.fabricmc.api.Environment;
|
|
||||||
import net.minecraft.client.MinecraftClient;
|
|
||||||
import net.minecraft.client.font.TextRenderer;
|
|
||||||
import net.minecraft.client.gui.Element;
|
|
||||||
import net.minecraft.client.gui.widget.AbstractButtonWidget;
|
|
||||||
import net.minecraft.client.gui.widget.ButtonWidget;
|
|
||||||
import net.minecraft.client.gui.widget.ElementListWidget;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
@Environment(EnvType.CLIENT)
|
|
||||||
public class PuzzleOptionListWidget extends ElementListWidget<PuzzleOptionListWidget.ButtonEntry> {
|
|
||||||
TextRenderer textRenderer;
|
|
||||||
|
|
||||||
public PuzzleOptionListWidget(MinecraftClient minecraftClient, int i, int j, int k, int l, int m) {
|
|
||||||
super(minecraftClient, i, j, k, l, m);
|
|
||||||
this.centerListVertically = false;
|
|
||||||
textRenderer = minecraftClient.textRenderer;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addButton(AbstractButtonWidget button, Text text) {
|
|
||||||
this.addEntry(ButtonEntry.create(button, text));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addAll(List<PuzzleWidget> buttons) {
|
|
||||||
for (int i = 0; i < buttons.size(); ++i) {
|
|
||||||
PuzzleWidget button = buttons.get(i);
|
|
||||||
if (button.buttonType == ButtonType.BUTTON) {
|
|
||||||
this.addButton(new PuzzleButtonWidget(this.width / 2 - 155 + 160, 0, 150, 20, button.buttonTextAction, button.onPress), button.descriptionText);
|
|
||||||
}
|
|
||||||
else if (button.buttonType == ButtonType.SLIDER) {
|
|
||||||
this.addButton(new PuzzleSliderWidget(button.min,button.max,this.width / 2 - 155 + 160, 0, 150, 20, ((TranslatableText) button.buttonText),1), button.descriptionText);
|
|
||||||
}
|
|
||||||
else if (button.buttonType == ButtonType.TEXT_FIELD) {
|
|
||||||
this.addButton(new PuzzleTextFieldWidget(textRenderer,this.width / 2 - 155 + 160, 0, 150, 20,null, button.buttonText), button.descriptionText);
|
|
||||||
}
|
|
||||||
else LogManager.getLogger("Puzzle").warn("Button " + button + " is missing the buttonType variable. This shouldn't happen!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getRowWidth() {
|
|
||||||
return 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected int getScrollbarPositionX() {
|
|
||||||
return super.getScrollbarPositionX() + 32;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Optional<AbstractButtonWidget> getHoveredButton(double mouseX, double mouseY) {
|
|
||||||
for (ButtonEntry buttonEntry : this.children()) {
|
|
||||||
for (AbstractButtonWidget abstractButtonWidget : buttonEntry.buttons) {
|
|
||||||
if (abstractButtonWidget.isMouseOver(mouseX, mouseY)) {
|
|
||||||
return Optional.of(abstractButtonWidget);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return Optional.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ButtonEntry extends ElementListWidget.Entry<ButtonEntry> {
|
|
||||||
private static final TextRenderer textRenderer = MinecraftClient.getInstance().textRenderer;
|
|
||||||
private final List<AbstractButtonWidget> buttons;
|
|
||||||
private final Map<AbstractButtonWidget, Text> buttonsWithText;
|
|
||||||
|
|
||||||
private ButtonEntry(ImmutableMap<AbstractButtonWidget, Text> buttons) {
|
|
||||||
this.buttons = buttons.keySet().asList();
|
|
||||||
this.buttonsWithText = buttons;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ButtonEntry create(AbstractButtonWidget button, Text text) {
|
|
||||||
return new ButtonEntry(ImmutableMap.of(button, text));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void render(MatrixStack matrices, int index, int y, int x, int entryWidth, int entryHeight, int mouseX, int mouseY, boolean hovered, float tickDelta) {
|
|
||||||
this.buttonsWithText.forEach((button, text) -> {
|
|
||||||
button.y = y;
|
|
||||||
button.render(matrices, mouseX, mouseY, tickDelta);
|
|
||||||
drawTextWithShadow(matrices,textRenderer, text,x+15,y+5,0xFFFFFF);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<? extends Element> children() {
|
|
||||||
return buttons;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.widget;
|
|
||||||
|
|
||||||
import net.minecraft.client.gui.widget.SliderWidget;
|
|
||||||
import net.minecraft.text.LiteralText;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
public class PuzzleSliderWidget extends SliderWidget {
|
|
||||||
private final int min;
|
|
||||||
private final double difference;
|
|
||||||
|
|
||||||
public PuzzleSliderWidget(int min, int max, int x, int y, int width, int height, TranslatableText label, double value) {
|
|
||||||
super(x,y,width,height,label,value);
|
|
||||||
this.updateMessage();
|
|
||||||
this.min = min;
|
|
||||||
this.difference = max - min;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void updateMessage() {
|
|
||||||
Text text = new LiteralText((int) (min + this.value * difference) + "");
|
|
||||||
this.setMessage(new TranslatableText("label").append(": ").append((Text) text));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void applyValue() {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.widget;
|
|
||||||
|
|
||||||
import net.minecraft.client.font.TextRenderer;
|
|
||||||
import net.minecraft.client.gui.widget.SliderWidget;
|
|
||||||
import net.minecraft.client.gui.widget.TextFieldWidget;
|
|
||||||
import net.minecraft.text.LiteralText;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
public class PuzzleTextFieldWidget extends TextFieldWidget {
|
|
||||||
private TranslatableText label;
|
|
||||||
|
|
||||||
public PuzzleTextFieldWidget(TextRenderer textRenderer, int x, int y, int width, int height, @Nullable TextFieldWidget copyFrom, Text text) {
|
|
||||||
super(textRenderer, x, y, width, height, text);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
package eu.midnightdust.puzzle.screen.widget;
|
|
||||||
|
|
||||||
import net.fabricmc.api.EnvType;
|
|
||||||
import net.fabricmc.api.Environment;
|
|
||||||
import net.minecraft.client.gui.widget.AbstractButtonWidget;
|
|
||||||
import net.minecraft.client.gui.widget.ButtonWidget;
|
|
||||||
import net.minecraft.text.Text;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
public class PuzzleWidget {
|
|
||||||
public ButtonType buttonType;
|
|
||||||
public int min;
|
|
||||||
public int max;
|
|
||||||
public Text descriptionText;
|
|
||||||
public Text buttonText;
|
|
||||||
public TextAction buttonTextAction;
|
|
||||||
public ButtonWidget.PressAction onPress;
|
|
||||||
public PuzzleWidget.SaveAction onSave;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Puzzle Button Widget Container
|
|
||||||
* @param descriptionText Tells the user what the option does.
|
|
||||||
* @param getTitle Function to set the text on the button.
|
|
||||||
* @param onPress Function to call when the user presses the button.
|
|
||||||
*/
|
|
||||||
public PuzzleWidget(Text descriptionText, PuzzleWidget.TextAction getTitle, ButtonWidget.PressAction onPress) {
|
|
||||||
this.buttonType = ButtonType.BUTTON;
|
|
||||||
this.descriptionText = descriptionText;
|
|
||||||
this.buttonTextAction = getTitle;
|
|
||||||
this.onPress = onPress;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Puzzle Slider Widget Container (WIP - Doesn't work)
|
|
||||||
*/
|
|
||||||
public PuzzleWidget(int min, int max, Text descriptionText, TranslatableText buttonText) {
|
|
||||||
this.buttonType = ButtonType.SLIDER;
|
|
||||||
this.min = min;
|
|
||||||
this.max = max;
|
|
||||||
this.descriptionText = descriptionText;
|
|
||||||
this.buttonText = buttonText;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Puzzle Text Field Widget Container (WIP - Doesn't work)
|
|
||||||
*/
|
|
||||||
public PuzzleWidget(Text descriptionText, Text buttonText) {
|
|
||||||
this.buttonType = ButtonType.TEXT_FIELD;
|
|
||||||
this.descriptionText = descriptionText;
|
|
||||||
this.buttonText = buttonText;
|
|
||||||
}
|
|
||||||
@Environment(EnvType.CLIENT)
|
|
||||||
public interface SaveAction {
|
|
||||||
void onSave(AbstractButtonWidget button);
|
|
||||||
}
|
|
||||||
@Environment(EnvType.CLIENT)
|
|
||||||
public interface TextAction {
|
|
||||||
void setTitle(AbstractButtonWidget button);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
BIN
src/main/resources/assets/puzzle/icon.png
Executable file → Normal file
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
39
src/main/resources/assets/puzzle/lang/de_de.json
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"Ein Update ist verfügbar!",
|
||||||
|
"puzzle.screen.title":"Puzzle Einstellungen",
|
||||||
|
"puzzle.page.graphics":"Grafik Einstellungen",
|
||||||
|
"puzzle.page.resources":"Resourcen Einstellungen",
|
||||||
|
"puzzle.page.performance":"Performance Einstellungen",
|
||||||
|
"puzzle.page.misc":"Sonstige Einstellungen",
|
||||||
|
"puzzle.option.check_for_updates":"Auf Updates überprüfen",
|
||||||
|
"puzzle.option.show_version_info":"Zeige Informationen über Puzzle's Version",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"Nutze Resourcepack-Ladebildschirm",
|
||||||
|
"puzzle.option.better_splash_screen_blend":"Verbessere das Blending des Splash-Screen-Logos",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"Unbegrenzte Modellrotationen",
|
||||||
|
"puzzle.option.bigger_custom_models":"Größere benutzerdefinierte Modelle",
|
||||||
|
"puzzle.midnightconfig.title":"Erweiterte Puzzle Konfiguration",
|
||||||
|
"puzzle.option.check_for_updates.tooltip": "Aktiviert Puzzle's eingebauten Update-Checker",
|
||||||
|
"puzzle.option.show_version_info.tooltip": "Zeigt Informationen über die Version\nvon Puzzle und die Verfügbarkeit von Updates\nauf dem Titelbildschirm und im F3-Menü",
|
||||||
|
"puzzle.option.resourcepack_splash_screen.tooltip": "Ermöglicht Resourcepacks, das Aussehen\ndes Ladebildschirms mit dem\nOptiFine-Format zu verändern",
|
||||||
|
"puzzle.option.better_splash_screen_blend.tooltip": "Ändert die Art des Blending,\ndie für das Logo auf dem Ladebildschirm benutzt wird,\ndamit es besser mit farbigen Logos funktioniert.",
|
||||||
|
"puzzle.option.unlimited_model_rotations.tooltip": "Schaltet volle 360° Rotation für\nbenutzerdefinierte Item-/Blockmodelle frei",
|
||||||
|
"puzzle.option.bigger_custom_models.tooltip": "Erhöht das Größenlimit für\nbenutzerdefinierte Item-/Blockmodelle\nvon 3x3x3 auf 5x5x5",
|
||||||
|
"puzzle.midnightconfig.tooltip": "Optionen für fortgeschrittene Nutzer",
|
||||||
|
|
||||||
|
"cullleaves.puzzle.option.enabled": "Aktiviere Culling für Blätter",
|
||||||
|
"cullleaves.puzzle.option.enabled.tooltip": "Fügt Occlusion Culling für \nBlätter hinzu, was die Leistung des \nSpiels verbessert",
|
||||||
|
"iris.puzzle.option.enableShaders": "Shader aktivieren",
|
||||||
|
"iris.puzzle.option.enableShaders.tooltip": "Legt fest, ob Shader aktiviert werden sollen",
|
||||||
|
"iris.puzzle.option.open": "ÖFFNEN",
|
||||||
|
"options.iris.shaderPackSelection.tooltip": "Öffnet einen Bildschirm, um Shader\nauszuwählen und zu konfigurieren",
|
||||||
|
"lambdabettergrass.option.mode.tooltip": "Verbindet die Seiten von Grasblöcken\nmit anliegenden Grasblöcken",
|
||||||
|
"lambdabettergrass.option.better_snow.tooltip": "Fügt eine rein visuelle Schnee-/Moosschicht\nunter nicht-volle Blöcke hinzu,\nwelche von Schnee/Moos umgeben sind",
|
||||||
|
"config.dynamicfps.reduce_when_unfocused.tooltip": "Reduziert Minecraft's FPS,\nwährend das Spiel nicht im Fokus ist\n(z.B. wenn ein anderes Fenster fokussiert oder das Spiel versteckt ist)\num Strom und Systemressourcen zu sparen",
|
||||||
|
"config.dynamicfps.unfocused_fps.tooltip": "Die Anzahl der Bilder pro Sekunde (FPS)\nmit denen Minecraft rendern\ndarf, wenn es nicht im Fokus ist",
|
||||||
|
"config.dynamicfps.restore_when_hovered.tooltip": "Legt fest, ob die Limitierung\nder FPS aufgehoben werden soll, wenn Minecraft in der Vorschau erscheint\n(z.B. in der Taskleiste oder Dock überfahren wird)",
|
||||||
|
"config.dynamicfps.run_gc_on_unfocus.tooltip": "Lässt einen Garbage Collector laufen,\nwährend Minecraft nicht im Fokus ist\num etwas Arbeitsspeicher (RAM) freizumachen",
|
||||||
|
"config.dynamicfps.unfocused_volume.tooltip": "Die Lautstärke mit der Minecraft\nGeräusche wiedergeben kann, während es nicht im Fokus ist\n(z.B. wenn ein anderes Fenster fokussiert ist)",
|
||||||
|
"config.dynamicfps.hidden_volume.tooltip": "Die Lautstärke mit der Minecraft\nGeräusche wiedergeben kann, während es nicht im Fokus ist\n(z.B. wenn es minimiert, von anderen Fenstern verdeckt\noder auf einem anderen virtuellen Desktop ist)",
|
||||||
|
"entity_texture_features.puzzle.emissive_type.brighter": "§eHeller",
|
||||||
|
"entity_texture_features.puzzle.emissive_type.default": "§6Normal"
|
||||||
|
}
|
||||||
18
src/main/resources/assets/puzzle/lang/el_gr.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"Μια καινούρια έκδοση είναι διαθέσιμη!",
|
||||||
|
"puzzle.screen.title":"Ρυθμίσεις του Puzzle",
|
||||||
|
"puzzle.page.graphics":"Ρυθμίσεις Γραφικών",
|
||||||
|
"puzzle.page.resources":"Ρυθμίσεις Πόρων",
|
||||||
|
"puzzle.page.performance":"Ρυθμίσεις Απόδοσης",
|
||||||
|
"puzzle.page.misc":"Διάφορες Ρυθμίσεις",
|
||||||
|
"puzzle.option.check_for_updates":"Έλεγχος για αναβαθμίσεις",
|
||||||
|
"puzzle.option.show_version_info":"Εμφάνηση έκδοσης του Puzzle",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"Οθόνη φόρτωσης πακέτου πόρων",
|
||||||
|
"puzzle.option.disable_splash_screen_blend":"Μη ανάμηξη λογότυπου οθ. φόρτωσης",
|
||||||
|
"puzzle.option.emissive_textures":"Λαμπρά Είδη",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"Απεριόριστες Περιστροφές Μοντέλων",
|
||||||
|
"puzzle.option.bigger_custom_models":"Μεγαλύτερα Ειδικά Μοντέλα",
|
||||||
|
"puzzle.option.render_layer_overrides":"Εμφάνηση Παρακάμψεων Στρώσεων",
|
||||||
|
"puzzle.midnightconfig.title":"Εξειδηκευμένες Ρυθμίσεις του Puzzle"
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1,9 +1,37 @@
|
|||||||
{
|
{
|
||||||
|
"puzzle.text.update_available":"An update is available!",
|
||||||
"puzzle.screen.title":"Puzzle Settings",
|
"puzzle.screen.title":"Puzzle Settings",
|
||||||
"puzzle.page.graphics":"Graphics Settings",
|
"puzzle.page.graphics":"Graphics Settings",
|
||||||
"puzzle.page.textures":"Texture Settings",
|
"puzzle.page.resources":"Resource Settings",
|
||||||
"puzzle.page.performance":"Performance Settings",
|
"puzzle.page.performance":"Performance Settings",
|
||||||
"puzzle.page.misc":"Miscellaneous Settings",
|
"puzzle.page.misc":"Miscellaneous Settings",
|
||||||
"puzzle.option.ctm":"Connected Textures",
|
"puzzle.option.check_for_updates":"Check for Updates",
|
||||||
"puzzle.option.inside_ctm":"Connect Inside Textures"
|
"puzzle.option.check_for_updates.tooltip":"Enables Puzzle's built-in update checker",
|
||||||
|
"puzzle.option.show_version_info":"Show Puzzle version info",
|
||||||
|
"puzzle.option.show_version_info.tooltip":"Show information about the current\nPuzzle version and update status on\nthe Title Screen and F3 Menu",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"Use resourcepack splash screen",
|
||||||
|
"puzzle.option.resourcepack_splash_screen.tooltip":"Enables resourcepacks to change the look\nof Minecraft's loading/splash\nscreen using the OptiFine format",
|
||||||
|
"puzzle.option.better_splash_screen_blend":"Better splash screen logo blending",
|
||||||
|
"puzzle.option.better_splash_screen_blend.tooltip":"Changes the type of blending used\nby the logo on the splash screen\nto work better with custom colored logos",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"Unlimited Model Rotations",
|
||||||
|
"puzzle.option.unlimited_model_rotations.tooltip":"Unlocks full 360° rotation on custom block/item models",
|
||||||
|
"puzzle.option.bigger_custom_models":"Bigger Custom Models",
|
||||||
|
"puzzle.option.bigger_custom_models.tooltip":"Increases the limit of\ncustom block/item model sizes\nfrom 3x3x3 to 5x5x5",
|
||||||
|
"puzzle.midnightconfig.title":"Puzzle Advanced Config",
|
||||||
|
"puzzle.midnightconfig.tooltip":"Options for advanced users only",
|
||||||
|
|
||||||
|
"cullleaves.puzzle.option.enabled": "Cull Leaves",
|
||||||
|
"cullleaves.puzzle.option.enabled.tooltip": "Enable the culling of leaves to enhance performance",
|
||||||
|
"iris.puzzle.option.enableShaders": "Enable Shaders",
|
||||||
|
"iris.puzzle.option.enableShaders.tooltip": "Whether or not to enable shaderpacks",
|
||||||
|
"iris.puzzle.option.open": "OPEN",
|
||||||
|
"options.iris.shaderPackSelection.tooltip": "Open a screen to select\nshaderpacks and configure them",
|
||||||
|
"lambdabettergrass.option.mode.tooltip": "Makes the sides of\ngrass blocks connect to\nadjacent grass blocks",
|
||||||
|
"lambdabettergrass.option.better_snow.tooltip": "Adds a purely visual snow/moss layer\nto non-full blocks that\nare surrounded by snow/moss",
|
||||||
|
"config.dynamicfps.reduce_when_unfocused.tooltip": "Reduces Minecraft's FPS when unfocused\n(i.e. another window is focused or the game is hidden)\nto save power and system resources",
|
||||||
|
"config.dynamicfps.unfocused_fps.tooltip": "The amount of frames per second\nMinecraft is allowed to\nrender at while unfocused",
|
||||||
|
"config.dynamicfps.restore_when_hovered.tooltip": "Whether or not to stop the\nFPS limiting while Minecraft is previewed\n(i.e. hovered on task bar or dock)",
|
||||||
|
"config.dynamicfps.run_gc_on_unfocus.tooltip": "Run a garbage collector while\nMinecraft is not focused to\nfree up some RAM",
|
||||||
|
"config.dynamicfps.unfocused_volume.tooltip": "The volume the game should play\nsound at while unfocused\n(i.e. another window is selected)",
|
||||||
|
"config.dynamicfps.hidden_volume.tooltip": "The volume the game should play\nsound at while not visible\n(i.e. minimized, covered by other windows\nor on another virtual desktop)"
|
||||||
}
|
}
|
||||||
|
|||||||
17
src/main/resources/assets/puzzle/lang/et_ee.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"Uuendus on saadaval!",
|
||||||
|
"puzzle.screen.title":"Puzzle sätted",
|
||||||
|
"puzzle.page.graphics":"Graafikasätted",
|
||||||
|
"puzzle.page.resources":"Ressursisätted",
|
||||||
|
"puzzle.page.performance":"Jõudlussätted",
|
||||||
|
"puzzle.page.misc":"Muud sätted",
|
||||||
|
"puzzle.option.check_for_updates":"Uuenduste kontroll",
|
||||||
|
"puzzle.option.show_version_info":"Kuva Puzzle versiooniteavet",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"Kasuta ressursipaki laadimiskuva",
|
||||||
|
"puzzle.option.disable_splash_screen_blend":"Keela laadimiskuva logo segunemine",
|
||||||
|
"puzzle.option.emissive_textures":"Hõõguvad tekstuurid",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"Lõpmatud mudelipöörded",
|
||||||
|
"puzzle.option.bigger_custom_models":"Suuremad kohandatud mudelid",
|
||||||
|
"puzzle.option.render_layer_overrides":"Renderduskihi ülekatted",
|
||||||
|
"puzzle.midnightconfig.title":"Puzzle täpsem seadistus"
|
||||||
|
}
|
||||||
17
src/main/resources/assets/puzzle/lang/ko_kr.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"업데이트가 가능합니다!",
|
||||||
|
"puzzle.screen.title":"Puzzle 설정",
|
||||||
|
"puzzle.page.graphics":"그래픽 설정",
|
||||||
|
"puzzle.page.resources":"리소스 설정",
|
||||||
|
"puzzle.page.performance":"성능 설정",
|
||||||
|
"puzzle.page.misc":"기타 설정",
|
||||||
|
"puzzle.option.check_for_updates":"업데이트 확인",
|
||||||
|
"puzzle.option.show_version_info":"Puzzle 버전 정보 보기",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"스플래시 화면에서 리소스팩 사용",
|
||||||
|
"puzzle.option.better_splash_screen_blend":"향상된 스플래시 화면 로고 블렌딩",
|
||||||
|
"puzzle.option.emissive_textures":"방사성 텍스쳐",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"모델 회전 제한없음",
|
||||||
|
"puzzle.option.bigger_custom_models":"향상된 커스텀 모델",
|
||||||
|
"puzzle.option.render_layer_overrides":"렌더링 레이어 재정의",
|
||||||
|
"puzzle.midnightconfig.title":"Puzzle 고급 환경설정"
|
||||||
|
}
|
||||||
17
src/main/resources/assets/puzzle/lang/pl_pl.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"Aktualizacja jest dostępna!",
|
||||||
|
"puzzle.screen.title":"Ustawienia Puzzle",
|
||||||
|
"puzzle.page.graphics":"Ustawienia grafiki",
|
||||||
|
"puzzle.page.resources":"Ustawienia zasobów",
|
||||||
|
"puzzle.page.performance":"Ustawienia wydajności",
|
||||||
|
"puzzle.page.misc":"Różne ustawienia",
|
||||||
|
"puzzle.option.check_for_updates":"Sprawdź aktualizacje",
|
||||||
|
"puzzle.option.show_version_info":"Pokaż informacje o wersji Puzzle",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"Użyj ekranu powitalnego paczek zasobów",
|
||||||
|
"puzzle.option.disable_splash_screen_blend":"Wyłącz mieszanie loga ekranu powitalnego",
|
||||||
|
"puzzle.option.emissive_textures":"Emisyjne tekstury",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"Nielimitowane rotacje modeli",
|
||||||
|
"puzzle.option.bigger_custom_models":"Większe niestandardowe modele",
|
||||||
|
"puzzle.option.render_layer_overrides":"Renderuj nadpisania warstw",
|
||||||
|
"puzzle.midnightconfig.title":"Zaawansowana konfiguracja Puzzle"
|
||||||
|
}
|
||||||
39
src/main/resources/assets/puzzle/lang/ru_ru.json
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"Доступно обновление!",
|
||||||
|
"puzzle.screen.title":"Настройки Puzzle",
|
||||||
|
"puzzle.page.graphics":"Настройки графики",
|
||||||
|
"puzzle.page.resources":"Настройки ресурсов",
|
||||||
|
"puzzle.page.performance":"Производительность",
|
||||||
|
"puzzle.page.misc":"Прочие настройки",
|
||||||
|
"puzzle.option.check_for_updates":"Проверять обновления",
|
||||||
|
"puzzle.option.check_for_updates.tooltip":"Включить встроенную в Puzzle проверку обновлений",
|
||||||
|
"puzzle.option.show_version_info":"Показывать информацию о версии",
|
||||||
|
"puzzle.option.show_version_info.tooltip":"Отображать информацию о текущей версии\nPuzzle и наличии обновлений\nна главном экране и экране отладки",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"Пользовательский экран загрузки",
|
||||||
|
"puzzle.option.resourcepack_splash_screen.tooltip":"Разрешить наборам ресурсов изменять\nвнешний вид экрана загрузки Minecraft,\nиспользуя формат OptiFine",
|
||||||
|
"puzzle.option.better_splash_screen_blend":"Улучшенное смешивание логотипа",
|
||||||
|
"puzzle.option.better_splash_screen_blend.tooltip":"Изменить метод смешивания, используемый\nдля логотипа на экране загрузки,\nчтобы улучшить вид с изменёнными цветами",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"Неограниченные повороты моделей",
|
||||||
|
"puzzle.option.unlimited_model_rotations.tooltip":"Разрешить поворот частей\nпользовательских моделей\nблоков/предметов на 360°",
|
||||||
|
"puzzle.option.bigger_custom_models":"Увеличенный размер моделей",
|
||||||
|
"puzzle.option.bigger_custom_models.tooltip":"Увеличить предельный размер\nпользовательских моделей блоков\nи предметов с 3×3×3 до 5×5×5",
|
||||||
|
"puzzle.midnightconfig.title":"Расширенные настройки Puzzle",
|
||||||
|
"puzzle.midnightconfig.tooltip":"Только для продвинутых пользователей!",
|
||||||
|
|
||||||
|
"cullleaves.puzzle.option.enabled": "Отбраковка листвы",
|
||||||
|
"cullleaves.puzzle.option.enabled.tooltip": "Включить отбраковку блоков листвы\nдля улучшения производительности",
|
||||||
|
"iris.puzzle.option.enableShaders": "Шейдеры",
|
||||||
|
"iris.puzzle.option.enableShaders.tooltip": "Включить выбранный набор шейдеров",
|
||||||
|
"iris.puzzle.option.open": "Выбрать ",
|
||||||
|
"options.iris.shaderPackSelection.tooltip": "Открыть экран переключения\nи настройки наборов шейдеров",
|
||||||
|
"lambdabettergrass.option.mode.tooltip": "Включить соединение текстуры\nтравы у соседних блоков дёрна",
|
||||||
|
"lambdabettergrass.option.better_snow.tooltip": "Добавить имитацию наличия слоя снега\nили мха для неполных блоков, имеющих\nсоответствующее окружение",
|
||||||
|
"config.dynamicfps.reduce_when_unfocused.tooltip": "Уменьшать FPS в Minecraft при переходе в фон\nдля экономии энергии и системных ресурсов\n(когда игра свёрнута или активно другое окно)",
|
||||||
|
"config.dynamicfps.unfocused_fps.tooltip": "Фактическое количество\nкадров в секунду, которое\nMinecraft сможет выводить\nв фоновом режиме",
|
||||||
|
"config.dynamicfps.restore_when_hovered.tooltip": "Отключать ограничение FPS,\nкогда на окно с Minecraft\nнаведён курсор мыши",
|
||||||
|
"config.dynamicfps.run_gc_on_unfocus.tooltip": "Запускать сборщик мусора при\nпереходе игры в фон, чтобы\nосвободить пространство в ОЗУ\n(уменьшает число просадок FPS)",
|
||||||
|
"config.dynamicfps.unfocused_volume.tooltip": "Громкость звука игры в состоянии фона\n(когда активно другое окно)",
|
||||||
|
"config.dynamicfps.hidden_volume.tooltip": "Громкость звука игры в скрытом состоянии\n(когда окно свёрнуто, закрыто другим окном\nили находится на другом рабочем столе)",
|
||||||
|
"entity_texture_features.puzzle.emissive_type.brighter": "§eЯркие",
|
||||||
|
"entity_texture_features.puzzle.emissive_type.default": "§6Обычные"
|
||||||
|
}
|
||||||
17
src/main/resources/assets/puzzle/lang/zh_cn.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"更新可用!",
|
||||||
|
"puzzle.screen.title":"Puzzle 设置",
|
||||||
|
"puzzle.page.graphics":"图像设置",
|
||||||
|
"puzzle.page.resources":"资源设置",
|
||||||
|
"puzzle.page.performance":"性能设置",
|
||||||
|
"puzzle.page.misc":"杂项设置",
|
||||||
|
"puzzle.option.check_for_updates":"检查更新",
|
||||||
|
"puzzle.option.show_version_info":"显示 Puzzle 版本信息",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"使用资源包提供的闪烁标语",
|
||||||
|
"puzzle.option.disable_splash_screen_blend":"禁用闪烁标语闪烁",
|
||||||
|
"puzzle.option.emissive_textures":"发光纹理",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"无限制模型旋转",
|
||||||
|
"puzzle.option.bigger_custom_models":"更大的自定义模型",
|
||||||
|
"puzzle.option.render_layer_overrides":"渲染层覆盖",
|
||||||
|
"puzzle.midnightconfig.title":"Puzzle 高级设置"
|
||||||
|
}
|
||||||
17
src/main/resources/assets/puzzle/lang/zh_tw.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"puzzle.text.update_available":"有新版本可供升級!",
|
||||||
|
"puzzle.screen.title":"拼圖設置",
|
||||||
|
"puzzle.page.graphics":"顯示設置",
|
||||||
|
"puzzle.page.resources":"資源設置",
|
||||||
|
"puzzle.page.performance":"性能設置",
|
||||||
|
"puzzle.page.misc":"其他設置",
|
||||||
|
"puzzle.option.check_for_updates":"檢查更新",
|
||||||
|
"puzzle.option.show_version_info":"顯示拼圖版本信息",
|
||||||
|
"puzzle.option.resourcepack_splash_screen":"使用資源包的加載界面",
|
||||||
|
"puzzle.option.disable_splash_screen_blend":"禁止加載界面徽標渲染",
|
||||||
|
"puzzle.option.emissive_textures":"發光貼圖",
|
||||||
|
"puzzle.option.unlimited_model_rotations":"無限模型旋轉",
|
||||||
|
"puzzle.option.bigger_custom_models":"更大的自定義模型",
|
||||||
|
"puzzle.option.render_layer_overrides":"覆蓋渲染層",
|
||||||
|
"puzzle.midnightconfig.title":"拼圖高級設置"
|
||||||
|
}
|
||||||
@@ -4,10 +4,10 @@
|
|||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
|
|
||||||
"name": "Puzzle",
|
"name": "Puzzle",
|
||||||
"description": "Unites optifine replacement mods in a clean & vanilla-style gui",
|
"description": "Fancy and performance-improving features.",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Motschen",
|
"PuzzleMC",
|
||||||
"TeamMidnightDust"
|
"Motschen"
|
||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "https://www.midnightdust.eu/",
|
"homepage": "https://www.midnightdust.eu/",
|
||||||
@@ -18,19 +18,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"icon": "assets/puzzle/icon.png",
|
"icon": "assets/puzzle/icon.png",
|
||||||
|
|
||||||
"environment": "*",
|
"environment": "client",
|
||||||
"entrypoints": {
|
|
||||||
"client": [
|
|
||||||
"eu.midnightdust.puzzle.PuzzleClient"
|
|
||||||
],
|
|
||||||
"modmenu": [
|
|
||||||
"eu.midnightdust.puzzle.config.ModMenuIntegration"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
"mixins": [
|
|
||||||
"puzzle.mixins.json"
|
|
||||||
],
|
|
||||||
|
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabric": "*"
|
"fabric": "*"
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"required": true,
|
|
||||||
"package": "eu.midnightdust.puzzle.mixin",
|
|
||||||
"compatibilityLevel": "JAVA_8",
|
|
||||||
"client": [
|
|
||||||
"MixinOptionsScreen"
|
|
||||||
],
|
|
||||||
"injectors": {
|
|
||||||
"defaultRequire": 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||