From 396a88366fcaa9a6b141cb6620aa734b8acd7121 Mon Sep 17 00:00:00 2001 From: ipz233_vvv Date: Wed, 15 Jan 2025 13:49:00 +0200 Subject: [PATCH] inti --- .gitattributes | 9 + .github/workflows/build.yml | 38 +++ .gitignore | 47 ++++ CHANGELOG.md | 0 LICENSE | 56 ++++ README.md | 0 RenameTemplate.csx | 35 +++ build.gradle.kts | 186 +++++++++++++ buildSrc/build.gradle.kts | 8 + buildSrc/src/main/kotlin/build-extensions.kt | 33 +++ error.txt | 0 gradle.properties | 38 +++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 73638 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 249 ++++++++++++++++++ gradlew.bat | 92 +++++++ local.properties.example | 3 + omnisharp.json | 6 + settings.gradle.kts | 33 +++ .../customcursor/ConfigScreen.java | 26 ++ .../customcursor/CustomCursorInit.java | 16 ++ .../customcursor/ModPlatform.java | 6 + .../customcursor/mixin/ExampleMixin.java | 18 ++ .../platforms/fabric/CustomCursorFabric.java | 27 ++ .../platforms/fabric/ModMenuIntegration.java | 13 + .../platforms/forge/CustomCursorForge.java | 30 +++ .../neoforge/CustomCursorNeoForge.java | 44 ++++ .../customcursor/util/FileReadWrite.java | 44 ++++ src/main/resources/META-INF/mods.toml | 19 ++ .../resources/META-INF/neoforge.mods.toml | 19 ++ src/main/resources/architectury.common.json | 3 + .../resources/assets/customcursor/icon.png | Bin 0 -> 10848 bytes .../assets/customcursor/lang/en_us.json | 4 + .../textures/gui/backgroundcheckerboard.png | Bin 0 -> 594 bytes .../customcursor/textures/gui/pointer.png | Bin 0 -> 163 bytes .../resources/customcursor-common.mixins.json | 11 + .../resources/customcursor-fabric.mixins.json | 10 + .../resources/customcursor-forge.mixins.json | 10 + .../customcursor-neoforge.mixins.json | 10 + src/main/resources/customcursor.accesswidener | 1 + src/main/resources/fabric.mod.json | 31 +++ src/main/resources/pack.mcmeta | 6 + stonecutter.gradle.kts | 47 ++++ versions/1.20.1-fabric/gradle.properties | 13 + versions/1.20.1-forge/gradle.properties | 14 + versions/1.20.4-fabric/gradle.properties | 14 + versions/1.20.4-neoforge/gradle.properties | 14 + versions/1.21.1-fabric/gradle.properties | 15 ++ versions/1.21.1-neoforge/gradle.properties | 15 ++ versions/1.21.3-fabric/gradle.properties | 15 ++ versions/1.21.3-neoforge/gradle.properties | 15 ++ versions/1.21.4-fabric/gradle.properties | 15 ++ versions/1.21.4-neoforge/gradle.properties | 14 + 53 files changed, 1379 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/workflows/build.yml create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 RenameTemplate.csx create mode 100644 build.gradle.kts create mode 100644 buildSrc/build.gradle.kts create mode 100644 buildSrc/src/main/kotlin/build-extensions.kt create mode 100644 error.txt create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 local.properties.example create mode 100644 omnisharp.json create mode 100644 settings.gradle.kts create mode 100644 src/main/java/io/github/jumperonjava/customcursor/ConfigScreen.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/CustomCursorInit.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/ModPlatform.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/mixin/ExampleMixin.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/CustomCursorFabric.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/ModMenuIntegration.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/platforms/forge/CustomCursorForge.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/platforms/neoforge/CustomCursorNeoForge.java create mode 100644 src/main/java/io/github/jumperonjava/customcursor/util/FileReadWrite.java create mode 100644 src/main/resources/META-INF/mods.toml create mode 100644 src/main/resources/META-INF/neoforge.mods.toml create mode 100644 src/main/resources/architectury.common.json create mode 100644 src/main/resources/assets/customcursor/icon.png create mode 100644 src/main/resources/assets/customcursor/lang/en_us.json create mode 100644 src/main/resources/assets/customcursor/textures/gui/backgroundcheckerboard.png create mode 100644 src/main/resources/assets/customcursor/textures/gui/pointer.png create mode 100644 src/main/resources/customcursor-common.mixins.json create mode 100644 src/main/resources/customcursor-fabric.mixins.json create mode 100644 src/main/resources/customcursor-forge.mixins.json create mode 100644 src/main/resources/customcursor-neoforge.mixins.json create mode 100644 src/main/resources/customcursor.accesswidener create mode 100644 src/main/resources/fabric.mod.json create mode 100644 src/main/resources/pack.mcmeta create mode 100644 stonecutter.gradle.kts create mode 100644 versions/1.20.1-fabric/gradle.properties create mode 100644 versions/1.20.1-forge/gradle.properties create mode 100644 versions/1.20.4-fabric/gradle.properties create mode 100644 versions/1.20.4-neoforge/gradle.properties create mode 100644 versions/1.21.1-fabric/gradle.properties create mode 100644 versions/1.21.1-neoforge/gradle.properties create mode 100644 versions/1.21.3-fabric/gradle.properties create mode 100644 versions/1.21.3-neoforge/gradle.properties create mode 100644 versions/1.21.4-fabric/gradle.properties create mode 100644 versions/1.21.4-neoforge/gradle.properties diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..097f9f9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +# +# https://help.github.com/articles/dealing-with-line-endings/ +# +# Linux start script should use lf +/gradlew text eol=lf + +# These are Windows script files and should use crlf +*.bat text eol=crlf + diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..68f71a9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,38 @@ +# Automatically build the project and run any configured tests for every push +# and submitted pull request. This can help catch issues that only occur on +# certain platforms or Java versions, and provides a first line of defence +# against bad commits. + +name: build +on: [pull_request, push] + +jobs: + build: + strategy: + matrix: + # Use these Java versions + java: [21] + # and run on both Linux and Windows + os: [ubuntu-22.04, windows-2022] + runs-on: ${{ matrix.os }} + steps: + - name: checkout repository + uses: actions/checkout@v4 + - name: validate gradle wrapper + uses: gradle/wrapper-validation-action@v2 + - name: setup jdk ${{ matrix.java }} + uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.java }} + distribution: 'microsoft' + - name: make gradle wrapper executable + if: ${{ runner.os != 'Windows' }} + run: chmod +x ./gradlew + - name: build + run: ./gradlew chiseledBuild + - name: capture build artifacts + if: ${{ runner.os == 'Linux' && matrix.java == '21' }} # Only upload artifacts built from latest java on one OS + uses: actions/upload-artifact@v4 + with: + name: Artifacts + path: build/libs/ \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b064672 --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# gradle + +.gradle/ +build/ +out/ +classes/ + +# eclipse + +*.launch + +# idea + +.idea/ +*.iml +*.ipr +*.iws + +# vscode + +.settings/ +.vscode/ +bin/ +.classpath +.project + +# macos + +*.DS_Store + +# fabric + +run/ + +# java + +hs_err_*.log +replay_*.log +*.hprof +*.jfr + +# tokens + +local.properties + +.architectury-transformer\debug.log +.architectury-transformer/debug.log diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cbc1530 --- /dev/null +++ b/LICENSE @@ -0,0 +1,56 @@ +GNU LESSER GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. + +0. Additional Definitions. +As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the “GNU GPL” refers to version 3 of the GNU General Public License. + +“The Library” refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. + +An “Application” is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. + +A “Combined Work” is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the “Linked Version”. + +The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. + +The “Corresponding Application Code” for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. + +1. Exception to Section 3 of the GNU GPL. +You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. + +2. Conveying Modified Versions. +If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: + +a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or +b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. +3. Object Code Incorporating Material from Library Header Files. +The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: + +a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. +b) Accompany the object code with a copy of the GNU GPL and this license document. +4. Combined Works. +You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: + +a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. +b) Accompany the Combined Work with a copy of the GNU GPL and this license document. +c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. +d) Do one of the following: +0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. +1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. +e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) +5. Combined Libraries. +You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: + +a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. +b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. +6. Revised Versions of the GNU Lesser General Public License. +The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. + +If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/RenameTemplate.csx b/RenameTemplate.csx new file mode 100644 index 0000000..df5b024 --- /dev/null +++ b/RenameTemplate.csx @@ -0,0 +1,35 @@ + +public static List FindAllFiles(string directoryPath) +{ + return Directory.GetFiles(directoryPath, "*.*", SearchOption.AllDirectories).ToList(); +} + +var replacements = new[] +{ + new { Old = "customcursor", New = "template" }, + new { Old = "Custom Cursor", New = "Template" }, + new { Old = "CustomCursor", New = "TempLate" }, + new { Old = "io.github.jumperonjava.customcursor", New = "io.github.example" } +}; + +var files = FindAllFiles(Directory.GetCurrentDirectory()); + +foreach(var file in files) +{ + if (file.StartsWith(".")) + continue; + if (file.EndsWith(".csx")) + continue; + if (file.Contains(".git")) + continue; + + var fileContent = File.ReadAllText(file); + var newFile = file; + foreach (var replacement in replacements) + { + fileContent = fileContent.Replace(replacement.Old, replacement.New); + newFile = newFile.Replace(replacement.Old.Replace(".","/"), replacement.New.Replace(".","/")); + } + File.Delete(file); + File.WriteAllText(newFile,fileContent); +} \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..5da5fb1 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,186 @@ +import java.util.* + +plugins { + id("dev.architectury.loom") + id("architectury-plugin") + id("me.modmuss50.mod-publish-plugin") + id("com.github.johnrengelman.shadow") +} + +val minecraft = stonecutter.current.version +val loader = loom.platform.get().name.lowercase() + +version = "${mod.version}+$minecraft" +group = mod.group +base { + archivesName.set("${mod.id}-$loader") +} + +architectury.common(stonecutter.tree.branches.mapNotNull { + if (stonecutter.current.project !in it) null + else it.prop("loom.platform") +}) +repositories{ + maven("https://maven.neoforged.net/releases/") + + //modmenu + maven("https://maven.terraformersmc.com/") + //placeholder api (modmenu depencency) + maven("https://maven.nucleoid.xyz/") +} +dependencies { + minecraft("com.mojang:minecraft:$minecraft") + + if (loader == "fabric") { + modImplementation("net.fabricmc:fabric-loader:${mod.dep("fabric_loader")}") + mappings("net.fabricmc:yarn:$minecraft+build.${mod.dep("yarn_build")}:v2") + modImplementation("com.terraformersmc:modmenu:${mod.dep("modmenu_version")}") + + //some features (like automatic resource loading from non vanilla namespaces) work only with fabric API installed + //for example translations from assets/modid/lang/en_us.json won't be working, same stuff with textures + //but we keep runtime only to not accidentally depend on fabric's api, because it doesn't exist in neo/forge + modRuntimeOnly("net.fabricmc.fabric-api:fabric-api:${mod.dep("fabric_version")}") + + } + if (loader == "forge") { + "forge"("net.minecraftforge:forge:${minecraft}-${mod.dep("forge_loader")}") + mappings("net.fabricmc:yarn:$minecraft+build.${mod.dep("yarn_build")}:v2") + + "io.github.llamalad7:mixinextras-forge:${mod.dep("mixin_extras")}".let { + implementation(it) + include(it) + } + } + if (loader == "neoforge") { + "neoForge"("net.neoforged:neoforge:${mod.dep("neoforge_loader")}") + mappings(loom.layered { + mappings("net.fabricmc:yarn:$minecraft+build.${mod.dep("yarn_build")}:v2") + mod.dep("neoforge_patch").takeUnless { it.startsWith('[') }?.let { + mappings("dev.architectury:yarn-mappings-patch-neoforge:$it") + } + }) + } +} + +loom { + accessWidenerPath = rootProject.file("src/main/resources/template.accesswidener") + + decompilers { + get("vineflower").apply { // Adds names to lambdas - useful for mixins + options.put("mark-corresponding-synthetics", "1") + } + } + if(loader == "forge") { + forge.mixinConfigs( + "template-common.mixins.json", + "template-forge.mixins.json", + ) + } +} + + +val localProperties = Properties() +val localPropertiesFile = rootProject.file("local.properties") +if (localPropertiesFile.exists()) { + localProperties.load(localPropertiesFile.inputStream()) +} +publishMods { + val modrinthToken = localProperties.getProperty("publish.modrinthToken", "") + val curseforgeToken = localProperties.getProperty("publish.curseforgeToken", "") + + + file = project.tasks.remapJar.get().archiveFile + dryRun = modrinthToken == null || curseforgeToken == null + + displayName = + "${mod.name} ${loader.replaceFirstChar { it.uppercase() }} ${property("mod.mc_title")}-${mod.version}" + version = mod.version + changelog = rootProject.file("CHANGELOG.md").readText() + type = BETA + + modLoaders.add(loader) + + val targets = property("mod.mc_targets").toString().split(' ') + modrinth { + projectId = property("publish.modrinth").toString() + accessToken = modrinthToken + targets.forEach(minecraftVersions::add) + if (loader == "fabric") { + requires("fabric-api") + optional("modmenu") + } + } + + curseforge { + projectId = property("publish.curseforge").toString() + accessToken = curseforgeToken.toString() + targets.forEach(minecraftVersions::add) + if (loader == "fabric") { + requires("fabric-api") + optional("modmenu") + } + } +} + +java { + withSourcesJar() + val java = if (stonecutter.eval(minecraft, ">=1.20.5")) + JavaVersion.VERSION_21 else JavaVersion.VERSION_17 + targetCompatibility = java + sourceCompatibility = java +} + +val shadowBundle: Configuration by configurations.creating { + isCanBeConsumed = false + isCanBeResolved = true +} + +tasks.shadowJar { + configurations = listOf(shadowBundle) + archiveClassifier = "dev-shadow" +} + +tasks.remapJar { + injectAccessWidener = true + input = tasks.shadowJar.get().archiveFile + archiveClassifier = null + dependsOn(tasks.shadowJar) +} + +tasks.jar { + archiveClassifier = "dev" +} + +tasks.processResources { + properties(listOf("fabric.mod.json"), + "id" to mod.id, + "name" to mod.name, + "version" to mod.version, + "minecraft" to mod.prop("mc_dep_fabric") + ) + properties(listOf("META-INF/mods.toml", "pack.mcmeta"), + "id" to mod.id, + "name" to mod.name, + "version" to mod.version, + "minecraft" to mod.prop("mc_dep_forgelike") + ) + properties(listOf("META-INF/neoforge.mods.toml", "pack.mcmeta"), + "id" to mod.id, + "name" to mod.name, + "version" to mod.version, + "minecraft" to mod.prop("mc_dep_forgelike") + ) +} + +tasks.build { + group = "versioned" + description = "Must run through 'chiseledBuild'" +} + +tasks.register("buildAndCollect") { + group = "versioned" + description = "Must run through 'chiseledBuild'" + from(tasks.remapJar.get().archiveFile, tasks.remapSourcesJar.get().archiveFile) + into(rootProject.layout.buildDirectory.file("libs/${mod.version}/$loader")) + dependsOn("build") +} \ No newline at end of file diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts new file mode 100644 index 0000000..74dfa9a --- /dev/null +++ b/buildSrc/build.gradle.kts @@ -0,0 +1,8 @@ +plugins { + `kotlin-dsl` + kotlin("jvm") version "2.0.20" +} + +repositories { + mavenCentral() +} \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/build-extensions.kt b/buildSrc/src/main/kotlin/build-extensions.kt new file mode 100644 index 0000000..35bfa98 --- /dev/null +++ b/buildSrc/src/main/kotlin/build-extensions.kt @@ -0,0 +1,33 @@ +import org.gradle.api.Project +import org.gradle.api.artifacts.dsl.RepositoryHandler +import org.gradle.kotlin.dsl.expand +import org.gradle.kotlin.dsl.maven +import org.gradle.language.jvm.tasks.ProcessResources +import java.util.* + +val Project.mod: ModData get() = ModData(this) +fun Project.prop(key: String): String? = findProperty(key)?.toString() +fun String.upperCaseFirst() = replaceFirstChar { if (it.isLowerCase()) it.uppercaseChar() else it } + +fun RepositoryHandler.strictMaven(url: String, alias: String, vararg groups: String) = exclusiveContent { + forRepository { maven(url) { name = alias } } + filter { groups.forEach(::includeGroup) } +} + +fun ProcessResources.properties(files: Iterable, vararg properties: Pair) { + for ((name, value) in properties) inputs.property(name, value) + filesMatching(files) { + expand(properties.toMap()) + } +} + +@JvmInline +value class ModData(private val project: Project) { + val id: String get() = requireNotNull(project.prop("mod.id")) { "Missing 'mod.id'" } + val name: String get() = requireNotNull(project.prop("mod.name")) { "Missing 'mod.name'" } + val version: String get() = requireNotNull(project.prop("mod.version")) { "Missing 'mod.version'" } + val group: String get() = requireNotNull(project.prop("mod.group")) { "Missing 'mod.group'" } + + fun prop(key: String) = requireNotNull(project.prop("mod.$key")) { "Missing 'mod.$key'" } + fun dep(key: String) = requireNotNull(project.prop("deps.$key")) { "Missing 'deps.$key'" } +} \ No newline at end of file diff --git a/error.txt b/error.txt new file mode 100644 index 0000000..e69de29 diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..3984e99 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,38 @@ +# Done to increase the memory available to gradle. +org.gradle.jvmargs=-Xmx4G +#org.gradle.parallel=true +org.gradle.caching=false +org.gradle.caching.debug=false +org.gradle.parallel=false +#org.gradle.configureondemand=true + +# Mod properties +mod.version=2.0.0 +mod.group=io.github.jumperonjava +mod.id=template +mod.name=Custom cursor + +# Used for the mod metadata +mod.mc_dep_fabric=[VERSIONED] +mod.mc_dep_forgelike=[VERSIONED] +# Used for the release title. I.e. '1.20.x' +mod.mc_title=[VERSIONED] +# Space separated versions for publishing. I.e. '1.20, 1.20.1' +mod.mc_targets=[VERSIONED] + +# Mod setup +deps.mixin_extras=0.4.1 +deps.fabric_loader=0.16.9 +deps.fabric_version=[VERSIONED] + +deps.forge_loader=[VERSIONED] +deps.neoforge_loader=[VERSIONED] +deps.neoforge_patch=[VERSIONED] + +# Mod dependencies +deps.yarn_build=[VERSIONED] +deps.modmenu_version=[VERSIONED] + +# Publishing +publish.modrinth=Yx7vS7Wl +publish.curseforge=922951 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..0a8433bfddb7d4b302467b81bb558fc3bf3f9ca0 GIT binary patch literal 73638 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 '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# 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"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# 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" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..25da30d --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/local.properties.example b/local.properties.example new file mode 100644 index 0000000..b19b31f --- /dev/null +++ b/local.properties.example @@ -0,0 +1,3 @@ +# remove .example from filename to use +publish.modrinthToken=... +publish.curseforgeToken=... \ No newline at end of file diff --git a/omnisharp.json b/omnisharp.json new file mode 100644 index 0000000..f8f2cc2 --- /dev/null +++ b/omnisharp.json @@ -0,0 +1,6 @@ +{ + "script": { + "enableScriptNuGetReferences": true, + "defaultTargetFramework": "net9.0" + } +} \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..77447cf --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,33 @@ +pluginManagement { + repositories { + mavenCentral() + gradlePluginPortal() + maven("https://maven.fabricmc.net/") + maven("https://maven.architectury.dev") + maven("https://maven.minecraftforge.net") + maven("https://maven.neoforged.net/releases/") + maven("https://maven.kikugie.dev/snapshots") + } +} + +plugins { + id("dev.kikugie.stonecutter") version "0.5" +} + +stonecutter { + centralScript = "build.gradle.kts" + kotlinController = true + shared { + fun mc(loader: String, vararg versions: String) { + for (version in versions) vers("$version-$loader", version) + } + //i would recommend to use neoforge for mc >= 1.20.1 + mc("fabric","1.20.1","1.20.4", "1.21.1", "1.21.3", "1.21.4") + mc("forge","1.20.1") + //WARNING: neoforge uses mods.toml instead of neoforge.mods.toml for versions 1.20.4 (?) and earlier + mc("neoforge", "1.20.4", "1.21.1", "1.21.3", "1.21.4") + } + create(rootProject) +} + +rootProject.name = "TempLate" \ No newline at end of file diff --git a/src/main/java/io/github/jumperonjava/customcursor/ConfigScreen.java b/src/main/java/io/github/jumperonjava/customcursor/ConfigScreen.java new file mode 100644 index 0000000..d620f01 --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/ConfigScreen.java @@ -0,0 +1,26 @@ +package io.github.jumperonjava.template; + +import net.minecraft.client.gui.screen.Screen; +import net.minecraft.text.Text; + +public class ConfigScreen extends Screen { + + public ConfigScreen(Screen parent) { + super(Text.empty()); + } + + @Override + protected void init() { + addDrawableChild(((context, mouseX, mouseY, delta) -> { + context.drawCenteredTextWithShadow(client.textRenderer, + "Hello, world", + width / 2, + height / 2, + 0xFFFFFFFF); + })); + } + + public static ConfigScreen createCursorEditScreen(Screen parent) { + return new ConfigScreen(parent); + } +} diff --git a/src/main/java/io/github/jumperonjava/customcursor/CustomCursorInit.java b/src/main/java/io/github/jumperonjava/customcursor/CustomCursorInit.java new file mode 100644 index 0000000..9eb271a --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/CustomCursorInit.java @@ -0,0 +1,16 @@ +package io.github.jumperonjava.template; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class TempLateInit +{ + public static final String MODID = "template"; + public static final Logger LOGGER = LoggerFactory.getLogger("Template"); + private static ModPlatform PLATFORM = null; + + public static void entrypoint(ModPlatform platform) { + TempLateInit.PLATFORM = platform; + LOGGER.info("Started mod in %s loader", TempLateInit.PLATFORM.getModloader()); + } +} \ No newline at end of file diff --git a/src/main/java/io/github/jumperonjava/customcursor/ModPlatform.java b/src/main/java/io/github/jumperonjava/customcursor/ModPlatform.java new file mode 100644 index 0000000..47eb5a7 --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/ModPlatform.java @@ -0,0 +1,6 @@ +package io.github.jumperonjava.template; + +public interface ModPlatform { + String getModloader(); + boolean isModLoaded(String modloader); +} diff --git a/src/main/java/io/github/jumperonjava/customcursor/mixin/ExampleMixin.java b/src/main/java/io/github/jumperonjava/customcursor/mixin/ExampleMixin.java new file mode 100644 index 0000000..9150f12 --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/mixin/ExampleMixin.java @@ -0,0 +1,18 @@ +package io.github.jumperonjava.template.mixin; + +import io.github.jumperonjava.template.TempLateInit; +import net.minecraft.client.gui.screen.TitleScreen; +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(TitleScreen.class) +public class ExampleMixin { + + @Inject(method = "init",at=@At("HEAD")) + void init(CallbackInfo ci){ + TempLateInit.LOGGER.info("Stonecutter example mixin init"); + } + +} diff --git a/src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/CustomCursorFabric.java b/src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/CustomCursorFabric.java new file mode 100644 index 0000000..6a8c482 --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/CustomCursorFabric.java @@ -0,0 +1,27 @@ +//? if fabric { +/*package io.github.jumperonjava.customcursor.platforms.fabric; + +import io.github.jumperonjava.customcursor.ModPlatform; +import net.fabricmc.api.ModInitializer; +import io.github.jumperonjava.customcursor.CustomCursorInit; +import net.fabricmc.loader.api.FabricLoader; + +public class CustomCursorFabric implements ModInitializer { + @Override + public void onInitialize() { + CustomCursorInit.entrypoint(new FabricPlatform()); + } + public static class FabricPlatform implements ModPlatform{ + + @Override + public String getModloader() { + return "Fabric"; + } + + @Override + public boolean isModLoaded(String modloader) { + return FabricLoader.getInstance().isModLoaded(modloader); + } + } +} +*///?} \ No newline at end of file diff --git a/src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/ModMenuIntegration.java b/src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/ModMenuIntegration.java new file mode 100644 index 0000000..0123fcd --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/platforms/fabric/ModMenuIntegration.java @@ -0,0 +1,13 @@ +//? if fabric { +/*package io.github.jumperonjava.customcursor.platforms.fabric; + +import com.terraformersmc.modmenu.api.ConfigScreenFactory; +import com.terraformersmc.modmenu.api.ModMenuApi; +import io.github.jumperonjava.customcursor.ConfigScreen; + +public class ModMenuIntegration implements ModMenuApi { + public ConfigScreenFactory getModConfigScreenFactory() { + return ConfigScreen::createCursorEditScreen; + } +} +*///?} diff --git a/src/main/java/io/github/jumperonjava/customcursor/platforms/forge/CustomCursorForge.java b/src/main/java/io/github/jumperonjava/customcursor/platforms/forge/CustomCursorForge.java new file mode 100644 index 0000000..b47ca7c --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/platforms/forge/CustomCursorForge.java @@ -0,0 +1,30 @@ +//? if forge { +/*package io.github.jumperonjava.customcursor.platforms.forge; + +import io.github.jumperonjava.customcursor.ConfigScreen; +import io.github.jumperonjava.customcursor.CustomCursorInit; +import io.github.jumperonjava.customcursor.ModPlatform; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.fml.ModList; +import net.minecraftforge.fml.common.Mod; + +@Mod("customcursor") +public class CustomCursorForge { + public CustomCursorForge() { + CustomCursorInit.entrypoint(new ForgePlatform()); + MinecraftForge.registerConfigScreen(ConfigScreen::createCursorEditScreen); + } + public static class ForgePlatform implements ModPlatform { + @Override + public String getModloader() { + return "LexForge"; + } + + @Override + public boolean isModLoaded(String modId) { + return ModList.get().isLoaded(modId); + } + } + +} +*///?} \ No newline at end of file diff --git a/src/main/java/io/github/jumperonjava/customcursor/platforms/neoforge/CustomCursorNeoForge.java b/src/main/java/io/github/jumperonjava/customcursor/platforms/neoforge/CustomCursorNeoForge.java new file mode 100644 index 0000000..4ecc389 --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/platforms/neoforge/CustomCursorNeoForge.java @@ -0,0 +1,44 @@ +//? if neoforge { +package io.github.jumperonjava.customcursor.platforms.neoforge; + +import io.github.jumperonjava.customcursor.ConfigScreen; +import io.github.jumperonjava.customcursor.CustomCursorInit; +import io.github.jumperonjava.customcursor.ModPlatform; +import net.minecraft.client.gui.screen.Screen; +import net.neoforged.fml.ModList; +import net.neoforged.fml.ModLoadingContext; +import net.neoforged.fml.common.Mod; +//? if <1.21 { +import net.neoforged.neoforge.client.ConfigScreenHandler; +//?} else { +/*import net.neoforged.neoforge.client.gui.IConfigScreenFactory; +*///?} +@Mod("customcursor") +public class CustomCursorNeoForge { + public CustomCursorNeoForge() { + CustomCursorInit.entrypoint(new NeoForgePlatform()); + ModLoadingContext.get().registerExtensionPoint( + //? if <1.21 { + ConfigScreenHandler.ConfigScreenFactory.class, + () -> new ConfigScreenHandler.ConfigScreenFactory( + ((client, parent) -> ConfigScreen.createCursorEditScreen(parent)) + ) + //?} else { + /*IConfigScreenFactory.class, + () -> (client, parent) -> CursorEditScreen.createCursorEditScreen(parent) + *///?} + ); + } + public static class NeoForgePlatform implements ModPlatform { + @Override + public String getModloader() { + return "NeoForge"; + } + + @Override + public boolean isModLoaded(String modId) { + return ModList.get().isLoaded(modId); + } + } +} +//?} \ No newline at end of file diff --git a/src/main/java/io/github/jumperonjava/customcursor/util/FileReadWrite.java b/src/main/java/io/github/jumperonjava/customcursor/util/FileReadWrite.java new file mode 100644 index 0000000..fb16267 --- /dev/null +++ b/src/main/java/io/github/jumperonjava/customcursor/util/FileReadWrite.java @@ -0,0 +1,44 @@ +package io.github.jumperonjava.customcursor.util; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.nio.file.Files; + +public class FileReadWrite { + + /** + * Writes text to file, throws runtime exception if something goes wrong + * @param file + * @param text + */ + public static void write(File file, String text) { + try{ + file.getParentFile().mkdirs(); + FileOutputStream outputStream = new FileOutputStream(file); + byte[] strToBytes = text.getBytes(); + outputStream.write(strToBytes); + outputStream.close(); + } + catch (Exception e) + { + throw new RuntimeException(e); + } + } + + /** + * Tries to read file, creates empty file if it does not exist and returns empty string + * @param file + * @return + */ + public static String read(File file) { + try{ + return new String(Files.readAllBytes(file.toPath())); + } + catch(IOException e) + { + write(file,""); + return read(file); + } + } +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 0000000..f52d14a --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,19 @@ +modLoader = "javafml" +loaderVersion = "*" +license = "LGPLv3" +issueTrackerURL="https://JavaJumper/CustomCursor/issues" + +[[mods]] +modId = "customcursor" +version = "${version}" +displayName = "${name}" +authors = "JavaJumper" +description = "" +logoFile = "assets/customcursor/icon.png" +logoBlur = false + +[[mixins]] +config = "customcursor-common.mixins.json" + +[[mixins]] +config = "customcursor-neoforge.mixins.json" \ No newline at end of file diff --git a/src/main/resources/META-INF/neoforge.mods.toml b/src/main/resources/META-INF/neoforge.mods.toml new file mode 100644 index 0000000..f52d14a --- /dev/null +++ b/src/main/resources/META-INF/neoforge.mods.toml @@ -0,0 +1,19 @@ +modLoader = "javafml" +loaderVersion = "*" +license = "LGPLv3" +issueTrackerURL="https://JavaJumper/CustomCursor/issues" + +[[mods]] +modId = "customcursor" +version = "${version}" +displayName = "${name}" +authors = "JavaJumper" +description = "" +logoFile = "assets/customcursor/icon.png" +logoBlur = false + +[[mixins]] +config = "customcursor-common.mixins.json" + +[[mixins]] +config = "customcursor-neoforge.mixins.json" \ No newline at end of file diff --git a/src/main/resources/architectury.common.json b/src/main/resources/architectury.common.json new file mode 100644 index 0000000..fee739e --- /dev/null +++ b/src/main/resources/architectury.common.json @@ -0,0 +1,3 @@ +{ + "accessWidener": "customcursor.accesswidener" +} \ No newline at end of file diff --git a/src/main/resources/assets/customcursor/icon.png b/src/main/resources/assets/customcursor/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd5a68e2816a7997b669bdeb9371553985cf14c GIT binary patch literal 10848 zcmeHNYfMvT82;MQ0<8s%LbYD-k}OW9xYz~9rWB^4%V4P3dW9}av?fa=!74ZBDR`MP z+kR|B=MauF3rG>nATEk%4O#r5*t39}Y?I=aK~ojFK&PCRp1t3>)$Hd+7|LnVoU}bX z?>X=HKF{-BzT-LBnOe18jS$kVU$=TALUIbfqg3$CWpic~9HI->Z7qZ&e#y|`VjX;l zL+e+k=N45x{_$0{GHd^-AG%M@wEONkgZAJx}{mmr0jHijtXMTq;TRRfCK63Ixu$J-V zUs^z7UoqzUlC za8Oy+0GziOmv6zSCgR!X?663Gn!t`|b@VHoyM-Gh2O6tmQ4L;MyukJ=ttG2a8D852 z3YOSA;2lA}t->PLNq?Rk4l}o&p-ZDm2p20nr*C-YO$Yr6qx~>|UeQp;>Xgb+kpprS zMt__dB+V4mr9L{zv<8)?hS5TdTgPfWj7X* zE|Xg)(@Njq)J^inctyh0;jq3fi!jLbVSPJFtTie`eRIZ9QP!}i&XDV6T2WLLZyAAF z#gy6-WsNX|MRkho6GA15s(n5=l^Q#v)r&KK5qbgt%MHA!Mo*_W+@F*E9YTV0WGPwP zOs|Z#_Ha#rnGJa!IeQY(C!Hj@U>u`hFMTUN^lfEY=;`}O{y@TT*(Sc|YcnbhkdC$s zDSL@sZH;IljtUs{%j1E?WLlBcl#79kvc{3xt89DneW9T6 zN<74XNkt(}J^s2@lr3Zf#sg;8?gM^+E?~7s=i=t9pn)D3b3AISc5Q|;e-8X6u)be@ zA1)78E@KRr=D%4hWF#b9z8S2TG0X=~^a~A8%|5vNezU6|WBc*JKdXdH#}0EA7g*VW z;op{AjrjmiSduC6Az+|80Usi5YG)1X6`=9HfEVI{q=y(Id}w`YTb#Ni-NgY<-y82m z(1ArvL#wq-1$#W0pZ4R?J~laW!L(1&Yog z4nL}*BdJcPIr}(ZV#7qVRn{RH=6GkKx;ki_a~O!Soh!lgL}H!72K=~!tI`xcg^iu2 z@`W7wkc{a9HhjRtnUQ+sL-5cn~^Vnk^D=JmJkzOOvb>bba zxIcF%}28J29*~C-V}>VM%xNb!1@J z*w6hZkrl}2EbxddW?&4Q4|K|(y@8Ai3 zA|~`?&au3>azT$buYbRd+;h*azCQK;{_pYg<9`S-yA$qdvxcu__l5gJMvu^ZYLDBNjc0%nf4AIE zS{-B`vX*`9oBT0FU(43dsY~Cmzxq83#EEb%N4`6J%ft{(+55Qv@_U|d zL+*s#TMW@P<$nr)%{}<<-Ckj&fBQT(FTti{*?LOFhp@j!okmf7=#)-IYTb1WCGIxgQu&X%Q~lo FCIG8R&xZg2 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/customcursor/textures/gui/pointer.png b/src/main/resources/assets/customcursor/textures/gui/pointer.png new file mode 100644 index 0000000000000000000000000000000000000000..0f4df312b9694b440d83fd06f4f09fbe39c197c0 GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^93afW1|*O0@9PFqjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1qucK?_e8#}JL+$1Gb+`Yq+fw5?B}ncdNe?5D&}%n!(`d>gTe~DWM4f DUF9qs literal 0 HcmV?d00001 diff --git a/src/main/resources/customcursor-common.mixins.json b/src/main/resources/customcursor-common.mixins.json new file mode 100644 index 0000000..85aaa49 --- /dev/null +++ b/src/main/resources/customcursor-common.mixins.json @@ -0,0 +1,11 @@ +{ + "required": true, + "package": "io.github.jumperonjava.customcursor.mixin", + "compatibilityLevel": "JAVA_17", + "mixins": [ + "ExampleMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/customcursor-fabric.mixins.json b/src/main/resources/customcursor-fabric.mixins.json new file mode 100644 index 0000000..9a13978 --- /dev/null +++ b/src/main/resources/customcursor-fabric.mixins.json @@ -0,0 +1,10 @@ +{ + "required": true, + "package": "io.github.jumperonjava.customcursor.platforms.fabric.mixin", + "compatibilityLevel": "JAVA_17", + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/customcursor-forge.mixins.json b/src/main/resources/customcursor-forge.mixins.json new file mode 100644 index 0000000..4e11ef2 --- /dev/null +++ b/src/main/resources/customcursor-forge.mixins.json @@ -0,0 +1,10 @@ +{ + "required": true, + "package": "io.github.jumperonjava.customcursor.platforms.forge.mixin", + "compatibilityLevel": "JAVA_17", + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/customcursor-neoforge.mixins.json b/src/main/resources/customcursor-neoforge.mixins.json new file mode 100644 index 0000000..59e1eeb --- /dev/null +++ b/src/main/resources/customcursor-neoforge.mixins.json @@ -0,0 +1,10 @@ +{ + "required": true, + "package": "io.github.jumperonjava.customcursor.platforms.neoforge.mixin", + "compatibilityLevel": "JAVA_17", + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/customcursor.accesswidener b/src/main/resources/customcursor.accesswidener new file mode 100644 index 0000000..9ab2173 --- /dev/null +++ b/src/main/resources/customcursor.accesswidener @@ -0,0 +1 @@ +accessWidener v2 named diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..e0c687d --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,31 @@ +{ + "schemaVersion": 1, + "id": "${id}", + "version": "${version}", + "name": "${name}", + "description": "", + "authors": [ + "JavaJumper" + ], + "contact": { + }, + "license": "LGPLv3", + "icon": "assets/${id}/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "io.github.jumperonjava.customcursor.platforms.fabric.CustomCursorFabric" + ], + "modmenu": [ + "io.github.jumperonjava.customcursor.platforms.fabric.ModMenuIntegration" + ] + }, + "mixins": [ + "customcursor-common.mixins.json", + "customcursor-fabric.mixins.json" + ], + "depends": { + "fabricloader": ">=0.15", + "minecraft": "${minecraft}" + } +} \ No newline at end of file diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta new file mode 100644 index 0000000..d6c6861 --- /dev/null +++ b/src/main/resources/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "description": "${name}", + "pack_format": 15 + } +} \ No newline at end of file diff --git a/stonecutter.gradle.kts b/stonecutter.gradle.kts new file mode 100644 index 0000000..2318c7c --- /dev/null +++ b/stonecutter.gradle.kts @@ -0,0 +1,47 @@ +plugins { + id("dev.kikugie.stonecutter") + id("dev.architectury.loom") version "1.7-SNAPSHOT" apply false + id("architectury-plugin") version "3.4-SNAPSHOT" apply false + id("com.github.johnrengelman.shadow") version "8.1.1" apply false + id("me.modmuss50.mod-publish-plugin") version "0.8.4" apply false +} +stonecutter active "1.20.4-neoforge" /* [SC] DO NOT EDIT */ +stonecutter.automaticPlatformConstants = true + +// Builds every version into `build/libs/{mod.version}/{loader}` +stonecutter registerChiseled tasks.register("chiseledBuild", stonecutter.chiseled) { + group = "project" + ofTask("buildAndCollect") +} +stonecutter registerChiseled tasks.register("chiseledPublishMods", stonecutter.chiseled) { + group = "project" + ofTask("publishMods") +} +stonecutter registerChiseled tasks.register("chiseledRunAllClients", stonecutter.chiseled) { + group = "project" + ofTask("runClient") +} + + + +// Builds loader-specific versions into `build/libs/{mod.version}/{loader}` +for (it in stonecutter.tree.branches) { + if (it.id.isEmpty()) continue + val loader = it.id.upperCaseFirst() + stonecutter registerChiseled tasks.register("chiseledBuild$loader", stonecutter.chiseled) { + group = "project" + versions { branch, _ -> branch == it.id } + ofTask("buildAndCollect") + } +} + +// Runs active versions for each loader +for (it in stonecutter.tree.nodes) { + if (it.metadata != stonecutter.current || it.branch.id.isEmpty()) continue + val types = listOf("Client", "Server") + val loader = it.branch.id.upperCaseFirst() + for (type in types) it.tasks.register("runActive$type$loader") { + group = "project" + dependsOn("run$type") + } +} diff --git a/versions/1.20.1-fabric/gradle.properties b/versions/1.20.1-fabric/gradle.properties new file mode 100644 index 0000000..6c3f4e6 --- /dev/null +++ b/versions/1.20.1-fabric/gradle.properties @@ -0,0 +1,13 @@ +mod.mc_dep_fabric==1.20.1 +mod.mc_dep_forgelike=[1.20, 1.20.1] +mod.mc_title=1.20.1 +mod.mc_targets=1.20.1 + +deps.forge_loader=47.3.0 +deps.neoforge_loader=[UNSUPPORTED] + +deps.yarn_build=10 +deps.fabric_version=0.92.3+1.20.1 +deps.modmenu_version=7.2.2 + +loom.platform=fabric diff --git a/versions/1.20.1-forge/gradle.properties b/versions/1.20.1-forge/gradle.properties new file mode 100644 index 0000000..9f0de59 --- /dev/null +++ b/versions/1.20.1-forge/gradle.properties @@ -0,0 +1,14 @@ +mod.mc_dep_fabric==1.20.1 +mod.mc_dep_forgelike=[1.20, 1.20.1] +mod.mc_title=1.20.1 +mod.mc_targets=1.20.1 + +deps.forge_loader=47.3.0 +deps.neoforge_loader=[UNSUPPORTED] + +deps.yarn_build=10 +deps.fabric_version=0.92.3+1.20.1 + +deps.modmenu_version=[UNSUPPORTED] + +loom.platform=forge \ No newline at end of file diff --git a/versions/1.20.4-fabric/gradle.properties b/versions/1.20.4-fabric/gradle.properties new file mode 100644 index 0000000..9bfe9a1 --- /dev/null +++ b/versions/1.20.4-fabric/gradle.properties @@ -0,0 +1,14 @@ +mod.mc_dep_fabric=>=1.20.3 <=1.20.4 +mod.mc_dep_forgelike=[1.20.3, 1.20.4] +mod.mc_title=1.20.4 +mod.mc_targets=1.20.3 1.20.4 + +deps.forge_loader=49.1.21 +deps.neoforge_loader=20.4.238 + +deps.yarn_build=3 +deps.fabric_version=0.97.2+1.20.4 + +deps.modmenu_version=9.2.0 + +loom.platform=fabric diff --git a/versions/1.20.4-neoforge/gradle.properties b/versions/1.20.4-neoforge/gradle.properties new file mode 100644 index 0000000..6bca214 --- /dev/null +++ b/versions/1.20.4-neoforge/gradle.properties @@ -0,0 +1,14 @@ +mod.mc_dep_fabric=>=1.20.3 <=1.20.4 +mod.mc_dep_forgelike=[1.20.3, 1.20.4] +mod.mc_title=1.20.4 +mod.mc_targets=1.20.3 1.20.4 + +deps.forge_loader=49.1.21 +deps.neoforge_loader=20.4.239 + +deps.yarn_build=3 +deps.fabric_version=0.97.2+1.20.4 + +deps.modmenu_version=[UNSUPPORTED] + +loom.platform=neoforge \ No newline at end of file diff --git a/versions/1.21.1-fabric/gradle.properties b/versions/1.21.1-fabric/gradle.properties new file mode 100644 index 0000000..1928141 --- /dev/null +++ b/versions/1.21.1-fabric/gradle.properties @@ -0,0 +1,15 @@ +mod.mc_dep_fabric=>=1.21 <=1.21.1 +mod.mc_dep_forgelike=[1.21, 1.21.1] +mod.mc_title=1.21.1 +mod.mc_targets=1.21 1.21.1 + +deps.forge_loader=52.0.37 +deps.neoforge_loader=21.1.66 +deps.neoforge_patch=1.21+build.4 + +deps.yarn_build=3 +deps.fabric_version=0.114.0+1.21.1 + +deps.modmenu_version=11.0.3 + +loom.platform=fabric \ No newline at end of file diff --git a/versions/1.21.1-neoforge/gradle.properties b/versions/1.21.1-neoforge/gradle.properties new file mode 100644 index 0000000..886335a --- /dev/null +++ b/versions/1.21.1-neoforge/gradle.properties @@ -0,0 +1,15 @@ +mod.mc_dep_fabric=>=1.21 <=1.21.1 +mod.mc_dep_forgelike=[1.21, 1.21.1] +mod.mc_title=1.21.1 +mod.mc_targets=1.21 1.21.1 + +deps.forge_loader=52.0.37 +deps.neoforge_loader=21.1.66 +deps.neoforge_patch=1.21+build.4 + +deps.yarn_build=3 +deps.fabric_version=0.114.0+1.21.1 + +deps.modmenu_version=[UNSUPPORTED] + +loom.platform=neoforge \ No newline at end of file diff --git a/versions/1.21.3-fabric/gradle.properties b/versions/1.21.3-fabric/gradle.properties new file mode 100644 index 0000000..b2456b8 --- /dev/null +++ b/versions/1.21.3-fabric/gradle.properties @@ -0,0 +1,15 @@ +mod.mc_dep_fabric==1.21.3 +mod.mc_dep_forgelike=[1.21.3] +mod.mc_title=1.21.3 +mod.mc_targets=1.21.3 + +deps.forge_loader=53.0.33 +deps.neoforge_loader=21.3.58 +deps.neoforge_patch=1.21+build.4 + +deps.yarn_build=2 +deps.fabric_version=0.114.0+1.21.3 + +deps.modmenu_version=12.0.0 + +loom.platform=fabric \ No newline at end of file diff --git a/versions/1.21.3-neoforge/gradle.properties b/versions/1.21.3-neoforge/gradle.properties new file mode 100644 index 0000000..8d22a9d --- /dev/null +++ b/versions/1.21.3-neoforge/gradle.properties @@ -0,0 +1,15 @@ +mod.mc_dep_fabric==1.21.3 +mod.mc_dep_forgelike=[1.21.3] +mod.mc_title=1.21.3 +mod.mc_targets=1.21.3 + +deps.forge_loader=53.0.33 +deps.neoforge_loader=21.3.58 +deps.neoforge_patch=1.21+build.4 + +deps.yarn_build=2 +deps.fabric_version=0.114.0+1.21.3 + +deps.modmenu_version=[UNSUPPORTED] + +loom.platform=neoforge \ No newline at end of file diff --git a/versions/1.21.4-fabric/gradle.properties b/versions/1.21.4-fabric/gradle.properties new file mode 100644 index 0000000..eeac9f7 --- /dev/null +++ b/versions/1.21.4-fabric/gradle.properties @@ -0,0 +1,15 @@ +mod.mc_dep_fabric==1.21.4 +mod.mc_dep_forgelike=[1.21.4] +mod.mc_title=1.21.4 +mod.mc_targets=1.21.4 + +deps.forge_loader=54.0.13 +deps.neoforge_loader=21.4.47-beta +deps.neoforge_patch=1.21+build.4 + +deps.yarn_build=4 +deps.fabric_version=0.114.0+1.21.4 + +deps.modmenu_version=13.0.0-beta.1 + +loom.platform=fabric \ No newline at end of file diff --git a/versions/1.21.4-neoforge/gradle.properties b/versions/1.21.4-neoforge/gradle.properties new file mode 100644 index 0000000..0cb0e5e --- /dev/null +++ b/versions/1.21.4-neoforge/gradle.properties @@ -0,0 +1,14 @@ +mod.mc_dep_fabric==1.21.4 +mod.mc_dep_forgelike=[1.21.4] +mod.mc_title=1.21.4 +mod.mc_targets=1.21.4 + +deps.forge_loader=54.0.13 +deps.neoforge_loader=21.4.47-beta +deps.neoforge_patch=1.21+build.4 + +deps.yarn_build=4 +deps.fabric_version=0.114.0+1.21.4 +deps.modmenu_version=[UNSUPPORTED] + +loom.platform=neoforge \ No newline at end of file