From dcd98df83dd64c6236addc6dfb08d1a82bfd6270 Mon Sep 17 00:00:00 2001 From: Chen Wu <201436728@qq.com> Date: Wed, 1 Dec 2021 23:58:25 +0800 Subject: [PATCH] Add Forge 1.18 --- .gitignore | 9 +- Forge/1.13+/src/main/resources/pack.mcmeta | 6 - Forge/{1.13+ => 1.13-1.17}/.gitignore | 0 Forge/{1.13+ => 1.13-1.17}/LICENSE.txt | 0 Forge/{1.13+ => 1.13-1.17}/build.gradle | 34 +- Forge/{1.13+ => 1.13-1.17}/gradle.properties | 0 .../gradle/wrapper/gradle-wrapper.jar | Bin .../gradle/wrapper/gradle-wrapper.properties | 0 Forge/{1.13+ => 1.13-1.17}/gradlew | 0 Forge/{1.13+ => 1.13-1.17}/gradlew.bat | 0 .../qingchenw/allowcolor/AllowColorMod.java | 6 +- .../src/main/resources/META-INF/coremods.json | 0 .../src/main/resources/META-INF/mods.toml | 4 +- .../src/main/resources/allowcolor.js | 0 .../1.13-1.17/src/main/resources/pack.mcmeta | 6 + Forge/1.18+/.gitattributes | 5 + Forge/1.18+/.gitignore | 25 + Forge/1.18+/LICENSE.txt | 520 ++++++++++++++++++ Forge/1.18+/build.gradle | 102 ++++ Forge/1.18+/gradle.properties | 4 + Forge/1.18+/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 59536 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 + Forge/1.18+/gradlew | 234 ++++++++ Forge/1.18+/gradlew.bat | 90 +++ .../qingchenw/allowcolor/AllowColorMod.java | 36 ++ .../src/main/resources/META-INF/coremods.json | 3 + .../src/main/resources/META-INF/mods.toml | 27 + Forge/1.18+/src/main/resources/allowcolor.js | 23 + Forge/1.18+/src/main/resources/pack.mcmeta | 6 + Forge/1.7.10/fgow-1.1.0.jar | Bin 0 -> 38314 bytes Forge/1.7.10/gradle.properties | 4 + 31 files changed, 1109 insertions(+), 40 deletions(-) delete mode 100644 Forge/1.13+/src/main/resources/pack.mcmeta rename Forge/{1.13+ => 1.13-1.17}/.gitignore (100%) rename Forge/{1.13+ => 1.13-1.17}/LICENSE.txt (100%) rename Forge/{1.13+ => 1.13-1.17}/build.gradle (76%) rename Forge/{1.13+ => 1.13-1.17}/gradle.properties (100%) rename Forge/{1.13+ => 1.13-1.17}/gradle/wrapper/gradle-wrapper.jar (100%) rename Forge/{1.13+ => 1.13-1.17}/gradle/wrapper/gradle-wrapper.properties (100%) rename Forge/{1.13+ => 1.13-1.17}/gradlew (100%) rename Forge/{1.13+ => 1.13-1.17}/gradlew.bat (100%) rename Forge/{1.13+ => 1.13-1.17}/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java (95%) rename Forge/{1.13+ => 1.13-1.17}/src/main/resources/META-INF/coremods.json (100%) rename Forge/{1.13+ => 1.13-1.17}/src/main/resources/META-INF/mods.toml (89%) rename Forge/{1.13+ => 1.13-1.17}/src/main/resources/allowcolor.js (100%) create mode 100644 Forge/1.13-1.17/src/main/resources/pack.mcmeta create mode 100644 Forge/1.18+/.gitattributes create mode 100644 Forge/1.18+/.gitignore create mode 100644 Forge/1.18+/LICENSE.txt create mode 100644 Forge/1.18+/build.gradle create mode 100644 Forge/1.18+/gradle.properties create mode 100644 Forge/1.18+/gradle/wrapper/gradle-wrapper.jar create mode 100644 Forge/1.18+/gradle/wrapper/gradle-wrapper.properties create mode 100644 Forge/1.18+/gradlew create mode 100644 Forge/1.18+/gradlew.bat create mode 100644 Forge/1.18+/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java create mode 100644 Forge/1.18+/src/main/resources/META-INF/coremods.json create mode 100644 Forge/1.18+/src/main/resources/META-INF/mods.toml create mode 100644 Forge/1.18+/src/main/resources/allowcolor.js create mode 100644 Forge/1.18+/src/main/resources/pack.mcmeta create mode 100644 Forge/1.7.10/fgow-1.1.0.jar create mode 100644 Forge/1.7.10/gradle.properties diff --git a/.gitignore b/.gitignore index 25e5d62..de83b7b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,2 @@ -* -!Vanilla -!Forge -!Fabric -!picture.png -!LICENSE -!README.md \ No newline at end of file +.metadata +build diff --git a/Forge/1.13+/src/main/resources/pack.mcmeta b/Forge/1.13+/src/main/resources/pack.mcmeta deleted file mode 100644 index d2575ba..0000000 --- a/Forge/1.13+/src/main/resources/pack.mcmeta +++ /dev/null @@ -1,6 +0,0 @@ -{ - "pack": { - "description": "Allowcolor mod resources", - "pack_format": 3 - } -} diff --git a/Forge/1.13+/.gitignore b/Forge/1.13-1.17/.gitignore similarity index 100% rename from Forge/1.13+/.gitignore rename to Forge/1.13-1.17/.gitignore diff --git a/Forge/1.13+/LICENSE.txt b/Forge/1.13-1.17/LICENSE.txt similarity index 100% rename from Forge/1.13+/LICENSE.txt rename to Forge/1.13-1.17/LICENSE.txt diff --git a/Forge/1.13+/build.gradle b/Forge/1.13-1.17/build.gradle similarity index 76% rename from Forge/1.13+/build.gradle rename to Forge/1.13-1.17/build.gradle index c5a286a..c2ab2e8 100644 --- a/Forge/1.13+/build.gradle +++ b/Forge/1.13-1.17/build.gradle @@ -1,16 +1,12 @@ buildscript { repositories { - maven { - name = 'lss233' - url = 'https://crystal.app.lss233.com/repositories/minecraft' - } + maven { url = 'https://files.minecraftforge.net/maven' } maven { name = 'jcenter' url = 'https://maven.aliyun.com/repository/public' } - maven { url = 'https://files.minecraftforge.net/maven' } - // jcenter() - // mavenCentral() + jcenter() + mavenCentral() } dependencies { classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true @@ -21,9 +17,9 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'eclipse' apply plugin: 'maven-publish' -version = '3.2' +version = '3.3' group = 'io.github.dawncraft.qingchenw' -archivesBaseName = 'allowcolor-forge(1.13-1.16)' +archivesBaseName = 'allowcolor-forge(1.13-1.17)' [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' @@ -39,7 +35,7 @@ minecraft { property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' property 'forge.logging.console.level', 'debug' mods { - allowcolor{ + allowcolor { source sourceSets.main } } @@ -50,7 +46,7 @@ minecraft { property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' property 'forge.logging.console.level', 'debug' mods { - allowcolor{ + allowcolor { source sourceSets.main } } @@ -63,10 +59,6 @@ repositories { name = 'jcenter' url = 'https://maven.aliyun.com/repository/public' } - maven { - name = 'lss233' - url = 'https://crystal.app.lss233.com/repositories/minecraft' - } maven { url = 'https://files.minecraftforge.net/maven' } maven { name = "minecraft" @@ -81,12 +73,12 @@ dependencies { jar { manifest { attributes([ - "Specification-Title": "Allow Color Mod", - "Specification-Vendor": "QingChenW", - "Specification-Version": "${version}", - "Implementation-Title": "io.github.dawncraft.qingchenw.allowcolor", - "Implementation-Version": "${version}", - "Implementation-Vendor" :"QingChenW", + "Specification-Title" : "AllowColor Mod", + "Specification-Vendor" : "QingChenW", + "Specification-Version" : "${version}", + "Implementation-Title" : "AllowColor Mod", + "Implementation-Version" : "${version}", + "Implementation-Vendor" : "QingChenW", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ]) } diff --git a/Forge/1.13+/gradle.properties b/Forge/1.13-1.17/gradle.properties similarity index 100% rename from Forge/1.13+/gradle.properties rename to Forge/1.13-1.17/gradle.properties diff --git a/Forge/1.13+/gradle/wrapper/gradle-wrapper.jar b/Forge/1.13-1.17/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from Forge/1.13+/gradle/wrapper/gradle-wrapper.jar rename to Forge/1.13-1.17/gradle/wrapper/gradle-wrapper.jar diff --git a/Forge/1.13+/gradle/wrapper/gradle-wrapper.properties b/Forge/1.13-1.17/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from Forge/1.13+/gradle/wrapper/gradle-wrapper.properties rename to Forge/1.13-1.17/gradle/wrapper/gradle-wrapper.properties diff --git a/Forge/1.13+/gradlew b/Forge/1.13-1.17/gradlew similarity index 100% rename from Forge/1.13+/gradlew rename to Forge/1.13-1.17/gradlew diff --git a/Forge/1.13+/gradlew.bat b/Forge/1.13-1.17/gradlew.bat similarity index 100% rename from Forge/1.13+/gradlew.bat rename to Forge/1.13-1.17/gradlew.bat diff --git a/Forge/1.13+/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java b/Forge/1.13-1.17/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java similarity index 95% rename from Forge/1.13+/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java rename to Forge/1.13-1.17/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java index 06cc5b4..c7b4070 100644 --- a/Forge/1.13+/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java +++ b/Forge/1.13-1.17/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java @@ -29,10 +29,8 @@ public void setup(FMLCommonSetupEvent event) { LOGGER.info("Can you input format code? " + SharedConstants.isAllowedCharacter(FORMAT_CODE)); } - public void clientSetup(FMLClientSetupEvent event) { - } + public void clientSetup(FMLClientSetupEvent event) {} @SubscribeEvent - public void onServerStarting(FMLServerStartingEvent event) { - } + public void onServerStarting(FMLServerStartingEvent event) {} } diff --git a/Forge/1.13+/src/main/resources/META-INF/coremods.json b/Forge/1.13-1.17/src/main/resources/META-INF/coremods.json similarity index 100% rename from Forge/1.13+/src/main/resources/META-INF/coremods.json rename to Forge/1.13-1.17/src/main/resources/META-INF/coremods.json diff --git a/Forge/1.13+/src/main/resources/META-INF/mods.toml b/Forge/1.13-1.17/src/main/resources/META-INF/mods.toml similarity index 89% rename from Forge/1.13+/src/main/resources/META-INF/mods.toml rename to Forge/1.13-1.17/src/main/resources/META-INF/mods.toml index 2b17443..a513948 100644 --- a/Forge/1.13+/src/main/resources/META-INF/mods.toml +++ b/Forge/1.13-1.17/src/main/resources/META-INF/mods.toml @@ -4,7 +4,7 @@ license="GPLv3" showAsResourcePack=false [[mods]] modId="allowcolor" -version="${version}" +version="${file.jarVersion}" displayName="AllowColor Mod" displayURL="https://github.com/DawningW/Allow-Color-Mod" credits="Mojang, FML and Forge" @@ -15,7 +15,7 @@ Type color codes in Minecraft. [[dependencies.allowcolor]] modId="minecraft" mandatory=true - versionRange="[1.13,)" + versionRange="[1.13,1.18)" ordering="NONE" side="BOTH" [[dependencies.allowcolor]] diff --git a/Forge/1.13+/src/main/resources/allowcolor.js b/Forge/1.13-1.17/src/main/resources/allowcolor.js similarity index 100% rename from Forge/1.13+/src/main/resources/allowcolor.js rename to Forge/1.13-1.17/src/main/resources/allowcolor.js diff --git a/Forge/1.13-1.17/src/main/resources/pack.mcmeta b/Forge/1.13-1.17/src/main/resources/pack.mcmeta new file mode 100644 index 0000000..e1d8251 --- /dev/null +++ b/Forge/1.13-1.17/src/main/resources/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "description": "AllowColor mod resources", + "pack_format": 3 + } +} diff --git a/Forge/1.18+/.gitattributes b/Forge/1.18+/.gitattributes new file mode 100644 index 0000000..f811f6a --- /dev/null +++ b/Forge/1.18+/.gitattributes @@ -0,0 +1,5 @@ +# Disable autocrlf on generated files, they always generate with LF +# Add any extra files or paths here to make git stop saying they +# are changed when only line endings change. +src/generated/**/.cache/cache text eol=lf +src/generated/**/*.json text eol=lf diff --git a/Forge/1.18+/.gitignore b/Forge/1.18+/.gitignore new file mode 100644 index 0000000..12f8644 --- /dev/null +++ b/Forge/1.18+/.gitignore @@ -0,0 +1,25 @@ +# eclipse +bin +*.launch +.settings +.metadata +.classpath +.project + +# idea +out +*.ipr +*.iws +*.iml +.idea + +# gradle +build +.gradle + +# other +eclipse +run + +# Files from Forge MDK +forge*changelog.txt diff --git a/Forge/1.18+/LICENSE.txt b/Forge/1.18+/LICENSE.txt new file mode 100644 index 0000000..b0cbe2b --- /dev/null +++ b/Forge/1.18+/LICENSE.txt @@ -0,0 +1,520 @@ +Unless noted below, Minecraft Forge, Forge Mod Loader, and all +parts herein are licensed under the terms of the LGPL 2.1 found +here http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt and +copied below. + +Homepage: http://minecraftforge.net/ + https://github.com/MinecraftForge/MinecraftForge + + +A note on authorship: +All source artifacts are property of their original author, with +the exclusion of the contents of the patches directory and others +copied from it from time to time. Authorship of the contents of +the patches directory is retained by the Minecraft Forge project. +This is because the patches are partially machine generated +artifacts, and are changed heavily due to the way forge works. +Individual attribution within them is impossible. + +Consent: +All contributions to Forge must consent to the release of any +patch content to the Forge project. + +A note on infectivity: +The LGPL is chosen specifically so that projects may depend on Forge +features without being infected with its license. That is the +purpose of the LGPL. Mods and others using this code via ordinary +Java mechanics for referencing libraries are specifically not bound +by Forge's license for the Mod code. + + +=== MCP Data === +This software includes data from the Minecraft Coder Pack (MCP), with kind permission +from them. The license to MCP data is not transitive - distribution of this data by +third parties requires independent licensing from the MCP team. This data is not +redistributable without permission from the MCP team. + +=== Sharing === +I grant permission for some parts of FML to be redistributed outside the terms of the LGPL, for the benefit of +the minecraft modding community. All contributions to these parts should be licensed under the same additional grant. + +-- Runtime patcher -- +License is granted to redistribute the runtime patcher code (src/main/java/net/minecraftforge/fml/common/patcher +and subdirectories) under any alternative open source license as classified by the OSI (http://opensource.org/licenses) + +-- ASM transformers -- +License is granted to redistribute the ASM transformer code (src/main/java/net/minecraftforge/common/asm/ and subdirectories) +under any alternative open source license as classified by the OSI (http://opensource.org/licenses) + +========================================================================= +This software includes portions from the Apache Maven project at +http://maven.apache.org/ specifically the ComparableVersion.java code. It is +included based on guidelines at +http://www.softwarefreedom.org/resources/2007/gpl-non-gpl-collaboration.html +with notices intact. The only change is a non-functional change of package name. + +This software contains a partial repackaging of javaxdelta, a BSD licensed program for generating +binary differences and applying them, sourced from the subversion at http://sourceforge.net/projects/javaxdelta/ +authored by genman, heikok, pivot. +The only changes are to replace some Trove collection types with standard Java collections, and repackaged. +========================================================================= + + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. 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 not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the 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 +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS diff --git a/Forge/1.18+/build.gradle b/Forge/1.18+/build.gradle new file mode 100644 index 0000000..9b97a6b --- /dev/null +++ b/Forge/1.18+/build.gradle @@ -0,0 +1,102 @@ +buildscript { + repositories { + maven { url = 'https://maven.minecraftforge.net' } + mavenCentral() + } + dependencies { + classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true + } +} +apply plugin: 'net.minecraftforge.gradle' +// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. +apply plugin: 'eclipse' +apply plugin: 'maven-publish' + +version = '4.0' +group = 'io.github.dawncraft.qingchenw' +archivesBaseName = 'allowcolor-forge1.18' + +[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8' +// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. +java.toolchain.languageVersion = JavaLanguageVersion.of(17) + +println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch')) +minecraft { + mappings channel: 'official', version: '1.18' + // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default. + + runs { + client { + workingDirectory project.file('run') + property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' + property 'forge.logging.console.level', 'debug' + mods { + allowcolor { + source sourceSets.main + } + } + } + + server { + workingDirectory project.file('run') + property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' + property 'forge.logging.console.level', 'debug' + mods { + allowcolor { + source sourceSets.main + } + } + } + + data { + workingDirectory project.file('run') + property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' + property 'forge.logging.console.level', 'debug' + args '--mod', 'allowcolor', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') + mods { + allowcolor { + source sourceSets.main + } + } + } + } +} +sourceSets.main.resources { srcDir 'src/generated/resources' } + +repositories { + // flatDir { + // dir 'libs' + // } +} + +dependencies { + minecraft 'net.minecraftforge:forge:1.18-38.0.4' +} + +jar { + manifest { + attributes([ + "Specification-Title" : "AllowColor Mod", + "Specification-Vendor" : "QingChenW", + "Specification-Version" : project.jar.archiveVersion, + "Implementation-Title" : "AllowColor Mod", + "Implementation-Version" : project.jar.archiveVersion, + "Implementation-Vendor" : "QingChenW", + "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") + ]) + } +} + +jar.finalizedBy('reobfJar') +publishing { + publications { + mavenJava(MavenPublication) { + artifact jar + } + } + repositories { + maven { + url "file://${project.projectDir}/mcmodsrepo" + } + } +} diff --git a/Forge/1.18+/gradle.properties b/Forge/1.18+/gradle.properties new file mode 100644 index 0000000..878bf1f --- /dev/null +++ b/Forge/1.18+/gradle.properties @@ -0,0 +1,4 @@ +# Sets default memory used for gradle commands. Can be overridden by user or command line properties. +# This is required to provide enough memory for the Minecraft decompilation process. +org.gradle.jvmargs=-Xmx3G +org.gradle.daemon=false \ No newline at end of file diff --git a/Forge/1.18+/gradle/wrapper/gradle-wrapper.jar b/Forge/1.18+/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..7454180f2ae8848c63b8b4dea2cb829da983f2fa GIT binary patch literal 59536 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 QuEJmfE|#`Dqx|px0L@K;Y5)KL literal 0 HcmV?d00001 diff --git a/Forge/1.18+/gradle/wrapper/gradle-wrapper.properties b/Forge/1.18+/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e750102 --- /dev/null +++ b/Forge/1.18+/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/Forge/1.18+/gradlew b/Forge/1.18+/gradlew new file mode 100644 index 0000000..c53aefa --- /dev/null +++ b/Forge/1.18+/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/Forge/1.18+/gradlew.bat b/Forge/1.18+/gradlew.bat new file mode 100644 index 0000000..8a4ba0b --- /dev/null +++ b/Forge/1.18+/gradlew.bat @@ -0,0 +1,90 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" +set GRADLE_OPTS=-Dgradle.user.home=D:\Minecraft\.gradle-new + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/Forge/1.18+/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java b/Forge/1.18+/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java new file mode 100644 index 0000000..89124cf --- /dev/null +++ b/Forge/1.18+/src/main/java/io/github/qingchenw/allowcolor/AllowColorMod.java @@ -0,0 +1,36 @@ +package io.github.qingchenw.allowcolor; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import net.minecraft.SharedConstants; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; +import net.minecraftforge.event.server.ServerStartingEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; + +@Mod("allowcolor") +public class AllowColorMod { + public static final char FORMAT_CODE = '\u00A7'; + private static final Logger LOGGER = LogManager.getLogger(); + + public AllowColorMod() { + FMLJavaModLoadingContext.get().getModEventBus().addListener(this::setup); + FMLJavaModLoadingContext.get().getModEventBus().addListener(this::clientSetup); + + MinecraftForge.EVENT_BUS.register(this); + } + + private void setup(final FMLCommonSetupEvent event) { + LOGGER.info("Allow Color Mod has been installed successfully, made by QingChenW. "); + LOGGER.info("Can you input format code? " + SharedConstants.isAllowedChatCharacter(FORMAT_CODE)); + } + + public void clientSetup(FMLClientSetupEvent event) {} + + @SubscribeEvent + public void onServerStarting(ServerStartingEvent event) {} +} diff --git a/Forge/1.18+/src/main/resources/META-INF/coremods.json b/Forge/1.18+/src/main/resources/META-INF/coremods.json new file mode 100644 index 0000000..387c2ac --- /dev/null +++ b/Forge/1.18+/src/main/resources/META-INF/coremods.json @@ -0,0 +1,3 @@ +{ + "allowcolor": "allowcolor.js" +} diff --git a/Forge/1.18+/src/main/resources/META-INF/mods.toml b/Forge/1.18+/src/main/resources/META-INF/mods.toml new file mode 100644 index 0000000..a1408a6 --- /dev/null +++ b/Forge/1.18+/src/main/resources/META-INF/mods.toml @@ -0,0 +1,27 @@ +modLoader="javafml" +loaderVersion="[38,)" +license="GPLv3" +showAsResourcePack=false +issueTrackerURL="https://github.com/DawningW/Allow-Color-Mod/issues" +[[mods]] +modId="allowcolor" +version="${file.jarVersion}" +displayName="AllowColor Mod" +displayURL="https://github.com/DawningW/Allow-Color-Mod" +credits="Mojang, FML and Forge" +authors="QingChenW" +description=''' +Type color codes in Minecraft. +''' +[[dependencies.allowcolor]] + modId="minecraft" + mandatory=true + versionRange="[1.18,)" + ordering="NONE" + side="BOTH" +[[dependencies.allowcolor]] + modId="forge" + mandatory=true + versionRange="[38,)" + ordering="NONE" + side="BOTH" diff --git a/Forge/1.18+/src/main/resources/allowcolor.js b/Forge/1.18+/src/main/resources/allowcolor.js new file mode 100644 index 0000000..7eb29bc --- /dev/null +++ b/Forge/1.18+/src/main/resources/allowcolor.js @@ -0,0 +1,23 @@ +var ASMAPI = Java.type('net.minecraftforge.coremod.api.ASMAPI'); +var Opcodes = Java.type('org.objectweb.asm.Opcodes'); + +function initializeCoreMod() { + return { + 'AllowColorTransformer': { + 'target': { + 'type': 'CLASS', + 'name': 'net/minecraft/SharedConstants' + }, + 'transformer': function (classNode) { + classNode.methods.forEach(function (methodNode) { + if (methodNode.name.equals("m_136188_") || methodNode.name.equals("isAllowedChatCharacter")) { + methodNode.instructions.remove(methodNode.instructions.get(0)); + methodNode.instructions.remove(methodNode.instructions.get(1)); + methodNode.instructions.remove(methodNode.instructions.get(2)); + } + }); + return classNode; + } + } + }; +} diff --git a/Forge/1.18+/src/main/resources/pack.mcmeta b/Forge/1.18+/src/main/resources/pack.mcmeta new file mode 100644 index 0000000..5101b75 --- /dev/null +++ b/Forge/1.18+/src/main/resources/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "description": "AllowColor mod resources", + "pack_format": 8 + } +} diff --git a/Forge/1.7.10/fgow-1.1.0.jar b/Forge/1.7.10/fgow-1.1.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..fd65458ff5a6258d1f1011c0506953cc45865298 GIT binary patch literal 38314 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 ag4Svc@MZ;0xic`x0bwPu{VClI;sF4;1E*vF literal 0 HcmV?d00001 diff --git a/Forge/1.7.10/gradle.properties b/Forge/1.7.10/gradle.properties new file mode 100644 index 0000000..ae5fe75 --- /dev/null +++ b/Forge/1.7.10/gradle.properties @@ -0,0 +1,4 @@ +# Sets default memory used for gradle commands. Can be overridden by user or command line properties. +# This is required to provide enough memory for the Minecraft decompilation process. +org.gradle.jvmargs=-Xmx2G +org.gradle.daemon=false \ No newline at end of file