Compare commits
71 Commits
v1.0.1
...
1.21.3_fab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
be27cf0f30 | ||
|
|
734ea7a1a2 | ||
|
|
71832342af | ||
|
|
4b4b2ad206 | ||
|
|
e795778ba8 | ||
|
|
99ffeb1f99 | ||
|
|
4e1a122289 | ||
|
|
2161bbd1ba | ||
|
|
e35fdaa8ce | ||
|
|
a0aef4a5ef | ||
|
|
39cf0a0703 | ||
|
|
22928e4885 | ||
|
|
8cb6407f8b | ||
|
|
4f3e80bac4 | ||
|
|
12016db5f2 | ||
|
|
e6b4636119 | ||
|
|
10a4c88d9b | ||
|
|
2bc02401b0 | ||
|
|
a071eba485 | ||
|
|
0dde5fa1eb | ||
|
|
f00d0171ae | ||
|
|
93a18d622b | ||
|
|
cfe0ec666f | ||
|
|
1b20ee94c4 | ||
|
|
f0fdd69260 | ||
|
|
6197a489b3 | ||
|
|
1a097e6daf | ||
|
|
2fb8ba966a | ||
|
|
6a5d68cc84 | ||
|
|
b5687628df | ||
|
|
5486f49555 | ||
|
|
3469807388 | ||
|
|
a05356f475 | ||
|
|
149ddbe6fe | ||
|
|
eabe134475 | ||
|
|
fa76355a87 | ||
|
|
fb540f04ff | ||
|
|
c0c99c61bb | ||
|
|
a8c1ce20b0 | ||
|
|
35dd3e057c | ||
|
|
ab9ed3df3e | ||
|
|
008d3dda86 | ||
|
|
ec3767bc98 | ||
|
|
059af3ea45 | ||
|
|
785d04f922 | ||
|
|
f375d1f6e1 | ||
|
|
39da57ee43 | ||
|
|
8bc4805db0 | ||
|
|
b1b578cdbc | ||
|
|
90a10ce8a6 | ||
|
|
056a251a70 | ||
|
|
809846cfcf | ||
|
|
374833fba5 | ||
|
|
62bce166d5 | ||
|
|
c6f74a103e | ||
|
|
7d970a461a | ||
|
|
fc94b55e83 | ||
|
|
88ee5d1cc2 | ||
|
|
45a2106054 | ||
|
|
4dda0e8049 | ||
|
|
5affe34a83 | ||
|
|
fa5213a4a8 | ||
|
|
9584d5ad94 | ||
|
|
705402c139 | ||
|
|
0bf6db4415 | ||
|
|
f26764f5c9 | ||
|
|
d5f549c417 | ||
|
|
044e78b6fd | ||
|
|
0437022254 | ||
|
|
1e595e23c1 | ||
|
|
8b14d89369 |
42
.github/workflows/build-release.yml
vendored
Normal file
42
.github/workflows/build-release.yml
vendored
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
name: build-release
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types:
|
||||||
|
- published
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout sources
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Set up JDK 16
|
||||||
|
uses: actions/setup-java@v2
|
||||||
|
with:
|
||||||
|
distribution: 'temurin'
|
||||||
|
java-version: 17
|
||||||
|
- name: Cache Gradle packages
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches
|
||||||
|
~/.gradle/loom-cache
|
||||||
|
~/.gradle/wrapper
|
||||||
|
~/.m2/repository
|
||||||
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||||||
|
restore-keys: ${{ runner.os }}-gradle
|
||||||
|
|
||||||
|
- run: chmod +x gradlew
|
||||||
|
|
||||||
|
- name: Build Release
|
||||||
|
run: ./gradlew build --stacktrace
|
||||||
|
|
||||||
|
- name: Upload artifacts to Modrinth, Curseforge and GitHub
|
||||||
|
uses: Kir-Antipov/mc-publish@v3.3
|
||||||
|
with:
|
||||||
|
modrinth-id: jawg7zT1
|
||||||
|
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
|
||||||
|
|
||||||
|
curseforge-id: 594750
|
||||||
|
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
|
||||||
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@@ -24,9 +24,15 @@ jobs:
|
|||||||
- name: Extract current branch name
|
- name: Extract current branch name
|
||||||
shell: bash
|
shell: bash
|
||||||
# bash pattern expansion to grab branch name without slashes
|
# bash pattern expansion to grab branch name without slashes
|
||||||
run: ref="${GITHUB_REF#refs/heads/}" && echo "::set-output name=branch::${ref////-}"
|
run: ref="${GITHUB_REF#refs/heads/}" && echo "branch=${ref////-}" >> $GITHUB_OUTPUT
|
||||||
id: ref
|
id: ref
|
||||||
|
|
||||||
|
- name: Set outputs
|
||||||
|
id: vars
|
||||||
|
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
||||||
|
- name: Check outputs
|
||||||
|
run: echo ${{ steps.vars.outputs.sha_short }}
|
||||||
|
|
||||||
- name: Validate gradle wrapper
|
- name: Validate gradle wrapper
|
||||||
uses: gradle/wrapper-validation-action@v1
|
uses: gradle/wrapper-validation-action@v1
|
||||||
|
|
||||||
@@ -46,5 +52,5 @@ jobs:
|
|||||||
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
|
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: dust-fabric-${{ github.sha }}
|
name: dust-fabric-${{ steps.vars.outputs.sha_short }}
|
||||||
path: build/libs/*[0-9].jar
|
path: build/libs/*[0-9].jar
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -31,3 +31,4 @@ bin/
|
|||||||
# fabric
|
# fabric
|
||||||
|
|
||||||
run/
|
run/
|
||||||
|
BackupSrc/
|
||||||
|
|||||||
470
LICENSE
470
LICENSE
@@ -1,121 +1,373 @@
|
|||||||
Creative Commons Legal Code
|
Mozilla Public License Version 2.0
|
||||||
|
==================================
|
||||||
|
|
||||||
CC0 1.0 Universal
|
1. Definitions
|
||||||
|
--------------
|
||||||
|
|
||||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
1.1. "Contributor"
|
||||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
means each individual or legal entity that creates, contributes to
|
||||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
the creation of, or owns Covered Software.
|
||||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
|
||||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
|
||||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
|
||||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
|
||||||
HEREUNDER.
|
|
||||||
|
|
||||||
Statement of Purpose
|
1.2. "Contributor Version"
|
||||||
|
means the combination of the Contributions of others (if any) used
|
||||||
|
by a Contributor and that particular Contributor's Contribution.
|
||||||
|
|
||||||
The laws of most jurisdictions throughout the world automatically confer
|
1.3. "Contribution"
|
||||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
means Covered Software of a particular Contributor.
|
||||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
|
||||||
authorship and/or a database (each, a "Work").
|
|
||||||
|
|
||||||
Certain owners wish to permanently relinquish those rights to a Work for
|
1.4. "Covered Software"
|
||||||
the purpose of contributing to a commons of creative, cultural and
|
means Source Code Form to which the initial Contributor has attached
|
||||||
scientific works ("Commons") that the public can reliably and without fear
|
the notice in Exhibit A, the Executable Form of such Source Code
|
||||||
of later claims of infringement build upon, modify, incorporate in other
|
Form, and Modifications of such Source Code Form, in each case
|
||||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
including portions thereof.
|
||||||
and for any purposes, including without limitation commercial purposes.
|
|
||||||
These owners may contribute to the Commons to promote the ideal of a free
|
|
||||||
culture and the further production of creative, cultural and scientific
|
|
||||||
works, or to gain reputation or greater distribution for their Work in
|
|
||||||
part through the use and efforts of others.
|
|
||||||
|
|
||||||
For these and/or other purposes and motivations, and without any
|
1.5. "Incompatible With Secondary Licenses"
|
||||||
expectation of additional consideration or compensation, the person
|
means
|
||||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
|
||||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
|
||||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
|
||||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
|
||||||
Work and the meaning and intended legal effect of CC0 on those rights.
|
|
||||||
|
|
||||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
(a) that the initial Contributor has attached the notice described
|
||||||
protected by copyright and related or neighboring rights ("Copyright and
|
in Exhibit B to the Covered Software; or
|
||||||
Related Rights"). Copyright and Related Rights include, but are not
|
|
||||||
limited to, the following:
|
|
||||||
|
|
||||||
i. the right to reproduce, adapt, distribute, perform, display,
|
(b) that the Covered Software was made available under the terms of
|
||||||
communicate, and translate a Work;
|
version 1.1 or earlier of the License, but not also under the
|
||||||
ii. moral rights retained by the original author(s) and/or performer(s);
|
terms of a Secondary License.
|
||||||
iii. publicity and privacy rights pertaining to a person's image or
|
|
||||||
likeness depicted in a Work;
|
|
||||||
iv. rights protecting against unfair competition in regards to a Work,
|
|
||||||
subject to the limitations in paragraph 4(a), below;
|
|
||||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
|
||||||
in a Work;
|
|
||||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
|
||||||
European Parliament and of the Council of 11 March 1996 on the legal
|
|
||||||
protection of databases, and under any national implementation
|
|
||||||
thereof, including any amended or successor version of such
|
|
||||||
directive); and
|
|
||||||
vii. other similar, equivalent or corresponding rights throughout the
|
|
||||||
world based on applicable law or treaty, and any national
|
|
||||||
implementations thereof.
|
|
||||||
|
|
||||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
1.6. "Executable Form"
|
||||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
means any form of the work other than Source Code Form.
|
||||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
|
||||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
|
||||||
of action, whether now known or unknown (including existing as well as
|
|
||||||
future claims and causes of action), in the Work (i) in all territories
|
|
||||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
|
||||||
treaty (including future time extensions), (iii) in any current or future
|
|
||||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
|
||||||
including without limitation commercial, advertising or promotional
|
|
||||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
|
||||||
member of the public at large and to the detriment of Affirmer's heirs and
|
|
||||||
successors, fully intending that such Waiver shall not be subject to
|
|
||||||
revocation, rescission, cancellation, termination, or any other legal or
|
|
||||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
|
||||||
as contemplated by Affirmer's express Statement of Purpose.
|
|
||||||
|
|
||||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
1.7. "Larger Work"
|
||||||
be judged legally invalid or ineffective under applicable law, then the
|
means a work that combines Covered Software with other material, in
|
||||||
Waiver shall be preserved to the maximum extent permitted taking into
|
a separate file or files, that is not Covered Software.
|
||||||
account Affirmer's express Statement of Purpose. In addition, to the
|
|
||||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
|
||||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
|
||||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
|
||||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
|
||||||
maximum duration provided by applicable law or treaty (including future
|
|
||||||
time extensions), (iii) in any current or future medium and for any number
|
|
||||||
of copies, and (iv) for any purpose whatsoever, including without
|
|
||||||
limitation commercial, advertising or promotional purposes (the
|
|
||||||
"License"). The License shall be deemed effective as of the date CC0 was
|
|
||||||
applied by Affirmer to the Work. Should any part of the License for any
|
|
||||||
reason be judged legally invalid or ineffective under applicable law, such
|
|
||||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
|
||||||
of the License, and in such case Affirmer hereby affirms that he or she
|
|
||||||
will not (i) exercise any of his or her remaining Copyright and Related
|
|
||||||
Rights in the Work or (ii) assert any associated claims and causes of
|
|
||||||
action with respect to the Work, in either case contrary to Affirmer's
|
|
||||||
express Statement of Purpose.
|
|
||||||
|
|
||||||
4. Limitations and Disclaimers.
|
1.8. "License"
|
||||||
|
means this document.
|
||||||
|
|
||||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
1.9. "Licensable"
|
||||||
surrendered, licensed or otherwise affected by this document.
|
means having the right to grant, to the maximum extent possible,
|
||||||
b. Affirmer offers the Work as-is and makes no representations or
|
whether at the time of the initial grant or subsequently, any and
|
||||||
warranties of any kind concerning the Work, express, implied,
|
all of the rights conveyed by this License.
|
||||||
statutory or otherwise, including without limitation warranties of
|
|
||||||
title, merchantability, fitness for a particular purpose, non
|
1.10. "Modifications"
|
||||||
infringement, or the absence of latent or other defects, accuracy, or
|
means any of the following:
|
||||||
the present or absence of errors, whether or not discoverable, all to
|
|
||||||
the greatest extent permissible under applicable law.
|
(a) any file in Source Code Form that results from an addition to,
|
||||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
deletion from, or modification of the contents of Covered
|
||||||
that may apply to the Work or any use thereof, including without
|
Software; or
|
||||||
limitation any person's Copyright and Related Rights in the Work.
|
|
||||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
(b) any new file in Source Code Form that contains any Covered
|
||||||
consents, permissions or other rights required for any use of the
|
Software.
|
||||||
Work.
|
|
||||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
1.11. "Patent Claims" of a Contributor
|
||||||
party to this document and has no duty or obligation with respect to
|
means any patent claim(s), including without limitation, method,
|
||||||
this CC0 or use of the Work.
|
process, and apparatus claims, in any patent Licensable by such
|
||||||
|
Contributor that would be infringed, but for the grant of the
|
||||||
|
License, by the making, using, selling, offering for sale, having
|
||||||
|
made, import, or transfer of either its Contributions or its
|
||||||
|
Contributor Version.
|
||||||
|
|
||||||
|
1.12. "Secondary License"
|
||||||
|
means either the GNU General Public License, Version 2.0, the GNU
|
||||||
|
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||||
|
Public License, Version 3.0, or any later versions of those
|
||||||
|
licenses.
|
||||||
|
|
||||||
|
1.13. "Source Code Form"
|
||||||
|
means the form of the work preferred for making modifications.
|
||||||
|
|
||||||
|
1.14. "You" (or "Your")
|
||||||
|
means an individual or a legal entity exercising rights under this
|
||||||
|
License. For legal entities, "You" includes any entity that
|
||||||
|
controls, is controlled by, or is under common control with You. For
|
||||||
|
purposes of this definition, "control" means (a) the power, direct
|
||||||
|
or indirect, to cause the direction or management of such entity,
|
||||||
|
whether by contract or otherwise, or (b) ownership of more than
|
||||||
|
fifty percent (50%) of the outstanding shares or beneficial
|
||||||
|
ownership of such entity.
|
||||||
|
|
||||||
|
2. License Grants and Conditions
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
2.1. Grants
|
||||||
|
|
||||||
|
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||||
|
non-exclusive license:
|
||||||
|
|
||||||
|
(a) under intellectual property rights (other than patent or trademark)
|
||||||
|
Licensable by such Contributor to use, reproduce, make available,
|
||||||
|
modify, display, perform, distribute, and otherwise exploit its
|
||||||
|
Contributions, either on an unmodified basis, with Modifications, or
|
||||||
|
as part of a Larger Work; and
|
||||||
|
|
||||||
|
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||||
|
for sale, have made, import, and otherwise transfer either its
|
||||||
|
Contributions or its Contributor Version.
|
||||||
|
|
||||||
|
2.2. Effective Date
|
||||||
|
|
||||||
|
The licenses granted in Section 2.1 with respect to any Contribution
|
||||||
|
become effective for each Contribution on the date the Contributor first
|
||||||
|
distributes such Contribution.
|
||||||
|
|
||||||
|
2.3. Limitations on Grant Scope
|
||||||
|
|
||||||
|
The licenses granted in this Section 2 are the only rights granted under
|
||||||
|
this License. No additional rights or licenses will be implied from the
|
||||||
|
distribution or licensing of Covered Software under this License.
|
||||||
|
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||||
|
Contributor:
|
||||||
|
|
||||||
|
(a) for any code that a Contributor has removed from Covered Software;
|
||||||
|
or
|
||||||
|
|
||||||
|
(b) for infringements caused by: (i) Your and any other third party's
|
||||||
|
modifications of Covered Software, or (ii) the combination of its
|
||||||
|
Contributions with other software (except as part of its Contributor
|
||||||
|
Version); or
|
||||||
|
|
||||||
|
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||||
|
its Contributions.
|
||||||
|
|
||||||
|
This License does not grant any rights in the trademarks, service marks,
|
||||||
|
or logos of any Contributor (except as may be necessary to comply with
|
||||||
|
the notice requirements in Section 3.4).
|
||||||
|
|
||||||
|
2.4. Subsequent Licenses
|
||||||
|
|
||||||
|
No Contributor makes additional grants as a result of Your choice to
|
||||||
|
distribute the Covered Software under a subsequent version of this
|
||||||
|
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||||
|
permitted under the terms of Section 3.3).
|
||||||
|
|
||||||
|
2.5. Representation
|
||||||
|
|
||||||
|
Each Contributor represents that the Contributor believes its
|
||||||
|
Contributions are its original creation(s) or it has sufficient rights
|
||||||
|
to grant the rights to its Contributions conveyed by this License.
|
||||||
|
|
||||||
|
2.6. Fair Use
|
||||||
|
|
||||||
|
This License is not intended to limit any rights You have under
|
||||||
|
applicable copyright doctrines of fair use, fair dealing, or other
|
||||||
|
equivalents.
|
||||||
|
|
||||||
|
2.7. Conditions
|
||||||
|
|
||||||
|
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||||
|
in Section 2.1.
|
||||||
|
|
||||||
|
3. Responsibilities
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
3.1. Distribution of Source Form
|
||||||
|
|
||||||
|
All distribution of Covered Software in Source Code Form, including any
|
||||||
|
Modifications that You create or to which You contribute, must be under
|
||||||
|
the terms of this License. You must inform recipients that the Source
|
||||||
|
Code Form of the Covered Software is governed by the terms of this
|
||||||
|
License, and how they can obtain a copy of this License. You may not
|
||||||
|
attempt to alter or restrict the recipients' rights in the Source Code
|
||||||
|
Form.
|
||||||
|
|
||||||
|
3.2. Distribution of Executable Form
|
||||||
|
|
||||||
|
If You distribute Covered Software in Executable Form then:
|
||||||
|
|
||||||
|
(a) such Covered Software must also be made available in Source Code
|
||||||
|
Form, as described in Section 3.1, and You must inform recipients of
|
||||||
|
the Executable Form how they can obtain a copy of such Source Code
|
||||||
|
Form by reasonable means in a timely manner, at a charge no more
|
||||||
|
than the cost of distribution to the recipient; and
|
||||||
|
|
||||||
|
(b) You may distribute such Executable Form under the terms of this
|
||||||
|
License, or sublicense it under different terms, provided that the
|
||||||
|
license for the Executable Form does not attempt to limit or alter
|
||||||
|
the recipients' rights in the Source Code Form under this License.
|
||||||
|
|
||||||
|
3.3. Distribution of a Larger Work
|
||||||
|
|
||||||
|
You may create and distribute a Larger Work under terms of Your choice,
|
||||||
|
provided that You also comply with the requirements of this License for
|
||||||
|
the Covered Software. If the Larger Work is a combination of Covered
|
||||||
|
Software with a work governed by one or more Secondary Licenses, and the
|
||||||
|
Covered Software is not Incompatible With Secondary Licenses, this
|
||||||
|
License permits You to additionally distribute such Covered Software
|
||||||
|
under the terms of such Secondary License(s), so that the recipient of
|
||||||
|
the Larger Work may, at their option, further distribute the Covered
|
||||||
|
Software under the terms of either this License or such Secondary
|
||||||
|
License(s).
|
||||||
|
|
||||||
|
3.4. Notices
|
||||||
|
|
||||||
|
You may not remove or alter the substance of any license notices
|
||||||
|
(including copyright notices, patent notices, disclaimers of warranty,
|
||||||
|
or limitations of liability) contained within the Source Code Form of
|
||||||
|
the Covered Software, except that You may alter any license notices to
|
||||||
|
the extent required to remedy known factual inaccuracies.
|
||||||
|
|
||||||
|
3.5. Application of Additional Terms
|
||||||
|
|
||||||
|
You may choose to offer, and to charge a fee for, warranty, support,
|
||||||
|
indemnity or liability obligations to one or more recipients of Covered
|
||||||
|
Software. However, You may do so only on Your own behalf, and not on
|
||||||
|
behalf of any Contributor. You must make it absolutely clear that any
|
||||||
|
such warranty, support, indemnity, or liability obligation is offered by
|
||||||
|
You alone, and You hereby agree to indemnify every Contributor for any
|
||||||
|
liability incurred by such Contributor as a result of warranty, support,
|
||||||
|
indemnity or liability terms You offer. You may include additional
|
||||||
|
disclaimers of warranty and limitations of liability specific to any
|
||||||
|
jurisdiction.
|
||||||
|
|
||||||
|
4. Inability to Comply Due to Statute or Regulation
|
||||||
|
---------------------------------------------------
|
||||||
|
|
||||||
|
If it is impossible for You to comply with any of the terms of this
|
||||||
|
License with respect to some or all of the Covered Software due to
|
||||||
|
statute, judicial order, or regulation then You must: (a) comply with
|
||||||
|
the terms of this License to the maximum extent possible; and (b)
|
||||||
|
describe the limitations and the code they affect. Such description must
|
||||||
|
be placed in a text file included with all distributions of the Covered
|
||||||
|
Software under this License. Except to the extent prohibited by statute
|
||||||
|
or regulation, such description must be sufficiently detailed for a
|
||||||
|
recipient of ordinary skill to be able to understand it.
|
||||||
|
|
||||||
|
5. Termination
|
||||||
|
--------------
|
||||||
|
|
||||||
|
5.1. The rights granted under this License will terminate automatically
|
||||||
|
if You fail to comply with any of its terms. However, if You become
|
||||||
|
compliant, then the rights granted under this License from a particular
|
||||||
|
Contributor are reinstated (a) provisionally, unless and until such
|
||||||
|
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||||
|
ongoing basis, if such Contributor fails to notify You of the
|
||||||
|
non-compliance by some reasonable means prior to 60 days after You have
|
||||||
|
come back into compliance. Moreover, Your grants from a particular
|
||||||
|
Contributor are reinstated on an ongoing basis if such Contributor
|
||||||
|
notifies You of the non-compliance by some reasonable means, this is the
|
||||||
|
first time You have received notice of non-compliance with this License
|
||||||
|
from such Contributor, and You become compliant prior to 30 days after
|
||||||
|
Your receipt of the notice.
|
||||||
|
|
||||||
|
5.2. If You initiate litigation against any entity by asserting a patent
|
||||||
|
infringement claim (excluding declaratory judgment actions,
|
||||||
|
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||||
|
directly or indirectly infringes any patent, then the rights granted to
|
||||||
|
You by any and all Contributors for the Covered Software under Section
|
||||||
|
2.1 of this License shall terminate.
|
||||||
|
|
||||||
|
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||||
|
end user license agreements (excluding distributors and resellers) which
|
||||||
|
have been validly granted by You or Your distributors under this License
|
||||||
|
prior to termination shall survive termination.
|
||||||
|
|
||||||
|
************************************************************************
|
||||||
|
* *
|
||||||
|
* 6. Disclaimer of Warranty *
|
||||||
|
* ------------------------- *
|
||||||
|
* *
|
||||||
|
* Covered Software is provided under this License on an "as is" *
|
||||||
|
* basis, without warranty of any kind, either expressed, implied, or *
|
||||||
|
* statutory, including, without limitation, warranties that the *
|
||||||
|
* Covered Software is free of defects, merchantable, fit for a *
|
||||||
|
* particular purpose or non-infringing. The entire risk as to the *
|
||||||
|
* quality and performance of the Covered Software is with You. *
|
||||||
|
* Should any Covered Software prove defective in any respect, You *
|
||||||
|
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||||
|
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||||
|
* essential part of this License. No use of any Covered Software is *
|
||||||
|
* authorized under this License except under this disclaimer. *
|
||||||
|
* *
|
||||||
|
************************************************************************
|
||||||
|
|
||||||
|
************************************************************************
|
||||||
|
* *
|
||||||
|
* 7. Limitation of Liability *
|
||||||
|
* -------------------------- *
|
||||||
|
* *
|
||||||
|
* Under no circumstances and under no legal theory, whether tort *
|
||||||
|
* (including negligence), contract, or otherwise, shall any *
|
||||||
|
* Contributor, or anyone who distributes Covered Software as *
|
||||||
|
* permitted above, be liable to You for any direct, indirect, *
|
||||||
|
* special, incidental, or consequential damages of any character *
|
||||||
|
* including, without limitation, damages for lost profits, loss of *
|
||||||
|
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||||
|
* and all other commercial damages or losses, even if such party *
|
||||||
|
* shall have been informed of the possibility of such damages. This *
|
||||||
|
* limitation of liability shall not apply to liability for death or *
|
||||||
|
* personal injury resulting from such party's negligence to the *
|
||||||
|
* extent applicable law prohibits such limitation. Some *
|
||||||
|
* jurisdictions do not allow the exclusion or limitation of *
|
||||||
|
* incidental or consequential damages, so this exclusion and *
|
||||||
|
* limitation may not apply to You. *
|
||||||
|
* *
|
||||||
|
************************************************************************
|
||||||
|
|
||||||
|
8. Litigation
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Any litigation relating to this License may be brought only in the
|
||||||
|
courts of a jurisdiction where the defendant maintains its principal
|
||||||
|
place of business and such litigation shall be governed by laws of that
|
||||||
|
jurisdiction, without reference to its conflict-of-law provisions.
|
||||||
|
Nothing in this Section shall prevent a party's ability to bring
|
||||||
|
cross-claims or counter-claims.
|
||||||
|
|
||||||
|
9. Miscellaneous
|
||||||
|
----------------
|
||||||
|
|
||||||
|
This License represents the complete agreement concerning the subject
|
||||||
|
matter hereof. If any provision of this License is held to be
|
||||||
|
unenforceable, such provision shall be reformed only to the extent
|
||||||
|
necessary to make it enforceable. Any law or regulation which provides
|
||||||
|
that the language of a contract shall be construed against the drafter
|
||||||
|
shall not be used to construe this License against a Contributor.
|
||||||
|
|
||||||
|
10. Versions of the License
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
10.1. New Versions
|
||||||
|
|
||||||
|
Mozilla Foundation is the license steward. Except as provided in Section
|
||||||
|
10.3, no one other than the license steward has the right to modify or
|
||||||
|
publish new versions of this License. Each version will be given a
|
||||||
|
distinguishing version number.
|
||||||
|
|
||||||
|
10.2. Effect of New Versions
|
||||||
|
|
||||||
|
You may distribute the Covered Software under the terms of the version
|
||||||
|
of the License under which You originally received the Covered Software,
|
||||||
|
or under the terms of any subsequent version published by the license
|
||||||
|
steward.
|
||||||
|
|
||||||
|
10.3. Modified Versions
|
||||||
|
|
||||||
|
If you create software not governed by this License, and you want to
|
||||||
|
create a new license for such software, you may create and use a
|
||||||
|
modified version of this License if you rename the license and remove
|
||||||
|
any references to the name of the license steward (except to note that
|
||||||
|
such modified license differs from this License).
|
||||||
|
|
||||||
|
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||||
|
Licenses
|
||||||
|
|
||||||
|
If You choose to distribute Source Code Form that is Incompatible With
|
||||||
|
Secondary Licenses under the terms of this version of the License, the
|
||||||
|
notice described in Exhibit B of this License must be attached.
|
||||||
|
|
||||||
|
Exhibit A - Source Code Form License Notice
|
||||||
|
-------------------------------------------
|
||||||
|
|
||||||
|
This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
If it is not possible or desirable to put the notice in a particular
|
||||||
|
file, then You may include the notice in a location (such as a LICENSE
|
||||||
|
file in a relevant directory) where a recipient would be likely to look
|
||||||
|
for such a notice.
|
||||||
|
|
||||||
|
You may add additional accurate notices of copyright ownership.
|
||||||
|
|
||||||
|
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||||
|
---------------------------------------------------------
|
||||||
|
|
||||||
|
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||||
|
defined by the Mozilla Public License, v. 2.0.
|
||||||
|
|||||||
13
README.md
13
README.md
@@ -1,16 +1,13 @@
|
|||||||
# Dust
|
# Cave Dust
|
||||||
|
|
||||||
## What...what is "Dust"?
|
## What...what is "Cave Dust"?
|
||||||
|
|
||||||
I'm glad you asked! It's just a mod that adds the white ash particle from the Basalt Deltas biome to the underground to simulate dust! After all, the air wouldn't be 100% clear in a real mineshaft :p
|
I'm glad you asked! It's just a mod that adds the white ash particle from the Basalt Deltas biome to the underground to simulate dust! After all, the air wouldn't be 100% clear in a real mineshaft :p
|
||||||
|
|
||||||
Now to the nitty gritty:
|
Now to the nitty gritty:
|
||||||
It works by checking if the player has the sky above them and by scaling the amount of particles based on depth.
|
It works by checking if the player has the sky above them while being below sea level and then scales the amount of particles based on depth.
|
||||||
<br>
|
<br><br>It has a config system that you can access using Mod Menu.
|
||||||
-64y lots of particles!
|
|
||||||
<br>
|
|
||||||
64y: less particles :(
|
|
||||||
<br>
|
<br>
|
||||||
## Dependencies
|
## Dependencies
|
||||||
Dust requires the [Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api) but everything else Dust *needs* is included.
|
Cave Dust requires the [Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api) but everything else Cave Dust *needs* is included.
|
||||||
***HOWEVER***, I recommend [Mod Menu](https://www.curseforge.com/minecraft/mc-mods/modmenu) to be able to use the config screen :p
|
***HOWEVER***, I recommend [Mod Menu](https://www.curseforge.com/minecraft/mc-mods/modmenu) to be able to use the config screen :p
|
||||||
|
|||||||
16
build.gradle
16
build.gradle
@@ -1,11 +1,8 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'fabric-loom' version '0.11-SNAPSHOT'
|
id 'fabric-loom' version '1.8-SNAPSHOT'
|
||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_17
|
|
||||||
targetCompatibility = JavaVersion.VERSION_17
|
|
||||||
|
|
||||||
archivesBaseName = project.archives_base_name
|
archivesBaseName = project.archives_base_name
|
||||||
version = project.mod_version
|
version = project.mod_version
|
||||||
group = project.maven_group
|
group = project.maven_group
|
||||||
@@ -18,9 +15,6 @@ repositories {
|
|||||||
includeGroup "maven.modrinth"
|
includeGroup "maven.modrinth"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
maven {
|
|
||||||
url = "https://maven.shedaniel.me/"
|
|
||||||
}
|
|
||||||
maven {
|
maven {
|
||||||
url = "https://maven.terraformersmc.com"
|
url = "https://maven.terraformersmc.com"
|
||||||
}
|
}
|
||||||
@@ -47,14 +41,10 @@ dependencies {
|
|||||||
|
|
||||||
// Fabric API. This is technically optional, but you probably want it anyway.
|
// Fabric API. This is technically optional, but you probably want it anyway.
|
||||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||||
modApi("me.shedaniel.cloth:cloth-config-fabric:${project.clothconfig_version}") {
|
|
||||||
exclude(group: "net.fabricmc.fabric-api")
|
|
||||||
}
|
|
||||||
modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}"
|
modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}"
|
||||||
modApi "com.minelittlepony:kirin:${project.kirin_version}"
|
modApi "com.minelittlepony:kirin:${project.kirin_version}"
|
||||||
include "com.minelittlepony:kirin:${project.kirin_version}"
|
include "com.minelittlepony:kirin:${project.kirin_version}"
|
||||||
|
|
||||||
//modImplementation "com.minelittlepony:minelittlepony:${project.minelp_version}"
|
|
||||||
modCompileOnly("com.terraformersmc:modmenu:${project.modmenu_version}")
|
modCompileOnly("com.terraformersmc:modmenu:${project.modmenu_version}")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,7 +58,7 @@ processResources {
|
|||||||
|
|
||||||
tasks.withType(JavaCompile).configureEach {
|
tasks.withType(JavaCompile).configureEach {
|
||||||
// Minecraft 1.18 (1.18-pre2) upwards uses Java 17.
|
// Minecraft 1.18 (1.18-pre2) upwards uses Java 17.
|
||||||
it.options.release = 17
|
it.options.release = 21
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
@@ -76,6 +66,8 @@ java {
|
|||||||
// if it is present.
|
// if it is present.
|
||||||
// If you remove this line, sources will not be generated.
|
// If you remove this line, sources will not be generated.
|
||||||
withSourcesJar()
|
withSourcesJar()
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_21
|
||||||
|
targetCompatibility = JavaVersion.VERSION_21
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
|||||||
@@ -3,18 +3,17 @@ org.gradle.jvmargs=-Xmx1G
|
|||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/develop
|
# check these on https://fabricmc.net/develop
|
||||||
minecraft_version=1.18.1
|
minecraft_version=1.21.3
|
||||||
yarn_mappings=1.18.1+build.22
|
yarn_mappings=1.21.3+build.2
|
||||||
loader_version=0.13.3
|
loader_version=0.16.9
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.0.1
|
mod_version=3.0.0
|
||||||
maven_group=com.lizistired
|
maven_group=com.lizistired
|
||||||
archives_base_name = dust
|
archives_base_name=cave_dust
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
fabric_version=0.46.4+1.18
|
fabric_version=0.107.0+1.21.3
|
||||||
clothconfig_version = 6.1.48
|
clothconfig_version=16.0.141
|
||||||
modmenu_version = 3.0.1
|
modmenu_version=12.0.0-beta.1
|
||||||
minelp_version=4.4.0-beta.2
|
kirin_version=1.19.3+1.21.3
|
||||||
kirin_version=1.10.0-beta.2
|
|
||||||
|
|||||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,7 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
|
||||||
|
networkTimeout=10000
|
||||||
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
51
gradlew
vendored
51
gradlew
vendored
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
#
|
#
|
||||||
# Copyright © 2015-2021 the original authors.
|
# Copyright © 2015-2021 the original authors.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
@@ -32,10 +32,10 @@
|
|||||||
# Busybox and similar reduced shells will NOT work, because this script
|
# Busybox and similar reduced shells will NOT work, because this script
|
||||||
# requires all of these POSIX shell features:
|
# requires all of these POSIX shell features:
|
||||||
# * functions;
|
# * functions;
|
||||||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||||
# * compound commands having a testable exit status, especially «case»;
|
# * compound commands having a testable exit status, especially «case»;
|
||||||
# * various built-in commands including «command», «set», and «ulimit».
|
# * various built-in commands including «command», «set», and «ulimit».
|
||||||
#
|
#
|
||||||
# Important for patching:
|
# Important for patching:
|
||||||
#
|
#
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
# Darwin, MinGW, and NonStop.
|
# Darwin, MinGW, and NonStop.
|
||||||
#
|
#
|
||||||
# (3) This script is generated from the Groovy template
|
# (3) This script is generated from the Groovy template
|
||||||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||||
# within the Gradle project.
|
# within the Gradle project.
|
||||||
#
|
#
|
||||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||||
@@ -80,13 +80,11 @@ do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
# This is normally unused
|
||||||
|
# shellcheck disable=SC2034
|
||||||
APP_NAME="Gradle"
|
|
||||||
APP_BASE_NAME=${0##*/}
|
APP_BASE_NAME=${0##*/}
|
||||||
|
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|
||||||
|
|
||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD=maximum
|
MAX_FD=maximum
|
||||||
@@ -133,22 +131,29 @@ location of your Java installation."
|
|||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
JAVACMD=java
|
JAVACMD=java
|
||||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
if ! command -v java >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
Please set the JAVA_HOME variable in your environment to match the
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
location of your Java installation."
|
location of your Java installation."
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# Increase the maximum file descriptors if we can.
|
# Increase the maximum file descriptors if we can.
|
||||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
max*)
|
max*)
|
||||||
|
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC2039,SC3045
|
||||||
MAX_FD=$( ulimit -H -n ) ||
|
MAX_FD=$( ulimit -H -n ) ||
|
||||||
warn "Could not query maximum file descriptor limit"
|
warn "Could not query maximum file descriptor limit"
|
||||||
esac
|
esac
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
'' | soft) :;; #(
|
'' | soft) :;; #(
|
||||||
*)
|
*)
|
||||||
|
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC2039,SC3045
|
||||||
ulimit -n "$MAX_FD" ||
|
ulimit -n "$MAX_FD" ||
|
||||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||||
esac
|
esac
|
||||||
@@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then
|
|||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Collect all arguments for the java command;
|
|
||||||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
# shell script including quotes and variable substitutions, so put them in
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
# double quotes to make sure that they get re-expanded; and
|
|
||||||
# * put everything else in single quotes, so that it's not re-expanded.
|
# Collect all arguments for the java command:
|
||||||
|
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||||
|
# and any embedded shellness will be escaped.
|
||||||
|
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||||
|
# treated as '${Hostname}' itself on the command line.
|
||||||
|
|
||||||
set -- \
|
set -- \
|
||||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||||
@@ -205,6 +214,12 @@ set -- \
|
|||||||
org.gradle.wrapper.GradleWrapperMain \
|
org.gradle.wrapper.GradleWrapperMain \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
||||||
|
# Stop when "xargs" is not available.
|
||||||
|
if ! command -v xargs >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
die "xargs is not available"
|
||||||
|
fi
|
||||||
|
|
||||||
# Use "xargs" to parse quoted args.
|
# Use "xargs" to parse quoted args.
|
||||||
#
|
#
|
||||||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||||
|
|||||||
31
gradlew.bat
vendored
31
gradlew.bat
vendored
@@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal
|
|||||||
|
|
||||||
set DIRNAME=%~dp0
|
set DIRNAME=%~dp0
|
||||||
if "%DIRNAME%"=="" set DIRNAME=.
|
if "%DIRNAME%"=="" set DIRNAME=.
|
||||||
|
@rem This is normally unused
|
||||||
set APP_BASE_NAME=%~n0
|
set APP_BASE_NAME=%~n0
|
||||||
set APP_HOME=%DIRNAME%
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
@@ -40,13 +41,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome
|
|||||||
|
|
||||||
set JAVA_EXE=java.exe
|
set JAVA_EXE=java.exe
|
||||||
%JAVA_EXE% -version >NUL 2>&1
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
if "%ERRORLEVEL%" == "0" goto execute
|
if %ERRORLEVEL% equ 0 goto execute
|
||||||
|
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the
|
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||||
echo location of your Java installation.
|
echo location of your Java installation. 1>&2
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
@@ -56,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
|||||||
|
|
||||||
if exist "%JAVA_EXE%" goto execute
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
||||||
echo.
|
echo. 1>&2
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the
|
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
||||||
echo location of your Java installation.
|
echo location of your Java installation. 1>&2
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
@@ -75,13 +76,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
|||||||
|
|
||||||
:end
|
:end
|
||||||
@rem End local scope for the variables with windows NT shell
|
@rem End local scope for the variables with windows NT shell
|
||||||
if "%ERRORLEVEL%"=="0" goto mainEnd
|
if %ERRORLEVEL% equ 0 goto mainEnd
|
||||||
|
|
||||||
:fail
|
:fail
|
||||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
rem the _cmd.exe /c_ return code!
|
rem the _cmd.exe /c_ return code!
|
||||||
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
set EXIT_CODE=%ERRORLEVEL%
|
||||||
exit /b 1
|
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
||||||
|
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
||||||
|
exit /b %EXIT_CODE%
|
||||||
|
|
||||||
:mainEnd
|
:mainEnd
|
||||||
if "%OS%"=="Windows_NT" endlocal
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|||||||
@@ -1,76 +0,0 @@
|
|||||||
package net.fabricmc.example;
|
|
||||||
|
|
||||||
import com.minelittlepony.common.util.GamePaths;
|
|
||||||
import net.fabricmc.api.ClientModInitializer;
|
|
||||||
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents;
|
|
||||||
import net.minecraft.client.MinecraftClient;
|
|
||||||
import net.minecraft.particle.ParticleTypes;
|
|
||||||
import net.minecraft.world.World;
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.file.Path;
|
|
||||||
import java.util.Random;
|
|
||||||
|
|
||||||
public class Dust implements ClientModInitializer {
|
|
||||||
public static final Logger LOGGER = LoggerFactory.getLogger("dust");
|
|
||||||
|
|
||||||
private static Dust instance;
|
|
||||||
|
|
||||||
public static Dust getInstance() {
|
|
||||||
return instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Dust() {
|
|
||||||
instance = this;
|
|
||||||
}
|
|
||||||
|
|
||||||
private DustConfig config;
|
|
||||||
|
|
||||||
public DustConfig getConfig() {
|
|
||||||
return config;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onInitializeClient() {
|
|
||||||
Path dustFolder = GamePaths.getConfigDirectory().resolve("dust");
|
|
||||||
config = new DustConfig(dustFolder.resolve("userconfig.json"), this);
|
|
||||||
config.load();
|
|
||||||
|
|
||||||
ClientTickEvents.END_CLIENT_TICK.register(this::createDust);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getRandomNumberUsingInts(int min, int max) {
|
|
||||||
Random random = new Random();
|
|
||||||
return random.ints(min, max)
|
|
||||||
.findFirst()
|
|
||||||
.getAsInt();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static double lerp(double min, double max, double val) {
|
|
||||||
return 1 - ((val - min) / (max - min));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void createDust(MinecraftClient client) {
|
|
||||||
if (getConfig().getDustEnabled()) {
|
|
||||||
if (!client.isPaused()) {
|
|
||||||
if (client.world != null) {
|
|
||||||
World world = client.world;
|
|
||||||
if (!client.player.clientWorld.isSkyVisible(client.player.getBlockPos())) {
|
|
||||||
double x;
|
|
||||||
double y;
|
|
||||||
double z;
|
|
||||||
double probabilityNormalized = lerp(64, -64, client.player.getBlockY());
|
|
||||||
for (int i = 0; i < probabilityNormalized; i++) {
|
|
||||||
x = client.player.getPos().getX() + getRandomNumberUsingInts(-5, 5);
|
|
||||||
y = client.player.getPos().getY() + getRandomNumberUsingInts(-20, 20);
|
|
||||||
z = client.player.getPos().getZ() + getRandomNumberUsingInts(-5, 5);
|
|
||||||
world.addParticle(ParticleTypes.WHITE_ASH, x, y, z, getRandomNumberUsingInts(-5, 20), getRandomNumberUsingInts(-5, 20), getRandomNumberUsingInts(-5, 20));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
package net.fabricmc.example;
|
|
||||||
|
|
||||||
import net.fabricmc.example.utils.JsonFile;
|
|
||||||
|
|
||||||
import java.nio.file.Path;
|
|
||||||
import java.util.Vector;
|
|
||||||
|
|
||||||
public class DustConfig extends JsonFile {
|
|
||||||
private transient final Dust dust;
|
|
||||||
private Vector dimensions;
|
|
||||||
private boolean dustEnabled = true;
|
|
||||||
|
|
||||||
public DustConfig(Path file, Dust dust) {
|
|
||||||
super(file);
|
|
||||||
|
|
||||||
this.dust = dust;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Vector setDimensions(){
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Vector getDimensions(){
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean toggleDust(){
|
|
||||||
dustEnabled = !dustEnabled;
|
|
||||||
save();
|
|
||||||
return dustEnabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean getDustEnabled(){
|
|
||||||
return dustEnabled;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
package net.fabricmc.example;
|
|
||||||
|
|
||||||
import com.minelittlepony.common.client.gui.GameGui;
|
|
||||||
import com.minelittlepony.common.client.gui.element.*;
|
|
||||||
import net.minecraft.client.gui.screen.Screen;
|
|
||||||
import net.minecraft.client.util.math.MatrixStack;
|
|
||||||
import net.minecraft.text.TranslatableText;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
public class ModMenuScreen extends GameGui {
|
|
||||||
public ModMenuScreen(@Nullable Screen parent) {
|
|
||||||
super(new TranslatableText("menu.dust.title"), parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void init() {
|
|
||||||
int left = width / 2 - 100;
|
|
||||||
int row = height / 4 + 14;
|
|
||||||
|
|
||||||
DustConfig config = Dust.getInstance().getConfig();
|
|
||||||
|
|
||||||
addButton(new Label(width / 2, 30)).setCentered().getStyle()
|
|
||||||
.setText(getTitle());
|
|
||||||
|
|
||||||
addButton(new Button(left, row += 24).onClick(sender -> {
|
|
||||||
sender.getStyle().setText("menu.dust.global." + config.toggleDust());
|
|
||||||
})).getStyle()
|
|
||||||
.setText("menu.dust.global." + config.getDustEnabled());
|
|
||||||
|
|
||||||
addButton(new Button(left, row += 34)
|
|
||||||
.onClick(sender -> finish())).getStyle()
|
|
||||||
.setText("gui.done");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void render(MatrixStack matrices, int mouseX, int mouseY, float partialTicks) {
|
|
||||||
renderBackground(matrices);
|
|
||||||
super.render(matrices, mouseX, mouseY, partialTicks);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
101
src/main/java/net/lizistired/cavedust/CaveDust.java
Normal file
101
src/main/java/net/lizistired/cavedust/CaveDust.java
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
package net.lizistired.cavedust;
|
||||||
|
|
||||||
|
//minecraft imports
|
||||||
|
import net.fabricmc.fabric.api.client.particle.v1.ParticleFactoryRegistry;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.particle.ParticleEffect;
|
||||||
|
import net.minecraft.registry.Registries;
|
||||||
|
import net.minecraft.registry.Registry;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.minecraft.util.Identifier;
|
||||||
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
//other imports
|
||||||
|
import com.minelittlepony.common.util.GamePaths;
|
||||||
|
import net.fabricmc.api.ClientModInitializer;
|
||||||
|
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
//java imports
|
||||||
|
import java.nio.file.Path;
|
||||||
|
//static imports
|
||||||
|
import static net.lizistired.cavedust.utils.MathHelper.*;
|
||||||
|
import static net.lizistired.cavedust.utils.MathHelper.generateRandomDouble;
|
||||||
|
import static net.lizistired.cavedust.utils.ParticleSpawnUtil.shouldParticlesSpawn;
|
||||||
|
import static net.lizistired.cavedust.utils.KeybindingHelper.*;
|
||||||
|
|
||||||
|
|
||||||
|
public class CaveDust implements ClientModInitializer {
|
||||||
|
//logger
|
||||||
|
public static final Logger LOGGER = LoggerFactory.getLogger("cavedust");
|
||||||
|
//make class static
|
||||||
|
private static CaveDust instance;
|
||||||
|
public static CaveDust getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
public CaveDust() {
|
||||||
|
instance = this;
|
||||||
|
}
|
||||||
|
//config assignment
|
||||||
|
private static net.lizistired.cavedust.CaveDustConfig config;
|
||||||
|
public net.lizistired.cavedust.CaveDustConfig getConfig() {
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ParticleEffect WHITE_ASH_ID = (ParticleEffect) Registries.PARTICLE_TYPE.get(Identifier.of("cavedust", "cave_dust"));
|
||||||
|
public static int PARTICLE_AMOUNT = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onInitializeClient() {
|
||||||
|
//config path and loading
|
||||||
|
Path CaveDustFolder = GamePaths.getConfigDirectory().resolve("cavedust");
|
||||||
|
config = new CaveDustConfig(CaveDustFolder.getParent().resolve("cavedust.json"), this);
|
||||||
|
config.load();
|
||||||
|
registerKeyBindings();
|
||||||
|
ParticleFactoryRegistry.getInstance().register(CaveDustServer.CAVE_DUST, CaveDustParticleFactory.Factory::new);
|
||||||
|
|
||||||
|
//register end client tick to create cave dust function, using end client tick for async
|
||||||
|
ClientTickEvents.END_CLIENT_TICK.register(this::createCaveDust);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void createCaveDust(MinecraftClient client) {
|
||||||
|
if (keyBinding1.wasPressed()){
|
||||||
|
getConfig().toggleCaveDust();
|
||||||
|
LOGGER.info("Toggled dust");
|
||||||
|
client.player.sendMessage(Text.translatable("debug.cavedust.toggle." + config.getCaveDustEnabled()), false);
|
||||||
|
}
|
||||||
|
if (keyBinding2.wasPressed()){
|
||||||
|
getConfig().load();
|
||||||
|
LOGGER.info("Reloaded config");
|
||||||
|
client.player.sendMessage(Text.translatable("debug.cavedust.reload"), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
//ensure world is not null
|
||||||
|
if (client.world == null) return;
|
||||||
|
World world = client.world;
|
||||||
|
|
||||||
|
//LOGGER.info(String.valueOf(((ClientWorldAccessor) client.world.getLevelProperties()).getFlatWorld()));
|
||||||
|
// )
|
||||||
|
double probabilityNormalized = normalize(config.getLowerLimit(), config.getUpperLimit(), client.player.getBlockY());
|
||||||
|
PARTICLE_AMOUNT = (int) (probabilityNormalized * config.getParticleMultiplier() * config.getParticleMultiplierMultiplier());
|
||||||
|
|
||||||
|
for (int i = 0; i < PARTICLE_AMOUNT; i++) {
|
||||||
|
int x = (int) (client.player.getPos().getX() + (int) generateRandomDouble(config.getDimensionWidth() *-1, config.getDimensionWidth()));
|
||||||
|
int y = (int) (client.player.getEyePos().getY() + (int) generateRandomDouble(config.getDimensionHeight() *-1, config.getDimensionHeight()));
|
||||||
|
int z = (int) (client.player.getPos().getZ() + (int) generateRandomDouble(config.getDimensionWidth() *-1, config.getDimensionWidth()));
|
||||||
|
double miniX = (x + Math.random());
|
||||||
|
double miniY = (y + Math.random());
|
||||||
|
double miniZ = (z + Math.random());
|
||||||
|
BlockPos particlePos = new BlockPos(x, y, z);
|
||||||
|
|
||||||
|
if (shouldParticlesSpawn(client, config, particlePos)) {
|
||||||
|
if (client.world.getBlockState(particlePos).isAir()) {
|
||||||
|
world.addParticle(getConfig().getParticle(), miniX, miniY, miniZ, config.getVelocityRandomnessRandom() * 0.01, config.getVelocityRandomnessRandom() * 0.01, config.getVelocityRandomnessRandom() * 0.01);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
232
src/main/java/net/lizistired/cavedust/CaveDustConfig.java
Normal file
232
src/main/java/net/lizistired/cavedust/CaveDustConfig.java
Normal file
@@ -0,0 +1,232 @@
|
|||||||
|
package net.lizistired.cavedust;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableList;
|
||||||
|
import net.lizistired.cavedust.utils.JsonFile;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.client.render.RenderLayer;
|
||||||
|
import net.minecraft.particle.ParticleEffect;
|
||||||
|
import net.minecraft.particle.ParticleType;
|
||||||
|
import net.minecraft.particle.ParticleTypes;
|
||||||
|
import net.minecraft.registry.Registries;
|
||||||
|
import net.minecraft.registry.Registry;
|
||||||
|
import net.minecraft.registry.RegistryKey;
|
||||||
|
import net.minecraft.registry.RegistryKeys;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import net.minecraft.util.Identifier;
|
||||||
|
import static net.lizistired.cavedust.CaveDust.*;
|
||||||
|
import static net.lizistired.cavedust.utils.MathHelper.*;
|
||||||
|
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
public class CaveDustConfig extends JsonFile {
|
||||||
|
private transient final net.lizistired.cavedust.CaveDust CaveDust;
|
||||||
|
|
||||||
|
|
||||||
|
private int width = 10;
|
||||||
|
private int height = 10;
|
||||||
|
private int velocityRandomness = 0;
|
||||||
|
|
||||||
|
private boolean caveDustEnabled = true;
|
||||||
|
private boolean seaLevelCheck = true;
|
||||||
|
private boolean superFlatStatus = false;
|
||||||
|
private float upperLimit = 64;
|
||||||
|
private float lowerLimit = -64;
|
||||||
|
private int particleMultiplier = 1;
|
||||||
|
|
||||||
|
int listNumber = 0;
|
||||||
|
|
||||||
|
private int particleMultiplierMultiplier = 10;
|
||||||
|
|
||||||
|
List<Identifier> list = List.of(Registries.PARTICLE_TYPE.getIds().toArray(new Identifier[0]));
|
||||||
|
|
||||||
|
Identifier newId = Identifier.of("cavedust", "cave_dust");
|
||||||
|
|
||||||
|
public CaveDustConfig(Path file, net.lizistired.cavedust.CaveDust caveDust) {
|
||||||
|
super(file);
|
||||||
|
this.CaveDust = caveDust;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float setDimensionWidth(float size){
|
||||||
|
if (this.width != size) {
|
||||||
|
this.width = (int)size;
|
||||||
|
save();
|
||||||
|
}
|
||||||
|
return getDimensionWidth();
|
||||||
|
}
|
||||||
|
|
||||||
|
public float setDimensionHeight(float size){
|
||||||
|
if (this.height != size) {
|
||||||
|
this.height = (int)size;
|
||||||
|
save();
|
||||||
|
}
|
||||||
|
return getDimensionHeight();
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getDimensionWidth(){
|
||||||
|
return width;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getDimensionHeight(){
|
||||||
|
return height;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float setUpperLimit(float upperLimit){
|
||||||
|
if (this.upperLimit - 1 < getLowerLimit())
|
||||||
|
{
|
||||||
|
return getUpperLimit();
|
||||||
|
}
|
||||||
|
if (this.upperLimit != upperLimit) {
|
||||||
|
this.upperLimit = (int)upperLimit;
|
||||||
|
save();
|
||||||
|
}
|
||||||
|
return getUpperLimit();
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getUpperLimit(){
|
||||||
|
return upperLimit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float setLowerLimit(float lowerLimit){
|
||||||
|
if (this.lowerLimit + 1 > getUpperLimit())
|
||||||
|
{
|
||||||
|
return getLowerLimit();
|
||||||
|
}
|
||||||
|
if (this.lowerLimit != lowerLimit) {
|
||||||
|
this.lowerLimit = (int)lowerLimit;
|
||||||
|
save();
|
||||||
|
}
|
||||||
|
return getLowerLimit();
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getLowerLimit(){
|
||||||
|
return lowerLimit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getParticleMultiplier(){
|
||||||
|
return particleMultiplier;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float setParticleMultiplier(float particleMultiplier){
|
||||||
|
this.particleMultiplier = (int) particleMultiplier;
|
||||||
|
save();
|
||||||
|
return getParticleMultiplier();
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getParticleMultiplierMultiplier(){
|
||||||
|
return particleMultiplierMultiplier;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float setParticleMultiplierMultiplier(float particleMultiplierMultiplier){
|
||||||
|
this.particleMultiplierMultiplier = (int) particleMultiplierMultiplier;
|
||||||
|
save();
|
||||||
|
return getParticleMultiplierMultiplier();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean toggleCaveDust(){
|
||||||
|
caveDustEnabled = !caveDustEnabled;
|
||||||
|
save();
|
||||||
|
return caveDustEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getCaveDustEnabled(){
|
||||||
|
return caveDustEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
//todo
|
||||||
|
//public Identifier setParticle(String particleType){
|
||||||
|
//particleName = particleType;
|
||||||
|
//save();
|
||||||
|
//return getParticle().get().getKey().get().getValue();
|
||||||
|
//}
|
||||||
|
|
||||||
|
//public ParticleEffect getParticle(){
|
||||||
|
// try {
|
||||||
|
// return Registries.PARTICLE_TYPE.getOptional(Identifier.of(Registries.PARTICLE_TYPE.getOptional(getParticleID()).get().getKey().get().getValue().toString().toLowerCase()));
|
||||||
|
// } catch (ClassCastException e) {
|
||||||
|
// MinecraftClient.getInstance().player.sendMessage(Text.translatable("debug.cavedust.particleerror"), true);
|
||||||
|
// LOGGER.error("Cannot spawn particle, check config.");
|
||||||
|
// iterateParticle();
|
||||||
|
// save();
|
||||||
|
// return getParticle();
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
|
public ParticleEffect getParticle(){
|
||||||
|
try{
|
||||||
|
return (ParticleEffect) Registries.PARTICLE_TYPE.get(newId);
|
||||||
|
}
|
||||||
|
catch (ClassCastException e){
|
||||||
|
iterateParticle();
|
||||||
|
return getParticle();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getSeaLevelCheck() {
|
||||||
|
return seaLevelCheck;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean setSeaLevelCheck() {
|
||||||
|
seaLevelCheck = !seaLevelCheck;
|
||||||
|
save();
|
||||||
|
return getSeaLevelCheck();
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getVelocityRandomnessRandom(){
|
||||||
|
if (velocityRandomness == 0) {return 0;}
|
||||||
|
return (float) generateRandomDouble(-velocityRandomness, velocityRandomness);
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getVelocityRandomness(){
|
||||||
|
return velocityRandomness;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float setVelocityRandomness(float velocityRandomness){
|
||||||
|
this.velocityRandomness = (int) velocityRandomness;
|
||||||
|
save();
|
||||||
|
return getVelocityRandomness();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getSuperFlatStatus(){
|
||||||
|
return superFlatStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean setSuperFlatStatus(){
|
||||||
|
superFlatStatus = !superFlatStatus;
|
||||||
|
save();
|
||||||
|
return getSuperFlatStatus();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void iterateParticle() {
|
||||||
|
try {
|
||||||
|
listNumber = listNumber + 1;
|
||||||
|
newId = list.get(listNumber);
|
||||||
|
} catch (IndexOutOfBoundsException e){
|
||||||
|
newId = list.get(0);
|
||||||
|
listNumber = 0;
|
||||||
|
}
|
||||||
|
save();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ParticleEffect getParticleID(){
|
||||||
|
return getParticle();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void resetConfig(){
|
||||||
|
width = 10;
|
||||||
|
height = 10;
|
||||||
|
|
||||||
|
upperLimit = 64;
|
||||||
|
lowerLimit = -64;
|
||||||
|
|
||||||
|
particleMultiplier = 1;
|
||||||
|
particleMultiplierMultiplier = 10;
|
||||||
|
velocityRandomness = 0;
|
||||||
|
|
||||||
|
newId = Identifier.of("cavedust", "cave_dust");
|
||||||
|
|
||||||
|
seaLevelCheck = true;
|
||||||
|
caveDustEnabled = true;
|
||||||
|
save();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
package net.fabricmc.example;
|
package net.lizistired.cavedust;
|
||||||
|
|
||||||
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
|
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
|
||||||
import com.terraformersmc.modmenu.api.ModMenuApi;
|
import com.terraformersmc.modmenu.api.ModMenuApi;
|
||||||
|
|
||||||
public class DustModMenuFactory implements ModMenuApi {
|
public class CaveDustModMenuFactory implements ModMenuApi {
|
||||||
@Override
|
@Override
|
||||||
public ConfigScreenFactory<?> getModConfigScreenFactory() {
|
public ConfigScreenFactory<?> getModConfigScreenFactory() {
|
||||||
return ModMenuScreen::new;
|
return ModMenuConfigScreen::new;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
package net.lizistired.cavedust;
|
||||||
|
|
||||||
|
import net.fabricmc.api.EnvType;
|
||||||
|
import net.fabricmc.api.Environment;
|
||||||
|
import net.minecraft.client.particle.*;
|
||||||
|
import net.minecraft.client.world.ClientWorld;
|
||||||
|
import net.minecraft.particle.SimpleParticleType;
|
||||||
|
|
||||||
|
public class CaveDustParticleFactory extends SpriteBillboardParticle {
|
||||||
|
private final SpriteProvider spriteProvider;
|
||||||
|
CaveDustParticleFactory(ClientWorld clientWorld, double x, double y, double z, double velocityX, double velocityY, double velocityZ, SpriteProvider spriteProvider) {
|
||||||
|
super(clientWorld, x, y, z);
|
||||||
|
this.spriteProvider = spriteProvider; //Sets the sprite provider from above to the sprite provider in the constructor method
|
||||||
|
this.maxAge = 200; //20 ticks = 1 second
|
||||||
|
this.scale = 0.1f;
|
||||||
|
this.velocityX = velocityX; //The velX from the constructor parameters
|
||||||
|
this.velocityY = -0.007f; //Allows the particle to slowly fall
|
||||||
|
this.velocityZ = velocityZ;
|
||||||
|
this.x = x; //The x from the constructor parameters
|
||||||
|
this.y = y;
|
||||||
|
this.z = z;
|
||||||
|
this.collidesWithWorld = true;
|
||||||
|
this.alpha = 1.0f; //Setting the alpha to 1.0f means there will be no opacity change until the alpha value is changed
|
||||||
|
this.setSpriteForAge(spriteProvider); //Required
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void tick() {
|
||||||
|
super.tick();
|
||||||
|
if(this.alpha < 0.0f){
|
||||||
|
this.markDead();
|
||||||
|
}
|
||||||
|
this.alpha -= 0.005f;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ParticleTextureSheet getType() {
|
||||||
|
return ParticleTextureSheet.PARTICLE_SHEET_TRANSLUCENT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Environment(EnvType.CLIENT)
|
||||||
|
public static class Factory implements ParticleFactory<SimpleParticleType> {
|
||||||
|
private final SpriteProvider spriteProvider;
|
||||||
|
|
||||||
|
public Factory(SpriteProvider spriteProvider) {
|
||||||
|
this.spriteProvider = spriteProvider;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Particle createParticle(SimpleParticleType type, ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ) {
|
||||||
|
return new CaveDustParticleFactory(world, x, y, z, velocityX, velocityY, velocityZ, this.spriteProvider);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/main/java/net/lizistired/cavedust/CaveDustServer.java
Normal file
19
src/main/java/net/lizistired/cavedust/CaveDustServer.java
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
package net.lizistired.cavedust;
|
||||||
|
|
||||||
|
import net.fabricmc.api.ModInitializer;
|
||||||
|
import net.fabricmc.fabric.api.particle.v1.FabricParticleTypes;
|
||||||
|
import net.minecraft.particle.SimpleParticleType;
|
||||||
|
import net.minecraft.registry.Registries;
|
||||||
|
import net.minecraft.registry.Registry;
|
||||||
|
import net.minecraft.util.Identifier;
|
||||||
|
|
||||||
|
public class CaveDustServer implements ModInitializer {
|
||||||
|
public static final SimpleParticleType CAVE_DUST = FabricParticleTypes.simple();
|
||||||
|
/**
|
||||||
|
* Runs the mod initializer.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void onInitialize() {
|
||||||
|
Registry.register(Registries.PARTICLE_TYPE, Identifier.of("cavedust", "cave_dust"), CAVE_DUST);
|
||||||
|
}
|
||||||
|
}
|
||||||
122
src/main/java/net/lizistired/cavedust/ModMenuConfigScreen.java
Normal file
122
src/main/java/net/lizistired/cavedust/ModMenuConfigScreen.java
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
package net.lizistired.cavedust;
|
||||||
|
|
||||||
|
import com.minelittlepony.common.client.gui.GameGui;
|
||||||
|
import com.minelittlepony.common.client.gui.element.*;
|
||||||
|
import net.lizistired.cavedust.utils.TranslatableTextHelper;
|
||||||
|
import net.minecraft.client.gui.DrawContext;
|
||||||
|
import net.minecraft.client.gui.screen.Screen;
|
||||||
|
import net.minecraft.particle.ParticleType;
|
||||||
|
import net.minecraft.registry.Registries;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.NoSuchElementException;
|
||||||
|
|
||||||
|
public class ModMenuConfigScreen extends GameGui {
|
||||||
|
public ModMenuConfigScreen(@Nullable Screen parent) {
|
||||||
|
super(Text.translatable("menu.cavedust.title"), parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void init() {
|
||||||
|
int left = width / 2 - 100;
|
||||||
|
int row = height / 4 + 14;
|
||||||
|
|
||||||
|
CaveDustConfig config = CaveDust.getInstance().getConfig();
|
||||||
|
TranslatableTextHelper transText = new TranslatableTextHelper();;
|
||||||
|
config.load();
|
||||||
|
|
||||||
|
addButton(new Label(width / 2, 30)).setCentered().getStyle()
|
||||||
|
.setText(getTitle());
|
||||||
|
|
||||||
|
addButton(new Button(left += -110, row += -60).onClick(sender -> {
|
||||||
|
sender.getStyle().setText("menu.cavedust.global." + config.toggleCaveDust()).setTooltip(Text.translatable("menu.cavedust.global.tooltip." + config.getCaveDustEnabled()));
|
||||||
|
})).getStyle()
|
||||||
|
.setText("menu.cavedust.global." + config.getCaveDustEnabled())
|
||||||
|
.setTooltip(Text.translatable("menu.cavedust.global.tooltip." + config.getCaveDustEnabled()));
|
||||||
|
|
||||||
|
/*addButton(new Button(left, row += 24).onClick(sender -> {
|
||||||
|
sender.getStyle().setText("menu.cavedust.enhanceddetection." + config.setEnhancedDetection()).setTooltip(Text.translatable("menu.cavedust.enhanceddetection.tooltip"));
|
||||||
|
})).getStyle()
|
||||||
|
.setText("menu.cavedust.enhanceddetection." + config.getEnhancedDetection())
|
||||||
|
.setTooltip(Text.translatable("menu.cavedust.enhanceddetection.tooltip"));*/
|
||||||
|
|
||||||
|
addButton(new Button(left, row += 24).onClick(sender -> {
|
||||||
|
sender.getStyle().setText("menu.cavedust.superflatstatus." + config.setSuperFlatStatus()).setTooltip(Text.translatable("menu.cavedust.superflatstatus.tooltip"));
|
||||||
|
})).getStyle()
|
||||||
|
.setText("menu.cavedust.superflatstatus." + config.getSuperFlatStatus())
|
||||||
|
.setTooltip(Text.translatable("menu.cavedust.superflatstatus.tooltip"));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*addButton(new Slider(left, row += 48, -64, 319, config.getUpperLimit()))
|
||||||
|
.onChange(config::setUpperLimit)
|
||||||
|
.setTextFormat(transText::formatUpperLimit)
|
||||||
|
.getStyle().setTooltip(Text.translatable("menu.cavedust.upperlimit.tooltip"));
|
||||||
|
|
||||||
|
addButton(new Slider(left, row += 24, -64, 319, config.getLowerLimit()))
|
||||||
|
.onChange(config::setLowerLimit)
|
||||||
|
.setTextFormat(transText::formatLowerLimit)
|
||||||
|
.getStyle().setTooltip(Text.translatable("menu.cavedust.lowerlimit.tooltip"));*/
|
||||||
|
|
||||||
|
addButton(new Slider(left, row += 24, 1, 100, config.getParticleMultiplier()))
|
||||||
|
.onChange(config::setParticleMultiplier)
|
||||||
|
.setTextFormat(transText::formatParticleMultiplier)
|
||||||
|
.getStyle().setTooltip(Text.translatable("menu.cavedust.particlemultiplier.tooltip"));
|
||||||
|
|
||||||
|
addButton(new Slider(left, row += 24, 1, 100, config.getParticleMultiplierMultiplier()))
|
||||||
|
.onChange(config::setParticleMultiplierMultiplier)
|
||||||
|
.setTextFormat(transText::formatParticleMultiplierMultiplier)
|
||||||
|
.getStyle().setTooltip(Text.translatable("menu.cavedust.particlemultipliermultiplier.tooltip"));
|
||||||
|
addButton(new Button(left, row += 24).onClick(sender ->{
|
||||||
|
config.iterateParticle();
|
||||||
|
sender.getStyle().setText("Particle: " + (getNameOfParticle()));
|
||||||
|
})).getStyle().setText("Particle: " + (getNameOfParticle()))
|
||||||
|
.setTooltip(Text.translatable("menu.cavedust.particle.tooltip"));
|
||||||
|
|
||||||
|
addButton(new Slider(left += 220, row -= 96, 1, 50, config.getDimensionWidth()))
|
||||||
|
.onChange(config::setDimensionWidth)
|
||||||
|
.setTextFormat(transText::formatMaxWidth)
|
||||||
|
.getStyle().setTooltip(Text.translatable("menu.cavedust.width.tooltip"));
|
||||||
|
|
||||||
|
addButton(new Slider(left, row += 24, 1, 50, config.getDimensionHeight()))
|
||||||
|
.onChange(config::setDimensionHeight)
|
||||||
|
.setTextFormat(transText::formatMaxHeight)
|
||||||
|
.getStyle().setTooltip(Text.translatable("menu.cavedust.height.tooltip"));
|
||||||
|
|
||||||
|
addButton(new Slider(left, row += 24, 0, 10, config.getVelocityRandomness()))
|
||||||
|
.onChange(config::setVelocityRandomness)
|
||||||
|
.setTextFormat(transText::formatVelocityRandomness)
|
||||||
|
.getStyle().setTooltip(Text.translatable("menu.cavedust.velocityrandomness.tooltip"));
|
||||||
|
|
||||||
|
|
||||||
|
addButton(new Button(left -= 110, row += 120).onClick(sender -> {
|
||||||
|
config.resetConfig();
|
||||||
|
finish();
|
||||||
|
client.setScreen(new ModMenuConfigScreen(parent));
|
||||||
|
})).getStyle().setText(Text.translatable("menu.cavedust.reset")).setTooltip(Text.translatable("menu.cavedust.reset.tooltip"));
|
||||||
|
|
||||||
|
addButton(new Button(left, row += 24)
|
||||||
|
.onClick(sender -> finish())).getStyle()
|
||||||
|
.setText("gui.done");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void render(DrawContext context, int mouseX, int mouseY, float partialTicks) {
|
||||||
|
renderBackground(context, mouseX, mouseY, partialTicks);
|
||||||
|
super.render(context, mouseX, mouseY, partialTicks);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getNameOfParticle(){
|
||||||
|
CaveDustConfig config = CaveDust.getInstance().getConfig();
|
||||||
|
config.load();
|
||||||
|
try {
|
||||||
|
return Registries.PARTICLE_TYPE.getEntry((ParticleType<?>) config.getParticleID()).getIdAsString();
|
||||||
|
} catch (NoSuchElementException e){
|
||||||
|
CaveDust.LOGGER.error(String.valueOf(e));
|
||||||
|
return "null";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package net.lizistired.cavedust.mixin;
|
||||||
|
|
||||||
|
import net.minecraft.client.world.ClientWorld;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
||||||
|
|
||||||
|
@Mixin(ClientWorld.Properties.class)
|
||||||
|
public interface ClientWorldAccessor {
|
||||||
|
@Accessor
|
||||||
|
boolean getFlatWorld();
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package net.lizistired.cavedust.mixin;
|
||||||
|
|
||||||
|
import net.minecraft.client.gui.hud.DebugHud;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static net.lizistired.cavedust.CaveDust.PARTICLE_AMOUNT;
|
||||||
|
import static net.lizistired.cavedust.utils.ParticleSpawnUtil.shouldParticlesSpawn;
|
||||||
|
|
||||||
|
@Mixin(DebugHud.class)
|
||||||
|
public abstract class MixinDebugScreenOverlay {
|
||||||
|
@Inject(method = "getRightText", at = @At("RETURN"))
|
||||||
|
private void appendDebugText(CallbackInfoReturnable<List<String>> cir) {
|
||||||
|
List<String> messages = cir.getReturnValue();
|
||||||
|
|
||||||
|
messages.add("");
|
||||||
|
messages.add("Particle amount evaluated: " + PARTICLE_AMOUNT);
|
||||||
|
messages.add("");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package net.fabricmc.example.utils;
|
package net.lizistired.cavedust.utils;
|
||||||
|
|
||||||
import java.io.BufferedWriter;
|
import java.io.BufferedWriter;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
@@ -9,7 +9,7 @@ import java.nio.file.Path;
|
|||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.google.gson.GsonBuilder;
|
import com.google.gson.GsonBuilder;
|
||||||
import com.google.gson.InstanceCreator;
|
import com.google.gson.InstanceCreator;
|
||||||
import net.fabricmc.example.Dust;
|
import net.lizistired.cavedust.CaveDust;
|
||||||
|
|
||||||
public class JsonFile {
|
public class JsonFile {
|
||||||
protected transient final Gson gson = new GsonBuilder()
|
protected transient final Gson gson = new GsonBuilder()
|
||||||
@@ -30,7 +30,7 @@ public class JsonFile {
|
|||||||
try (Reader reader = Files.newBufferedReader(file)) {
|
try (Reader reader = Files.newBufferedReader(file)) {
|
||||||
load(reader);
|
load(reader);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Dust.LOGGER.error("Invalid config", e);
|
CaveDust.LOGGER.error("Invalid config", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
package net.lizistired.cavedust.utils;
|
||||||
|
|
||||||
|
import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper;
|
||||||
|
import net.minecraft.client.option.KeyBinding;
|
||||||
|
import net.minecraft.client.util.InputUtil;
|
||||||
|
import org.lwjgl.glfw.GLFW;
|
||||||
|
|
||||||
|
public class KeybindingHelper {
|
||||||
|
|
||||||
|
public static KeyBinding keyBinding1;
|
||||||
|
public static KeyBinding keyBinding2;
|
||||||
|
|
||||||
|
|
||||||
|
public static void registerKeyBindings(){
|
||||||
|
keyBinding1 = KeyBindingHelper.registerKeyBinding(new KeyBinding(
|
||||||
|
"key.cavedust.toggle",
|
||||||
|
InputUtil.Type.KEYSYM,// The translation key of the keybinding's name // The type of the keybinding, KEYSYM for keyboard, MOUSE for mouse.
|
||||||
|
GLFW.GLFW_KEY_KP_ADD, // The keycode of the key
|
||||||
|
"category.cavedust.spook" // The translation key of the keybinding's category.
|
||||||
|
));
|
||||||
|
keyBinding2 = KeyBindingHelper.registerKeyBinding(new KeyBinding(
|
||||||
|
"key.cavedust.reload", // The translation key of the keybinding's name
|
||||||
|
InputUtil.Type.KEYSYM, // The type of the keybinding, KEYSYM for keyboard, MOUSE for mouse.
|
||||||
|
GLFW.GLFW_KEY_KP_ENTER, // The keycode of the key
|
||||||
|
"category.cavedust.spook" // The translation key of the keybinding's category.
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
44
src/main/java/net/lizistired/cavedust/utils/MathHelper.java
Normal file
44
src/main/java/net/lizistired/cavedust/utils/MathHelper.java
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
package net.lizistired.cavedust.utils;
|
||||||
|
|
||||||
|
import java.util.Random;
|
||||||
|
import java.util.concurrent.ThreadLocalRandom;
|
||||||
|
|
||||||
|
public class MathHelper {
|
||||||
|
/**
|
||||||
|
* Normalizes a value to between a range, eg. you want to map a value of 100 to 0 - 1, with 50 being 0.5.
|
||||||
|
* @param min Minimum value
|
||||||
|
* @param max Maximum value
|
||||||
|
* @param val Value to be normalized
|
||||||
|
* @return Normalized value (double)
|
||||||
|
*/
|
||||||
|
public static double normalize(double min, double max, double val) {
|
||||||
|
return 1 - ((val - min) / (max - min));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a random int between min and max
|
||||||
|
* @param min Minimum value
|
||||||
|
* @param max Maximum value
|
||||||
|
* @return Random number (int)
|
||||||
|
*/
|
||||||
|
public static int generateRandomInt(int min, int max) {
|
||||||
|
Random random = new Random();
|
||||||
|
return random.ints(min, max)
|
||||||
|
.findFirst()
|
||||||
|
.getAsInt();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generates a random double between min and max
|
||||||
|
* @param min Minimum value
|
||||||
|
* @param max Maximum value
|
||||||
|
* @return Random number (double)
|
||||||
|
*/
|
||||||
|
public static double generateRandomDouble(double min, double max) {
|
||||||
|
try {
|
||||||
|
return ThreadLocalRandom.current().nextDouble(min, max);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
package net.lizistired.cavedust.utils;
|
||||||
|
|
||||||
|
import net.lizistired.cavedust.CaveDustConfig;
|
||||||
|
import net.lizistired.cavedust.mixin.ClientWorldAccessor;
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
import static net.minecraft.world.biome.BiomeKeys.LUSH_CAVES;
|
||||||
|
|
||||||
|
public class ParticleSpawnUtil {
|
||||||
|
private static float timer;
|
||||||
|
public static boolean shouldParticlesSpawn;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if particles should spawn.
|
||||||
|
* @param client MinecraftClient
|
||||||
|
* @param config CaveDustConfig
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
public static boolean shouldParticlesSpawn(MinecraftClient client, CaveDustConfig config) {
|
||||||
|
|
||||||
|
//checks if the config is enabled, if the game isn't paused, if the world is valid, if the particle is valid and if the player isn't in a lush caves biome
|
||||||
|
if (!config.getCaveDustEnabled()
|
||||||
|
|| client.isPaused()
|
||||||
|
|| client.world == null
|
||||||
|
|| !client.world.getDimension().bedWorks()
|
||||||
|
|| Objects.requireNonNull(client.player).isSubmergedInWater()
|
||||||
|
|| client.world.getBiome(Objects.requireNonNull(client.player.getBlockPos())).matchesKey(LUSH_CAVES))
|
||||||
|
{
|
||||||
|
timer = 0;
|
||||||
|
shouldParticlesSpawn = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
World world = client.world;
|
||||||
|
int seaLevel = world.getSeaLevel();
|
||||||
|
|
||||||
|
if (!client.player.clientWorld.isSkyVisible(client.player.getBlockPos())) {
|
||||||
|
if (client.player.getBlockPos().getY() + 2 < seaLevel){
|
||||||
|
timer = timer + 1;
|
||||||
|
if (timer > 10){
|
||||||
|
timer = 10;
|
||||||
|
shouldParticlesSpawn = true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
shouldParticlesSpawn = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if particles should spawn (uses particle position instead of player).
|
||||||
|
* @param client MinecraftClient
|
||||||
|
* @param config CaveDustConfig
|
||||||
|
* @param pos BlockPos
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
public static boolean shouldParticlesSpawn(MinecraftClient client, CaveDustConfig config, BlockPos pos) {
|
||||||
|
|
||||||
|
//checks if the config is enabled, if the game isn't paused, if the world is valid, if the particle is valid and if the player isn't in a lush caves biome
|
||||||
|
if (!config.getCaveDustEnabled()
|
||||||
|
|| client.isPaused()
|
||||||
|
|| client.world == null
|
||||||
|
|| !client.world.getDimension().bedWorks()
|
||||||
|
|| (client.world.getBottomY() > pos.getY())
|
||||||
|
//|| client.world.getBiome(Objects.requireNonNull(pos)).matchesKey(LUSH_CAVES))
|
||||||
|
|| client.world.getBiome(Objects.requireNonNull(pos)).matchesKey(LUSH_CAVES))
|
||||||
|
|
||||||
|
{
|
||||||
|
timer = 0;
|
||||||
|
shouldParticlesSpawn = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(!config.getSuperFlatStatus()) {
|
||||||
|
if (((ClientWorldAccessor) client.world.getLevelProperties()).getFlatWorld()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
World world = client.world;
|
||||||
|
int seaLevel = world.getSeaLevel();
|
||||||
|
|
||||||
|
if (!client.player.clientWorld.isSkyVisible(pos)) {
|
||||||
|
if (pos.getY() + 2 < seaLevel){
|
||||||
|
timer = timer + 1;
|
||||||
|
if (timer > 10){
|
||||||
|
timer = 10;
|
||||||
|
shouldParticlesSpawn = true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
shouldParticlesSpawn = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
package net.lizistired.cavedust.utils;
|
||||||
|
|
||||||
|
import com.minelittlepony.common.client.gui.element.AbstractSlider;
|
||||||
|
import net.minecraft.text.Text;
|
||||||
|
|
||||||
|
public class TranslatableTextHelper {
|
||||||
|
public Text formatMaxWidth(AbstractSlider<Float> slider) {
|
||||||
|
return Text.translatable("menu.cavedust.width", (int)Math.floor(slider.getValue()));
|
||||||
|
}
|
||||||
|
public Text formatMaxHeight(AbstractSlider<Float> slider) {
|
||||||
|
return Text.translatable("menu.cavedust.height", (int)Math.floor(slider.getValue()));
|
||||||
|
}
|
||||||
|
public Text formatUpperLimit(AbstractSlider<Float> slider) {
|
||||||
|
return Text.translatable("menu.cavedust.upperlimit", (int)Math.floor(slider.getValue()));
|
||||||
|
}
|
||||||
|
public Text formatLowerLimit(AbstractSlider<Float> slider) {
|
||||||
|
return Text.translatable("menu.cavedust.lowerlimit", (int)Math.floor(slider.getValue()));
|
||||||
|
}
|
||||||
|
public Text formatParticleMultiplier(AbstractSlider<Float> slider) {
|
||||||
|
return Text.translatable("menu.cavedust.particlemultiplier", (int)Math.floor(slider.getValue()));
|
||||||
|
}
|
||||||
|
|
||||||
|
public Text formatParticleMultiplierMultiplier(AbstractSlider<Float> slider) {
|
||||||
|
return Text.translatable("menu.cavedust.particlemultipliermultiplier", (int)Math.floor(slider.getValue()));
|
||||||
|
}
|
||||||
|
public Text formatVelocityRandomness(AbstractSlider<Float> slider) {
|
||||||
|
return Text.translatable("menu.cavedust.velocityrandomness", (int) Math.floor(slider.getValue()));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
package net.lizistired.cavedust.utils;
|
||||||
|
|
||||||
|
import net.minecraft.client.MinecraftClient;
|
||||||
|
|
||||||
|
public class WindowFocusHelper {
|
||||||
|
private static boolean unpaused;
|
||||||
|
public boolean unpausedMenu(MinecraftClient client){
|
||||||
|
return unpaused;
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
src/main/resources/assets/cavedust/icon.png
Normal file
BIN
src/main/resources/assets/cavedust/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 116 KiB |
41
src/main/resources/assets/cavedust/lang/en_us.json
Normal file
41
src/main/resources/assets/cavedust/lang/en_us.json
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"menu.cavedust.title": "Cave Dust",
|
||||||
|
"menu.cavedust.global.false": "Cave Dust: Disabled",
|
||||||
|
"menu.cavedust.global.true": "Cave Dust: Enabled",
|
||||||
|
"menu.cavedust.global.tooltip.false": "Enable cave dust particles?",
|
||||||
|
"menu.cavedust.global.tooltip.true": "Disable cave dust particles?",
|
||||||
|
"menu.cavedust.width": "Width bounds: %s",
|
||||||
|
"menu.cavedust.height": "Height bounds: %s",
|
||||||
|
"menu.cavedust.width.tooltip": "Maximum width to spawn particle.",
|
||||||
|
"menu.cavedust.height.tooltip": "Maximum height to spawn particle.",
|
||||||
|
"menu.cavedust.upperlimit": "Upper limit height: %s",
|
||||||
|
"menu.cavedust.lowerlimit": "Lower limit height: %s",
|
||||||
|
"menu.cavedust.upperlimit.tooltip": "The height where particles will fade out and stop spawning (uses player y).",
|
||||||
|
"menu.cavedust.lowerlimit.tooltip": "The height where particles spawn the most (uses player y).",
|
||||||
|
"menu.cavedust.reset": "Reset settings",
|
||||||
|
"menu.cavedust.reset.tooltip": "Are you sure you want to reset all settings?",
|
||||||
|
"menu.cavedust.particlemultiplier": "Particle amount: %s",
|
||||||
|
"menu.cavedust.particlemultiplier.tooltip": "Amount of particles to spawn at any given depth.",
|
||||||
|
"menu.cavedust.particlemultipliermultiplier": "Particle multiplier: %s",
|
||||||
|
"menu.cavedust.particlemultipliermultiplier.tooltip": "Multiplies particle amount.",
|
||||||
|
"menu.cavedust.velocityrandomness": "Velocity randomness: %s",
|
||||||
|
"menu.cavedust.velocityrandomness.tooltip": "The randomness of the velocity of the particles.",
|
||||||
|
"menu.cavedust.enhanceddetection.true": "Enhanced detection: Enabled",
|
||||||
|
"menu.cavedust.enhanceddetection.false": "Enhanced detection: Disabled",
|
||||||
|
"menu.cavedust.enhanceddetection.tooltip": "Enhanced detection enables more accurate checks, using the particles position\n instead of the player, has some performance impact.",
|
||||||
|
"menu.cavedust.superflatstatus.true": "Superflat particles: Enabled",
|
||||||
|
"menu.cavedust.superflatstatus.false": "Superflat particles: Disabled",
|
||||||
|
"menu.cavedust.superflatstatus.tooltip": "Should particles spawn on superflat worlds?",
|
||||||
|
"menu.cavedust.particle": "Particle: ",
|
||||||
|
"menu.cavedust.particle.tooltip": "Particle to spawn. Click to cycle.",
|
||||||
|
|
||||||
|
"key.cavedust.reload": "Reload Config",
|
||||||
|
"key.cavedust.toggle": "Toggle Particles",
|
||||||
|
"category.cavedust.spook": "Cave Dust",
|
||||||
|
|
||||||
|
"debug.cavedust.toggle.true": "(Cave Dust) Enabled particles",
|
||||||
|
"debug.cavedust.toggle.false": "(Cave Dust) Disabled particles",
|
||||||
|
"debug.cavedust.reload": "(Cave Dust) Reloaded config",
|
||||||
|
"debug.cavedust.particleerror": "(Cave Dust) Error setting particle, skipping to next particle!"
|
||||||
|
|
||||||
|
}
|
||||||
41
src/main/resources/assets/cavedust/lang/zh_cn.json
Normal file
41
src/main/resources/assets/cavedust/lang/zh_cn.json
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"menu.cavedust.title": "洞穴尘埃",
|
||||||
|
"menu.cavedust.global.false": "洞穴尘埃: 功能启用",
|
||||||
|
"menu.cavedust.global.true": "洞穴尘埃: 功能禁用",
|
||||||
|
"menu.cavedust.global.tooltip.false": "启用洞穴尘埃粒子效果?",
|
||||||
|
"menu.cavedust.global.tooltip.true": "禁用洞穴尘埃粒子效果?",
|
||||||
|
"menu.cavedust.width": "边界宽度: %s",
|
||||||
|
"menu.cavedust.height": "边界高度: %s",
|
||||||
|
"menu.cavedust.width.tooltip": "生成粒子效果的最大宽度.",
|
||||||
|
"menu.cavedust.height.tooltip": "生成粒子效果的最大高度.",
|
||||||
|
"menu.cavedust.upperlimit": "最大高度限制: %s",
|
||||||
|
"menu.cavedust.lowerlimit": "最低高度限制: %s",
|
||||||
|
"menu.cavedust.upperlimit.tooltip": "粒子效果消失的高度 (读取玩家所在的 y 轴).",
|
||||||
|
"menu.cavedust.lowerlimit.tooltip": "粒子效果出现最多的高度 (读取玩家所在的 y 轴).",
|
||||||
|
"menu.cavedust.reset": "重置所有设置",
|
||||||
|
"menu.cavedust.reset.tooltip": "你确定要这么做吗?",
|
||||||
|
"menu.cavedust.particlemultiplier": "粒子数量: %s",
|
||||||
|
"menu.cavedust.particlemultiplier.tooltip": "指定深度生成的粒子效果数量.",
|
||||||
|
"menu.cavedust.particlemultipliermultiplier": "粒子效果倍率: %s",
|
||||||
|
"menu.cavedust.particlemultipliermultiplier.tooltip": "粒子效果的生成倍率.",
|
||||||
|
"menu.cavedust.velocityrandomness": "速度随机性: %s",
|
||||||
|
"menu.cavedust.velocityrandomness.tooltip": "粒子效果的速度随机程度.",
|
||||||
|
"menu.cavedust.enhanceddetection.true": "强化检测: 功能启用",
|
||||||
|
"menu.cavedust.enhanceddetection.false": "强化检测: 功能禁用",
|
||||||
|
"menu.cavedust.enhanceddetection.tooltip": "强化检测会使用粒子效果而非玩家的位置进行更精确的检测\n 对性能略有影响.",
|
||||||
|
"menu.cavedust.superflatstatus.true": "超平坦粒子: 功能启用",
|
||||||
|
"menu.cavedust.superflatstatus.false": "超平坦粒子: 功能禁用",
|
||||||
|
"menu.cavedust.superflatstatus.tooltip": "是否允许超平坦世界生成洞穴尘埃?",
|
||||||
|
"menu.cavedust.particle": "粒子效果: ",
|
||||||
|
"menu.cavedust.particle.tooltip": "生成的粒子效果名称, 点击切换.",
|
||||||
|
|
||||||
|
"key.cavedust.reload": "重载配置",
|
||||||
|
"key.cavedust.toggle": "切换粒子",
|
||||||
|
"category.cavedust.spook": "洞穴尘埃",
|
||||||
|
|
||||||
|
"debug.cavedust.toggle.true": "(洞穴尘埃) 粒子效果已启用",
|
||||||
|
"debug.cavedust.toggle.false": "(洞穴尘埃) 粒子效果已禁用",
|
||||||
|
"debug.cavedust.reload": "(洞穴尘埃) 配置已重载",
|
||||||
|
"debug.cavedust.particleerror": "(洞穴尘埃) 设置当前粒子效果时出现问题, 已自动切换至下一个粒子效果!"
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"textures": [
|
||||||
|
"minecraft:generic_0"
|
||||||
|
]
|
||||||
|
}
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 126 KiB |
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"menu.dust.title": "Dust",
|
|
||||||
"menu.dust.global.false": "Dust: disabled",
|
|
||||||
"menu.dust.global.true": "Dust: enabled"
|
|
||||||
}
|
|
||||||
44
src/main/resources/assets/modid/lang/fr_fr.json
Normal file
44
src/main/resources/assets/modid/lang/fr_fr.json
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"menu.cavedust.title": "Cave Dust",
|
||||||
|
"menu.cavedust.global.false": "Cave Dust: Désactivée",
|
||||||
|
"menu.cavedust.global.true": "Cave Dust: Activée",
|
||||||
|
"menu.cavedust.global.tooltip.false": "Activer les particules de poussière de grotte ?",
|
||||||
|
"menu.cavedust.global.tooltip.true": "Désactiver les particules de poussière de grotte ?",
|
||||||
|
"menu.cavedust.minX": "Minimum X: %s",
|
||||||
|
"menu.cavedust.minY": "Minimum Y: %s",
|
||||||
|
"menu.cavedust.minZ": "Minimum Z: %s",
|
||||||
|
"menu.cavedust.maxX": "Maximum X: %s",
|
||||||
|
"menu.cavedust.maxY": "Maximum Y: %s",
|
||||||
|
"menu.cavedust.maxZ": "Maximum Z: %s",
|
||||||
|
"menu.cavedust.minX.tooltip": "Minimum X: %s",
|
||||||
|
"menu.cavedust.minY.tooltip": "Minimum Y: %s",
|
||||||
|
"menu.cavedust.minZ.tooltip": "Minimum Z: %s",
|
||||||
|
"menu.cavedust.maxX.tooltip": "Maximum X: %s",
|
||||||
|
"menu.cavedust.maxY.tooltip": "Maximum Y: %s",
|
||||||
|
"menu.cavedust.maxZ.tooltip": "Maximum Z: %s",
|
||||||
|
"menu.cavedust.upperlimit": "Limite supérieure : %s",
|
||||||
|
"menu.cavedust.lowerlimit": "Limite inférieure : %s",
|
||||||
|
"menu.cavedust.upperlimit.tooltip": "La hauteur à laquelle les particules s'estompent et cessent de spawner (utilise l'axe Y du joueur).",
|
||||||
|
"menu.cavedust.lowerlimit.tooltip": "La hauteur où les particules apparaissent le plus (utilise l'axe Y du joueur).",
|
||||||
|
"menu.cavedust.reset": "Réinitialiser les paramètres",
|
||||||
|
"menu.cavedust.reset.tooltip": "Êtes-vous sûr de vouloir réinitialiser tous les paramètres ?",
|
||||||
|
"menu.cavedust.particlemultiplier": "Multiplicateur de particules : %s",
|
||||||
|
"menu.cavedust.particlemultiplier.tooltip": "Multiplie la quantité de particules à une profondeur donnée.",
|
||||||
|
"menu.cavedust.velocityrandomness": "Aléatoire de la vélocité : %s",
|
||||||
|
"menu.cavedust.velocityrandomness.tooltip": "Le niveau d'aléatoire de la vélocité des particules.",
|
||||||
|
"menu.cavedust.enhanceddetection.true": "Détection améliorée : Activée",
|
||||||
|
"menu.cavedust.enhanceddetection.false": "Détection améliorée : Désactivée",
|
||||||
|
"menu.cavedust.enhanceddetection.tooltip": "La détection améliorée permet des vérifications plus précises en utilisant la position des particules\n plutôt que celle du joueur, mais impacte les performances.",
|
||||||
|
"menu.cavedust.superflatstatus.true": "Particules sur monde Superflat : Activées",
|
||||||
|
"menu.cavedust.superflatstatus.false": "Particules sur monde Superflat : Désactivées",
|
||||||
|
"menu.cavedust.superflatstatus.tooltip": "Les particules doivent-elles apparaître sur les mondes Superflat ?",
|
||||||
|
|
||||||
|
"key.cavedust.reload": "Recharger la configuration",
|
||||||
|
"key.cavedust.toggle": "Activer/Désactiver les particules",
|
||||||
|
"category.cavedust.spook": "Cave Dust",
|
||||||
|
|
||||||
|
"debug.cavedust.toggle.true": "(Cave Dust) Particules activées",
|
||||||
|
"debug.cavedust.toggle.false": "(Cave Dust) Particules désactivées",
|
||||||
|
"debug.cavedust.reload": "(Cave Dust) Configuration rechargée"
|
||||||
|
|
||||||
|
}
|
||||||
44
src/main/resources/assets/modid/lang/ru_ru.json
Normal file
44
src/main/resources/assets/modid/lang/ru_ru.json
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"menu.cavedust.title": "Пещерная пыль",
|
||||||
|
"menu.cavedust.global.false": "Пещерная пыль: отключена",
|
||||||
|
"menu.cavedust.global.true": "Пещерная пыль: включена",
|
||||||
|
"menu.cavedust.global.tooltip.false": "Включить частицы пещерной пыли?",
|
||||||
|
"menu.cavedust.global.tooltip.true": "Отключить частицы пещерной пыли?",
|
||||||
|
"menu.cavedust.minX": "Минимум по X: %s",
|
||||||
|
"menu.cavedust.minY": "Минимум по Y: %s",
|
||||||
|
"menu.cavedust.minZ": "Минимум по Z: %s",
|
||||||
|
"menu.cavedust.maxX": "Максимум по X: %s",
|
||||||
|
"menu.cavedust.maxY": "Максимум по Y: %s",
|
||||||
|
"menu.cavedust.maxZ": "Максимум по Z: %s",
|
||||||
|
"menu.cavedust.minX.tooltip": "Минимум по X: %s",
|
||||||
|
"menu.cavedust.minY.tooltip": "Минимум по Y: %s",
|
||||||
|
"menu.cavedust.minZ.tooltip": "Минимум по Z: %s",
|
||||||
|
"menu.cavedust.maxX.tooltip": "Максимум по X: %s",
|
||||||
|
"menu.cavedust.maxY.tooltip": "Максимум по Y: %s",
|
||||||
|
"menu.cavedust.maxZ.tooltip": "Максимум по Z: %s",
|
||||||
|
"menu.cavedust.upperlimit": "Верхний предел: %s",
|
||||||
|
"menu.cavedust.lowerlimit": "Нижний предел: %s",
|
||||||
|
"menu.cavedust.upperlimit.tooltip": "Высота, на которой частицы будут исчезать и перестанут появляться (испольует координату Y игрока).",
|
||||||
|
"menu.cavedust.lowerlimit.tooltip": "The height where particles spawn the most (испольует координату Y игрока).",
|
||||||
|
"menu.cavedust.reset": "Сброс настроек",
|
||||||
|
"menu.cavedust.reset.tooltip": "Вы уверены, что хотите сбросить все настройки?",
|
||||||
|
"menu.cavedust.particlemultiplier": "Множитель частиц: %s",
|
||||||
|
"menu.cavedust.particlemultiplier.tooltip": "Увеличивает количество частиц на любой заданной глубине.",
|
||||||
|
"menu.cavedust.velocityrandomness": "Случайность скорости: %s",
|
||||||
|
"menu.cavedust.velocityrandomness.tooltip": "Случайность скорости движения частиц.",
|
||||||
|
"menu.cavedust.enhanceddetection.true": "Улучшенное обнаружение: включено",
|
||||||
|
"menu.cavedust.enhanceddetection.false": "Улучшенное обнаружение: отключено",
|
||||||
|
"menu.cavedust.enhanceddetection.tooltip": "Улучшенное обнаружение позволяет проводить более точные проверки, используя положение частиц\nвместо положения игрока, что оказывает некоторое влияние на производительность.",
|
||||||
|
"menu.cavedust.superflatstatus.true": "Частицы в суперплоскости: включены",
|
||||||
|
"menu.cavedust.superflatstatus.false": "Частицы в суперплоскости: отключены",
|
||||||
|
"menu.cavedust.superflatstatus.tooltip": "Должны ли частицы появляться в суперплоских мирах?",
|
||||||
|
|
||||||
|
"key.cavedust.reload": "Перезагрузить конфигурацию",
|
||||||
|
"key.cavedust.toggle": "Переключить частицы",
|
||||||
|
"category.cavedust.spook": "Пещерная пыль",
|
||||||
|
|
||||||
|
"debug.cavedust.toggle.true": "[Пещерная пыль] Включенные частицы",
|
||||||
|
"debug.cavedust.toggle.false": "[Пещерная пыль] Отключенные частицы",
|
||||||
|
"debug.cavedust.reload": "[Пещерная пыль] Конфигурация перезагружена"
|
||||||
|
|
||||||
|
}
|
||||||
17
src/main/resources/cavedust.mixins.json
Normal file
17
src/main/resources/cavedust.mixins.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"required": true,
|
||||||
|
"minVersion": "0.8",
|
||||||
|
"package": "net.lizistired.cavedust.mixin",
|
||||||
|
"compatibilityLevel": "JAVA_16",
|
||||||
|
"mixins": [
|
||||||
|
"ClientWorldAccessor",
|
||||||
|
"MixinDebugScreenOverlay"
|
||||||
|
],
|
||||||
|
"client": [
|
||||||
|
],
|
||||||
|
"server": [
|
||||||
|
],
|
||||||
|
"injectors": {
|
||||||
|
"defaultRequire": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
{
|
{
|
||||||
"schemaVersion": 1,
|
"schemaVersion": 1,
|
||||||
"id": "dust",
|
"id": "cavedust",
|
||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
|
"name": "Cave Dust",
|
||||||
"name": "Dust",
|
|
||||||
"description": "Makes dust underground that scales with depth!",
|
"description": "Makes dust underground that scales with depth!",
|
||||||
"authors": [
|
"authors": [
|
||||||
"LizIsTired"
|
"LizIsTired"
|
||||||
@@ -12,34 +11,35 @@
|
|||||||
"issues": "https://github.com/LizIsTired/dust/issues",
|
"issues": "https://github.com/LizIsTired/dust/issues",
|
||||||
"sources": "https://github.com/LizIsTired/dust"
|
"sources": "https://github.com/LizIsTired/dust"
|
||||||
},
|
},
|
||||||
|
"license": "MPL-2.0",
|
||||||
"license": "CC0-1.0",
|
"icon": "assets/cavedust/icon.png",
|
||||||
"icon": "assets/modid/icon.png",
|
|
||||||
|
|
||||||
"environment": "*",
|
"environment": "*",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
"client": [
|
"client": [
|
||||||
"net.fabricmc.example.Dust"
|
"net.lizistired.cavedust.CaveDust"
|
||||||
],
|
],
|
||||||
|
"main": [
|
||||||
|
"net.lizistired.cavedust.CaveDustServer"],
|
||||||
"modmenu": [
|
"modmenu": [
|
||||||
"net.fabricmc.example.DustModMenuFactory"
|
"net.lizistired.cavedust.CaveDustModMenuFactory"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"mixins": [
|
||||||
|
"cavedust.mixins.json"
|
||||||
|
],
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.12.11",
|
"fabricloader": ">=0.14.5",
|
||||||
"fabric": "*",
|
"fabric": "*",
|
||||||
"minecraft": "1.18.x",
|
"minecraft": "1.21.3",
|
||||||
"java": ">=17"
|
"java": ">=17"
|
||||||
},
|
},
|
||||||
"suggests": {
|
"suggests": {
|
||||||
"clothconfig": ">=6.1.48",
|
|
||||||
"modmenu": ">=3.0.1"
|
"modmenu": ">=3.0.1"
|
||||||
},
|
},
|
||||||
"custom": {
|
"custom": {
|
||||||
"modmenu": {
|
"modmenu": {
|
||||||
"links": {
|
"links": {
|
||||||
"modmenu.discord": "https://discord.gg/AgBfPFMJgX"
|
"modmenu.discord": "https://discord.gg/4m6kQSX6bx"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user