aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLifeIsAParadox <LifeIsAParadox@users.noreply.github.com>2021-09-14 08:47:32 +0200
committerLifeIsAParadox <LifeIsAParadox@users.noreply.github.com>2021-09-14 08:47:32 +0200
commit7d2446cdc4bac31cb29709068b2f874da87d4ea9 (patch)
tree13117dbf6a53e1ca8a474d4fce85c21b09c698f1
parentb23331eb654e2e26d17d13616c05ffe3af822290 (diff)
downloadSkyblocker-7d2446cdc4bac31cb29709068b2f874da87d4ea9.tar.gz
Skyblocker-7d2446cdc4bac31cb29709068b2f874da87d4ea9.tar.bz2
Skyblocker-7d2446cdc4bac31cb29709068b2f874da87d4ea9.zip
Bugfixing and Blaze solver
-rw-r--r--.github/FUNDING.yml1
-rw-r--r--.github/workflows/beta.yml47
-rw-r--r--.github/workflows/build.yml39
-rw-r--r--.github/workflows/buildrelease.yml35
-rw-r--r--LICENSE674
-rw-r--r--README.md14
-rw-r--r--build.gradle2
-rw-r--r--gradle.properties6
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/SkyblockerMod.java8
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/mixin/AccessorWorldRenderer.java15
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/mixin/ItemRendererMixin.java2
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonBlaze.java50
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonMap.java5
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/skyblock/item/PriceInfoTooltip.java27
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/Boxes.java47
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/FrustumUtils.java17
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtils.java235
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtilsLiving.java181
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/Utils.java6
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/Vertexer.java156
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/color/LineColor.java66
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/color/QuadColor.java115
-rw-r--r--src/main/java/me/xmrvizzy/skyblocker/utils/color/RenderColor.java27
-rw-r--r--src/main/resources/fabric.mod.json16
-rw-r--r--src/main/resources/skyblocker.mixins.json3
25 files changed, 1400 insertions, 394 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 00000000..c1b6d098
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1 @@
+ko_fi: wohlhabend \ No newline at end of file
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml
new file mode 100644
index 00000000..2d24d401
--- /dev/null
+++ b/.github/workflows/beta.yml
@@ -0,0 +1,47 @@
+name: Build Beta
+
+on: [ push, pull_request ]
+
+jobs:
+ # This workflow contains a single job called "build"
+ build:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - uses: actions/checkout@v2
+
+ - uses: actions/github-script@v2
+ with:
+ result-encoding: string
+ script: |
+ const fs = require("fs");
+ let file = fs.readFileSync("./gradle.properties");
+ file = file.toString().split("\n").map(e => e.trim().startsWith("mod_version") ? `${e}-beta-${process.env.GITHUB_SHA.substring(0, 7)}` : e).join("\n");
+ fs.writeFileSync("./gradle.properties", file);
+
+ - name: Set up JDK 16
+ uses: actions/setup-java@v2
+ with:
+ distribution: 'adopt'
+ java-version: '16'
+
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+
+ - name: Build with Gradle
+ run: ./gradlew build
+
+ - uses: actions/github-script@v2
+ id: fname
+ with:
+ result-encoding: string
+ script: |
+ const fs = require("fs")
+ return fs.readdirSync("build/libs/").filter(e => !e.endsWith("dev.jar") && !e.endsWith("sources.jar") && e.endsWith(".jar"))[0].replace(".jar", "");
+
+ - uses: actions/upload-artifact@v2
+ with:
+ name: ${{ steps.fname.outputs.result }}
+ path: build/libs/ \ No newline at end of file
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
deleted file mode 100644
index 62417f76..00000000
--- a/.github/workflows/build.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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: [
- 16 # Minimum supported by Minecraft
- ]
- # and run on both Linux and Windows
- os: [ubuntu-20.04, windows-latest]
- runs-on: ${{ matrix.os }}
- steps:
- - name: checkout repository
- uses: actions/checkout@v2
- - name: validate gradle wrapper
- uses: gradle/wrapper-validation-action@v1
- - name: setup jdk ${{ matrix.java }}
- uses: actions/setup-java@v1
- with:
- java-version: ${{ matrix.java }}
- - name: make gradle wrapper executable
- if: ${{ runner.os != 'Windows' }}
- run: chmod +x ./gradlew
- - name: build
- run: ./gradlew build
- - name: capture build artifacts
- if: ${{ runner.os == 'Linux' && matrix.java == '16' }} # Only upload artifacts built from latest java on one OS
- uses: actions/upload-artifact@v2
- with:
- name: Artifacts
- path: build/libs/ \ No newline at end of file
diff --git a/.github/workflows/buildrelease.yml b/.github/workflows/buildrelease.yml
new file mode 100644
index 00000000..a74f6d9c
--- /dev/null
+++ b/.github/workflows/buildrelease.yml
@@ -0,0 +1,35 @@
+# This is a basic workflow to help you get started with Actions
+
+name: Build Release
+
+# Controls when the action will run. Triggers the workflow on push or pull request
+# events but only for the master branch
+on:
+ release:
+ types: [created]
+
+jobs:
+ # This workflow contains a single job called "build"
+ build:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - uses: actions/checkout@v2
+ - name: Set up JDK 16
+ uses: actions/setup-java@v2
+ with:
+ distribution: 'adopt'
+ java-version: '16'
+
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+
+ - name: Build with Gradle
+ run: ./gradlew build
+
+ - uses: actions/upload-artifact@v2
+ with:
+ name: Artifacts
+ path: build/libs/ \ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..f288702d
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, 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
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If 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 convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU 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
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM 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 PROGRAM (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 PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ <program> Copyright (C) <year> <name of author>
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<https://www.gnu.org/licenses/>.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+<https://www.gnu.org/licenses/why-not-lgpl.html>.
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..b427c0b7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,14 @@
+## Skyblocker
+This mod was created for those people who are tired of switching Minecraft versions to play their favorite game mode called **Hypixel Skyblock** with all helpful features that can make your game experience better!
+
+**Join The Skyblockers** [**Discord**](https://discord.com/invite/aNNJHQykck)
+
+## Downloads/Releases [![Build Release](https://github.com/LifeIsAParadox/Skyblocker/actions/workflows/build.yml/badge.svg)](https://github.com/LifeIsAParadox/Skyblocker/actions/workflows/build.yml)
+For the releases of Skyblocker see:
+* [Modrinth](https://modrinth.com/mod/skyblocker)
+* [GitHub releases](https://github.com/LifeIsAParadox/Skyblocker/releases)
+* [![Build Beta](https://github.com/LifeIsAParadox/Skyblocker/actions/workflows/beta.yml/badge.svg)](https://github.com/LifeIsAParadox/Skyblocker/actions/workflows/beta.yml)
+
+## Support me
+
+<https://ko-fi.com/wohlhabend> \ No newline at end of file
diff --git a/build.gradle b/build.gradle
index 140f0dc8..debb058d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -29,7 +29,7 @@ repositories {
}
dependencies {
- implementation 'com.google.code.gson:gson:2.8.7'
+ implementation 'com.google.code.gson:gson:2.8.8'
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
diff --git a/gradle.properties b/gradle.properties
index 1a49ff52..b0954160 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -2,11 +2,11 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties (https://fabricmc.net/versions.html)
minecraft_version=1.17.1
-yarn_mappings=1.17.1+build.39
+yarn_mappings=1.17.1+build.59
loader_version=0.11.6
#Fabric api
-fabric_version=0.38.0+1.17
+fabric_version=0.40.0+1.17
# Dependencies
## Cloth Api (https://www.curseforge.com/minecraft/mc-mods/cloth-config/files)
@@ -15,6 +15,6 @@ clothconfig_version=5.0.38
mod_menu_version=2.0.4
# Mod Properties
-mod_version = 1.0.6
+mod_version = 1.0.7
maven_group = me.xmrvizzy
archives_base_name = skyblocker \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/SkyblockerMod.java b/src/main/java/me/xmrvizzy/skyblocker/SkyblockerMod.java
index f81135de..6a9048d2 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/SkyblockerMod.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/SkyblockerMod.java
@@ -1,19 +1,11 @@
package me.xmrvizzy.skyblocker;
-import java.util.Map;
-
-import com.google.gson.JsonObject;
-
-import org.apache.commons.lang3.ObjectUtils.Null;
-
import me.xmrvizzy.skyblocker.config.SkyblockerConfig;
import me.xmrvizzy.skyblocker.skyblock.HotbarSlotLock;
import me.xmrvizzy.skyblocker.skyblock.dungeon.DungeonBlaze;
import me.xmrvizzy.skyblocker.utils.Utils;
import net.fabricmc.api.ClientModInitializer;
-import net.fabricmc.fabric.api.client.item.v1.ItemTooltipCallback;
import net.minecraft.client.MinecraftClient;
-import me.xmrvizzy.skyblocker.skyblock.item.PriceInfoTooltip;
public class SkyblockerMod implements ClientModInitializer {
public static final String NAMESPACE = "skyblocker";
private static int TICKS = 0;
diff --git a/src/main/java/me/xmrvizzy/skyblocker/mixin/AccessorWorldRenderer.java b/src/main/java/me/xmrvizzy/skyblocker/mixin/AccessorWorldRenderer.java
new file mode 100644
index 00000000..02990ea9
--- /dev/null
+++ b/src/main/java/me/xmrvizzy/skyblocker/mixin/AccessorWorldRenderer.java
@@ -0,0 +1,15 @@
+package me.xmrvizzy.skyblocker.mixin;
+
+import org.spongepowered.asm.mixin.Mixin;
+import org.spongepowered.asm.mixin.gen.Accessor;
+
+import net.minecraft.client.render.Frustum;
+import net.minecraft.client.render.WorldRenderer;
+
+@Mixin(WorldRenderer.class)
+public interface AccessorWorldRenderer {
+
+ @Accessor
+ Frustum getFrustum();
+
+} \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/mixin/ItemRendererMixin.java b/src/main/java/me/xmrvizzy/skyblocker/mixin/ItemRendererMixin.java
index 90f82da6..002497ce 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/mixin/ItemRendererMixin.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/mixin/ItemRendererMixin.java
@@ -4,14 +4,12 @@ import com.mojang.blaze3d.systems.RenderSystem;
import me.xmrvizzy.skyblocker.config.SkyblockerConfig;
import me.xmrvizzy.skyblocker.utils.ItemUtils;
import me.xmrvizzy.skyblocker.utils.Utils;
-import net.minecraft.client.MinecraftClient;
import net.minecraft.client.font.TextRenderer;
import net.minecraft.client.render.BufferBuilder;
import net.minecraft.client.render.Tessellator;
import net.minecraft.client.render.item.ItemRenderer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NbtCompound;
-import net.minecraft.text.LiteralText;
import net.minecraft.util.math.MathHelper;
import org.jetbrains.annotations.Nullable;
import org.spongepowered.asm.mixin.Mixin;
diff --git a/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonBlaze.java b/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonBlaze.java
index fd20c3a4..621c5cc4 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonBlaze.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonBlaze.java
@@ -1,51 +1,16 @@
package me.xmrvizzy.skyblocker.skyblock.dungeon;
-import java.util.List;
-
-import com.mojang.blaze3d.systems.RenderCall;
-
-import org.lwjgl.opengl.GL11;
-
+import me.xmrvizzy.skyblocker.utils.color.QuadColor;
import me.xmrvizzy.skyblocker.utils.RenderUtils;
-import me.xmrvizzy.skyblocker.utils.RenderUtilsLiving;
-import net.fabricmc.fabric.api.client.rendereregistry.v1.BlockEntityRendererRegistry;
-import net.fabricmc.fabric.api.client.rendereregistry.v1.EntityRendererRegistry;
-import net.fabricmc.fabric.api.client.rendering.v1.HudRenderCallback;
import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderContext;
import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderEvents;
-import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderEvents.AfterEntities;
-import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderEvents.BeforeEntities;
-import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderEvents.DebugRender;
-import net.fabricmc.fabric.api.client.rendering.v1.WorldRenderEvents.Start;
-import net.fabricmc.fabric.api.renderer.v1.RendererAccess;
-import net.fabricmc.fabric.impl.client.indigo.renderer.render.BlockRenderContext;
-import net.fabricmc.fabric.impl.client.rendering.WorldRenderContextImpl;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.font.TextRenderer;
-import net.minecraft.client.gui.Drawable;
-import net.minecraft.client.gui.DrawableHelper;
-import net.minecraft.client.gui.hud.InGameHud;
-import net.minecraft.client.render.BufferBuilder;
-import net.minecraft.client.render.GameRenderer;
-import net.minecraft.client.render.Tessellator;
-import net.minecraft.client.render.VertexFormats;
-import net.minecraft.client.render.WorldRenderer;
-import net.minecraft.client.render.block.BlockModelRenderer;
-import net.minecraft.client.render.block.BlockRenderManager;
-import net.minecraft.client.render.block.entity.BlockEntityRenderDispatcher;
-import net.minecraft.client.render.block.entity.BlockEntityRenderer;
import net.minecraft.client.render.debug.DebugRenderer;
-import net.minecraft.client.render.debug.DebugRenderer.Renderer;
-import net.minecraft.client.render.entity.EntityRenderDispatcher;
-import net.minecraft.client.util.math.MatrixStack;
-import net.minecraft.util.math.Vec3f;
import net.minecraft.entity.Entity;
-import net.minecraft.entity.mob.BlazeEntity;
import net.minecraft.text.LiteralText;
import net.minecraft.util.Formatting;
-import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Box;
-import net.minecraft.util.math.Vec3d;
public class DungeonBlaze {
static Entity highestBlaze = null;
@@ -98,23 +63,26 @@ public class DungeonBlaze {
}
}
public static void blazeRenderer(WorldRenderContext wrc) {
+ QuadColor outlineColorRed = QuadColor.single( 0.0F, 1.0F, 0.0F, 1f);
+ QuadColor outlineColorGreen = QuadColor.single(1.0F, 0.0F, 0.0F, 1f);
try {
TextRenderer tr = MinecraftClient.getInstance().textRenderer;
DebugRenderer wc = MinecraftClient.getInstance().debugRenderer;
if(highestBlaze != null){
- /* Outline */
+ /* Outline */
Box blaze = highestBlaze.getBoundingBox().expand(1);
- RenderUtils.drawOutlineBox(blaze, 0.0F, 1.0F, 0.0F, 1f);
+ RenderUtils.drawBoxOutline(blaze,outlineColorRed,2.5f);
}
if(lowestBlaze != null){
- /* Outline */
+ /* Outline */
Box blaze = lowestBlaze.getBoundingBox().expand(1);
- RenderUtils.drawOutlineBox(blaze, 1.0F, 0.0F, 0.0F, 1f);
+ RenderUtils.drawBoxOutline(blaze,outlineColorGreen,2.5f);
}
}catch(Exception e) {
- System.out.println("BlazeRenderer: " + e.getStackTrace());
+ //System.out.println("BlazeRenderer: " + e.getStackTrace());
+ System.out.println("BlazeRenderer: " + e);
}
}
diff --git a/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonMap.java b/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonMap.java
index c6da694b..3531094a 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonMap.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/skyblock/dungeon/DungeonMap.java
@@ -18,9 +18,12 @@ public class DungeonMap {
NbtCompound tag = item.getNbt();
if (tag != null && tag.contains("map")) {
+ String tag2 = tag.asString();
+ tag2 = tag2.substring(tag2.indexOf(":") + 1, tag2.indexOf("}"));
+ int tagid = Integer.parseInt(tag2);
VertexConsumerProvider.Immediate vertices = client.getBufferBuilders().getEffectVertexConsumers();
MapRenderer map = client.gameRenderer.getMapRenderer();
- MapState state = FilledMapItem.getOrCreateMapState(item, client.world);
+ MapState state = FilledMapItem.getMapState(tagid, client.world);
if (state == null) return;
matrices.push();
diff --git a/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/PriceInfoTooltip.java b/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/PriceInfoTooltip.java
index 59ff2e45..36b83670 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/PriceInfoTooltip.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/PriceInfoTooltip.java
@@ -1,6 +1,17 @@
package me.xmrvizzy.skyblocker.skyblock.item;
+import com.google.gson.Gson;
+import com.google.gson.JsonElement;
+import com.google.gson.JsonObject;
+import net.minecraft.client.MinecraftClient;
+import net.minecraft.client.item.TooltipContext;
+import net.minecraft.item.ItemStack;
+import net.minecraft.nbt.NbtCompound;
+import net.minecraft.text.LiteralText;
+import net.minecraft.text.Text;
+import net.minecraft.util.Formatting;
+
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
@@ -9,24 +20,8 @@ import java.math.RoundingMode;
import java.net.URL;
import java.text.DecimalFormat;
import java.util.List;
-import java.util.Map;
import java.util.zip.GZIPInputStream;
-import net.minecraft.client.MinecraftClient;
-import net.minecraft.client.item.TooltipContext;
-import net.minecraft.item.ItemStack;
-import net.minecraft.nbt.NbtCompound;
-import net.minecraft.text.LiteralText;
-import net.minecraft.text.Text;
-import net.minecraft.util.Formatting;
-
-import com.google.gson.Gson;
-import com.google.gson.JsonElement;
-import com.google.gson.JsonObject;
-
-
-import me.xmrvizzy.skyblocker.SkyblockerMod;
-
public class PriceInfoTooltip {
private JsonObject auctionPricesJson = null;
private JsonObject bazaarPricesJson = null;
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/Boxes.java b/src/main/java/me/xmrvizzy/skyblocker/utils/Boxes.java
new file mode 100644
index 00000000..445bcbe5
--- /dev/null
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/Boxes.java
@@ -0,0 +1,47 @@
+package me.xmrvizzy.skyblocker.utils;
+
+
+import net.minecraft.util.math.Box;
+import net.minecraft.util.math.Direction.Axis;
+import net.minecraft.util.math.Vec3d;
+
+public class Boxes {
+
+ /** Returns the vector of the min pos of this box. **/
+ public static Vec3d getMinVec(Box box) {
+ return new Vec3d(box.minX, box.minY, box.minZ);
+ }
+
+ /** Returns the vector of the max pos of this box. **/
+ public static Vec3d getMaxVec(Box box) {
+ return new Vec3d(box.maxX, box.maxY, box.maxZ);
+ }
+
+ /** Offsets this box so that minX, minY and minZ are all zero. **/
+ public static Box moveToZero(Box box) {
+ return box.offset(getMinVec(box).negate());
+ }
+
+ /** Returns the distance between to oppisite corners of the box. **/
+ public static double getCornerLength(Box box) {
+ return getMinVec(box).distanceTo(getMaxVec(box));
+ }
+
+ /** Returns the length of an axis in the box. **/
+ public static double getAxisLength(Box box, Axis axis) {
+ return box.getMax(axis) - box.getMin(axis);
+ }
+
+ /** Returns a box with each axis multiplied by the amount specified. **/
+ public static Box multiply(Box box, double amount) {
+ return multiply(box, amount, amount, amount);
+ }
+
+ /** Returns a box with each axis multiplied by the amount specified. **/
+ public static Box multiply(Box box, double x, double y, double z) {
+ return box.expand(
+ getAxisLength(box, Axis.X) * (x - 1) / 2d,
+ getAxisLength(box, Axis.Y) * (y - 1) / 2d,
+ getAxisLength(box, Axis.Z) * (z - 1) / 2d);
+ }
+}
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/FrustumUtils.java b/src/main/java/me/xmrvizzy/skyblocker/utils/FrustumUtils.java
new file mode 100644
index 00000000..6973aa1e
--- /dev/null
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/FrustumUtils.java
@@ -0,0 +1,17 @@
+package me.xmrvizzy.skyblocker.utils;
+
+import me.xmrvizzy.skyblocker.mixin.AccessorWorldRenderer;
+import net.minecraft.client.MinecraftClient;
+import net.minecraft.client.render.Frustum;
+import net.minecraft.util.math.Box;
+
+public class FrustumUtils {
+
+ public static Frustum getFrustum() {
+ return ((AccessorWorldRenderer) MinecraftClient.getInstance().worldRenderer).getFrustum();
+ }
+
+ public static boolean isBoxVisible(Box box) {
+ return getFrustum().isVisible(box);
+ }
+} \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtils.java b/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtils.java
index 472c41d6..05044ba0 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtils.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtils.java
@@ -1,224 +1,89 @@
package me.xmrvizzy.skyblocker.utils;
-import com.mojang.blaze3d.platform.GlStateManager;
+import com.mojang.blaze3d.systems.RenderSystem;
+import me.xmrvizzy.skyblocker.utils.color.QuadColor;
import net.minecraft.client.MinecraftClient;
-import net.minecraft.client.render.*;
-import net.minecraft.client.render.block.entity.BlockEntityRenderDispatcher;
+import net.minecraft.client.render.BufferBuilder;
+import net.minecraft.client.render.Camera;
+import net.minecraft.client.render.GameRenderer;
+import net.minecraft.client.render.Tessellator;
+import net.minecraft.client.render.VertexFormat;
+import net.minecraft.client.render.VertexFormats;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.entity.Entity;
-import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Box;
+import net.minecraft.util.math.Direction;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.math.Vec3d;
-import org.lwjgl.opengl.GL11;
-import org.lwjgl.opengl.GL14;
+import net.minecraft.util.math.Vec3f;
public class RenderUtils {
- public static void drawFilledBox(BlockPos blockPos, float r, float g, float b, float a) {
- drawFilledBox(new Box(blockPos), r, g, b, a);
- }
-
- public static void drawFilledBox(Box box, float r, float g, float b, float a) {
- gl11Setup();
-
- // Fill
- Tessellator tessellator = Tessellator.getInstance();
- BufferBuilder buffer = tessellator.getBuffer();
- VertexFormat.DrawMode drawMode = VertexFormat.DrawMode.QUADS;
- buffer.begin(drawMode, VertexFormats.POSITION_COLOR);
-// buffer.begin(5, VertexFormats.POSITION_COLOR);
- WorldRenderer.drawBox(buffer,
- box.minX, box.minY, box.minZ,
- box.maxX, box.maxY, box.maxZ, r, g, b, a / 2f);
- tessellator.draw();
+ // -------------------- Outline Boxes --------------------
- // Outline
- buffer.begin(drawMode, VertexFormats.POSITION_COLOR);
-
-// buffer.begin(3, VertexFormats.POSITION_COLOR);
- buffer.vertex(box.minX, box.minY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.minY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.minY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.maxY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.maxY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.maxY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.minY, box.maxZ).color(r, g, b, 0f).next();
- buffer.vertex(box.minX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.maxZ).color(r, g, b, 0f).next();
- buffer.vertex(box.maxX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.minZ).color(r, g, b, 0f).next();
- buffer.vertex(box.maxX, box.maxY, box.minZ).color(r, g, b, a).next();
- tessellator.draw();
-
- gl11Cleanup();
- }
-
- public static void drawOutlineBox(BlockPos blockPos, float r, float g, float b, float a) {
- drawOutlineBox(new Box(blockPos), r, g, b, a);
- }
-
- public static void fillGradient(MatrixStack matrix, int x1, int y1, int x2, int y2, int color1, int color2) {
- float float_1 = (color1 >> 24 & 255) / 255.0F;
- float float_2 = (color1 >> 16 & 255) / 255.0F;
- float float_3 = (color1 >> 8 & 255) / 255.0F;
- float float_4 = (color1 & 255) / 255.0F;
- float float_5 = (color2 >> 24 & 255) / 255.0F;
- float float_6 = (color2 >> 16 & 255) / 255.0F;
- float float_7 = (color2 >> 8 & 255) / 255.0F;
- float float_8 = (color2 & 255) / 255.0F;
- Tessellator tessellator_1 = Tessellator.getInstance();
- BufferBuilder bufferBuilder_1 = tessellator_1.getBuffer();
-
- VertexFormat.DrawMode drawMode = VertexFormat.DrawMode.QUADS;
- bufferBuilder_1.begin(drawMode, VertexFormats.POSITION_COLOR);
-
-// bufferBuilder_1.begin(7, VertexFormats.POSITION_COLOR);
- bufferBuilder_1.vertex(x1, y1, 0).color(float_2, float_3, float_4, float_1).next();
- bufferBuilder_1.vertex(x1, y2, 0).color(float_2, float_3, float_4, float_1).next();
- bufferBuilder_1.vertex(x2, y2, 0).color(float_6, float_7, float_8, float_5).next();
- bufferBuilder_1.vertex(x2, y1, 0).color(float_6, float_7, float_8, float_5).next();
- tessellator_1.draw();
- }
+ public static void drawBoxOutline(Box box, QuadColor color, float lineWidth, Direction... excludeDirs) {
+ if (!FrustumUtils.isBoxVisible(box)) {
+ return;
+ }
+ setup();
- public static void drawOutlineBox(Box box, float r, float g, float b, float a) {
- gl11Setup();
+ MatrixStack matrices = matrixFrom(box.minX, box.minY, box.minZ);
Tessellator tessellator = Tessellator.getInstance();
BufferBuilder buffer = tessellator.getBuffer();
// Outline
- VertexFormat.DrawMode drawMode = VertexFormat.DrawMode.QUADS;
- buffer.begin(drawMode, VertexFormats.POSITION_COLOR);
-
-// buffer.begin(3, VertexFormats.POSITION_COLOR);
- buffer.vertex(box.minX, box.minY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.minY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.minY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.maxY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.maxY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.maxY, box.minZ).color(r, g, b, a).next();
- buffer.vertex(box.minX, box.minY, box.maxZ).color(r, g, b, 0f).next();
- buffer.vertex(box.minX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.maxZ).color(r, g, b, 0f).next();
- buffer.vertex(box.maxX, box.maxY, box.maxZ).color(r, g, b, a).next();
- buffer.vertex(box.maxX, box.minY, box.minZ).color(r, g, b, 0f).next();
- buffer.vertex(box.maxX, box.maxY, box.minZ).color(r, g, b, a).next();
- tessellator.draw();
-
- gl11Cleanup();
- }
-
- public static void drawLine(double x1, double y1, double z1, double x2, double y2, double z2, float r, float g, float b, float t) {
- gl11Setup();
- GL11.glLineWidth(t);
+ RenderSystem.disableCull();
+ RenderSystem.setShader(GameRenderer::getRenderTypeLinesShader);
+ RenderSystem.lineWidth(lineWidth);
- Tessellator tessellator = Tessellator.getInstance();
- BufferBuilder buffer = tessellator.getBuffer();
-
- VertexFormat.DrawMode drawMode = VertexFormat.DrawMode.QUADS;
- buffer.begin(drawMode, VertexFormats.POSITION_COLOR);
-
-// buffer.begin(3, VertexFormats.POSITION_COLOR);
- buffer.vertex(x1, y1, z1).color(r, g, b, 0.0F).next();
- buffer.vertex(x1, y1, z1).color(r, g, b, 1.0F).next();
- buffer.vertex(x2, y2, z2).color(r, g, b, 1.0F).next();
+ buffer.begin(VertexFormat.DrawMode.LINES, VertexFormats.LINES);
+ Vertexer.vertexBoxLines(matrices, buffer, Boxes.moveToZero(box), color, excludeDirs);
tessellator.draw();
- gl11Cleanup();
+ RenderSystem.enableCull();
+ cleanup();
}
- public static void drawRect(float x, float y, float w, float h, int color, float alpha) {
- float red = (float) (color >> 16 & 255) / 255.0F;
- float green = (float) (color >> 8 & 255) / 255.0F;
- float blue = (float) (color & 255) / 255.0F;
- final Tessellator tessellator = Tessellator.getInstance();
- final BufferBuilder bufferbuilder = tessellator.getBuffer();
- GlStateManager._enableBlend();
- GlStateManager._disableTexture();
- GlStateManager._blendFuncSeparate(770, 771, 1, 0);
-
- VertexFormat.DrawMode drawMode = VertexFormat.DrawMode.QUADS;
- bufferbuilder.begin(drawMode, VertexFormats.POSITION_COLOR);
-
-// bufferbuilder.begin(7, VertexFormats.POSITION_COLOR);
- bufferbuilder.vertex(x, h, 0.0D).color(red, green, blue, alpha).next();
- bufferbuilder.vertex(w, h, 0.0D).color(red, green, blue, alpha).next();
- bufferbuilder.vertex(w, y, 0.0D).color(red, green, blue, alpha).next();
- bufferbuilder.vertex(x, y, 0.0D).color(red, green, blue, alpha).next();
- tessellator.draw();
- GlStateManager._enableTexture();
- GlStateManager._disableBlend();
- }
+ // -------------------- Utils --------------------
+
+ public static MatrixStack matrixFrom(double x, double y, double z) {
+ MatrixStack matrices = new MatrixStack();
- public static void offsetRender() {
- //debg
Camera camera = MinecraftClient.getInstance().gameRenderer.getCamera();
- Vec3d camPos = camera.getPos();
- GL11.glRotated(MathHelper.wrapDegrees(camera.getPitch()), 1, 0, 0);
- GL11.glRotated(MathHelper.wrapDegrees(camera.getYaw() + 180.0), 0, 1, 0);
- GL11.glTranslated(-camPos.x, -camPos.y, -camPos.z);
- }
+ matrices.multiply(Vec3f.POSITIVE_X.getDegreesQuaternion(camera.getPitch()));
+ matrices.multiply(Vec3f.POSITIVE_Y.getDegreesQuaternion(camera.getYaw() + 180.0F));
- public static void gl11Setup() {
- GL11.glPushMatrix();
- GL11.glEnable(GL11.GL_BLEND);
- GL14.glBlendFuncSeparate(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA, GL11.GL_ONE, GL11.GL_ZERO);
- GL11.glLineWidth(2.5F);
- GL11.glDisable(GL11.GL_TEXTURE_2D);
- GL11.glEnable(GL11.GL_LINE_SMOOTH);
- offsetRender();
- }
+ matrices.translate(x - camera.getPos().x, y - camera.getPos().y, z - camera.getPos().z);
- public static void gl11Cleanup() {
- GL11.glDisable(GL11.GL_LINE_SMOOTH);
- GL11.glEnable(GL11.GL_TEXTURE_2D);
- GL11.glDisable(GL11.GL_BLEND);
- GL11.glPopMatrix();
+ return matrices;
}
+ public static Vec3d getInterpolationOffset(Entity e) {
+ if (MinecraftClient.getInstance().isPaused()) {
+ return Vec3d.ZERO;
+ }
- public static void DrawPolygon(double x, double y, int radius, int sides, int color) {
- GL11.glEnable(GL11.GL_BLEND);
- GL11.glDisable(GL11.GL_TEXTURE_2D);
- GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
-
- final Tessellator tessellator = Tessellator.getInstance();
- final BufferBuilder bufferbuilder = tessellator.getBuffer();
-
- VertexFormat.DrawMode drawMode = VertexFormat.DrawMode.TRIANGLE_FAN;
- bufferbuilder.begin(drawMode, VertexFormats.POSITION_COLOR);
-
-// bufferbuilder.begin(GL11.GL_TRIANGLE_FAN, VertexFormats.POSITION);
-
- float alpha = (float) (color >> 24 & 255) / 255.0F;
- float red = (float) (color >> 16 & 255) / 255.0F;
- float green = (float) (color >> 8 & 255) / 255.0F;
- float blue = (float) (color & 255) / 255.0F;
-
- bufferbuilder.vertex(x, y, 0).next();
- final double TWICE_PI = Math.PI * 2;
+ double tickDelta = (double) MinecraftClient.getInstance().getTickDelta();
+ return new Vec3d(
+ e.getX() - MathHelper.lerp(tickDelta, e.lastRenderX, e.getX()),
+ e.getY() - MathHelper.lerp(tickDelta, e.lastRenderY, e.getY()),
+ e.getZ() - MathHelper.lerp(tickDelta, e.lastRenderZ, e.getZ()));
+ }
- for (int i = 0; i <= sides; i++) {
- double angle = (TWICE_PI * i / sides) + Math.toRadians(180);
- bufferbuilder.vertex(x + Math.sin(angle) * radius, y + Math.cos(angle) * radius, 0).next();
- }
- tessellator.draw();
+ public static void setup() {
+ RenderSystem.enableBlend();
+ RenderSystem.defaultBlendFunc();
+ RenderSystem.disableTexture();
+ }
- GL11.glEnable(GL11.GL_TEXTURE_2D);
- GL11.glDisable(GL11.GL_BLEND);
+ public static void cleanup() {
+ RenderSystem.disableBlend();
+ RenderSystem.enableTexture();
}
} \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtilsLiving.java b/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtilsLiving.java
index 6fca52a0..f6fb1bc1 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtilsLiving.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/RenderUtilsLiving.java
@@ -19,124 +19,127 @@ package me.xmrvizzy.skyblocker.utils;
*/
+import java.lang.reflect.Field;
+
+import org.apache.commons.lang3.reflect.FieldUtils;
+
+import com.mojang.blaze3d.systems.RenderSystem;
+
import net.minecraft.client.MinecraftClient;
-import net.minecraft.client.render.BufferBuilder;
+import net.minecraft.client.render.Camera;
+import net.minecraft.client.render.DiffuseLighting;
+import net.minecraft.client.render.OverlayTexture;
import net.minecraft.client.render.Tessellator;
-import net.minecraft.client.render.VertexFormat;
-import net.minecraft.client.render.VertexFormats;
-import net.minecraft.client.render.model.json.ModelTransformation.Mode;
-import net.minecraft.client.resource.language.I18n;
+import net.minecraft.client.render.VertexConsumerProvider;
+import net.minecraft.client.render.model.json.ModelTransformation;
import net.minecraft.client.util.math.MatrixStack;
-import net.minecraft.enchantment.Enchantment;
-import net.minecraft.enchantment.EnchantmentHelper;
-import net.minecraft.enchantment.Enchantments;
-import net.minecraft.item.BlockItem;
import net.minecraft.item.ItemStack;
-import net.minecraft.util.math.MathHelper;
-import org.lwjgl.opengl.GL11;
-import org.lwjgl.opengl.GL14;
-
-import java.awt.*;
-import java.util.Map.Entry;
+import net.minecraft.text.Text;
+import net.minecraft.util.math.Vec3f;
public class RenderUtilsLiving {
- private static MinecraftClient mc = MinecraftClient.getInstance();
- public static void drawText(String str, double x, double y, double z, double scale)
- {
- drawText(str, x, y, z, scale, 0.0F, 0.0F, 0.0F);
+ private static final MinecraftClient mc = MinecraftClient.getInstance();
+ private static Field shaderLightField;
+
+ /** Draws text in the world. **/
+ public static void drawText(Text text, double x, double y, double z, double scale, boolean shadow) {
+ drawText(text, x, y, z, 0, 0, scale, shadow);
}
- public static void drawText(String str, double x, double y, double z, double scale, float red, float green, float blue) {
- glSetup(x, y, z);
- GL11.glScaled(-0.025 * scale, -0.025 * scale, 0.025 * scale);
+ /** Draws text in the world. **/
+ public static void drawText(Text text, double x, double y, double z, double offX, double offY, double scale, boolean fill) {
+ MatrixStack matrices = matrixFrom(x, y, z);
+
+ Camera camera = mc.gameRenderer.getCamera();
+ matrices.multiply(Vec3f.POSITIVE_Y.getDegreesQuaternion(-camera.getYaw()));
+ matrices.multiply(Vec3f.POSITIVE_X.getDegreesQuaternion(camera.getPitch()));
- int i = mc.textRenderer.getWidth(str) / 2;
- GL11.glDisable(GL11.GL_TEXTURE_2D);
- Tessellator tessellator = Tessellator.getInstance();
- BufferBuilder bufferbuilder = tessellator.getBuffer();
+ RenderSystem.enableBlend();
+ RenderSystem.defaultBlendFunc();
- VertexFormat.DrawMode drawMode = VertexFormat.DrawMode.QUADS;
- bufferbuilder.begin(drawMode, VertexFormats.POSITION_COLOR);
+ matrices.translate(offX, offY, 0);
+ matrices.scale(-0.025f * (float) scale, -0.025f * (float) scale, 1);
-// bufferbuilder.begin(7, VertexFormats.POSITION_COLOR);
- float f = mc.options.getTextBackgroundOpacity(0.25F);
- bufferbuilder.vertex(-i - 1, -1, 0.0D).color(red, green, blue, f).next();
- bufferbuilder.vertex(-i - 1, 8, 0.0D).color(red, green, blue, f).next();
- bufferbuilder.vertex(i + 1, 8, 0.0D).color(red, green, blue, f).next();
- bufferbuilder.vertex(i + 1, -1, 0.0D).color(red, green, blue, f).next();
- tessellator.draw();
- GL11.glEnable(GL11.GL_TEXTURE_2D);
+ int halfWidth = mc.textRenderer.getWidth(text) / 2;
- mc.textRenderer.draw(new MatrixStack(), str, -i, 0, 553648127);
- mc.textRenderer.draw(new MatrixStack(), str, -i, 0, -1);
+ VertexConsumerProvider.Immediate immediate = VertexConsumerProvider.immediate(Tessellator.getInstance().getBuffer());
- glCleanup();
+ if (fill) {
+ int opacity = (int) (MinecraftClient.getInstance().options.getTextBackgroundOpacity(0.25F) * 255.0F) << 24;
+ mc.textRenderer.draw(text, -halfWidth, 0f, 553648127, false, matrices.peek().getModel(), immediate, true, opacity, 0xf000f0);
+ immediate.draw();
+ } else {
+ matrices.push();
+ matrices.translate(1, 1, 0);
+ mc.textRenderer.draw(text.copy(), -halfWidth, 0f, 0x202020, false, matrices.peek().getModel(), immediate, true, 0, 0xf000f0);
+ immediate.draw();
+ matrices.pop();
+ }
+
+ mc.textRenderer.draw(text, -halfWidth, 0f, -1, false, matrices.peek().getModel(), immediate, true, 0, 0xf000f0);
+ immediate.draw();
+
+ RenderSystem.disableBlend();
}
- public static void drawItem(double x, double y, double z, double offX, double offY, double scale, ItemStack item) {
- glSetup(x, y, z);
+ /** Draws a 2D gui items somewhere in the world. **/
+ public static void drawGuiItem(double x, double y, double z, double offX, double offY, double scale, ItemStack item) {
+ if (item.isEmpty()) {
+ return;
+ }
- GL11.glScaled(0.4 * scale, 0.4 * scale, 0);
+ MatrixStack matrices = matrixFrom(x, y, z);
- GL11.glTranslated(offX, offY, 0);
- if (item.getItem() instanceof BlockItem) GL11.glRotatef(180F, 1F, 180F, 10F);
- mc.getItemRenderer().renderItem(new ItemStack(item.getItem()), Mode.GUI, 0, 0, new MatrixStack(), mc.getBufferBuilders().getEntityVertexConsumers(),42);
- if (item.getItem() instanceof BlockItem) GL11.glRotatef(-180F, -1F, -180F, -10F);
- GL11.glDisable(GL11.GL_LIGHTING);
+ Camera camera = mc.gameRenderer.getCamera();
+ matrices.multiply(Vec3f.POSITIVE_Y.getDegreesQuaternion(-camera.getYaw()));
+ matrices.multiply(Vec3f.POSITIVE_X.getDegreesQuaternion(camera.getPitch()));
- GL11.glScalef(-0.05F, -0.05F, 0);
+ matrices.translate(offX, offY, 0);
+ matrices.scale((float) scale, (float) scale, 0.001f);
- if (item.getCount() > 0) {
- int w = mc.textRenderer.getWidth("x" + item.getCount()) / 2;
- mc.textRenderer.drawWithShadow(new MatrixStack(), "x" + item.getCount(), 7 - w, 5, 0xffffff);
- }
+ matrices.multiply(Vec3f.POSITIVE_Y.getDegreesQuaternion(180f));
- GL11.glScalef(0.85F, 0.85F, 0.85F);
+ //mc.getBufferBuilders().getEntityVertexConsumers().draw();
- int c = 0;
- for (Entry<Enchantment, Integer> m : EnchantmentHelper.get(item).entrySet()) {
- int w1 = mc.textRenderer.getWidth(I18n.translate(m.getKey().getName(2).asString()).substring(0, 2) + m.getValue()) / 2;
- mc.textRenderer.drawWithShadow(new MatrixStack(),
- I18n.translate(m.getKey().getName(2).asString()).substring(0, 2) + m.getValue(), -4 - w1, c * 10 - 1,
- m.getKey() == Enchantments.VANISHING_CURSE || m.getKey() == Enchantments.BINDING_CURSE
- ? 0xff5050 : 0xffb0e0);
- c--;
- }
+ RenderSystem.enableBlend();
+ RenderSystem.defaultBlendFunc();
- GL11.glScalef(0.6F, 0.6F, 0.6F);
- String dur = item.getMaxDamage() - item.getDamage() + "";
- int color = 0x000000;
- try {
- color = MathHelper.hsvToRgb(((float) (item.getMaxDamage() - item.getDamage()) / item.getMaxDamage()) / 3.0F, 1.0F, 1.0F);
- } catch (Exception e) {
- }
- if (item.isDamageable()) mc.textRenderer.drawWithShadow(new MatrixStack(), dur, -8 - dur.length() * 3, 15,
- new Color(color >> 16 & 255, color >> 8 & 255, color & 255).getRGB());
+ Vec3f[] currentLight = getCurrentLight();
+ DiffuseLighting.disableGuiDepthLighting();
+
+ mc.getBufferBuilders().getEntityVertexConsumers().draw();
+
+ mc.getItemRenderer().renderItem(item, ModelTransformation.Mode.GUI, 0xF000F0,
+ OverlayTexture.DEFAULT_UV, matrices, mc.getBufferBuilders().getEntityVertexConsumers(), 0);
+
+ mc.getBufferBuilders().getEntityVertexConsumers().draw();
- glCleanup();
+ RenderSystem.setShaderLights(currentLight[0], currentLight[1]);
+ RenderSystem.disableBlend();
}
- public static void glSetup(double x, double y, double z) {
- GL11.glPushMatrix();
- RenderUtils.offsetRender();
- GL11.glTranslated(x, y, z);
- GL11.glNormal3f(0.0F, 1.0F, 0.0F);
- GL11.glRotatef(-mc.player.getYaw(), 0.0F, 1.0F, 0.0F);
- GL11.glRotatef(mc.player.getPitch(), 1.0F, 0.0F, 0.0F);
- //GL11.glDisable(GL11.GL_LIGHTING);
- GL11.glDisable(GL11.GL_DEPTH_TEST);
+ public static MatrixStack matrixFrom(double x, double y, double z) {
+ MatrixStack matrices = new MatrixStack();
- GL11.glEnable(GL11.GL_BLEND);
- GL14.glBlendFuncSeparate(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA, GL11.GL_ONE, GL11.GL_ZERO);
+ Camera camera = mc.gameRenderer.getCamera();
+ matrices.multiply(Vec3f.POSITIVE_X.getDegreesQuaternion(camera.getPitch()));
+ matrices.multiply(Vec3f.POSITIVE_Y.getDegreesQuaternion(camera.getYaw() + 180.0F));
+ matrices.translate(x - camera.getPos().x, y - camera.getPos().y, z - camera.getPos().z);
+
+ return matrices;
}
- public static void glCleanup() {
- //GL11.glEnable(GL11.GL_LIGHTING);
- GL11.glDisable(GL11.GL_BLEND);
- GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
- GL11.glEnable(GL11.GL_DEPTH_TEST);
- GL11.glPopMatrix();
+ public static Vec3f[] getCurrentLight() {
+ if (shaderLightField == null) {
+ shaderLightField = FieldUtils.getField(RenderSystem.class, "shaderLightDirections", true);
+ }
+
+ try {
+ return (Vec3f[]) shaderLightField.get(null);
+ } catch (Exception e) {
+ throw new RuntimeException(e);
+ }
}
} \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/Utils.java b/src/main/java/me/xmrvizzy/skyblocker/utils/Utils.java
index 538de291..7c3e44e6 100644
--- a/src/main/java/me/xmrvizzy/skyblocker/utils/Utils.java
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/Utils.java
@@ -60,7 +60,7 @@ public class Utils {
if (sidebar.isEmpty()) return;
if (sidebar.get(sidebar.size() - 1).equals("www.hypixel.net")) {
if (sidebar.get(0).contains("SKYBLOCK")){
- if(isInjected == false){
+ if(!isInjected){
isInjected = true;
ItemTooltipCallback.EVENT.register(PriceInfoTooltip::onInjectTooltip);
}
@@ -68,8 +68,8 @@ public class Utils {
}
else isSkyblock = false;
- if (isSkyblock && string.contains("The Catacombs")) isDungeons = true;
- else isDungeons = false;
+ isDungeons = isSkyblock && string.contains("The Catacombs");
+
} else {
isSkyblock = false;
isDungeons = false;
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/Vertexer.java b/src/main/java/me/xmrvizzy/skyblocker/utils/Vertexer.java
new file mode 100644
index 00000000..f9ac629e
--- /dev/null
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/Vertexer.java
@@ -0,0 +1,156 @@
+package me.xmrvizzy.skyblocker.utils;
+
+import me.xmrvizzy.skyblocker.utils.color.LineColor;
+import me.xmrvizzy.skyblocker.utils.color.QuadColor;
+import net.minecraft.client.render.VertexConsumer;
+import net.minecraft.client.util.math.MatrixStack;
+import net.minecraft.util.math.Box;
+import net.minecraft.util.math.Direction;
+import net.minecraft.util.math.MathHelper;
+import net.minecraft.util.math.Matrix3f;
+import net.minecraft.util.math.Matrix4f;
+import net.minecraft.util.math.Vec3f;
+import org.apache.commons.lang3.ArrayUtils;
+
+public class Vertexer {
+
+ public static final int CULL_BACK = 0;
+ public static final int CULL_FRONT = 1;
+ public static final int CULL_NONE = 2;
+
+ public static void vertexBoxQuads(MatrixStack matrices, VertexConsumer vertexConsumer, Box box, QuadColor quadColor, Direction... excludeDirs) {
+ float x1 = (float) box.minX;
+ float y1 = (float) box.minY;
+ float z1 = (float) box.minZ;
+ float x2 = (float) box.maxX;
+ float y2 = (float) box.maxY;
+ float z2 = (float) box.maxZ;
+
+ int cullMode = excludeDirs.length == 0 ? CULL_BACK : CULL_NONE;
+
+ if (!ArrayUtils.contains(excludeDirs, Direction.DOWN)) {
+ vertexQuad(matrices, vertexConsumer, x1, y1, z1, x2, y1, z1, x2, y1, z2, x1, y1, z2, cullMode, quadColor);
+ }
+
+ if (!ArrayUtils.contains(excludeDirs, Direction.WEST)) {
+ vertexQuad(matrices, vertexConsumer, x1, y1, z2, x1, y2, z2, x1, y2, z1, x1, y1, z1, cullMode, quadColor);
+ }
+
+ if (!ArrayUtils.contains(excludeDirs, Direction.EAST)) {
+ vertexQuad(matrices, vertexConsumer, x2, y1, z1, x2, y2, z1, x2, y2, z2, x2, y1, z2, cullMode, quadColor);
+ }
+
+ if (!ArrayUtils.contains(excludeDirs, Direction.NORTH)) {
+ vertexQuad(matrices, vertexConsumer, x1, y1, z1, x1, y2, z1, x2, y2, z1, x2, y1, z1, cullMode, quadColor);
+ }
+
+ if (!ArrayUtils.contains(excludeDirs, Direction.SOUTH)) {
+ vertexQuad(matrices, vertexConsumer, x2, y1, z2, x2, y2, z2, x1, y2, z2, x1, y1, z2, cullMode, quadColor);
+ }
+
+ if (!ArrayUtils.contains(excludeDirs, Direction.UP)) {
+ vertexQuad(matrices, vertexConsumer, x1, y2, z2, x2, y2, z2, x2, y2, z1, x1, y2, z1, cullMode, quadColor);
+ }
+ }
+
+ public static void vertexQuad(MatrixStack matrices, VertexConsumer vertexConsumer, float x1, float y1, float z1, float x2, float y2, float z2, float x3, float y3, float z3, float x4, float y4, float z4, int cullMode, QuadColor quadColor) {
+ int[] color = quadColor.getAllColors();
+
+ if (cullMode != CULL_FRONT) {
+ vertexConsumer.vertex(matrices.peek().getModel(), x1, y1, z1).color(color[0], color[1], color[2], color[3]).next();
+ vertexConsumer.vertex(matrices.peek().getModel(), x2, y2, z2).color(color[4], color[5], color[6], color[7]).next();
+ vertexConsumer.vertex(matrices.peek().getModel(), x3, y3, z3).color(color[8], color[9], color[10], color[11]).next();
+ vertexConsumer.vertex(matrices.peek().getModel(), x4, y4, z4).color(color[12], color[13], color[14], color[15]).next();
+ }
+
+ if (cullMode != CULL_BACK) {
+ vertexConsumer.vertex(matrices.peek().getModel(), x4, y4, z4).color(color[0], color[1], color[2], color[3]).next();
+ vertexConsumer.vertex(matrices.peek().getModel(), x3, y3, z3).color(color[4], color[5], color[6], color[7]).next();
+ vertexConsumer.vertex(matrices.peek().getModel(), x2, y2, z2).color(color[8], color[9], color[10], color[11]).next();
+ vertexConsumer.vertex(matrices.peek().getModel(), x1, y1, z1).color(color[12], color[13], color[14], color[15]).next();
+ }
+ }
+
+ public static void vertexBoxLines(MatrixStack matrices, VertexConsumer vertexConsumer, Box box, QuadColor quadColor, Direction... excludeDirs) {
+ float x1 = (float) box.minX;
+ float y1 = (float) box.minY;
+ float z1 = (float) box.minZ;
+ float x2 = (float) box.maxX;
+ float y2 = (float) box.maxY;
+ float z2 = (float) box.maxZ;
+
+ boolean exDown = ArrayUtils.contains(excludeDirs, Direction.DOWN);
+ boolean exWest = ArrayUtils.contains(excludeDirs, Direction.WEST);
+ boolean exEast = ArrayUtils.contains(excludeDirs, Direction.EAST);
+ boolean exNorth = ArrayUtils.contains(excludeDirs, Direction.NORTH);
+ boolean exSouth = ArrayUtils.contains(excludeDirs, Direction.SOUTH);
+ boolean exUp = ArrayUtils.contains(excludeDirs, Direction.UP);
+
+ int[] color = quadColor.getAllColors();
+
+ if (!exDown) {
+ vertexLine(matrices, vertexConsumer, x1, y1, z1, x2, y1, z1, LineColor.single(color[0], color[1], color[2], color[3]));
+ vertexLine(matrices, vertexConsumer, x2, y1, z1, x2, y1, z2, LineColor.single(color[4], color[5], color[6], color[7]));
+ vertexLine(matrices, vertexConsumer, x2, y1, z2, x1, y1, z2, LineColor.single(color[8], color[9], color[10], color[11]));
+ vertexLine(matrices, vertexConsumer, x1, y1, z2, x1, y1, z1, LineColor.single(color[12], color[13], color[14], color[15]));
+ }
+
+ if (!exWest) {
+ if (exDown) vertexLine(matrices, vertexConsumer, x1, y1, z1, x1, y1, z2, LineColor.single(color[0], color[1], color[2], color[3]));
+ vertexLine(matrices, vertexConsumer, x1, y1, z2, x1, y2, z2, LineColor.single(color[4], color[5], color[6], color[7]));
+ vertexLine(matrices, vertexConsumer, x1, y1, z1, x1, y2, z1, LineColor.single(color[8], color[9], color[10], color[11]));
+ if (exUp) vertexLine(matrices, vertexConsumer, x1, y2, z1, x1, y2, z2, LineColor.single(color[12], color[13], color[14], color[15]));
+ }
+
+ if (!exEast) {
+ if (exDown) vertexLine(matrices, vertexConsumer, x2, y1, z1, x2, y1, z2, LineColor.single(color[0], color[1], color[2], color[3]));
+ vertexLine(matrices, vertexConsumer, x2, y1, z2, x2, y2, z2, LineColor.single(color[4], color[5], color[6], color[7]));
+ vertexLine(matrices, vertexConsumer, x2, y1, z1, x2, y2, z1, LineColor.single(color[8], color[9], color[10], color[11]));
+ if (exUp) vertexLine(matrices, vertexConsumer, x2, y2, z1, x2, y2, z2, LineColor.single(color[12], color[13], color[14], color[15]));
+ }
+
+ if (!exNorth) {
+ if (exDown) vertexLine(matrices, vertexConsumer, x1, y1, z1, x2, y1, z1, LineColor.single(color[0], color[1], color[2], color[3]));
+ if (exEast) vertexLine(matrices, vertexConsumer, x2, y1, z1, x2, y2, z1, LineColor.single(color[4], color[5], color[6], color[7]));
+ if (exWest) vertexLine(matrices, vertexConsumer, x1, y1, z1, x1, y2, z1, LineColor.single(color[8], color[9], color[10], color[11]));
+ if (exUp) vertexLine(matrices, vertexConsumer, x1, y2, z1, x2, y2, z1, LineColor.single(color[12], color[13], color[14], color[15]));
+ }
+
+ if (!exSouth) {
+ if (exDown) vertexLine(matrices, vertexConsumer, x1, y1, z2, x2, y1, z2, LineColor.single(color[0], color[1], color[2], color[3]));
+ if (exEast) vertexLine(matrices, vertexConsumer, x2, y1, z2, x2, y2, z2, LineColor.single(color[4], color[5], color[6], color[7]));
+ if (exWest) vertexLine(matrices, vertexConsumer, x1, y1, z2, x1, y2, z2, LineColor.single(color[8], color[9], color[10], color[11]));
+ if (exUp) vertexLine(matrices, vertexConsumer, x1, y2, z2, x2, y2, z2, LineColor.single(color[12], color[13], color[14], color[15]));
+ }
+
+ if (!exUp) {
+ vertexLine(matrices, vertexConsumer, x1, y2, z1, x2, y2, z1, LineColor.single(color[0], color[1], color[2], color[3]));
+ vertexLine(matrices, vertexConsumer, x2, y2, z1, x2, y2, z2, LineColor.single(color[4], color[5], color[6], color[7]));
+ vertexLine(matrices, vertexConsumer, x2, y2, z2, x1, y2, z2, LineColor.single(color[8], color[9], color[10], color[11]));
+ vertexLine(matrices, vertexConsumer, x1, y2, z2, x1, y2, z1, LineColor.single(color[12], color[13], color[14], color[15]));
+ }
+ }
+
+ public static void vertexLine(MatrixStack matrices, VertexConsumer vertexConsumer, float x1, float y1, float z1, float x2, float y2, float z2, LineColor lineColor) {
+ Matrix4f model = matrices.peek().getModel();
+ Matrix3f normal = matrices.peek().getNormal();
+
+ Vec3f normalVec = getNormal(normal, x1, y1, z1, x2, y2, z2);
+
+ int[] color1 = lineColor.getColor(x1, y1, z1, 0);
+ int[] color2 = lineColor.getColor(x2, y2, z2, 1);
+
+ vertexConsumer.vertex(model, x1, y1, z1).color(color1[0], color1[1], color1[2], color1[3]).normal(normal, normalVec.getX(), normalVec.getY(), normalVec.getZ()).next();
+ vertexConsumer.vertex(model, x2, y2, z2).color(color2[0], color2[1], color2[2], color2[3]).normal(normal, normalVec.getX(), normalVec.getY(), normalVec.getZ()).next();
+ }
+
+ public static Vec3f getNormal(Matrix3f normal, float x1, float y1, float z1, float x2, float y2, float z2) {
+ float xNormal = x2 - x1;
+ float yNormal = y2 - y1;
+ float zNormal = z2 - z1;
+ float normalSqrt = MathHelper.sqrt(xNormal * xNormal + yNormal * yNormal + zNormal * zNormal);
+
+ return new Vec3f(xNormal / normalSqrt, yNormal / normalSqrt, zNormal / normalSqrt);
+ }
+
+} \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/color/LineColor.java b/src/main/java/me/xmrvizzy/skyblocker/utils/color/LineColor.java
new file mode 100644
index 00000000..b22a6602
--- /dev/null
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/color/LineColor.java
@@ -0,0 +1,66 @@
+package me.xmrvizzy.skyblocker.utils.color;
+
+import com.mojang.datafixers.util.Function4;
+
+public class LineColor extends RenderColor {
+
+ private Function4<Float, Float, Float, Integer, int[]> getColorFunc;
+
+ public static LineColor single(float red, float green, float blue, float alpha) {
+ return LineColor.single((int) (red * 255f), (int) (green * 255f), (int) (blue * 255f), (int) (alpha * 255f));
+ }
+
+ public static LineColor single(int color) {
+ return LineColor.single((color & 0xff0000) >> 16, (color & 0xff00) >> 8, color & 0xff, color >> 24 & 0xff);
+ }
+
+ public static LineColor single(int red, int green, int blue, int alpha) {
+ return new LineColor((x, y, z, curVertex) -> new int[] { red, green, blue, alpha });
+ }
+
+ public static LineColor gradient(float red1, float green1, float blue1, float alpha1, float red2, float green2, float blue2, float alpha2) {
+ return LineColor.gradient(
+ (int) (red1 * 255f), (int) (green1 * 255f), (int) (blue1 * 255f), (int) (alpha1 * 255f),
+ (int) (red2 * 255f), (int) (green2 * 255f), (int) (blue2 * 255f), (int) (alpha2 * 255f));
+ }
+
+ public static LineColor gradient(int color1, int color2) {
+ return LineColor.gradient(
+ (color1 & 0xff0000) >> 16, (color1 & 0xff00) >> 8, color1 & 0xff, color1 >> 24 & 0xff,
+ (color2 & 0xff0000) >> 16, (color2 & 0xff00) >> 8, color2 & 0xff, color2 >> 24 & 0xff);
+ }
+
+ public static LineColor gradient(int red1, int green1, int blue1, int alpha1, int red2, int green2, int blue2, int alpha2) {
+ return new LineColor((x, y, z, curVertex) -> {
+ if (curVertex == 0) {
+ return new int[] { red1, green1, blue1, alpha1 };
+ }
+
+ return new int[] { red2, green2, blue2, alpha2 };
+ });
+ }
+
+ private LineColor(Function4<Float, Float, Float, Integer, int[]> getColorFunc) {
+ this.getColorFunc = getColorFunc;
+ }
+
+ public int[] getColor(float x, float y, float z, int curVertex) {
+ int[] outColor = getColorFunc.apply(x, y, z, curVertex);
+
+ for (int i = 0; i < 4; i++) {
+ if (overwriteColor[i] != null) {
+ outColor[i] = overwriteColor[i];
+ }
+ }
+
+ return outColor;
+ }
+
+ public LineColor clone() {
+ LineColor newColor = new LineColor(getColorFunc);
+ cloneOverwriteTo(newColor);
+
+ return newColor;
+ }
+
+} \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/color/QuadColor.java b/src/main/java/me/xmrvizzy/skyblocker/utils/color/QuadColor.java
new file mode 100644
index 00000000..29a28cb5
--- /dev/null
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/color/QuadColor.java
@@ -0,0 +1,115 @@
+package me.xmrvizzy.skyblocker.utils.color;
+
+
+import java.util.function.Function;
+
+public class QuadColor extends RenderColor {
+
+ private final Function<Integer, int[]> getColorFunc;
+
+ public static QuadColor single(float red, float green, float blue, float alpha) {
+ return QuadColor.single((int) (red * 255f), (int) (green * 255f), (int) (blue * 255f), (int) (alpha * 255f));
+ }
+
+ public static QuadColor single(int red, int green, int blue, int alpha) {
+ return new QuadColor(curVertex -> new int[]{red, green, blue, alpha});
+ }
+
+ public static QuadColor gradient(int red1, int green1, int blue1, int alpha1, int red2, int green2, int blue2, int alpha2, CardinalDirection direction) {
+ return new QuadColor(curVertex -> {
+ if (direction.isStartVertex(curVertex)) {
+ return new int[]{red1, green1, blue1, alpha1};
+ }
+
+ return new int[]{red2, green2, blue2, alpha2};
+ });
+ }
+
+ public static QuadColor custom(float red1, float green1, float blue1, float alpha1, float red2, float green2, float blue2, float alpha2, float red3, float green3, float blue3, float alpha3, float red4, float green4, float blue4, float alpha4) {
+ return QuadColor.custom(
+ (int) (red1 * 255f), (int) (green1 * 255f), (int) (blue1 * 255f), (int) (alpha1 * 255f),
+ (int) (red2 * 255f), (int) (green2 * 255f), (int) (blue2 * 255f), (int) (alpha2 * 255f),
+ (int) (red3 * 255f), (int) (green3 * 255f), (int) (blue3 * 255f), (int) (alpha3 * 255f),
+ (int) (red4 * 255f), (int) (green4 * 255f), (int) (blue4 * 255f), (int) (alpha4 * 255f));
+ }
+
+ public static QuadColor custom(int color1, int color2, int color3, int color4) {
+ return QuadColor.custom(
+ (color1 & 0xff0000) >> 16, (color1 & 0xff00) >> 8, color1 & 0xff, color1 >> 24 & 0xff,
+ (color2 & 0xff0000) >> 16, (color2 & 0xff00) >> 8, color2 & 0xff, color2 >> 24 & 0xff,
+ (color3 & 0xff0000) >> 16, (color3 & 0xff00) >> 8, color3 & 0xff, color3 >> 24 & 0xff,
+ (color4 & 0xff0000) >> 16, (color4 & 0xff00) >> 8, color4 & 0xff, color4 >> 24 & 0xff);
+ }
+
+ public static QuadColor custom(int red1, int green1, int blue1, int alpha1, int red2, int green2, int blue2, int alpha2, int red3, int green3, int blue3, int alpha3, int red4, int green4, int blue4, int alpha4) {
+ return new QuadColor(curVertex -> {
+ switch (curVertex) {
+ case 0:
+ return new int[]{red1, green1, blue1, alpha1};
+ case 1:
+ return new int[]{red2, green2, blue2, alpha2};
+ case 2:
+ return new int[]{red3, green3, blue3, alpha3};
+ default:
+ return new int[]{red4, green4, blue4, alpha4};
+ }
+ });
+ }
+
+ private QuadColor(Function<Integer, int[]> getColorFunc) {
+ this.getColorFunc = getColorFunc;
+ }
+
+ public int[] getColor(int curVertex) {
+ int[] outColor = getColorFunc.apply(curVertex);
+
+ for (int i = 0; i < 4; i++) {
+ if (overwriteColor[i] != null) {
+ outColor[i] = overwriteColor[i];
+ }
+ }
+
+ return outColor;
+ }
+
+ public int[] getAllColors() {
+ int[] outColor = new int[16];
+
+ for (int i = 0; i < 4; i++) {
+ int[] curColor = getColor(i);
+
+ for (int j = 0; j < 4; j++) {
+ outColor[i * 4 + j] = curColor[j];
+ }
+ }
+
+ return outColor;
+ }
+
+ public QuadColor clone() {
+ QuadColor newColor = new QuadColor(getColorFunc);
+ cloneOverwriteTo(newColor);
+
+ return newColor;
+ }
+
+ public enum CardinalDirection {
+ NORTH(3, 0),
+ EAST(0, 1),
+ SOUTH(1, 2),
+ WEST(2, 3);
+
+ public final int vertex1;
+ public final int vertex2;
+
+ CardinalDirection(int vertex1, int vertex2) {
+ this.vertex1 = vertex1;
+ this.vertex2 = vertex2;
+ }
+
+ public boolean isStartVertex(int vertex) {
+ return vertex == vertex1 || vertex == vertex2;
+ }
+ }
+
+} \ No newline at end of file
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/color/RenderColor.java b/src/main/java/me/xmrvizzy/skyblocker/utils/color/RenderColor.java
new file mode 100644
index 00000000..89dc37ca
--- /dev/null
+++ b/src/main/java/me/xmrvizzy/skyblocker/utils/color/RenderColor.java
@@ -0,0 +1,27 @@
+package me.xmrvizzy.skyblocker.utils.color;
+
+public abstract class RenderColor implements Cloneable {
+
+ protected Integer[] overwriteColor = new Integer[4];
+
+ public void overwriteRed(Integer red) {
+ overwriteColor[0] = red;
+ }
+
+ public void overwriteGreen(Integer green) {
+ overwriteColor[1] = green;
+ }
+
+ public void overwriteBlue(Integer blue) {
+ overwriteColor[2] = blue;
+ }
+
+ public void overwriteAlpha(Integer alpha) {
+ overwriteColor[3] = alpha;
+ }
+
+ protected void cloneOverwriteTo(RenderColor otherColor) {
+ otherColor.overwriteColor = overwriteColor.clone();
+ }
+
+} \ No newline at end of file
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index fd452708..c3b177c7 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -2,17 +2,18 @@
"schemaVersion": 1,
"id": "skyblocker",
"version": "${version}",
- "name": "Skyblocker LIAP",
+ "name": "Skyblocker",
"description": "Hypixel Skyblock Mod",
- "authors": ["xMrVizzy, d3dx9, LifeIsAParadox"],
+ "authors": ["xMrVizzy", "d3dx9", "LifeIsAParadox"],
+ "contributors": ["ExternalTime"],
"contact": {
- "homepage": "https://modrinth.com/mod/skyblocker",
+ "homepage": "https://hysky.de",
"sources": "https://github.com/LifeIsAParadox/Skyblocker",
"issues": "https://github.com/LifeIsAParadox/Skyblocker/issues"
},
- "license": "CC0-1.0",
+ "license": "GNU GPLv3",
"icon": "assets/skyblocker/icon.png",
- "environment": "*",
+ "environment": "client",
"entrypoints": {
"client": [
"me.xmrvizzy.skyblocker.SkyblockerMod"
@@ -32,5 +33,10 @@
"java": ">=16"
},
"custom": {
+ "modmenu": {
+ "links": {
+ "modmenu.discord": "https://discord.com/invite/aNNJHQykck"
+ }
+ }
}
}
diff --git a/src/main/resources/skyblocker.mixins.json b/src/main/resources/skyblocker.mixins.json
index 9664f9e4..74a7a3cb 100644
--- a/src/main/resources/skyblocker.mixins.json
+++ b/src/main/resources/skyblocker.mixins.json
@@ -8,7 +8,8 @@
"ClientPlayNetworkHandlerMixin",
"InGameHudMixin",
"ItemRendererMixin",
- "MinecraftClientMixin"
+ "MinecraftClientMixin",
+ "AccessorWorldRenderer"
],
"injectors": {