Compare commits
34 Commits
ver/1.21.5
...
dev/1.21.4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7a8e4f4484 | ||
|
|
33a24b7503 | ||
|
|
d96e3d882a | ||
|
|
bdec926efd | ||
|
|
42163c20b3 | ||
|
|
ac1a7165fb | ||
|
|
2e85aaf801 | ||
|
|
7bd5c4ecc4 | ||
|
|
56e7949273 | ||
|
|
7a2129c45c | ||
|
|
eb49a31dad | ||
|
|
f2fa3514bd | ||
|
|
83c54e3134 | ||
|
|
021c3666f7 | ||
|
|
860e9fbaf5 | ||
|
|
1a6a70069c | ||
|
|
1f0fc01a6e | ||
|
|
c20bbf9842 | ||
|
|
93e4d4eea1 | ||
|
|
efc5adae8b | ||
|
|
f51216d01d | ||
|
|
3ef35a1b4b | ||
|
|
c06b8444aa | ||
|
|
3e96017ed6 | ||
|
|
85e32d5d03 | ||
|
|
778c82ee0a | ||
|
|
14146549a8 | ||
|
|
064898cddf | ||
|
|
c829110cf3 | ||
|
|
08cc27a648 | ||
|
|
531d824a55 | ||
|
|
0f6e3ac870 | ||
|
|
3550274e82 | ||
|
|
e24d0fffdf |
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@@ -15,7 +15,7 @@ body:
|
|||||||
如果此bug被尝试修复,您可以帮助我们测试并回复。若bug的确被修复,您可以关闭issue来让开发者确认。
|
如果此bug被尝试修复,您可以帮助我们测试并回复。若bug的确被修复,您可以关闭issue来让开发者确认。
|
||||||
If this bug is tried to fix, you can help us test and reply. If the bug is fixed, you can close the issue to let the developer confirm.
|
If this bug is tried to fix, you can help us test and reply. If the bug is fixed, you can close the issue to let the developer confirm.
|
||||||
- type: input
|
- type: input
|
||||||
id: luminolMC-version
|
id: leavesMC-version
|
||||||
attributes:
|
attributes:
|
||||||
label: 服务端版本 LuminolMC Version
|
label: 服务端版本 LuminolMC Version
|
||||||
description:
|
description:
|
||||||
|
|||||||
12
.github/dependabot.yml
vendored
12
.github/dependabot.yml
vendored
@@ -1,12 +0,0 @@
|
|||||||
# To get started with Dependabot version updates, you'll need to specify which
|
|
||||||
# package ecosystems to update and where the package manifests are located.
|
|
||||||
# Please see the documentation for all configuration options:
|
|
||||||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
||||||
|
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
# Enable version updates for github actions
|
|
||||||
- package-ecosystem: "github-actions" # See documentation for possible values
|
|
||||||
directory: "/" # Location of package manifests
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
name: Luminol CI - ver/1.21.5
|
name: Luminol CI - dev/1.21.4-hardfork-with-new-scheduler
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "ver/1.21.5" ]
|
branches: [ "dev/1.21.4-hardfork-with-new-scheduler" ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "ver/1.21.5" ]
|
branches: [ "dev/1.21.4-hardfork-with-new-scheduler" ]
|
||||||
|
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
|
|
||||||
@@ -15,56 +15,55 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout Git Repository
|
- name: Checkout Git Repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Gradle
|
||||||
|
uses: gradle/actions/setup-gradle@v4
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: zulu
|
distribution: 'zulu'
|
||||||
java-version: 22
|
java-version: '22'
|
||||||
|
- name: Grant execute permission for gradlew
|
||||||
- name: Setup Gradle
|
run: chmod +x gradlew
|
||||||
uses: gradle/actions/setup-gradle@v4
|
|
||||||
|
|
||||||
- name: Configure Git User Details
|
- name: Configure Git User Details
|
||||||
run: git config --global user.email "ci@luminolmc.com" && git config --global user.name "LuminolMC CI"
|
run: git config --global user.email "ci@luminolmc.com" && git config --global user.name "LuminolMC CI"
|
||||||
|
- name: Apply Patches
|
||||||
- name: Apply All Patches
|
|
||||||
run: ./gradlew applyAllPatches
|
run: ./gradlew applyAllPatches
|
||||||
|
- name: CreateJar
|
||||||
- name: CreateMojmapPaperclipJar
|
|
||||||
run: ./gradlew createMojmapPaperclipJar
|
run: ./gradlew createMojmapPaperclipJar
|
||||||
|
|
||||||
- name: Publish to repo
|
- name: Publish to repo
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: ./gradlew generateDevelopmentBundle publish -PpublishDevBundle=true
|
run: |
|
||||||
env:
|
export MAVEN_REPO_USER=${{ secrets.MAVEN_REPO_USER }}
|
||||||
PRIVATE_MAVEN_REPO_PASSWORD: ${{ secrets.PRIVATE_MAVEN_REPO_PASSWORD }}
|
export MAVEN_REPO_PASSWORD=${{ secrets.MAVEN_REPO_PASSWORD }}
|
||||||
PRIVATE_MAVEN_REPO_USERNAME: ${{ secrets.PRIVATE_MAVEN_REPO_USERNAME }}
|
./gradlew publish -PpublishDevBundle=true
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: "actions/upload-artifact@v4"
|
||||||
with:
|
with:
|
||||||
name: ${{ env.project_id_b }} CI Artifacts
|
name: "${{ env.project_id_b }} CI Artifacts"
|
||||||
path: luminol-server/build/libs/*-paperclip-*-mojmap.jar
|
path: "luminol-server/build/libs/*-paperclip-*-mojmap.jar"
|
||||||
|
|
||||||
- name: SetENV
|
- name: SetENV
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
run: sh scripts/SetENV.sh
|
run: sh scripts/SetENV.sh
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1.16.0
|
||||||
with:
|
with:
|
||||||
tag: ${{ env.tag }}
|
tag: ${{ env.tag }}
|
||||||
name: ${{ env.project_id_b }} ${{ env.mcversion }} - ${{ env.commit_id }}
|
name: ${{ env.project_id_b }} ${{ env.mcversion }} - ${{ env.commit_id }}
|
||||||
body: |
|
body: |
|
||||||
📦Version: `${{ env.mcversion }}` | Commit ${{ env.commit_id }} [](https://github.com/LuminolMC/${{ env.project_id }}/releases/download/${{ env.tag }}/${{ env.jar }})
|
> [!CAUTION]
|
||||||
|
> 🚨You are trying to download experimental builds!
|
||||||
|
> **<u>DO NOT</u>** use these builds in production, as there may be many bugs and corruption issues.
|
||||||
|
> Please report any and all issues you encounter!
|
||||||
|
|
||||||
|
📦Version: `${{ env.mcversion }}` | Commit ${{ env.commit_id }} [](https://github.com/LuminolMC/${{ env.project_id }}/download/${{ env.tag }}/${{ env.jar }})
|
||||||
This release is automatically compiled by GitHub Actions
|
This release is automatically compiled by GitHub Actions
|
||||||
### Commit Message
|
### Commit Message
|
||||||
${{ env.commit_msg }}
|
${{ env.commit_msg }}
|
||||||
artifacts: ${{ env.jar_dir }}
|
artifacts: |
|
||||||
|
${{ env.jar_dir }}
|
||||||
generateReleaseNotes: true
|
generateReleaseNotes: true
|
||||||
prerelease: ${{ env.pre }}
|
prerelease: ${{ env.pre }}
|
||||||
makeLatest: ${{ env.make_latest }}
|
makeLatest: ${{ env.make_latest }}
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2025 LuminolMC
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
31
LICENSE.md
31
LICENSE.md
@@ -1,31 +0,0 @@
|
|||||||
Luminol inherits its licensing from the included upstream projects.
|
|
||||||
|
|
||||||
Luminol从上游继承了许可证。
|
|
||||||
|
|
||||||
As such, Luminol is licensed under the
|
|
||||||
[GNU General Public License version 3](licenses/GPL.md); as it inherits it from Folia,
|
|
||||||
who in turn inherits it from the original Paper, Spigot, Bukkit and CraftBukkit projects.
|
|
||||||
|
|
||||||
因此,Luminol中应当遵守[GNU通用公共许可证-第3版](licenses/GPL.md) 的许可;
|
|
||||||
因为Luminol从上游Folia继承了它,而Folia又从其上游的Paper、Spigot、Bukkit和Craftbukkit项目中继承了它。
|
|
||||||
|
|
||||||
Any author who is _not_ listed below should be presumed to have released their work
|
|
||||||
under the original [GPL](licenses/GPL.md) license.
|
|
||||||
|
|
||||||
任何 _未在下面列出_ 的作者都应该被认为他们的修改基于[原始GPL许可证](licenses/GPL.md)。
|
|
||||||
|
|
||||||
In the interest of promoting a better Minecraft platform for everyone, contributors
|
|
||||||
may choose to release their code under the more permissive [MIT License](licenses/MIT.md).
|
|
||||||
|
|
||||||
为了向所有人推广一个更好的Minecraft平台,贡献者可以选择在更宽松的[MIT许可证](licenses/MIT.md)下发布他们的代码。
|
|
||||||
|
|
||||||
The authors listed below have chosen to release their code under that more permissive
|
|
||||||
[MIT License](licenses/MIT.md). Any contributor who wants their name added below
|
|
||||||
should submit a pull request to this project to add their name.
|
|
||||||
|
|
||||||
下面列出的作者选择在更宽松的[MIT许可证](licenses/MIT.md)下发布他们的代码。
|
|
||||||
任何希望使用[MIT许可证](licenses/MIT.md)发布的作者都应该向此项目提交一个拉取请求以在下方添加他们的名字。
|
|
||||||
|
|
||||||
```text
|
|
||||||
Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
```
|
|
||||||
10
README.md
10
README.md
@@ -3,7 +3,7 @@
|
|||||||
# Luminol
|
# Luminol
|
||||||
<h4>Luminol 是一个基于Folia的分支,具有许多有用的优化、可配置的原版特性和更多的API支持,它专为生存和无政府服务器设计</h4>
|
<h4>Luminol 是一个基于Folia的分支,具有许多有用的优化、可配置的原版特性和更多的API支持,它专为生存和无政府服务器设计</h4>
|
||||||
|
|
||||||
[](LICENSE.md)
|
[](LICENSE)
|
||||||
[](https://github.com/LuminolMC/Luminol/issues)
|
[](https://github.com/LuminolMC/Luminol/issues)
|
||||||

|

|
||||||

|

|
||||||
@@ -33,7 +33,7 @@
|
|||||||
```kotlin
|
```kotlin
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
url = "https://repo.menthamc.com/repository/maven-public/"
|
url = "https://maven.moliatopia.icu/repository/maven-snapshots/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,8 +47,8 @@ dependencies {
|
|||||||
```xml
|
```xml
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>menthamc</id>
|
<id>moliatopia</id>
|
||||||
<url>https://repo.menthamc.com/repository/maven-public/</url>
|
<url>https://maven.moliatopia.icu/repository/maven-snapshots/</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
@@ -71,7 +71,7 @@ dependencies {
|
|||||||
当您遇到任何问题时,请向我们提问,我们将尽力解决,但请记得清楚地描述您的问题并提供足够的日志等信息。
|
当您遇到任何问题时,请向我们提问,我们将尽力解决,但请记得清楚地描述您的问题并提供足够的日志等信息。
|
||||||
|
|
||||||
## 贡献代码
|
## 贡献代码
|
||||||
可查看 [Contributing](./docs/CONTRIBUTING.md)
|
可[查看 Contributing](./docs/CONTRIBUTING.md)
|
||||||
|
|
||||||
## BStats
|
## BStats
|
||||||

|

|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Luminol
|
# Luminol
|
||||||
<h4>Luminol is a Folia fork with many useful optimizations, configurable vanilla features, and more API supports, and it was designed for survival and anarchy servers</h4>
|
<h4>Luminol is a Folia fork with many useful optimizations, configurable vanilla features, and more API supports, and it was designed for survival and anarchy servers</h4>
|
||||||
|
|
||||||
[](LICENSE.md)
|
[](LICENSE)
|
||||||
[](https://github.com/LuminolMC/Luminol/issues)
|
[](https://github.com/LuminolMC/Luminol/issues)
|
||||||

|

|
||||||

|

|
||||||
@@ -34,7 +34,7 @@ For gradle:
|
|||||||
```kotlin
|
```kotlin
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
url = "https://repo.menthamc.com/repository/maven-public/"
|
url = "https://maven.moliatopia.icu/repository/maven-snapshots/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -48,8 +48,8 @@ For maven
|
|||||||
```xml
|
```xml
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>menthamc</id>
|
<id>moliatopia</id>
|
||||||
<url>https://repo.menthamc.com/repository/maven-public/</url>
|
<url>https://maven.moliatopia.icu/repository/maven-snapshots/</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java // TODO java launcher tasks
|
java // TODO java launcher tasks
|
||||||
id("io.papermc.paperweight.patcher") version "2.0.0-beta.17"
|
id("io.papermc.paperweight.patcher") version "2.0.0-SNAPSHOT"
|
||||||
}
|
}
|
||||||
|
|
||||||
paperweight {
|
paperweight {
|
||||||
@@ -64,7 +64,6 @@ subprojects {
|
|||||||
options.encoding = Charsets.UTF_8.name()
|
options.encoding = Charsets.UTF_8.name()
|
||||||
options.release = 21
|
options.release = 21
|
||||||
options.isFork = true
|
options.isFork = true
|
||||||
options.forkOptions.memoryMaximumSize = "6g" // Prevent OOM during building
|
|
||||||
}
|
}
|
||||||
tasks.withType<Javadoc> {
|
tasks.withType<Javadoc> {
|
||||||
options.encoding = Charsets.UTF_8.name()
|
options.encoding = Charsets.UTF_8.name()
|
||||||
@@ -82,22 +81,12 @@ subprojects {
|
|||||||
|
|
||||||
extensions.configure<PublishingExtension> {
|
extensions.configure<PublishingExtension> {
|
||||||
repositories {
|
repositories {
|
||||||
maven("https://repo.menthamc.com/repository/maven-snapshots/") {
|
/*
|
||||||
name = "MenthaMC"
|
maven("https://repo.papermc.io/repository/maven-snapshots/") {
|
||||||
credentials(PasswordCredentials::class) {
|
name = "paperSnapshots"
|
||||||
username = System.getenv("PRIVATE_MAVEN_REPO_USERNAME")
|
credentials(PasswordCredentials::class)
|
||||||
password = System.getenv("PRIVATE_MAVEN_REPO_PASSWORD")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType<Javadoc> {
|
|
||||||
options {
|
|
||||||
(this as StandardJavadocDocletOptions).apply {
|
|
||||||
addStringOption("-add-modules", "jdk.incubator.vector")
|
|
||||||
addStringOption("Xdoclint:none", "-quiet")
|
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,16 +23,11 @@
|
|||||||
- `git`
|
- `git`
|
||||||
- `JDK 21 或更高版本`
|
- `JDK 21 或更高版本`
|
||||||
|
|
||||||
特别提醒:在操作前,您需要启用系统和Git的长路径支持,以下为部分平台的相关描述。
|
|
||||||
|
|
||||||
[`Windows`](https://learn.microsoft.com/windows/win32/fileio/maximum-file-path-limitation)
|
|
||||||
[`Git for Windows`](https://gitforwindows.org/faq.html#i-get-errors-trying-to-check-out-files-with-long-path-names)
|
|
||||||
|
|
||||||
## 了解补丁(Patches)
|
## 了解补丁(Patches)
|
||||||
|
|
||||||
Luminol 使用和 Folia 一样的补丁系统,并为了针对不同部分的修改分成了两个目录:
|
Luminol 使用和 Folia 一样的补丁系统,并为了针对不同部分的修改分成了两个目录:
|
||||||
|
|
||||||
- `luminol-api` - 对 `Folia-API` / `Paper-API` / `Spigot-API` / `Bukkit-API` 进行的修改。
|
- `luminol-api` - 对 `Folia-API` / `Paper-API` / `Spigot-API` / `Bukkit` 进行的修改。
|
||||||
- `luminol-server` - 对 Minecraft 标准服务器原有逻辑进行的修改。
|
- `luminol-server` - 对 Minecraft 标准服务器原有逻辑进行的修改。
|
||||||
|
|
||||||
补丁系统是基于 git 的,你可以在这里了解 git 的基本内容: <https://git-scm.com/docs/gittutorial>
|
补丁系统是基于 git 的,你可以在这里了解 git 的基本内容: <https://git-scm.com/docs/gittutorial>
|
||||||
@@ -41,21 +36,9 @@ Luminol 使用和 Folia 一样的补丁系统,并为了针对不同部分的
|
|||||||
|
|
||||||
1. 将你的仓库 clone 到本地;
|
1. 将你的仓库 clone 到本地;
|
||||||
2. 在你的 IDE 或 终端 内执行 Gradle 的 `applyAllPatches` 任务,如果是在终端内,你可以执行 `./gradlew applyAllPatches`;
|
2. 在你的 IDE 或 终端 内执行 Gradle 的 `applyAllPatches` 任务,如果是在终端内,你可以执行 `./gradlew applyAllPatches`;
|
||||||
3. 在执行操作后,仓库根目录下应该存在以下目录对: `luminol-api` 和 `luminol-server` , `folia-api` 和 `folia-server` , 以及 `paper-api` 和 `paper-server`(下文称作 `*-api` 和 `*-server` );
|
3. 进入 仓库根目录下的 `luminol-api` 和 `luminol-server` 文件夹进行修改。
|
||||||
4. 进入 仓库根目录下的 `*-api` 和 `*-server` 文件夹进行修改。
|
|
||||||
|
|
||||||
以下为对上述各个文件夹的简单描述,详细描述可以参考[这里](https://github.com/Toffikk/paperweight-examples/blob/18241979c88068d5b061d95ad69c98ecb201c246/README.md):
|
顺便一提,仓库根目录下的 `luminol-api` 和 `luminol-server` 并不是正常的 git 仓库:
|
||||||
1. API部分
|
|
||||||
- `luminol-api` :暂无有效文件
|
|
||||||
- `folia-api` :对folia-API的修改应当在此文件夹下进行
|
|
||||||
- `paper-api` :对paper-API/spigot-API/bukkit-API的修改应该在此文件夹下进行
|
|
||||||
|
|
||||||
2. Server部分
|
|
||||||
- `luminol-server` :对Minecraft原版服务器的修改应当在此文件夹下进行
|
|
||||||
- `folia-server` :暂无有效文件
|
|
||||||
- `paper-server` :对于非原版的对服务器逻辑的修改应当在此文件夹下进行
|
|
||||||
|
|
||||||
顺便一提,仓库根目录下的 `*-api` 和 `*-server` 并不是正常的 git 仓库:
|
|
||||||
|
|
||||||
- 在应用补丁前,基点将会指向未被更改的源码
|
- 在应用补丁前,基点将会指向未被更改的源码
|
||||||
- 在基点后的每一个提交都是一个补丁
|
- 在基点后的每一个提交都是一个补丁
|
||||||
@@ -65,11 +48,11 @@ Luminol 使用和 Folia 一样的补丁系统,并为了针对不同部分的
|
|||||||
|
|
||||||
按照以下步骤增加一个补丁是非常简单的:
|
按照以下步骤增加一个补丁是非常简单的:
|
||||||
|
|
||||||
1. 对 `*-api` 和 `*-server` 进行修改;
|
1. 对 `luminol-api` 和 `luminol-server` 进行修改;
|
||||||
2. 使用 git 添加你的修改,比如 `git add .`(不要提交新建的文件的修改);
|
2. 使用 git 添加你的修改,比如 `git add .`(不要提交新建的文件的修改);
|
||||||
3. 使用 `git commit -m <提交信息>` 进行提交;
|
3. 使用 `git commit -m <提交信息>` 进行提交;
|
||||||
4. 运行 Gradle 任务 `fixupPaperApiFilePatches` 生成新建文件的补丁文件(注意不要提交);
|
4. 运行 Gradle 任务 `rebuildAllServerPatches` 将你的提交转化为一个补丁;
|
||||||
5. 运行 Gradle 任务 `rebuildAllServerPatches` 将你的提交转化为一个补丁;
|
5. 运行 Gradle 任务 `fixupPaperApiFilePatches` 生成新建文件的补丁文件(注意不要提交);
|
||||||
6. 将你生成的补丁文件进行推送。
|
6. 将你生成的补丁文件进行推送。
|
||||||
|
|
||||||
这样做以后,你就可以将你的补丁文件进行 PR 提交。
|
这样做以后,你就可以将你的补丁文件进行 PR 提交。
|
||||||
@@ -82,6 +65,6 @@ Luminol 使用和 Folia 一样的补丁系统,并为了针对不同部分的
|
|||||||
2. 使用 `git commit -a --fixup <hash>` 来进行一个更正提交;(不要提交对在luminol新建文件的修改)
|
2. 使用 `git commit -a --fixup <hash>` 来进行一个更正提交;(不要提交对在luminol新建文件的修改)
|
||||||
- 如果你想要更改提交信息,你也可以用 `--squash` 来代替 `--fixup`。
|
- 如果你想要更改提交信息,你也可以用 `--squash` 来代替 `--fixup`。
|
||||||
3. 使用 `git rebase -i --autosquash base` 来进行自动变基,你只需要输入 `:q` 来关闭确认页面即可;
|
3. 使用 `git rebase -i --autosquash base` 来进行自动变基,你只需要输入 `:q` 来关闭确认页面即可;
|
||||||
4. 运行 Gradle 任务 `fixupPaperApiFilePatches` 来修改已被修改的在luminol新建文件的补丁(注意不要提交);
|
4. 运行 Gradle 任务 `rebuildAllServerPatches` 来修改已被修改的补丁;
|
||||||
5. 运行 Gradle 任务 `rebuildAllServerPatches` 来修改已被修改的补丁;
|
5. 运行 Gradle 任务 `fixupPaperApiFilePatches` 来修改已被修改的在luminol新建文件的补丁(注意不要提交);
|
||||||
6. 将修改后的补丁 PR 发回储存库。
|
6. 将修改后的补丁 PR 发回储存库。
|
||||||
|
|||||||
@@ -25,18 +25,13 @@ Before coding, you need these pieces of software / tools as Dev Environment.
|
|||||||
- `git`
|
- `git`
|
||||||
- `JDK 21 or higher`
|
- `JDK 21 or higher`
|
||||||
|
|
||||||
PS: You need to enable long path support in your System and Git before start, some of the platform's resolution here.
|
|
||||||
|
|
||||||
[`Windows`](https://learn.microsoft.com/windows/win32/fileio/maximum-file-path-limitation)
|
|
||||||
[`Git for Windows`](https://gitforwindows.org/faq.html#i-get-errors-trying-to-check-out-files-with-long-path-names)
|
|
||||||
|
|
||||||
## Understanding "Patches"
|
## Understanding "Patches"
|
||||||
|
|
||||||
Luminol uses as the same patching system as Paper,
|
Luminol uses as the same patching system as Paper,
|
||||||
and has been divided into two directories for the purpose of modifying different parts of it:
|
and has been divided into two directories for the purpose of modifying different parts of it:
|
||||||
|
|
||||||
- `luminol-api` - Modifications to `Folia-API` / `Paper-API` / `Spigot-API` / `Bukkit-API`.
|
- `luminol-api` - Modifications to `Folia-API` / `Paper-API` / `Spigot-API` / `Bukkit`.
|
||||||
- `luminol-server` - Modifications to Minecraft Vanilla Server's source logic.
|
- `luminol-server` - Modifications to Minecraft Official Server's source logic.
|
||||||
|
|
||||||
The patching system is based on git, and you can learn about it at here: <https://git-scm.com/docs/gittutorial>
|
The patching system is based on git, and you can learn about it at here: <https://git-scm.com/docs/gittutorial>
|
||||||
|
|
||||||
@@ -44,36 +39,23 @@ If you have forked the main repository, then you should follow the steps below:
|
|||||||
|
|
||||||
1. Clone your repository to local
|
1. Clone your repository to local
|
||||||
2. Run Gradle's `applyAllPatches` task in your IDE or terminal (You can run `./gradlew applyAllPatches` directly in terminal.)
|
2. Run Gradle's `applyAllPatches` task in your IDE or terminal (You can run `./gradlew applyAllPatches` directly in terminal.)
|
||||||
3. After performing the operation, the following directory pairs should exist in the root directory of the warehouse: `luminol-api` and `luminol-server` , `folia-api` and `folia-server` , `paper-api` and `paper-server` (Referred to `*-api` and `*-server` as below)
|
3. Enter `luminol-api` and `luminol-server` directory to carry out modifications.
|
||||||
4. Enter `*-api` and `*-server` directory to carry out modifications.
|
|
||||||
|
|
||||||
The following is the simple description of the aforementioned folders, detailed description can be referred to [here](https://github.com/Toffikk/paperweight-examples/blob/18241979c88068d5b061d95ad69c98ecb201c246/README.md):
|
BTW, `luminol-api` and `luminol-server` and are not normal git repositories.
|
||||||
|
|
||||||
1. API part
|
|
||||||
- `luminol-api` : There is no valid file
|
|
||||||
- `folia-api` : Modifications to Folia API should be carried out in this folder
|
|
||||||
- `paper-api` : Modifications to Paper API/Spigot API/Bukkit API should be carried out in this folder
|
|
||||||
|
|
||||||
2. Server part
|
|
||||||
- `luminol-server` : Modifications to Minecraft Vanilla Server's source logic should be carried out in this folder
|
|
||||||
- `folia-server` : There is no valid file
|
|
||||||
- `paper-server` : Modifications to non-vanilla server logic should be carried out in this folder
|
|
||||||
|
|
||||||
BTW, `*-api` and `*-server` and are not normal git repositories.
|
|
||||||
|
|
||||||
- Before applying patches, the base will point to unmodified source code.
|
- Before applying patches, the base will point to unmodified source code.
|
||||||
- Every commit after the base is a patch.
|
- Every commit after the base is a patch.
|
||||||
- Only commits after the last commit of Folia will be considered as Luminol patches.
|
- Only commits after the last commit of Paper will be considered as Luminol patches.
|
||||||
|
|
||||||
## Adding new patches
|
## Adding new patches
|
||||||
|
|
||||||
It's very easy to add patches by following the steps below:
|
It's very easy to add patches by following the steps below:
|
||||||
|
|
||||||
1. Modify the code of `*-api` and `*-server`
|
1. Modify the code of `luminol-api` and `luminol-server`
|
||||||
2. Add these changes to the local git repository (For example, `git add .`)
|
2. Add these changes to the local git repository (For example, `git add .`)
|
||||||
3. Commit these changes using `git commit -m <Commit Message>` (PS: do not commit new-created files)
|
3. Commit these changes using `git commit -m <Commit Message>` (PS: do not commit new-created files)
|
||||||
4. Run Gradle's task `fixupPaperApiFilePatches` to generate newly created files to new patches (PS: do not commit again before you run this task)
|
4. Run Gradle's task `rebuildAllServerPatches` to convert your commits to a new patch
|
||||||
5. Run Gradle's task `rebuildAllServerPatches` to convert your commits to a new patch
|
5. Run Gradle's task `fixupPaperApiFilePatches` to generate newly created files to new patches (PS: do not commit again before you run this task)
|
||||||
6. Push your patches to your repository
|
6. Push your patches to your repository
|
||||||
|
|
||||||
After pushing, you can open a PR to submit your patches.
|
After pushing, you can open a PR to submit your patches.
|
||||||
@@ -84,8 +66,8 @@ You can modify an existing patch by following the steps below:
|
|||||||
|
|
||||||
1. Modify code at HEAD
|
1. Modify code at HEAD
|
||||||
2. Run `git commit -a --fixup <hash>` in your terminal to make a fix-up commit (PS: do not commit changes of luminol-created files)
|
2. Run `git commit -a --fixup <hash>` in your terminal to make a fix-up commit (PS: do not commit changes of luminol-created files)
|
||||||
- If you want to edit the commit message, replace `--fixup` with `--squash`
|
- If you want to edit the commit message, replace `--fixup` with `--squash`.
|
||||||
3. Run `git rebase -i --autosquash base` to rebase automatically, then just type `:q` to close the confirm page
|
3. Run `git rebase -i --autosquash base` to rebase automatically, then just type `:q` to close the confirm page
|
||||||
4. Run Gradle's task `fixupPaperApiFilePatches` to regenerate luminol-created files to patches (PS: do not commit again before you run this task)
|
4. Run Gradle's task `rebuildAllServerPatches` to modify existing patches
|
||||||
5. Run Gradle's task `rebuildAllServerPatches` to modify existing patches
|
5. Run Gradle's task `fixupPaperApiFilePatches` to regenerate luminol-created files to patches (PS: do not commit again before you run this task)
|
||||||
6. Push and PR again
|
6. Push and PR again
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
group = me.earthme.luminol
|
group = me.earthme.luminol
|
||||||
version=1.21.5-R0.1-SNAPSHOT
|
version=1.21.4-R0.1-SNAPSHOT
|
||||||
mcVersion=1.21.5
|
mcVersion=1.21.4
|
||||||
|
|
||||||
foliaRef=dfa3ca475215e9c496e5aa6629f1897f93f7a7d4
|
foliaRef=80ab57dcbe5fa96cc2f7fe34ecba94162d8dd5e9
|
||||||
|
|
||||||
org.gradle.configuration-cache=true
|
org.gradle.configuration-cache=true
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
|
|||||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|||||||
6
gradlew
vendored
6
gradlew
vendored
@@ -114,7 +114,7 @@ case "$( uname )" in #(
|
|||||||
NONSTOP* ) nonstop=true ;;
|
NONSTOP* ) nonstop=true ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
CLASSPATH="\\\"\\\""
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
# Determine the Java command to use to start the JVM.
|
# Determine the Java command to use to start the JVM.
|
||||||
@@ -205,7 +205,7 @@ fi
|
|||||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
|
|
||||||
# Collect all arguments for the java command:
|
# Collect all arguments for the java command:
|
||||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||||
# and any embedded shellness will be escaped.
|
# 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
|
# * 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.
|
# treated as '${Hostname}' itself on the command line.
|
||||||
@@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|||||||
set -- \
|
set -- \
|
||||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||||
-classpath "$CLASSPATH" \
|
-classpath "$CLASSPATH" \
|
||||||
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
|
org.gradle.wrapper.GradleWrapperMain \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
||||||
# Stop when "xargs" is not available.
|
# Stop when "xargs" is not available.
|
||||||
|
|||||||
4
gradlew.bat
vendored
4
gradlew.bat
vendored
@@ -70,11 +70,11 @@ goto fail
|
|||||||
:execute
|
:execute
|
||||||
@rem Setup the command line
|
@rem Setup the command line
|
||||||
|
|
||||||
set CLASSPATH=
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
@rem Execute Gradle
|
@rem Execute Gradle
|
||||||
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||||
|
|
||||||
:end
|
:end
|
||||||
@rem End local scope for the variables with windows NT shell
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
|||||||
675
licenses/GPL.md
675
licenses/GPL.md
@@ -1,675 +0,0 @@
|
|||||||
### GNU GENERAL PUBLIC LICENSE
|
|
||||||
|
|
||||||
Version 3, 29 June 2007
|
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc.
|
|
||||||
<https://fsf.org/>
|
|
||||||
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies of this
|
|
||||||
license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
### Preamble
|
|
||||||
|
|
||||||
The GNU General Public License is a free, copyleft license for
|
|
||||||
software and other kinds of works.
|
|
||||||
|
|
||||||
The licenses for most software and other practical works are designed
|
|
||||||
to take away your freedom to share and change the works. By contrast,
|
|
||||||
the GNU General Public License is intended to guarantee your freedom
|
|
||||||
to share and change all versions of a program--to make sure it remains
|
|
||||||
free software for all its users. We, the Free Software Foundation, use
|
|
||||||
the GNU General Public License for most of our software; it applies
|
|
||||||
also to any other work released this way by its authors. You can apply
|
|
||||||
it to your programs, too.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom, not
|
|
||||||
price. Our General Public Licenses are designed to make sure that you
|
|
||||||
have the freedom to distribute copies of free software (and charge for
|
|
||||||
them if you wish), that you receive source code or can get it if you
|
|
||||||
want it, that you can change the software or use pieces of it in new
|
|
||||||
free programs, and that you know you can do these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to prevent others from denying you
|
|
||||||
these rights or asking you to surrender the rights. Therefore, you
|
|
||||||
have certain responsibilities if you distribute copies of the
|
|
||||||
software, or if you modify it: responsibilities to respect the freedom
|
|
||||||
of others.
|
|
||||||
|
|
||||||
For example, if you distribute copies of such a program, whether
|
|
||||||
gratis or for a fee, you must pass on to the recipients the same
|
|
||||||
freedoms that you received. You must make sure that they, too, receive
|
|
||||||
or can get the source code. And you must show them these terms so they
|
|
||||||
know their rights.
|
|
||||||
|
|
||||||
Developers that use the GNU GPL protect your rights with two steps:
|
|
||||||
(1) assert copyright on the software, and (2) offer you this License
|
|
||||||
giving you legal permission to copy, distribute and/or modify it.
|
|
||||||
|
|
||||||
For the developers' and authors' protection, the GPL clearly explains
|
|
||||||
that there is no warranty for this free software. For both users' and
|
|
||||||
authors' sake, the GPL requires that modified versions be marked as
|
|
||||||
changed, so that their problems will not be attributed erroneously to
|
|
||||||
authors of previous versions.
|
|
||||||
|
|
||||||
Some devices are designed to deny users access to install or run
|
|
||||||
modified versions of the software inside them, although the
|
|
||||||
manufacturer can do so. This is fundamentally incompatible with the
|
|
||||||
aim of protecting users' freedom to change the software. The
|
|
||||||
systematic pattern of such abuse occurs in the area of products for
|
|
||||||
individuals to use, which is precisely where it is most unacceptable.
|
|
||||||
Therefore, we have designed this version of the GPL to prohibit the
|
|
||||||
practice for those products. If such problems arise substantially in
|
|
||||||
other domains, we stand ready to extend this provision to those
|
|
||||||
domains in future versions of the GPL, as needed to protect the
|
|
||||||
freedom of users.
|
|
||||||
|
|
||||||
Finally, every program is threatened constantly by software patents.
|
|
||||||
States should not allow patents to restrict development and use of
|
|
||||||
software on general-purpose computers, but in those that do, we wish
|
|
||||||
to avoid the special danger that patents applied to a free program
|
|
||||||
could make it effectively proprietary. To prevent this, the GPL
|
|
||||||
assures that patents cannot be used to render the program non-free.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow.
|
|
||||||
|
|
||||||
### TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
#### 0. Definitions.
|
|
||||||
|
|
||||||
"This License" refers to version 3 of the GNU General Public License.
|
|
||||||
|
|
||||||
"Copyright" also means copyright-like laws that apply to other kinds
|
|
||||||
of works, such as semiconductor masks.
|
|
||||||
|
|
||||||
"The Program" refers to any copyrightable work licensed under this
|
|
||||||
License. Each licensee is addressed as "you". "Licensees" and
|
|
||||||
"recipients" may be individuals or organizations.
|
|
||||||
|
|
||||||
To "modify" a work means to copy from or adapt all or part of the work
|
|
||||||
in a fashion requiring copyright permission, other than the making of
|
|
||||||
an exact copy. The resulting work is called a "modified version" of
|
|
||||||
the earlier work or a work "based on" the earlier work.
|
|
||||||
|
|
||||||
A "covered work" means either the unmodified Program or a work based
|
|
||||||
on the Program.
|
|
||||||
|
|
||||||
To "propagate" a work means to do anything with it that, without
|
|
||||||
permission, would make you directly or secondarily liable for
|
|
||||||
infringement under applicable copyright law, except executing it on a
|
|
||||||
computer or modifying a private copy. Propagation includes copying,
|
|
||||||
distribution (with or without modification), making available to the
|
|
||||||
public, and in some countries other activities as well.
|
|
||||||
|
|
||||||
To "convey" a work means any kind of propagation that enables other
|
|
||||||
parties to make or receive copies. Mere interaction with a user
|
|
||||||
through a computer network, with no transfer of a copy, is not
|
|
||||||
conveying.
|
|
||||||
|
|
||||||
An interactive user interface displays "Appropriate Legal Notices" to
|
|
||||||
the extent that it includes a convenient and prominently visible
|
|
||||||
feature that (1) displays an appropriate copyright notice, and (2)
|
|
||||||
tells the user that there is no warranty for the work (except to the
|
|
||||||
extent that warranties are provided), that licensees may convey the
|
|
||||||
work under this License, and how to view a copy of this License. If
|
|
||||||
the interface presents a list of user commands or options, such as a
|
|
||||||
menu, a prominent item in the list meets this criterion.
|
|
||||||
|
|
||||||
#### 1. Source Code.
|
|
||||||
|
|
||||||
The "source code" for a work means the preferred form of the work for
|
|
||||||
making modifications to it. "Object code" means any non-source form of
|
|
||||||
a work.
|
|
||||||
|
|
||||||
A "Standard Interface" means an interface that either is an official
|
|
||||||
standard defined by a recognized standards body, or, in the case of
|
|
||||||
interfaces specified for a particular programming language, one that
|
|
||||||
is widely used among developers working in that language.
|
|
||||||
|
|
||||||
The "System Libraries" of an executable work include anything, other
|
|
||||||
than the work as a whole, that (a) is included in the normal form of
|
|
||||||
packaging a Major Component, but which is not part of that Major
|
|
||||||
Component, and (b) serves only to enable use of the work with that
|
|
||||||
Major Component, or to implement a Standard Interface for which an
|
|
||||||
implementation is available to the public in source code form. A
|
|
||||||
"Major Component", in this context, means a major essential component
|
|
||||||
(kernel, window system, and so on) of the specific operating system
|
|
||||||
(if any) on which the executable work runs, or a compiler used to
|
|
||||||
produce the work, or an object code interpreter used to run it.
|
|
||||||
|
|
||||||
The "Corresponding Source" for a work in object code form means all
|
|
||||||
the source code needed to generate, install, and (for an executable
|
|
||||||
work) run the object code and to modify the work, including scripts to
|
|
||||||
control those activities. However, it does not include the work's
|
|
||||||
System Libraries, or general-purpose tools or generally available free
|
|
||||||
programs which are used unmodified in performing those activities but
|
|
||||||
which are not part of the work. For example, Corresponding Source
|
|
||||||
includes interface definition files associated with source files for
|
|
||||||
the work, and the source code for shared libraries and dynamically
|
|
||||||
linked subprograms that the work is specifically designed to require,
|
|
||||||
such as by intimate data communication or control flow between those
|
|
||||||
subprograms and other parts of the work.
|
|
||||||
|
|
||||||
The Corresponding Source need not include anything that users can
|
|
||||||
regenerate automatically from other parts of the Corresponding Source.
|
|
||||||
|
|
||||||
The Corresponding Source for a work in source code form is that same
|
|
||||||
work.
|
|
||||||
|
|
||||||
#### 2. Basic Permissions.
|
|
||||||
|
|
||||||
All rights granted under this License are granted for the term of
|
|
||||||
copyright on the Program, and are irrevocable provided the stated
|
|
||||||
conditions are met. This License explicitly affirms your unlimited
|
|
||||||
permission to run the unmodified Program. The output from running a
|
|
||||||
covered work is covered by this License only if the output, given its
|
|
||||||
content, constitutes a covered work. This License acknowledges your
|
|
||||||
rights of fair use or other equivalent, as provided by copyright law.
|
|
||||||
|
|
||||||
You may make, run and propagate covered works that you do not convey,
|
|
||||||
without conditions so long as your license otherwise remains in force.
|
|
||||||
You may convey covered works to others for the sole purpose of having
|
|
||||||
them make modifications exclusively for you, or provide you with
|
|
||||||
facilities for running those works, provided that you comply with the
|
|
||||||
terms of this License in conveying all material for which you do not
|
|
||||||
control copyright. Those thus making or running the covered works for
|
|
||||||
you must do so exclusively on your behalf, under your direction and
|
|
||||||
control, on terms that prohibit them from making any copies of your
|
|
||||||
copyrighted material outside their relationship with you.
|
|
||||||
|
|
||||||
Conveying under any other circumstances is permitted solely under the
|
|
||||||
conditions stated below. Sublicensing is not allowed; section 10 makes
|
|
||||||
it unnecessary.
|
|
||||||
|
|
||||||
#### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
|
||||||
|
|
||||||
No covered work shall be deemed part of an effective technological
|
|
||||||
measure under any applicable law fulfilling obligations under article
|
|
||||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
|
||||||
similar laws prohibiting or restricting circumvention of such
|
|
||||||
measures.
|
|
||||||
|
|
||||||
When you convey a covered work, you waive any legal power to forbid
|
|
||||||
circumvention of technological measures to the extent such
|
|
||||||
circumvention is effected by exercising rights under this License with
|
|
||||||
respect to the covered work, and you disclaim any intention to limit
|
|
||||||
operation or modification of the work as a means of enforcing, against
|
|
||||||
the work's users, your or third parties' legal rights to forbid
|
|
||||||
circumvention of technological measures.
|
|
||||||
|
|
||||||
#### 4. Conveying Verbatim Copies.
|
|
||||||
|
|
||||||
You may convey verbatim copies of the Program's source code as you
|
|
||||||
receive it, in any medium, provided that you conspicuously and
|
|
||||||
appropriately publish on each copy an appropriate copyright notice;
|
|
||||||
keep intact all notices stating that this License and any
|
|
||||||
non-permissive terms added in accord with section 7 apply to the code;
|
|
||||||
keep intact all notices of the absence of any warranty; and give all
|
|
||||||
recipients a copy of this License along with the Program.
|
|
||||||
|
|
||||||
You may charge any price or no price for each copy that you convey,
|
|
||||||
and you may offer support or warranty protection for a fee.
|
|
||||||
|
|
||||||
#### 5. Conveying Modified Source Versions.
|
|
||||||
|
|
||||||
You may convey a work based on the Program, or the modifications to
|
|
||||||
produce it from the Program, in the form of source code under the
|
|
||||||
terms of section 4, provided that you also meet all of these
|
|
||||||
conditions:
|
|
||||||
|
|
||||||
- a) The work must carry prominent notices stating that you modified
|
|
||||||
it, and giving a relevant date.
|
|
||||||
- b) The work must carry prominent notices stating that it is
|
|
||||||
released under this License and any conditions added under
|
|
||||||
section 7. This requirement modifies the requirement in section 4
|
|
||||||
to "keep intact all notices".
|
|
||||||
- c) You must license the entire work, as a whole, under this
|
|
||||||
License to anyone who comes into possession of a copy. This
|
|
||||||
License will therefore apply, along with any applicable section 7
|
|
||||||
additional terms, to the whole of the work, and all its parts,
|
|
||||||
regardless of how they are packaged. This License gives no
|
|
||||||
permission to license the work in any other way, but it does not
|
|
||||||
invalidate such permission if you have separately received it.
|
|
||||||
- d) If the work has interactive user interfaces, each must display
|
|
||||||
Appropriate Legal Notices; however, if the Program has interactive
|
|
||||||
interfaces that do not display Appropriate Legal Notices, your
|
|
||||||
work need not make them do so.
|
|
||||||
|
|
||||||
A compilation of a covered work with other separate and independent
|
|
||||||
works, which are not by their nature extensions of the covered work,
|
|
||||||
and which are not combined with it such as to form a larger program,
|
|
||||||
in or on a volume of a storage or distribution medium, is called an
|
|
||||||
"aggregate" if the compilation and its resulting copyright are not
|
|
||||||
used to limit the access or legal rights of the compilation's users
|
|
||||||
beyond what the individual works permit. Inclusion of a covered work
|
|
||||||
in an aggregate does not cause this License to apply to the other
|
|
||||||
parts of the aggregate.
|
|
||||||
|
|
||||||
#### 6. Conveying Non-Source Forms.
|
|
||||||
|
|
||||||
You may convey a covered work in object code form under the terms of
|
|
||||||
sections 4 and 5, provided that you also convey the machine-readable
|
|
||||||
Corresponding Source under the terms of this License, in one of these
|
|
||||||
ways:
|
|
||||||
|
|
||||||
- a) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by the
|
|
||||||
Corresponding Source fixed on a durable physical medium
|
|
||||||
customarily used for software interchange.
|
|
||||||
- b) Convey the object code in, or embodied in, a physical product
|
|
||||||
(including a physical distribution medium), accompanied by a
|
|
||||||
written offer, valid for at least three years and valid for as
|
|
||||||
long as you offer spare parts or customer support for that product
|
|
||||||
model, to give anyone who possesses the object code either (1) a
|
|
||||||
copy of the Corresponding Source for all the software in the
|
|
||||||
product that is covered by this License, on a durable physical
|
|
||||||
medium customarily used for software interchange, for a price no
|
|
||||||
more than your reasonable cost of physically performing this
|
|
||||||
conveying of source, or (2) access to copy the Corresponding
|
|
||||||
Source from a network server at no charge.
|
|
||||||
- c) Convey individual copies of the object code with a copy of the
|
|
||||||
written offer to provide the Corresponding Source. This
|
|
||||||
alternative is allowed only occasionally and noncommercially, and
|
|
||||||
only if you received the object code with such an offer, in accord
|
|
||||||
with subsection 6b.
|
|
||||||
- d) Convey the object code by offering access from a designated
|
|
||||||
place (gratis or for a charge), and offer equivalent access to the
|
|
||||||
Corresponding Source in the same way through the same place at no
|
|
||||||
further charge. You need not require recipients to copy the
|
|
||||||
Corresponding Source along with the object code. If the place to
|
|
||||||
copy the object code is a network server, the Corresponding Source
|
|
||||||
may be on a different server (operated by you or a third party)
|
|
||||||
that supports equivalent copying facilities, provided you maintain
|
|
||||||
clear directions next to the object code saying where to find the
|
|
||||||
Corresponding Source. Regardless of what server hosts the
|
|
||||||
Corresponding Source, you remain obligated to ensure that it is
|
|
||||||
available for as long as needed to satisfy these requirements.
|
|
||||||
- e) Convey the object code using peer-to-peer transmission,
|
|
||||||
provided you inform other peers where the object code and
|
|
||||||
Corresponding Source of the work are being offered to the general
|
|
||||||
public at no charge under subsection 6d.
|
|
||||||
|
|
||||||
A separable portion of the object code, whose source code is excluded
|
|
||||||
from the Corresponding Source as a System Library, need not be
|
|
||||||
included in conveying the object code work.
|
|
||||||
|
|
||||||
A "User Product" is either (1) a "consumer product", which means any
|
|
||||||
tangible personal property which is normally used for personal,
|
|
||||||
family, or household purposes, or (2) anything designed or sold for
|
|
||||||
incorporation into a dwelling. In determining whether a product is a
|
|
||||||
consumer product, doubtful cases shall be resolved in favor of
|
|
||||||
coverage. For a particular product received by a particular user,
|
|
||||||
"normally used" refers to a typical or common use of that class of
|
|
||||||
product, regardless of the status of the particular user or of the way
|
|
||||||
in which the particular user actually uses, or expects or is expected
|
|
||||||
to use, the product. A product is a consumer product regardless of
|
|
||||||
whether the product has substantial commercial, industrial or
|
|
||||||
non-consumer uses, unless such uses represent the only significant
|
|
||||||
mode of use of the product.
|
|
||||||
|
|
||||||
"Installation Information" for a User Product means any methods,
|
|
||||||
procedures, authorization keys, or other information required to
|
|
||||||
install and execute modified versions of a covered work in that User
|
|
||||||
Product from a modified version of its Corresponding Source. The
|
|
||||||
information must suffice to ensure that the continued functioning of
|
|
||||||
the modified object code is in no case prevented or interfered with
|
|
||||||
solely because modification has been made.
|
|
||||||
|
|
||||||
If you convey an object code work under this section in, or with, or
|
|
||||||
specifically for use in, a User Product, and the conveying occurs as
|
|
||||||
part of a transaction in which the right of possession and use of the
|
|
||||||
User Product is transferred to the recipient in perpetuity or for a
|
|
||||||
fixed term (regardless of how the transaction is characterized), the
|
|
||||||
Corresponding Source conveyed under this section must be accompanied
|
|
||||||
by the Installation Information. But this requirement does not apply
|
|
||||||
if neither you nor any third party retains the ability to install
|
|
||||||
modified object code on the User Product (for example, the work has
|
|
||||||
been installed in ROM).
|
|
||||||
|
|
||||||
The requirement to provide Installation Information does not include a
|
|
||||||
requirement to continue to provide support service, warranty, or
|
|
||||||
updates for a work that has been modified or installed by the
|
|
||||||
recipient, or for the User Product in which it has been modified or
|
|
||||||
installed. Access to a network may be denied when the modification
|
|
||||||
itself materially and adversely affects the operation of the network
|
|
||||||
or violates the rules and protocols for communication across the
|
|
||||||
network.
|
|
||||||
|
|
||||||
Corresponding Source conveyed, and Installation Information provided,
|
|
||||||
in accord with this section must be in a format that is publicly
|
|
||||||
documented (and with an implementation available to the public in
|
|
||||||
source code form), and must require no special password or key for
|
|
||||||
unpacking, reading or copying.
|
|
||||||
|
|
||||||
#### 7. Additional Terms.
|
|
||||||
|
|
||||||
"Additional permissions" are terms that supplement the terms of this
|
|
||||||
License by making exceptions from one or more of its conditions.
|
|
||||||
Additional permissions that are applicable to the entire Program shall
|
|
||||||
be treated as though they were included in this License, to the extent
|
|
||||||
that they are valid under applicable law. If additional permissions
|
|
||||||
apply only to part of the Program, that part may be used separately
|
|
||||||
under those permissions, but the entire Program remains governed by
|
|
||||||
this License without regard to the additional permissions.
|
|
||||||
|
|
||||||
When you convey a copy of a covered work, you may at your option
|
|
||||||
remove any additional permissions from that copy, or from any part of
|
|
||||||
it. (Additional permissions may be written to require their own
|
|
||||||
removal in certain cases when you modify the work.) You may place
|
|
||||||
additional permissions on material, added by you to a covered work,
|
|
||||||
for which you have or can give appropriate copyright permission.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, for material you
|
|
||||||
add to a covered work, you may (if authorized by the copyright holders
|
|
||||||
of that material) supplement the terms of this License with terms:
|
|
||||||
|
|
||||||
- a) Disclaiming warranty or limiting liability differently from the
|
|
||||||
terms of sections 15 and 16 of this License; or
|
|
||||||
- b) Requiring preservation of specified reasonable legal notices or
|
|
||||||
author attributions in that material or in the Appropriate Legal
|
|
||||||
Notices displayed by works containing it; or
|
|
||||||
- c) Prohibiting misrepresentation of the origin of that material,
|
|
||||||
or requiring that modified versions of such material be marked in
|
|
||||||
reasonable ways as different from the original version; or
|
|
||||||
- d) Limiting the use for publicity purposes of names of licensors
|
|
||||||
or authors of the material; or
|
|
||||||
- e) Declining to grant rights under trademark law for use of some
|
|
||||||
trade names, trademarks, or service marks; or
|
|
||||||
- f) Requiring indemnification of licensors and authors of that
|
|
||||||
material by anyone who conveys the material (or modified versions
|
|
||||||
of it) with contractual assumptions of liability to the recipient,
|
|
||||||
for any liability that these contractual assumptions directly
|
|
||||||
impose on those licensors and authors.
|
|
||||||
|
|
||||||
All other non-permissive additional terms are considered "further
|
|
||||||
restrictions" within the meaning of section 10. If the Program as you
|
|
||||||
received it, or any part of it, contains a notice stating that it is
|
|
||||||
governed by this License along with a term that is a further
|
|
||||||
restriction, you may remove that term. If a license document contains
|
|
||||||
a further restriction but permits relicensing or conveying under this
|
|
||||||
License, you may add to a covered work material governed by the terms
|
|
||||||
of that license document, provided that the further restriction does
|
|
||||||
not survive such relicensing or conveying.
|
|
||||||
|
|
||||||
If you add terms to a covered work in accord with this section, you
|
|
||||||
must place, in the relevant source files, a statement of the
|
|
||||||
additional terms that apply to those files, or a notice indicating
|
|
||||||
where to find the applicable terms.
|
|
||||||
|
|
||||||
Additional terms, permissive or non-permissive, may be stated in the
|
|
||||||
form of a separately written license, or stated as exceptions; the
|
|
||||||
above requirements apply either way.
|
|
||||||
|
|
||||||
#### 8. Termination.
|
|
||||||
|
|
||||||
You may not propagate or modify a covered work except as expressly
|
|
||||||
provided under this License. Any attempt otherwise to propagate or
|
|
||||||
modify it is void, and will automatically terminate your rights under
|
|
||||||
this License (including any patent licenses granted under the third
|
|
||||||
paragraph of section 11).
|
|
||||||
|
|
||||||
However, if you cease all violation of this License, then your license
|
|
||||||
from a particular copyright holder is reinstated (a) provisionally,
|
|
||||||
unless and until the copyright holder explicitly and finally
|
|
||||||
terminates your license, and (b) permanently, if the copyright holder
|
|
||||||
fails to notify you of the violation by some reasonable means prior to
|
|
||||||
60 days after the cessation.
|
|
||||||
|
|
||||||
Moreover, your license from a particular copyright holder is
|
|
||||||
reinstated permanently if the copyright holder notifies you of the
|
|
||||||
violation by some reasonable means, this is the first time you have
|
|
||||||
received notice of violation of this License (for any work) from that
|
|
||||||
copyright holder, and you cure the violation prior to 30 days after
|
|
||||||
your receipt of the notice.
|
|
||||||
|
|
||||||
Termination of your rights under this section does not terminate the
|
|
||||||
licenses of parties who have received copies or rights from you under
|
|
||||||
this License. If your rights have been terminated and not permanently
|
|
||||||
reinstated, you do not qualify to receive new licenses for the same
|
|
||||||
material under section 10.
|
|
||||||
|
|
||||||
#### 9. Acceptance Not Required for Having Copies.
|
|
||||||
|
|
||||||
You are not required to accept this License in order to receive or run
|
|
||||||
a copy of the Program. Ancillary propagation of a covered work
|
|
||||||
occurring solely as a consequence of using peer-to-peer transmission
|
|
||||||
to receive a copy likewise does not require acceptance. However,
|
|
||||||
nothing other than this License grants you permission to propagate or
|
|
||||||
modify any covered work. These actions infringe copyright if you do
|
|
||||||
not accept this License. Therefore, by modifying or propagating a
|
|
||||||
covered work, you indicate your acceptance of this License to do so.
|
|
||||||
|
|
||||||
#### 10. Automatic Licensing of Downstream Recipients.
|
|
||||||
|
|
||||||
Each time you convey a covered work, the recipient automatically
|
|
||||||
receives a license from the original licensors, to run, modify and
|
|
||||||
propagate that work, subject to this License. You are not responsible
|
|
||||||
for enforcing compliance by third parties with this License.
|
|
||||||
|
|
||||||
An "entity transaction" is a transaction transferring control of an
|
|
||||||
organization, or substantially all assets of one, or subdividing an
|
|
||||||
organization, or merging organizations. If propagation of a covered
|
|
||||||
work results from an entity transaction, each party to that
|
|
||||||
transaction who receives a copy of the work also receives whatever
|
|
||||||
licenses to the work the party's predecessor in interest had or could
|
|
||||||
give under the previous paragraph, plus a right to possession of the
|
|
||||||
Corresponding Source of the work from the predecessor in interest, if
|
|
||||||
the predecessor has it or can get it with reasonable efforts.
|
|
||||||
|
|
||||||
You may not impose any further restrictions on the exercise of the
|
|
||||||
rights granted or affirmed under this License. For example, you may
|
|
||||||
not impose a license fee, royalty, or other charge for exercise of
|
|
||||||
rights granted under this License, and you may not initiate litigation
|
|
||||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
||||||
any patent claim is infringed by making, using, selling, offering for
|
|
||||||
sale, or importing the Program or any portion of it.
|
|
||||||
|
|
||||||
#### 11. Patents.
|
|
||||||
|
|
||||||
A "contributor" is a copyright holder who authorizes use under this
|
|
||||||
License of the Program or a work on which the Program is based. The
|
|
||||||
work thus licensed is called the contributor's "contributor version".
|
|
||||||
|
|
||||||
A contributor's "essential patent claims" are all patent claims owned
|
|
||||||
or controlled by the contributor, whether already acquired or
|
|
||||||
hereafter acquired, that would be infringed by some manner, permitted
|
|
||||||
by this License, of making, using, or selling its contributor version,
|
|
||||||
but do not include claims that would be infringed only as a
|
|
||||||
consequence of further modification of the contributor version. For
|
|
||||||
purposes of this definition, "control" includes the right to grant
|
|
||||||
patent sublicenses in a manner consistent with the requirements of
|
|
||||||
this License.
|
|
||||||
|
|
||||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
|
||||||
patent license under the contributor's essential patent claims, to
|
|
||||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
|
||||||
propagate the contents of its contributor version.
|
|
||||||
|
|
||||||
In the following three paragraphs, a "patent license" is any express
|
|
||||||
agreement or commitment, however denominated, not to enforce a patent
|
|
||||||
(such as an express permission to practice a patent or covenant not to
|
|
||||||
sue for patent infringement). To "grant" such a patent license to a
|
|
||||||
party means to make such an agreement or commitment not to enforce a
|
|
||||||
patent against the party.
|
|
||||||
|
|
||||||
If you convey a covered work, knowingly relying on a patent license,
|
|
||||||
and the Corresponding Source of the work is not available for anyone
|
|
||||||
to copy, free of charge and under the terms of this License, through a
|
|
||||||
publicly available network server or other readily accessible means,
|
|
||||||
then you must either (1) cause the Corresponding Source to be so
|
|
||||||
available, or (2) arrange to deprive yourself of the benefit of the
|
|
||||||
patent license for this particular work, or (3) arrange, in a manner
|
|
||||||
consistent with the requirements of this License, to extend the patent
|
|
||||||
license to downstream recipients. "Knowingly relying" means you have
|
|
||||||
actual knowledge that, but for the patent license, your conveying the
|
|
||||||
covered work in a country, or your recipient's use of the covered work
|
|
||||||
in a country, would infringe one or more identifiable patents in that
|
|
||||||
country that you have reason to believe are valid.
|
|
||||||
|
|
||||||
If, pursuant to or in connection with a single transaction or
|
|
||||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
|
||||||
covered work, and grant a patent license to some of the parties
|
|
||||||
receiving the covered work authorizing them to use, propagate, modify
|
|
||||||
or convey a specific copy of the covered work, then the patent license
|
|
||||||
you grant is automatically extended to all recipients of the covered
|
|
||||||
work and works based on it.
|
|
||||||
|
|
||||||
A patent license is "discriminatory" if it does not include within the
|
|
||||||
scope of its coverage, prohibits the exercise of, or is conditioned on
|
|
||||||
the non-exercise of one or more of the rights that are specifically
|
|
||||||
granted under this License. You may not convey a covered work if you
|
|
||||||
are a party to an arrangement with a third party that is in the
|
|
||||||
business of distributing software, under which you make payment to the
|
|
||||||
third party based on the extent of your activity of conveying the
|
|
||||||
work, and under which the third party grants, to any of the parties
|
|
||||||
who would receive the covered work from you, a discriminatory patent
|
|
||||||
license (a) in connection with copies of the covered work conveyed by
|
|
||||||
you (or copies made from those copies), or (b) primarily for and in
|
|
||||||
connection with specific products or compilations that contain the
|
|
||||||
covered work, unless you entered into that arrangement, or that patent
|
|
||||||
license was granted, prior to 28 March 2007.
|
|
||||||
|
|
||||||
Nothing in this License shall be construed as excluding or limiting
|
|
||||||
any implied license or other defenses to infringement that may
|
|
||||||
otherwise be available to you under applicable patent law.
|
|
||||||
|
|
||||||
#### 12. No Surrender of Others' Freedom.
|
|
||||||
|
|
||||||
If conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot convey a
|
|
||||||
covered work so as to satisfy simultaneously your obligations under
|
|
||||||
this License and any other pertinent obligations, then as a
|
|
||||||
consequence you may not convey it at all. For example, if you agree to
|
|
||||||
terms that obligate you to collect a royalty for further conveying
|
|
||||||
from those to whom you convey the Program, the only way you could
|
|
||||||
satisfy both those terms and this License would be to refrain entirely
|
|
||||||
from conveying the Program.
|
|
||||||
|
|
||||||
#### 13. Use with the GNU Affero General Public License.
|
|
||||||
|
|
||||||
Notwithstanding any other provision of this License, you have
|
|
||||||
permission to link or combine any covered work with a work licensed
|
|
||||||
under version 3 of the GNU Affero General Public License into a single
|
|
||||||
combined work, and to convey the resulting work. The terms of this
|
|
||||||
License will continue to apply to the part which is the covered work,
|
|
||||||
but the special requirements of the GNU Affero General Public License,
|
|
||||||
section 13, concerning interaction through a network will apply to the
|
|
||||||
combination as such.
|
|
||||||
|
|
||||||
#### 14. Revised Versions of this License.
|
|
||||||
|
|
||||||
The Free Software Foundation may publish revised and/or new versions
|
|
||||||
of the GNU General Public License from time to time. Such new versions
|
|
||||||
will be similar in spirit to the present version, but may differ in
|
|
||||||
detail to address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the Program
|
|
||||||
specifies that a certain numbered version of the GNU General Public
|
|
||||||
License "or any later version" applies to it, you have the option of
|
|
||||||
following the terms and conditions either of that numbered version or
|
|
||||||
of any later version published by the Free Software Foundation. If the
|
|
||||||
Program does not specify a version number of the GNU General Public
|
|
||||||
License, you may choose any version ever published by the Free
|
|
||||||
Software Foundation.
|
|
||||||
|
|
||||||
If the Program specifies that a proxy can decide which future versions
|
|
||||||
of the GNU General Public License can be used, that proxy's public
|
|
||||||
statement of acceptance of a version permanently authorizes you to
|
|
||||||
choose that version for the Program.
|
|
||||||
|
|
||||||
Later license versions may give you additional or different
|
|
||||||
permissions. However, no additional obligations are imposed on any
|
|
||||||
author or copyright holder as a result of your choosing to follow a
|
|
||||||
later version.
|
|
||||||
|
|
||||||
#### 15. Disclaimer of Warranty.
|
|
||||||
|
|
||||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
|
||||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
|
||||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
|
|
||||||
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT
|
|
||||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
|
|
||||||
PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
|
||||||
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
|
||||||
CORRECTION.
|
|
||||||
|
|
||||||
#### 16. Limitation of Liability.
|
|
||||||
|
|
||||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
|
||||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR
|
|
||||||
CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES
|
|
||||||
ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT
|
|
||||||
NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
|
|
||||||
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM
|
|
||||||
TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
|
|
||||||
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
|
||||||
|
|
||||||
#### 17. Interpretation of Sections 15 and 16.
|
|
||||||
|
|
||||||
If the disclaimer of warranty and limitation of liability provided
|
|
||||||
above cannot be given local legal effect according to their terms,
|
|
||||||
reviewing courts shall apply local law that most closely approximates
|
|
||||||
an absolute waiver of all civil liability in connection with the
|
|
||||||
Program, unless a warranty or assumption of liability accompanies a
|
|
||||||
copy of the Program in return for a fee.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
### How to Apply These Terms to Your New Programs
|
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
|
||||||
possible use to the public, the best way to achieve this is to make it
|
|
||||||
free software which everyone can redistribute and change under these
|
|
||||||
terms.
|
|
||||||
|
|
||||||
To do so, attach the following notices to the program. It is safest to
|
|
||||||
attach them to the start of each source file to most effectively state
|
|
||||||
the exclusion of warranty; and each file should have at least the
|
|
||||||
"copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the program's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper
|
|
||||||
mail.
|
|
||||||
|
|
||||||
If the program does terminal interaction, make it output a short
|
|
||||||
notice like this when it starts in an interactive mode:
|
|
||||||
|
|
||||||
<program> Copyright (C) <year> <name of author>
|
|
||||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
|
||||||
This is free software, and you are welcome to redistribute it
|
|
||||||
under certain conditions; type `show c' for details.
|
|
||||||
|
|
||||||
The hypothetical commands \`show w' and \`show c' should show the
|
|
||||||
appropriate parts of the General Public License. Of course, your
|
|
||||||
program's commands might be different; for a GUI interface, you would
|
|
||||||
use an "about box".
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or
|
|
||||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
|
||||||
necessary. For more information on this, and how to apply and follow
|
|
||||||
the GNU GPL, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your
|
|
||||||
program into proprietary programs. If your program is a subroutine
|
|
||||||
library, you may consider it more useful to permit linking proprietary
|
|
||||||
applications with the library. If this is what you want to do, use the
|
|
||||||
GNU Lesser General Public License instead of this License. But first,
|
|
||||||
please read <https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
=====================
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person
|
|
||||||
obtaining a copy of this software and associated documentation
|
|
||||||
files (the “Software”), to deal in the Software without
|
|
||||||
restriction, including without limitation the rights to use,
|
|
||||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the
|
|
||||||
Software is furnished to do so, subject to the following
|
|
||||||
conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be
|
|
||||||
included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
||||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
||||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
||||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
||||||
OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
@@ -1,16 +1,16 @@
|
|||||||
--- a/folia-api/build.gradle.kts
|
--- a/folia-api/build.gradle.kts
|
||||||
+++ b/folia-api/build.gradle.kts
|
+++ b/folia-api/build.gradle.kts
|
||||||
@@ -51,6 +_,7 @@
|
@@ -54,6 +_,7 @@
|
||||||
api("org.apache.logging.log4j:log4j-api:$log4jVersion")
|
api("org.apache.logging.log4j:log4j-api:$log4jVersion")
|
||||||
api("org.slf4j:slf4j-api:$slf4jVersion")
|
api("org.slf4j:slf4j-api:$slf4jVersion")
|
||||||
api("com.mojang:brigadier:1.3.10")
|
api("com.mojang:brigadier:1.3.10")
|
||||||
+ api("io.sentry:sentry:8.0.0-rc.2") // Pufferfish
|
+ api("io.sentry:sentry:8.0.0-rc.2") // Pufferfish
|
||||||
|
|
||||||
// Deprecate bungeecord-chat in favor of adventure
|
// Deprecate bungeecord-chat in favor of adventure
|
||||||
api("net.md-5:bungeecord-chat:$bungeeCordChatVersion") {
|
api("net.md-5:bungeecord-chat:$bungeeCordChatVersion-deprecated+build.19") {
|
||||||
@@ -101,17 +_,21 @@
|
@@ -104,17 +_,21 @@
|
||||||
java {
|
java {
|
||||||
srcDir(generatedDir)
|
srcDir(generatedApiPath)
|
||||||
srcDir(file("../paper-api/src/main/java"))
|
srcDir(file("../paper-api/src/main/java"))
|
||||||
+ srcDir(file("../folia-api/src/main/java"))
|
+ srcDir(file("../folia-api/src/main/java"))
|
||||||
}
|
}
|
||||||
@@ -30,9 +30,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -257,3 +_,10 @@
|
@@ -258,3 +_,10 @@
|
||||||
dependsOn(scanJarForOldGeneratedCode)
|
tasks.check {
|
||||||
}
|
dependsOn(scanJarForOldGeneratedCode)
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
+// Pufferfish Start
|
+// Pufferfish Start
|
||||||
|
|||||||
@@ -5,19 +5,15 @@ Subject: [PATCH] Rebrand to Luminol
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/io/papermc/paper/ServerBuildInfo.java b/src/main/java/io/papermc/paper/ServerBuildInfo.java
|
diff --git a/src/main/java/io/papermc/paper/ServerBuildInfo.java b/src/main/java/io/papermc/paper/ServerBuildInfo.java
|
||||||
index 652ff54e7c50412503725d628bfe72ed03059790..db5e2f10278c20286779362cfdfadb2f42c724e0 100644
|
index 652ff54e7c50412503725d628bfe72ed03059790..ee163b9fa8f441aa4b3e2309f33e8f932dfc02d7 100644
|
||||||
--- a/src/main/java/io/papermc/paper/ServerBuildInfo.java
|
--- a/src/main/java/io/papermc/paper/ServerBuildInfo.java
|
||||||
+++ b/src/main/java/io/papermc/paper/ServerBuildInfo.java
|
+++ b/src/main/java/io/papermc/paper/ServerBuildInfo.java
|
||||||
@@ -19,6 +19,17 @@ public interface ServerBuildInfo {
|
@@ -19,6 +19,13 @@ public interface ServerBuildInfo {
|
||||||
*/
|
*/
|
||||||
Key BRAND_PAPER_ID = Key.key("papermc", "paper");
|
Key BRAND_PAPER_ID = Key.key("papermc", "paper");
|
||||||
|
|
||||||
+ // Luminol start
|
+ // Luminol start
|
||||||
+ /**
|
+ /**
|
||||||
+ * The brand id for folia
|
|
||||||
+ */
|
|
||||||
+ Key BRAND_FOLIA_ID = Key.key("papermc", "folia");
|
|
||||||
+ /**
|
|
||||||
+ * The brand id for Luminol.
|
+ * The brand id for Luminol.
|
||||||
+ */
|
+ */
|
||||||
+ Key BRAND_LUMINOL_ID = Key.key("luminolmc", "luminol");
|
+ Key BRAND_LUMINOL_ID = Key.key("luminolmc", "luminol");
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ Subject: [PATCH] KioCG Chunk API
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/org/bukkit/Chunk.java b/src/main/java/org/bukkit/Chunk.java
|
diff --git a/src/main/java/org/bukkit/Chunk.java b/src/main/java/org/bukkit/Chunk.java
|
||||||
index 9f8414f854646ad7429fe806e35a13e32a07ddaa..9a0995bf82830b45b2d72b2a1cff2bfdd4f7a638 100644
|
index d434277342b2db19f98e032d3a316b27d728b840..e188353ad193f6203533790ae52fafc0554df63f 100644
|
||||||
--- a/src/main/java/org/bukkit/Chunk.java
|
--- a/src/main/java/org/bukkit/Chunk.java
|
||||||
+++ b/src/main/java/org/bukkit/Chunk.java
|
+++ b/src/main/java/org/bukkit/Chunk.java
|
||||||
@@ -388,4 +388,6 @@ public interface Chunk extends PersistentDataHolder {
|
@@ -388,4 +388,6 @@ public interface Chunk extends PersistentDataHolder {
|
||||||
@@ -16,10 +16,10 @@ index 9f8414f854646ad7429fe806e35a13e32a07ddaa..9a0995bf82830b45b2d72b2a1cff2bfd
|
|||||||
+ long getChunkHotAvg(); // KioCG
|
+ long getChunkHotAvg(); // KioCG
|
||||||
}
|
}
|
||||||
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
||||||
index d34419693fc78b3f7e8f6bbf115f17f29e5e3377..aefcae5d9b7beff4bb7185cf44b443fc340af179 100644
|
index 494dca2ee48a03953d47050b178496df12bc48c5..a65d64b1ef64cf1cf213cec00e7f73cc7ad2b79c 100644
|
||||||
--- a/src/main/java/org/bukkit/entity/Player.java
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
||||||
+++ b/src/main/java/org/bukkit/entity/Player.java
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
||||||
@@ -3925,4 +3925,6 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
@@ -3918,4 +3918,6 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
||||||
* @param score New death screen score of player
|
* @param score New death screen score of player
|
||||||
*/
|
*/
|
||||||
void setDeathScreenScore(int score);
|
void setDeathScreenScore(int score);
|
||||||
|
|||||||
@@ -18,14 +18,14 @@ index 89017af09ce32e7a66014fc3aeb50155921252a5..b862779b48176dd7e67a2f1a3e7f24bc
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
||||||
index 4acda947b7d69ab4133b4cc94e76d945e4d148d5..8093eff77c80be2c2e97bf6700a69d879d4c62a5 100644
|
index 5df19bd701c67506689fc7f49d91f99ebfbc83f0..baf0cbd2f995ebe2e4382244eff6e15ec125d790 100644
|
||||||
--- a/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
--- a/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
||||||
+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
||||||
@@ -32,7 +32,7 @@ public class SimpleCommandMap implements CommandMap {
|
@@ -39,7 +39,7 @@ public class SimpleCommandMap implements CommandMap {
|
||||||
|
register("bukkit", new VersionCommand("version"));
|
||||||
private void setDefaultCommands() {
|
|
||||||
register("bukkit", new ReloadCommand("reload"));
|
register("bukkit", new ReloadCommand("reload"));
|
||||||
- register("bukkit", new co.aikar.timings.TimingsCommand("timings"));
|
//register("bukkit", new PluginsCommand("plugins")); // Paper
|
||||||
|
- register("bukkit", new co.aikar.timings.TimingsCommand("timings")); // Paper
|
||||||
+ //register("bukkit", new co.aikar.timings.TimingsCommand("timings")); // Paper // Luminol - Disable timings warn msg and commands
|
+ //register("bukkit", new co.aikar.timings.TimingsCommand("timings")); // Paper // Luminol - Disable timings warn msg and commands
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,15 +5,15 @@ Subject: [PATCH] Force disable reload command
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
||||||
index 8093eff77c80be2c2e97bf6700a69d879d4c62a5..c51bc888011091925d73945a52b252aef3e2b384 100644
|
index baf0cbd2f995ebe2e4382244eff6e15ec125d790..0d354eb5e7df427faff2d6c816c297c3d39a6e63 100644
|
||||||
--- a/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
--- a/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
||||||
+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java
|
||||||
@@ -31,7 +31,7 @@ public class SimpleCommandMap implements CommandMap {
|
@@ -37,7 +37,7 @@ public class SimpleCommandMap implements CommandMap {
|
||||||
}
|
|
||||||
|
|
||||||
private void setDefaultCommands() {
|
private void setDefaultCommands() {
|
||||||
|
register("bukkit", new VersionCommand("version"));
|
||||||
- register("bukkit", new ReloadCommand("reload"));
|
- register("bukkit", new ReloadCommand("reload"));
|
||||||
+ //register("bukkit", new ReloadCommand("reload")); // Luminol - Force disable reload command
|
+ //register("bukkit", new ReloadCommand("reload")); // Luminol - Force disable reload command
|
||||||
|
//register("bukkit", new PluginsCommand("plugins")); // Paper
|
||||||
//register("bukkit", new co.aikar.timings.TimingsCommand("timings")); // Paper // Luminol - Disable timings warn msg and commands
|
//register("bukkit", new co.aikar.timings.TimingsCommand("timings")); // Paper // Luminol - Disable timings warn msg and commands
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,177 @@ Date: Sun, 12 Jan 2025 13:27:38 +0800
|
|||||||
Subject: [PATCH] Pufferfish Sentry
|
Subject: [PATCH] Pufferfish Sentry
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/gg/pufferfish/pufferfish/sentry/SentryContext.java b/src/main/java/gg/pufferfish/pufferfish/sentry/SentryContext.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..c7772aac00f6db664f7a5673bc2585fa025e6aad
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/gg/pufferfish/pufferfish/sentry/SentryContext.java
|
||||||
|
@@ -0,0 +1,165 @@
|
||||||
|
+package gg.pufferfish.pufferfish.sentry;
|
||||||
|
+
|
||||||
|
+import com.google.gson.Gson;
|
||||||
|
+
|
||||||
|
+import java.lang.reflect.Field;
|
||||||
|
+import java.lang.reflect.Modifier;
|
||||||
|
+import java.util.Map;
|
||||||
|
+import java.util.TreeMap;
|
||||||
|
+
|
||||||
|
+import org.apache.logging.log4j.ThreadContext;
|
||||||
|
+import org.bukkit.command.Command;
|
||||||
|
+import org.bukkit.command.CommandSender;
|
||||||
|
+import org.bukkit.entity.Player;
|
||||||
|
+import org.bukkit.event.Event;
|
||||||
|
+import org.bukkit.event.player.PlayerEvent;
|
||||||
|
+import org.bukkit.plugin.Plugin;
|
||||||
|
+import org.bukkit.plugin.RegisteredListener;
|
||||||
|
+import org.jetbrains.annotations.Nullable;
|
||||||
|
+
|
||||||
|
+public class SentryContext {
|
||||||
|
+
|
||||||
|
+ private static final Gson GSON = new Gson();
|
||||||
|
+
|
||||||
|
+ public static void setPluginContext(@Nullable Plugin plugin) {
|
||||||
|
+ if (plugin != null) {
|
||||||
|
+ ThreadContext.put("pufferfishsentry_pluginname", plugin.getName());
|
||||||
|
+ ThreadContext.put("pufferfishsentry_pluginversion", plugin.getPluginMeta().getVersion());
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static void removePluginContext() {
|
||||||
|
+ ThreadContext.remove("pufferfishsentry_pluginname");
|
||||||
|
+ ThreadContext.remove("pufferfishsentry_pluginversion");
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static void setSenderContext(@Nullable CommandSender sender) {
|
||||||
|
+ if (sender != null) {
|
||||||
|
+ ThreadContext.put("pufferfishsentry_playername", sender.getName());
|
||||||
|
+ if (sender instanceof Player player) {
|
||||||
|
+ ThreadContext.put("pufferfishsentry_playerid", player.getUniqueId().toString());
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static void removeSenderContext() {
|
||||||
|
+ ThreadContext.remove("pufferfishsentry_playername");
|
||||||
|
+ ThreadContext.remove("pufferfishsentry_playerid");
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static void setEventContext(Event event, RegisteredListener registration) {
|
||||||
|
+ setPluginContext(registration.getPlugin());
|
||||||
|
+
|
||||||
|
+ try {
|
||||||
|
+ // Find the player that was involved with this event
|
||||||
|
+ Player player = null;
|
||||||
|
+ if (event instanceof PlayerEvent) {
|
||||||
|
+ player = ((PlayerEvent) event).getPlayer();
|
||||||
|
+ } else {
|
||||||
|
+ Class<? extends Event> eventClass = event.getClass();
|
||||||
|
+
|
||||||
|
+ Field playerField = null;
|
||||||
|
+
|
||||||
|
+ for (Field field : eventClass.getDeclaredFields()) {
|
||||||
|
+ if (field.getType().equals(Player.class)) {
|
||||||
|
+ playerField = field;
|
||||||
|
+ break;
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (playerField != null) {
|
||||||
|
+ playerField.setAccessible(true);
|
||||||
|
+ player = (Player) playerField.get(event);
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (player != null) {
|
||||||
|
+ setSenderContext(player);
|
||||||
|
+ }
|
||||||
|
+ } catch (Exception ignored) {
|
||||||
|
+ } // We can't really safely log exceptions.
|
||||||
|
+
|
||||||
|
+ ThreadContext.put("pufferfishsentry_eventdata", GSON.toJson(serializeFields(event)));
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static void removeEventContext() {
|
||||||
|
+ removePluginContext();
|
||||||
|
+ removeSenderContext();
|
||||||
|
+ ThreadContext.remove("pufferfishsentry_eventdata");
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ private static Map<String, String> serializeFields(Object object) {
|
||||||
|
+ Map<String, String> fields = new TreeMap<>();
|
||||||
|
+ fields.put("_class", object.getClass().getName());
|
||||||
|
+ for (Field declaredField : object.getClass().getDeclaredFields()) {
|
||||||
|
+ try {
|
||||||
|
+ if (Modifier.isStatic(declaredField.getModifiers())) {
|
||||||
|
+ continue;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ String fieldName = declaredField.getName();
|
||||||
|
+ if (fieldName.equals("handlers")) {
|
||||||
|
+ continue;
|
||||||
|
+ }
|
||||||
|
+ declaredField.setAccessible(true);
|
||||||
|
+ Object value = declaredField.get(object);
|
||||||
|
+ if (value != null) {
|
||||||
|
+ fields.put(fieldName, value.toString());
|
||||||
|
+ } else {
|
||||||
|
+ fields.put(fieldName, "<null>");
|
||||||
|
+ }
|
||||||
|
+ } catch (Exception ignored) {
|
||||||
|
+ } // We can't really safely log exceptions.
|
||||||
|
+ }
|
||||||
|
+ return fields;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static class State {
|
||||||
|
+
|
||||||
|
+ private Plugin plugin;
|
||||||
|
+ private Command command;
|
||||||
|
+ private String commandLine;
|
||||||
|
+ private Event event;
|
||||||
|
+ private RegisteredListener registeredListener;
|
||||||
|
+
|
||||||
|
+ public Plugin getPlugin() {
|
||||||
|
+ return plugin;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public void setPlugin(Plugin plugin) {
|
||||||
|
+ this.plugin = plugin;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public Command getCommand() {
|
||||||
|
+ return command;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public void setCommand(Command command) {
|
||||||
|
+ this.command = command;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public String getCommandLine() {
|
||||||
|
+ return commandLine;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public void setCommandLine(String commandLine) {
|
||||||
|
+ this.commandLine = commandLine;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public Event getEvent() {
|
||||||
|
+ return event;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public void setEvent(Event event) {
|
||||||
|
+ this.event = event;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public RegisteredListener getRegisteredListener() {
|
||||||
|
+ return registeredListener;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public void setRegisteredListener(RegisteredListener registeredListener) {
|
||||||
|
+ this.registeredListener = registeredListener;
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
diff --git a/src/main/java/org/bukkit/plugin/SimplePluginManager.java b/src/main/java/org/bukkit/plugin/SimplePluginManager.java
|
diff --git a/src/main/java/org/bukkit/plugin/SimplePluginManager.java b/src/main/java/org/bukkit/plugin/SimplePluginManager.java
|
||||||
index ab36e3aaff57e2f27b5aed06b4bdfe277f86a35e..96da9f1082ab134d197b3a6069f2fcdf38585efe 100644
|
index ab36e3aaff57e2f27b5aed06b4bdfe277f86a35e..96da9f1082ab134d197b3a6069f2fcdf38585efe 100644
|
||||||
--- a/src/main/java/org/bukkit/plugin/SimplePluginManager.java
|
--- a/src/main/java/org/bukkit/plugin/SimplePluginManager.java
|
||||||
@@ -31,10 +202,10 @@ index ab36e3aaff57e2f27b5aed06b4bdfe277f86a35e..96da9f1082ab134d197b3a6069f2fcdf
|
|||||||
callEvent(new com.destroystokyo.paper.event.server.ServerExceptionEvent(new com.destroystokyo.paper.exception.ServerEventException(msg, ex, registration.getPlugin(), registration.getListener(), event)));
|
callEvent(new com.destroystokyo.paper.event.server.ServerExceptionEvent(new com.destroystokyo.paper.exception.ServerEventException(msg, ex, registration.getPlugin(), registration.getListener(), event)));
|
||||||
}
|
}
|
||||||
diff --git a/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java b/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java
|
diff --git a/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java b/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java
|
||||||
index 163e9a0e179dc88be93614ff66ee2be3eccc694f..78cdf669328fc1ec5e9943033a11d2200857a07e 100644
|
index b412aaf08901d169ac9fc89b36f9d6ccb95c53d3..45a9ca8969f635d20cc44c062fda85bbccd8f8ff 100644
|
||||||
--- a/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java
|
--- a/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java
|
||||||
+++ b/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java
|
+++ b/src/main/java/org/bukkit/plugin/java/JavaPluginLoader.java
|
||||||
@@ -329,7 +329,13 @@ public final class JavaPluginLoader implements PluginLoader {
|
@@ -336,7 +336,13 @@ public final class JavaPluginLoader implements PluginLoader {
|
||||||
try {
|
try {
|
||||||
jPlugin.setEnabled(true);
|
jPlugin.setEnabled(true);
|
||||||
} catch (Throwable ex) {
|
} catch (Throwable ex) {
|
||||||
@@ -48,7 +219,7 @@ index 163e9a0e179dc88be93614ff66ee2be3eccc694f..78cdf669328fc1ec5e9943033a11d220
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Perhaps abort here, rather than continue going, but as it stands,
|
// Perhaps abort here, rather than continue going, but as it stands,
|
||||||
@@ -354,7 +360,9 @@ public final class JavaPluginLoader implements PluginLoader {
|
@@ -361,7 +367,9 @@ public final class JavaPluginLoader implements PluginLoader {
|
||||||
try {
|
try {
|
||||||
jPlugin.setEnabled(false);
|
jPlugin.setEnabled(false);
|
||||||
} catch (Throwable ex) {
|
} catch (Throwable ex) {
|
||||||
|
|||||||
@@ -4,20 +4,191 @@ Date: Sun, 12 Jan 2025 14:00:28 +0800
|
|||||||
Subject: [PATCH] Pufferfish SIMD Utilities
|
Subject: [PATCH] Pufferfish SIMD Utilities
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/gg/pufferfish/pufferfish/simd/SIMDChecker.java b/src/main/java/gg/pufferfish/pufferfish/simd/SIMDChecker.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..856de1331b15542c00e01990f471fa5152722c11
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/gg/pufferfish/pufferfish/simd/SIMDChecker.java
|
||||||
|
@@ -0,0 +1,35 @@
|
||||||
|
+package gg.pufferfish.pufferfish.simd;
|
||||||
|
+
|
||||||
|
+import jdk.incubator.vector.FloatVector;
|
||||||
|
+import jdk.incubator.vector.IntVector;
|
||||||
|
+import jdk.incubator.vector.VectorSpecies;
|
||||||
|
+import org.slf4j.Logger;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * Basically, java is annoying and we have to push this out to its own class.
|
||||||
|
+ */
|
||||||
|
+@Deprecated
|
||||||
|
+public class SIMDChecker {
|
||||||
|
+
|
||||||
|
+ @Deprecated
|
||||||
|
+ public static boolean canEnable(Logger logger) {
|
||||||
|
+ try {
|
||||||
|
+ SIMDDetection.testRun = true;
|
||||||
|
+
|
||||||
|
+ VectorSpecies<Integer> ISPEC = IntVector.SPECIES_PREFERRED;
|
||||||
|
+ VectorSpecies<Float> FSPEC = FloatVector.SPECIES_PREFERRED;
|
||||||
|
+
|
||||||
|
+ logger.info("Max SIMD vector size on this system is {} bits (int)", ISPEC.vectorBitSize());
|
||||||
|
+ logger.info("Max SIMD vector size on this system is " + FSPEC.vectorBitSize() + " bits (float)");
|
||||||
|
+
|
||||||
|
+ if (ISPEC.elementSize() < 2 || FSPEC.elementSize() < 2) {
|
||||||
|
+ logger.warn("SIMD is not properly supported on this system!");
|
||||||
|
+ return false;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ return true;
|
||||||
|
+ } catch (NoClassDefFoundError | Exception ignored) {} // Basically, we don't do anything. This lets us detect if it's not functional and disable it.
|
||||||
|
+ return false;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/gg/pufferfish/pufferfish/simd/SIMDDetection.java b/src/main/java/gg/pufferfish/pufferfish/simd/SIMDDetection.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..0a64cd0e88083ac4af6674ad0fb07b771109c737
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/gg/pufferfish/pufferfish/simd/SIMDDetection.java
|
||||||
|
@@ -0,0 +1,34 @@
|
||||||
|
+package gg.pufferfish.pufferfish.simd;
|
||||||
|
+
|
||||||
|
+import org.slf4j.Logger;
|
||||||
|
+
|
||||||
|
+@Deprecated
|
||||||
|
+public class SIMDDetection {
|
||||||
|
+
|
||||||
|
+ public static boolean isEnabled = false;
|
||||||
|
+ public static boolean testRun = false;
|
||||||
|
+
|
||||||
|
+ @Deprecated
|
||||||
|
+ public static boolean canEnable(Logger logger) {
|
||||||
|
+ try {
|
||||||
|
+ return SIMDChecker.canEnable(logger);
|
||||||
|
+ } catch (NoClassDefFoundError | Exception ignored) {
|
||||||
|
+ return false;
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Deprecated
|
||||||
|
+ public static int getJavaVersion() {
|
||||||
|
+ // https://stackoverflow.com/a/2591122
|
||||||
|
+ String version = System.getProperty("java.version");
|
||||||
|
+ if(version.startsWith("1.")) {
|
||||||
|
+ version = version.substring(2, 3);
|
||||||
|
+ } else {
|
||||||
|
+ int dot = version.indexOf(".");
|
||||||
|
+ if(dot != -1) { version = version.substring(0, dot); }
|
||||||
|
+ }
|
||||||
|
+ version = version.split("-")[0]; // Azul is stupid
|
||||||
|
+ return Integer.parseInt(version);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/gg/pufferfish/pufferfish/simd/VectorMapPalette.java b/src/main/java/gg/pufferfish/pufferfish/simd/VectorMapPalette.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..c26dcaaa2e85882730c854099df80d69eec70f33
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/gg/pufferfish/pufferfish/simd/VectorMapPalette.java
|
||||||
|
@@ -0,0 +1,84 @@
|
||||||
|
+package gg.pufferfish.pufferfish.simd;
|
||||||
|
+
|
||||||
|
+import jdk.incubator.vector.FloatVector;
|
||||||
|
+import jdk.incubator.vector.IntVector;
|
||||||
|
+import jdk.incubator.vector.VectorMask;
|
||||||
|
+import jdk.incubator.vector.VectorSpecies;
|
||||||
|
+import org.bukkit.map.MapPalette;
|
||||||
|
+
|
||||||
|
+import java.awt.*;
|
||||||
|
+
|
||||||
|
+@Deprecated
|
||||||
|
+public class VectorMapPalette {
|
||||||
|
+
|
||||||
|
+ private static final VectorSpecies<Integer> I_SPEC = IntVector.SPECIES_PREFERRED;
|
||||||
|
+ private static final VectorSpecies<Float> F_SPEC = FloatVector.SPECIES_PREFERRED;
|
||||||
|
+
|
||||||
|
+ @Deprecated
|
||||||
|
+ public static void matchColorVectorized(int[] in, byte[] out) {
|
||||||
|
+ int speciesLength = I_SPEC.length();
|
||||||
|
+ int i;
|
||||||
|
+ for (i = 0; i < in.length - speciesLength; i += speciesLength) {
|
||||||
|
+ float[] redsArr = new float[speciesLength];
|
||||||
|
+ float[] bluesArr = new float[speciesLength];
|
||||||
|
+ float[] greensArr = new float[speciesLength];
|
||||||
|
+ int[] alphasArr = new int[speciesLength];
|
||||||
|
+
|
||||||
|
+ for (int j = 0; j < speciesLength; j++) {
|
||||||
|
+ alphasArr[j] = (in[i + j] >> 24) & 0xFF;
|
||||||
|
+ redsArr[j] = (in[i + j] >> 16) & 0xFF;
|
||||||
|
+ greensArr[j] = (in[i + j] >> 8) & 0xFF;
|
||||||
|
+ bluesArr[j] = (in[i + j] >> 0) & 0xFF;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ IntVector alphas = IntVector.fromArray(I_SPEC, alphasArr, 0);
|
||||||
|
+ FloatVector reds = FloatVector.fromArray(F_SPEC, redsArr, 0);
|
||||||
|
+ FloatVector greens = FloatVector.fromArray(F_SPEC, greensArr, 0);
|
||||||
|
+ FloatVector blues = FloatVector.fromArray(F_SPEC, bluesArr, 0);
|
||||||
|
+ IntVector resultIndex = IntVector.zero(I_SPEC);
|
||||||
|
+ VectorMask<Integer> modificationMask = VectorMask.fromLong(I_SPEC, 0xffffffff);
|
||||||
|
+
|
||||||
|
+ modificationMask = modificationMask.and(alphas.lt(128).not());
|
||||||
|
+ FloatVector bestDistances = FloatVector.broadcast(F_SPEC, Float.MAX_VALUE);
|
||||||
|
+
|
||||||
|
+ for (int c = 4; c < MapPalette.colors.length; c++) {
|
||||||
|
+ // We're using 32-bit floats here because it's 2x faster and nobody will know the difference.
|
||||||
|
+ // For correctness, the original algorithm uses 64-bit floats instead. Completely unnecessary.
|
||||||
|
+ FloatVector compReds = FloatVector.broadcast(F_SPEC, MapPalette.colors[c].getRed());
|
||||||
|
+ FloatVector compGreens = FloatVector.broadcast(F_SPEC, MapPalette.colors[c].getGreen());
|
||||||
|
+ FloatVector compBlues = FloatVector.broadcast(F_SPEC, MapPalette.colors[c].getBlue());
|
||||||
|
+
|
||||||
|
+ FloatVector rMean = reds.add(compReds).div(2.0f);
|
||||||
|
+ FloatVector rDiff = reds.sub(compReds);
|
||||||
|
+ FloatVector gDiff = greens.sub(compGreens);
|
||||||
|
+ FloatVector bDiff = blues.sub(compBlues);
|
||||||
|
+
|
||||||
|
+ FloatVector weightR = rMean.div(256.0f).add(2);
|
||||||
|
+ FloatVector weightG = FloatVector.broadcast(F_SPEC, 4.0f);
|
||||||
|
+ FloatVector weightB = FloatVector.broadcast(F_SPEC, 255.0f).sub(rMean).div(256.0f).add(2.0f);
|
||||||
|
+
|
||||||
|
+ FloatVector distance = weightR.mul(rDiff).mul(rDiff).add(weightG.mul(gDiff).mul(gDiff)).add(weightB.mul(bDiff).mul(bDiff));
|
||||||
|
+
|
||||||
|
+ // Now we compare to the best distance we've found.
|
||||||
|
+ // This mask contains a "1" if better, and a "0" otherwise.
|
||||||
|
+ VectorMask<Float> bestDistanceMask = distance.lt(bestDistances);
|
||||||
|
+ bestDistances = bestDistances.blend(distance, bestDistanceMask); // Update the best distances
|
||||||
|
+
|
||||||
|
+ // Update the result array
|
||||||
|
+ // We also AND with the modification mask because we don't want to interfere if the alpha value isn't large enough.
|
||||||
|
+ resultIndex = resultIndex.blend(c, bestDistanceMask.cast(I_SPEC).and(modificationMask)); // Update the results
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ for (int j = 0; j < speciesLength; j++) {
|
||||||
|
+ int index = resultIndex.lane(j);
|
||||||
|
+ out[i + j] = (byte) (index < 128 ? index : -129 + (index - 127));
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ // For the final ones, fall back to the regular method
|
||||||
|
+ for (; i < in.length; i++) {
|
||||||
|
+ out[i] = MapPalette.matchColor(new Color(in[i], true));
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+}
|
||||||
diff --git a/src/main/java/org/bukkit/map/MapPalette.java b/src/main/java/org/bukkit/map/MapPalette.java
|
diff --git a/src/main/java/org/bukkit/map/MapPalette.java b/src/main/java/org/bukkit/map/MapPalette.java
|
||||||
index fc9728342de7605da69813fb44b008c1343124c0..d322e6c47d751b41e4b2f2fc45bb8d7498bff21d 100644
|
index 6995f9cc08d162e3adcd3a28f6bfa6d329661999..83ea70a16b4090a8c628784f2807cd16e7065103 100644
|
||||||
--- a/src/main/java/org/bukkit/map/MapPalette.java
|
--- a/src/main/java/org/bukkit/map/MapPalette.java
|
||||||
+++ b/src/main/java/org/bukkit/map/MapPalette.java
|
+++ b/src/main/java/org/bukkit/map/MapPalette.java
|
||||||
@@ -35,7 +35,7 @@ public final class MapPalette {
|
@@ -45,7 +45,7 @@ public final class MapPalette {
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
- static final Color[] colors = {
|
- static final Color[] colors = {
|
||||||
+ public static final Color[] colors = { // Luminol - package-private -> public
|
+ public static final Color[] colors = { // Luminol - package-private -> public
|
||||||
// Start generate - MapPalette#colors
|
c(0, 0, 0, 0), c(0, 0, 0, 0), c(0, 0, 0, 0), c(0, 0, 0, 0),
|
||||||
// @GeneratedFrom 1.21.5
|
c(89, 125, 39), c(109, 153, 48), c(127, 178, 56), c(67, 94, 29),
|
||||||
new Color(0x00000000, true),
|
c(174, 164, 115), c(213, 201, 140), c(247, 233, 163), c(130, 123, 86),
|
||||||
@@ -395,9 +395,11 @@ public final class MapPalette {
|
@@ -216,9 +216,11 @@ public final class MapPalette {
|
||||||
temp.getRGB(0, 0, temp.getWidth(), temp.getHeight(), pixels, 0, temp.getWidth());
|
temp.getRGB(0, 0, temp.getWidth(), temp.getHeight(), pixels, 0, temp.getWidth());
|
||||||
|
|
||||||
byte[] result = new byte[temp.getWidth() * temp.getHeight()];
|
byte[] result = new byte[temp.getWidth() * temp.getHeight()];
|
||||||
|
|||||||
@@ -4,11 +4,192 @@ Date: Mon, 27 Jan 2025 13:01:59 +0800
|
|||||||
Subject: [PATCH] Tick regions api
|
Subject: [PATCH] Tick regions api
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/RegionStats.java b/src/main/java/me/earthme/luminol/api/RegionStats.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..96147cace1550d14c682258dab0397587dcf76a4
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/RegionStats.java
|
||||||
|
@@ -0,0 +1,25 @@
|
||||||
|
+package me.earthme.luminol.api;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A simple package of folia's tick region state.It linked to the RegionStats of the nms part so that</br>
|
||||||
|
+ * You could call these methods to get the status of this tick region</br>
|
||||||
|
+ */
|
||||||
|
+public interface RegionStats {
|
||||||
|
+ /**
|
||||||
|
+ * Get the entity count in this tick region
|
||||||
|
+ * @return the entity count
|
||||||
|
+ */
|
||||||
|
+ int getEntityCount();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the player count in this tick region
|
||||||
|
+ * @return the player count
|
||||||
|
+ */
|
||||||
|
+ int getPlayerCount();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the chunk count in this tick region
|
||||||
|
+ * @return the chunk count
|
||||||
|
+ */
|
||||||
|
+ int getChunkCount();
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/ThreadedRegion.java b/src/main/java/me/earthme/luminol/api/ThreadedRegion.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..38972ac3d05ccbbb134f751a8d018b9c53ad10b5
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/ThreadedRegion.java
|
||||||
|
@@ -0,0 +1,50 @@
|
||||||
|
+package me.earthme.luminol.api;
|
||||||
|
+
|
||||||
|
+import org.bukkit.Location;
|
||||||
|
+import org.bukkit.World;
|
||||||
|
+
|
||||||
|
+import javax.annotation.Nullable;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A mirror of folia's ThreadedRegion</br>
|
||||||
|
+ * Including some handy methods to get the information of the tick region</br>
|
||||||
|
+ * Note: You should call these methods inside this tick region's thread context
|
||||||
|
+ */
|
||||||
|
+public interface ThreadedRegion {
|
||||||
|
+ /**
|
||||||
|
+ * Get the center chunk pos of this tick region</br>
|
||||||
|
+ * Note:</br>
|
||||||
|
+ * 1.Global region will return a null value(But we don't finish the global region yet()</br>
|
||||||
|
+ * 2.You should call these methods inside this tick region's thread context
|
||||||
|
+ * @return The center chunk pos
|
||||||
|
+ */
|
||||||
|
+ @Nullable
|
||||||
|
+ Location getCenterChunkPos();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the dead section percent of this tick region
|
||||||
|
+ * Note: </br>
|
||||||
|
+ * 1.Dead percent is mean the percent of the unloaded chunk count of this tick region, which is also used for determine
|
||||||
|
+ * that the tick region should or not check for splitting</br>
|
||||||
|
+ * 2.You should call these methods inside this tick region's thread context
|
||||||
|
+ * @return The dead section percent
|
||||||
|
+ */
|
||||||
|
+ double getDeadSectionPercent();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the tick region data of this tick region</br>
|
||||||
|
+ * Note:</br>
|
||||||
|
+ * 1.You should call this method inside this tick region's thread context</br>
|
||||||
|
+ * 2.You should call these methods inside this tick region's thread context
|
||||||
|
+ * @return The tick region data
|
||||||
|
+ */
|
||||||
|
+ TickRegionData getTickRegionData();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the world of this tick region</br>
|
||||||
|
+ * Note: Global region will return a null value too
|
||||||
|
+ * @return The world of this tick region
|
||||||
|
+ */
|
||||||
|
+ @Nullable
|
||||||
|
+ World getWorld();
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/ThreadedRegionizer.java b/src/main/java/me/earthme/luminol/api/ThreadedRegionizer.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..ff31a68a019fd9e5e687e6818f8729f4950bc060
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/ThreadedRegionizer.java
|
||||||
|
@@ -0,0 +1,56 @@
|
||||||
|
+package me.earthme.luminol.api;
|
||||||
|
+
|
||||||
|
+import org.bukkit.Location;
|
||||||
|
+import org.jetbrains.annotations.NotNull;
|
||||||
|
+import org.jetbrains.annotations.Nullable;
|
||||||
|
+
|
||||||
|
+import java.util.Collection;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A mirror of folia's ThreadedRegionizer
|
||||||
|
+ */
|
||||||
|
+public interface ThreadedRegionizer {
|
||||||
|
+ /**
|
||||||
|
+ * Get all the tick regions
|
||||||
|
+ * @return Temporary copied collection of all tick regions
|
||||||
|
+ */
|
||||||
|
+ Collection<ThreadedRegion> getAllRegions();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the tick region at the given chunk coordinates
|
||||||
|
+ * @param chunkX Chunk X
|
||||||
|
+ * @param chunkZ Chunk Z
|
||||||
|
+ * @return The tick region at the given chunk coordinates
|
||||||
|
+ */
|
||||||
|
+ @Nullable
|
||||||
|
+ ThreadedRegion getAtSynchronized(int chunkX, int chunkZ);
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the tick region at the given chunk coordinates
|
||||||
|
+ * @param chunkX Chunk X
|
||||||
|
+ * @param chunkZ Chunk Z
|
||||||
|
+ * @return The tick region at the given chunk coordinates
|
||||||
|
+ */
|
||||||
|
+ @Nullable
|
||||||
|
+ ThreadedRegion getAtUnSynchronized(int chunkX, int chunkZ);
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the tick region at the given location
|
||||||
|
+ * @param pos The location
|
||||||
|
+ * @return The tick region at the given location
|
||||||
|
+ */
|
||||||
|
+ @Nullable
|
||||||
|
+ default ThreadedRegion getAtSynchronized(@NotNull Location pos) {
|
||||||
|
+ return this.getAtSynchronized(pos.getBlockX() >> 4, pos.getBlockZ() >> 4);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the tick region at the given location
|
||||||
|
+ * @param pos The location
|
||||||
|
+ * @return The tick region at the given location
|
||||||
|
+ */
|
||||||
|
+ @Nullable
|
||||||
|
+ default ThreadedRegion getAtUnSynchronized(@NotNull Location pos) {
|
||||||
|
+ return this.getAtUnSynchronized(pos.getBlockX() >> 4, pos.getBlockZ() >> 4);
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/TickRegionData.java b/src/main/java/me/earthme/luminol/api/TickRegionData.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..ecde4462b08d701b8bff9f26902f17754cf791dd
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/TickRegionData.java
|
||||||
|
@@ -0,0 +1,26 @@
|
||||||
|
+package me.earthme.luminol.api;
|
||||||
|
+
|
||||||
|
+import org.bukkit.World;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A mirror of folia's tick region data
|
||||||
|
+ */
|
||||||
|
+public interface TickRegionData {
|
||||||
|
+ /**
|
||||||
|
+ * Get the world it's currently holding
|
||||||
|
+ * @return the world
|
||||||
|
+ */
|
||||||
|
+ World getWorld();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the current tick count
|
||||||
|
+ * @return the current tick count
|
||||||
|
+ */
|
||||||
|
+ long getCurrentTickCount();
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the region stats
|
||||||
|
+ * @return the region stats
|
||||||
|
+ */
|
||||||
|
+ RegionStats getRegionStats();
|
||||||
|
+}
|
||||||
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
||||||
index a8b64f78bf3c453094074b4b4d3c8fd07b9eb273..7927012c1afe5289d22879353a88a4574da91e01 100644
|
index 015d852d5a0c01042a2153a6916d408660356c59..c7b6f3f6c42746297816c0650571990f565d5e68 100644
|
||||||
--- a/src/main/java/org/bukkit/World.java
|
--- a/src/main/java/org/bukkit/World.java
|
||||||
+++ b/src/main/java/org/bukkit/World.java
|
+++ b/src/main/java/org/bukkit/World.java
|
||||||
@@ -4444,4 +4444,8 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
|
@@ -4432,4 +4432,8 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,83 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
Date: Sat, 24 May 2025 01:25:10 +0800
|
|
||||||
Subject: [PATCH] Leaves Fix SculkCatalyst exp skip
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/org/bukkit/event/entity/EntityDeathEvent.java b/src/main/java/org/bukkit/event/entity/EntityDeathEvent.java
|
|
||||||
index 76c08499b704a6cb0cb95ce69b9a9248d69cc127..d516595a8675a9f3d9c14658b66160ba4b3c4278 100644
|
|
||||||
--- a/src/main/java/org/bukkit/event/entity/EntityDeathEvent.java
|
|
||||||
+++ b/src/main/java/org/bukkit/event/entity/EntityDeathEvent.java
|
|
||||||
@@ -27,6 +27,7 @@ public class EntityDeathEvent extends EntityEvent implements Cancellable {
|
|
||||||
@Nullable private org.bukkit.SoundCategory deathSoundCategory;
|
|
||||||
private float deathSoundVolume;
|
|
||||||
private float deathSoundPitch;
|
|
||||||
+ private int rewardExp; // Leaves - exp fix
|
|
||||||
|
|
||||||
private boolean cancelled;
|
|
||||||
|
|
||||||
@@ -35,13 +36,20 @@ public class EntityDeathEvent extends EntityEvent implements Cancellable {
|
|
||||||
this(livingEntity, damageSource, drops, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
- @ApiStatus.Internal
|
|
||||||
public EntityDeathEvent(@NotNull final LivingEntity livingEntity, @NotNull DamageSource damageSource, @NotNull final List<ItemStack> drops, final int droppedExp) {
|
|
||||||
+ // Leaves start - exp fix
|
|
||||||
+ this(livingEntity, damageSource, drops, droppedExp, droppedExp);
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ @ApiStatus.Internal
|
|
||||||
+ public EntityDeathEvent(@NotNull final LivingEntity livingEntity, @NotNull DamageSource damageSource, @NotNull final List<ItemStack> drops, final int droppedExp, final int rewardExp) {
|
|
||||||
super(livingEntity);
|
|
||||||
this.damageSource = damageSource;
|
|
||||||
this.drops = drops;
|
|
||||||
this.dropExp = droppedExp;
|
|
||||||
+ this.rewardExp = rewardExp;
|
|
||||||
}
|
|
||||||
+ // Leaves end - exp fix
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
@Override
|
|
||||||
@@ -230,4 +238,14 @@ public class EntityDeathEvent extends EntityEvent implements Cancellable {
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return HANDLER_LIST;
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+ // Leaves start - exp fix
|
|
||||||
+ public int getRewardExp() {
|
|
||||||
+ return rewardExp;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ public void setRewardExp(int rewardExp) {
|
|
||||||
+ this.rewardExp = rewardExp;
|
|
||||||
+ }
|
|
||||||
+ // Leaves end - exp fix
|
|
||||||
}
|
|
||||||
diff --git a/src/main/java/org/bukkit/event/entity/PlayerDeathEvent.java b/src/main/java/org/bukkit/event/entity/PlayerDeathEvent.java
|
|
||||||
index 6316a2f1d2dc0314397e33e6dbd354fb8bc50541..6e2d1bf0e8eb9fa4917b464324a02b9b5d0dd496 100644
|
|
||||||
--- a/src/main/java/org/bukkit/event/entity/PlayerDeathEvent.java
|
|
||||||
+++ b/src/main/java/org/bukkit/event/entity/PlayerDeathEvent.java
|
|
||||||
@@ -25,6 +25,7 @@ public class PlayerDeathEvent extends EntityDeathEvent {
|
|
||||||
private boolean doExpDrop;
|
|
||||||
private boolean keepLevel = false;
|
|
||||||
private boolean keepInventory = false;
|
|
||||||
+ private boolean useApiExpDropStatus = false; // Leaves - exp fix
|
|
||||||
@Deprecated
|
|
||||||
private final List<ItemStack> itemsToKeep = new ArrayList<>();
|
|
||||||
|
|
||||||
@@ -82,8 +83,15 @@ public class PlayerDeathEvent extends EntityDeathEvent {
|
|
||||||
this.showDeathMessages = true;
|
|
||||||
this.deathMessage = LegacyComponentSerializer.legacySection().deserializeOrNull(deathMessage);
|
|
||||||
this.doExpDrop = doExpDrop;
|
|
||||||
+ this.useApiExpDropStatus = true; // Leaves - exp fix
|
|
||||||
}
|
|
||||||
|
|
||||||
+ // Leaves start - exp fix
|
|
||||||
+ public boolean forceUseEventDropStatus() {
|
|
||||||
+ return this.useApiExpDropStatus;
|
|
||||||
+ }
|
|
||||||
+ // Leaves end - exp fix
|
|
||||||
+
|
|
||||||
@NotNull
|
|
||||||
@Override
|
|
||||||
public Player getEntity() {
|
|
||||||
@@ -1,17 +1,18 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <mrhua269@gmail.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Thu, 12 Jun 2025 08:00:15 +0800
|
Date: Thu, 30 Jan 2025 09:29:03 +0800
|
||||||
Subject: [PATCH] Purpur Lobotomize stuck villagers
|
Subject: [PATCH] Purpur Lobotomize stuck villagers
|
||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/org/bukkit/entity/Villager.java b/src/main/java/org/bukkit/entity/Villager.java
|
diff --git a/src/main/java/org/bukkit/entity/Villager.java b/src/main/java/org/bukkit/entity/Villager.java
|
||||||
index 4d88bb2eaa43709fb6103a6f77d8c01e83bfe743..60b87d52c20cec947b196f47fc333bc643accbd2 100644
|
index 1db3742024e9cd1b70af2d52b4b756a544c019df..9c722a762c88a88bb5ef18c3b9eab8b371360dac 100644
|
||||||
--- a/src/main/java/org/bukkit/entity/Villager.java
|
--- a/src/main/java/org/bukkit/entity/Villager.java
|
||||||
+++ b/src/main/java/org/bukkit/entity/Villager.java
|
+++ b/src/main/java/org/bukkit/entity/Villager.java
|
||||||
@@ -408,4 +408,13 @@ public interface Villager extends AbstractVillager {
|
@@ -367,4 +367,14 @@ public interface Villager extends AbstractVillager {
|
||||||
* Demand is still updated even if all events are canceled.
|
|
||||||
*/
|
*/
|
||||||
public void restock();
|
public void clearReputations();
|
||||||
|
// Paper end
|
||||||
|
+
|
||||||
+ // Purpur start
|
+ // Purpur start
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
@@ -0,0 +1,357 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <wangxyper@163.com>
|
||||||
|
Date: Fri, 31 Jan 2025 20:28:47 +0800
|
||||||
|
Subject: [PATCH] Add missing teleportation apis for folia
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/entity/EntityTeleportAsyncEvent.java b/src/main/java/me/earthme/luminol/api/entity/EntityTeleportAsyncEvent.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..a31c803831dad3d31386924cbe27deff59855fc9
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/entity/EntityTeleportAsyncEvent.java
|
||||||
|
@@ -0,0 +1,68 @@
|
||||||
|
+package me.earthme.luminol.api.entity;
|
||||||
|
+
|
||||||
|
+import org.apache.commons.lang3.Validate;
|
||||||
|
+import org.bukkit.Location;
|
||||||
|
+import org.bukkit.entity.Entity;
|
||||||
|
+import org.bukkit.event.Cancellable;
|
||||||
|
+import org.bukkit.event.Event;
|
||||||
|
+import org.bukkit.event.HandlerList;
|
||||||
|
+import org.bukkit.event.player.PlayerTeleportEvent;
|
||||||
|
+import org.jetbrains.annotations.NotNull;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A simple event fired when a teleportAsync was called
|
||||||
|
+ * @see org.bukkit.entity.Entity#teleportAsync(org.bukkit.Location, org.bukkit.event.player.PlayerTeleportEvent.TeleportCause)
|
||||||
|
+ * @see org.bukkit.entity.Entity#teleportAsync(org.bukkit.Location)
|
||||||
|
+ * (Also fired when teleportAsync called from nms)
|
||||||
|
+ */
|
||||||
|
+public class EntityTeleportAsyncEvent extends Event {
|
||||||
|
+ private static final HandlerList HANDLERS = new HandlerList();
|
||||||
|
+
|
||||||
|
+ private final Entity entity;
|
||||||
|
+ private final PlayerTeleportEvent.TeleportCause teleportCause;
|
||||||
|
+ private final Location destination;
|
||||||
|
+
|
||||||
|
+ public EntityTeleportAsyncEvent(Entity entity, PlayerTeleportEvent.TeleportCause teleportCause, Location destination) {
|
||||||
|
+ Validate.notNull(entity, "entity cannot be a null value!");
|
||||||
|
+ Validate.notNull(teleportCause, "teleportCause cannot be a null value!");
|
||||||
|
+ Validate.notNull(destination, "destination cannot be a null value!");
|
||||||
|
+
|
||||||
|
+ this.entity = entity;
|
||||||
|
+ this.teleportCause = teleportCause;
|
||||||
|
+ this.destination = destination;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the entity is about to be teleported
|
||||||
|
+ * @return that entity
|
||||||
|
+ */
|
||||||
|
+ public @NotNull Entity getEntity() {
|
||||||
|
+ return this.entity;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the cause of the teleport
|
||||||
|
+ * @return the cause
|
||||||
|
+ */
|
||||||
|
+ public @NotNull PlayerTeleportEvent.TeleportCause getTeleportCause() {
|
||||||
|
+ return this.teleportCause;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the destination of the teleport
|
||||||
|
+ * @return the destination
|
||||||
|
+ */
|
||||||
|
+ public @NotNull Location getDestination() {
|
||||||
|
+ return this.destination;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public @NotNull HandlerList getHandlers() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @NotNull
|
||||||
|
+ public static HandlerList getHandlerList() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/entity/PostEntityPortalEvent.java b/src/main/java/me/earthme/luminol/api/entity/PostEntityPortalEvent.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..dd3087b407ccf4e96448701e6fbf75705498f982
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/entity/PostEntityPortalEvent.java
|
||||||
|
@@ -0,0 +1,41 @@
|
||||||
|
+package me.earthme.luminol.api.entity;
|
||||||
|
+
|
||||||
|
+import org.apache.commons.lang3.Validate;
|
||||||
|
+import org.bukkit.entity.Entity;
|
||||||
|
+import org.bukkit.event.Event;
|
||||||
|
+import org.bukkit.event.HandlerList;
|
||||||
|
+import org.jetbrains.annotations.NotNull;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A simple event created for missing teleport events api of folia
|
||||||
|
+ * This event is fired when the entity portal process has been done
|
||||||
|
+ */
|
||||||
|
+public class PostEntityPortalEvent extends Event {
|
||||||
|
+ private static final HandlerList HANDLER_LIST = new HandlerList();
|
||||||
|
+
|
||||||
|
+ private final Entity teleportedEntity;
|
||||||
|
+
|
||||||
|
+ public PostEntityPortalEvent(Entity teleportedEntity) {
|
||||||
|
+ Validate.notNull(teleportedEntity, "teleportedEntity cannot be null!");
|
||||||
|
+
|
||||||
|
+ this.teleportedEntity = teleportedEntity;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the entity which was teleported
|
||||||
|
+ * @return the entity which was teleported
|
||||||
|
+ */
|
||||||
|
+ public Entity getTeleportedEntity() {
|
||||||
|
+ return this.teleportedEntity;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public @NotNull HandlerList getHandlers() {
|
||||||
|
+ return HANDLER_LIST;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @NotNull
|
||||||
|
+ public static HandlerList getHandlerList() {
|
||||||
|
+ return HANDLER_LIST;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/entity/PreEntityPortalEvent.java b/src/main/java/me/earthme/luminol/api/entity/PreEntityPortalEvent.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..fc844429e3ecfe2529c0a49b8a5d958eeb188ad9
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/entity/PreEntityPortalEvent.java
|
||||||
|
@@ -0,0 +1,78 @@
|
||||||
|
+package me.earthme.luminol.api.entity;
|
||||||
|
+
|
||||||
|
+import org.apache.commons.lang3.Validate;
|
||||||
|
+import org.bukkit.Location;
|
||||||
|
+import org.bukkit.World;
|
||||||
|
+import org.bukkit.entity.Entity;
|
||||||
|
+import org.bukkit.event.Cancellable;
|
||||||
|
+import org.bukkit.event.Event;
|
||||||
|
+import org.bukkit.event.HandlerList;
|
||||||
|
+import org.jetbrains.annotations.NotNull;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A simple event created for missing teleport events api of folia
|
||||||
|
+ * This event will be fired when a portal teleportation is about to happen
|
||||||
|
+ */
|
||||||
|
+public class PreEntityPortalEvent extends Event implements Cancellable {
|
||||||
|
+ private static final HandlerList HANDLERS = new HandlerList();
|
||||||
|
+
|
||||||
|
+ private final Entity entity;
|
||||||
|
+ private final Location portalPos;
|
||||||
|
+ private final World destination;
|
||||||
|
+
|
||||||
|
+ private boolean cancelled = false;
|
||||||
|
+
|
||||||
|
+ public PreEntityPortalEvent(Entity entity, Location portalPos, World destination) {
|
||||||
|
+ Validate.notNull(entity, "entity cannot be null!");
|
||||||
|
+ Validate.notNull(portalPos, "portalPos cannot be null!");
|
||||||
|
+ Validate.notNull(destination, "destination cannot be null!");
|
||||||
|
+
|
||||||
|
+ this.entity = entity;
|
||||||
|
+ this.portalPos = portalPos;
|
||||||
|
+ this.destination = destination;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the entity that is about to teleport
|
||||||
|
+ * @return the entity
|
||||||
|
+ */
|
||||||
|
+ public @NotNull Entity getEntity() {
|
||||||
|
+ return this.entity;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the location of the portal
|
||||||
|
+ * @return the portal location
|
||||||
|
+ */
|
||||||
|
+ public @NotNull Location getPortalPos() {
|
||||||
|
+ return this.portalPos;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the destination world
|
||||||
|
+ * @return the destination world
|
||||||
|
+ */
|
||||||
|
+ public @NotNull World getDestination() {
|
||||||
|
+ return this.destination;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public boolean isCancelled() {
|
||||||
|
+ return this.cancelled;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public void setCancelled(boolean cancel) {
|
||||||
|
+ this.cancelled = cancel;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public @NotNull HandlerList getHandlers() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @NotNull
|
||||||
|
+ public static HandlerList getHandlerList() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/entity/player/PostPlayerRespawnEvent.java b/src/main/java/me/earthme/luminol/api/entity/player/PostPlayerRespawnEvent.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..9a561455560dfeee1d8762297ebf15a7c11de4d1
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/entity/player/PostPlayerRespawnEvent.java
|
||||||
|
@@ -0,0 +1,40 @@
|
||||||
|
+package me.earthme.luminol.api.entity.player;
|
||||||
|
+
|
||||||
|
+import org.apache.commons.lang3.Validate;
|
||||||
|
+import org.bukkit.entity.Player;
|
||||||
|
+import org.bukkit.event.Event;
|
||||||
|
+import org.bukkit.event.HandlerList;
|
||||||
|
+import org.jetbrains.annotations.NotNull;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A simple event fired when the respawn process of player is done
|
||||||
|
+ */
|
||||||
|
+public class PostPlayerRespawnEvent extends Event {
|
||||||
|
+ private static final HandlerList HANDLERS = new HandlerList();
|
||||||
|
+
|
||||||
|
+ private final Player player;
|
||||||
|
+
|
||||||
|
+ public PostPlayerRespawnEvent(Player player) {
|
||||||
|
+ Validate.notNull(player, "Player cannot be a null value!");
|
||||||
|
+
|
||||||
|
+ this.player = player;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the respawned player
|
||||||
|
+ * @return the player
|
||||||
|
+ */
|
||||||
|
+ public @NotNull Player getPlayer() {
|
||||||
|
+ return this.player;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public @NotNull HandlerList getHandlers() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @NotNull
|
||||||
|
+ public static HandlerList getHandlerList() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/portal/EndPlatformCreateEvent.java b/src/main/java/me/earthme/luminol/api/portal/EndPlatformCreateEvent.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..cf87a7cce5d1ebec9709b762595609344807150b
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/portal/EndPlatformCreateEvent.java
|
||||||
|
@@ -0,0 +1,35 @@
|
||||||
|
+package me.earthme.luminol.api.portal;
|
||||||
|
+
|
||||||
|
+import org.bukkit.event.Cancellable;
|
||||||
|
+import org.bukkit.event.Event;
|
||||||
|
+import org.bukkit.event.HandlerList;
|
||||||
|
+import org.jetbrains.annotations.NotNull;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A event fired when an end platform is created.
|
||||||
|
+ */
|
||||||
|
+public class EndPlatformCreateEvent extends Event implements Cancellable {
|
||||||
|
+ private static final HandlerList HANDLERS = new HandlerList();
|
||||||
|
+
|
||||||
|
+ private boolean cancelled = false;
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public boolean isCancelled() {
|
||||||
|
+ return this.cancelled;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public void setCancelled(boolean cancel) {
|
||||||
|
+ this.cancelled = cancel;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public @NotNull HandlerList getHandlers() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @NotNull
|
||||||
|
+ public static HandlerList getHandlerList() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
diff --git a/src/main/java/me/earthme/luminol/api/portal/PortalLocateEvent.java b/src/main/java/me/earthme/luminol/api/portal/PortalLocateEvent.java
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000000000000000000000000000000000000..e09ffb99aad6f6acca3d6a411877715b90413eb0
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/main/java/me/earthme/luminol/api/portal/PortalLocateEvent.java
|
||||||
|
@@ -0,0 +1,53 @@
|
||||||
|
+package me.earthme.luminol.api.portal;
|
||||||
|
+
|
||||||
|
+import org.apache.commons.lang3.Validate;
|
||||||
|
+import org.bukkit.Location;
|
||||||
|
+import org.bukkit.event.Event;
|
||||||
|
+import org.bukkit.event.HandlerList;
|
||||||
|
+import org.jetbrains.annotations.NotNull;
|
||||||
|
+
|
||||||
|
+/**
|
||||||
|
+ * A event fired when the portal process started locating the destination position
|
||||||
|
+ * Notice: If you changed the destination to an another position in end teleportation.The end platform won't create under the entity and won't create
|
||||||
|
+ * if the position is out of current tick region
|
||||||
|
+ */
|
||||||
|
+public class PortalLocateEvent extends Event {
|
||||||
|
+ private static final HandlerList HANDLERS = new HandlerList();
|
||||||
|
+
|
||||||
|
+ private final Location original;
|
||||||
|
+ private final Location destination;
|
||||||
|
+
|
||||||
|
+ public PortalLocateEvent(Location original, Location destination) {
|
||||||
|
+ Validate.notNull(original, "original couldn't be null!");
|
||||||
|
+ Validate.notNull(destination, "destination couldn't be null!");
|
||||||
|
+
|
||||||
|
+ this.original = original;
|
||||||
|
+ this.destination = destination;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the destination position of this teleportation
|
||||||
|
+ * @return the destination position
|
||||||
|
+ */
|
||||||
|
+ public Location getDestination() {
|
||||||
|
+ return this.destination;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Get the original portal position of this teleportation
|
||||||
|
+ * @return the original portal position
|
||||||
|
+ */
|
||||||
|
+ public Location getOriginal() {
|
||||||
|
+ return this.original;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @Override
|
||||||
|
+ public @NotNull HandlerList getHandlers() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ @NotNull
|
||||||
|
+ public static HandlerList getHandlerList() {
|
||||||
|
+ return HANDLERS;
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
@@ -1,165 +0,0 @@
|
|||||||
package gg.pufferfish.pufferfish.sentry;
|
|
||||||
|
|
||||||
import com.google.gson.Gson;
|
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import java.lang.reflect.Modifier;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.TreeMap;
|
|
||||||
|
|
||||||
import org.apache.logging.log4j.ThreadContext;
|
|
||||||
import org.bukkit.command.Command;
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.player.PlayerEvent;
|
|
||||||
import org.bukkit.plugin.Plugin;
|
|
||||||
import org.bukkit.plugin.RegisteredListener;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
public class SentryContext {
|
|
||||||
|
|
||||||
private static final Gson GSON = new Gson();
|
|
||||||
|
|
||||||
public static void setPluginContext(@Nullable Plugin plugin) {
|
|
||||||
if (plugin != null) {
|
|
||||||
ThreadContext.put("pufferfishsentry_pluginname", plugin.getName());
|
|
||||||
ThreadContext.put("pufferfishsentry_pluginversion", plugin.getPluginMeta().getVersion());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void removePluginContext() {
|
|
||||||
ThreadContext.remove("pufferfishsentry_pluginname");
|
|
||||||
ThreadContext.remove("pufferfishsentry_pluginversion");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setSenderContext(@Nullable CommandSender sender) {
|
|
||||||
if (sender != null) {
|
|
||||||
ThreadContext.put("pufferfishsentry_playername", sender.getName());
|
|
||||||
if (sender instanceof Player player) {
|
|
||||||
ThreadContext.put("pufferfishsentry_playerid", player.getUniqueId().toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void removeSenderContext() {
|
|
||||||
ThreadContext.remove("pufferfishsentry_playername");
|
|
||||||
ThreadContext.remove("pufferfishsentry_playerid");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setEventContext(Event event, RegisteredListener registration) {
|
|
||||||
setPluginContext(registration.getPlugin());
|
|
||||||
|
|
||||||
try {
|
|
||||||
// Find the player that was involved with this event
|
|
||||||
Player player = null;
|
|
||||||
if (event instanceof PlayerEvent) {
|
|
||||||
player = ((PlayerEvent) event).getPlayer();
|
|
||||||
} else {
|
|
||||||
Class<? extends Event> eventClass = event.getClass();
|
|
||||||
|
|
||||||
Field playerField = null;
|
|
||||||
|
|
||||||
for (Field field : eventClass.getDeclaredFields()) {
|
|
||||||
if (field.getType().equals(Player.class)) {
|
|
||||||
playerField = field;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (playerField != null) {
|
|
||||||
playerField.setAccessible(true);
|
|
||||||
player = (Player) playerField.get(event);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (player != null) {
|
|
||||||
setSenderContext(player);
|
|
||||||
}
|
|
||||||
} catch (Exception ignored) {
|
|
||||||
} // We can't really safely log exceptions.
|
|
||||||
|
|
||||||
ThreadContext.put("pufferfishsentry_eventdata", GSON.toJson(serializeFields(event)));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void removeEventContext() {
|
|
||||||
removePluginContext();
|
|
||||||
removeSenderContext();
|
|
||||||
ThreadContext.remove("pufferfishsentry_eventdata");
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Map<String, String> serializeFields(Object object) {
|
|
||||||
Map<String, String> fields = new TreeMap<>();
|
|
||||||
fields.put("_class", object.getClass().getName());
|
|
||||||
for (Field declaredField : object.getClass().getDeclaredFields()) {
|
|
||||||
try {
|
|
||||||
if (Modifier.isStatic(declaredField.getModifiers())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
String fieldName = declaredField.getName();
|
|
||||||
if (fieldName.equals("handlers")) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
declaredField.setAccessible(true);
|
|
||||||
Object value = declaredField.get(object);
|
|
||||||
if (value != null) {
|
|
||||||
fields.put(fieldName, value.toString());
|
|
||||||
} else {
|
|
||||||
fields.put(fieldName, "<null>");
|
|
||||||
}
|
|
||||||
} catch (Exception ignored) {
|
|
||||||
} // We can't really safely log exceptions.
|
|
||||||
}
|
|
||||||
return fields;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class State {
|
|
||||||
|
|
||||||
private Plugin plugin;
|
|
||||||
private Command command;
|
|
||||||
private String commandLine;
|
|
||||||
private Event event;
|
|
||||||
private RegisteredListener registeredListener;
|
|
||||||
|
|
||||||
public Plugin getPlugin() {
|
|
||||||
return plugin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlugin(Plugin plugin) {
|
|
||||||
this.plugin = plugin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Command getCommand() {
|
|
||||||
return command;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCommand(Command command) {
|
|
||||||
this.command = command;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getCommandLine() {
|
|
||||||
return commandLine;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCommandLine(String commandLine) {
|
|
||||||
this.commandLine = commandLine;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Event getEvent() {
|
|
||||||
return event;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEvent(Event event) {
|
|
||||||
this.event = event;
|
|
||||||
}
|
|
||||||
|
|
||||||
public RegisteredListener getRegisteredListener() {
|
|
||||||
return registeredListener;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRegisteredListener(RegisteredListener registeredListener) {
|
|
||||||
this.registeredListener = registeredListener;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
package gg.pufferfish.pufferfish.simd;
|
|
||||||
|
|
||||||
import jdk.incubator.vector.FloatVector;
|
|
||||||
import jdk.incubator.vector.IntVector;
|
|
||||||
import jdk.incubator.vector.VectorSpecies;
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Basically, java is annoying and we have to push this out to its own class.
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
public class SIMDChecker {
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static boolean canEnable(Logger logger) {
|
|
||||||
try {
|
|
||||||
SIMDDetection.testRun = true;
|
|
||||||
|
|
||||||
VectorSpecies<Integer> ISPEC = IntVector.SPECIES_PREFERRED;
|
|
||||||
VectorSpecies<Float> FSPEC = FloatVector.SPECIES_PREFERRED;
|
|
||||||
|
|
||||||
logger.info("Max SIMD vector size on this system is {} bits (int)", ISPEC.vectorBitSize());
|
|
||||||
logger.info("Max SIMD vector size on this system is " + FSPEC.vectorBitSize() + " bits (float)");
|
|
||||||
|
|
||||||
if (ISPEC.elementSize() < 2 || FSPEC.elementSize() < 2) {
|
|
||||||
logger.warn("SIMD is not properly supported on this system!");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
} catch (NoClassDefFoundError | Exception ignored) {} // Basically, we don't do anything. This lets us detect if it's not functional and disable it.
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
package gg.pufferfish.pufferfish.simd;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public class SIMDDetection {
|
|
||||||
|
|
||||||
public static boolean isEnabled = false;
|
|
||||||
public static boolean testRun = false;
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static boolean canEnable(Logger logger) {
|
|
||||||
try {
|
|
||||||
return SIMDChecker.canEnable(logger);
|
|
||||||
} catch (NoClassDefFoundError | Exception ignored) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static int getJavaVersion() {
|
|
||||||
// https://stackoverflow.com/a/2591122
|
|
||||||
String version = System.getProperty("java.version");
|
|
||||||
if(version.startsWith("1.")) {
|
|
||||||
version = version.substring(2, 3);
|
|
||||||
} else {
|
|
||||||
int dot = version.indexOf(".");
|
|
||||||
if(dot != -1) { version = version.substring(0, dot); }
|
|
||||||
}
|
|
||||||
version = version.split("-")[0]; // Azul is stupid
|
|
||||||
return Integer.parseInt(version);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
package gg.pufferfish.pufferfish.simd;
|
|
||||||
|
|
||||||
import jdk.incubator.vector.FloatVector;
|
|
||||||
import jdk.incubator.vector.IntVector;
|
|
||||||
import jdk.incubator.vector.VectorMask;
|
|
||||||
import jdk.incubator.vector.VectorSpecies;
|
|
||||||
import org.bukkit.map.MapPalette;
|
|
||||||
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public class VectorMapPalette {
|
|
||||||
|
|
||||||
private static final VectorSpecies<Integer> I_SPEC = IntVector.SPECIES_PREFERRED;
|
|
||||||
private static final VectorSpecies<Float> F_SPEC = FloatVector.SPECIES_PREFERRED;
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static void matchColorVectorized(int[] in, byte[] out) {
|
|
||||||
int speciesLength = I_SPEC.length();
|
|
||||||
int i;
|
|
||||||
for (i = 0; i < in.length - speciesLength; i += speciesLength) {
|
|
||||||
float[] redsArr = new float[speciesLength];
|
|
||||||
float[] bluesArr = new float[speciesLength];
|
|
||||||
float[] greensArr = new float[speciesLength];
|
|
||||||
int[] alphasArr = new int[speciesLength];
|
|
||||||
|
|
||||||
for (int j = 0; j < speciesLength; j++) {
|
|
||||||
alphasArr[j] = (in[i + j] >> 24) & 0xFF;
|
|
||||||
redsArr[j] = (in[i + j] >> 16) & 0xFF;
|
|
||||||
greensArr[j] = (in[i + j] >> 8) & 0xFF;
|
|
||||||
bluesArr[j] = (in[i + j] >> 0) & 0xFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
IntVector alphas = IntVector.fromArray(I_SPEC, alphasArr, 0);
|
|
||||||
FloatVector reds = FloatVector.fromArray(F_SPEC, redsArr, 0);
|
|
||||||
FloatVector greens = FloatVector.fromArray(F_SPEC, greensArr, 0);
|
|
||||||
FloatVector blues = FloatVector.fromArray(F_SPEC, bluesArr, 0);
|
|
||||||
IntVector resultIndex = IntVector.zero(I_SPEC);
|
|
||||||
VectorMask<Integer> modificationMask = VectorMask.fromLong(I_SPEC, 0xffffffff);
|
|
||||||
|
|
||||||
modificationMask = modificationMask.and(alphas.lt(128).not());
|
|
||||||
FloatVector bestDistances = FloatVector.broadcast(F_SPEC, Float.MAX_VALUE);
|
|
||||||
|
|
||||||
for (int c = 4; c < MapPalette.colors.length; c++) {
|
|
||||||
// We're using 32-bit floats here because it's 2x faster and nobody will know the difference.
|
|
||||||
// For correctness, the original algorithm uses 64-bit floats instead. Completely unnecessary.
|
|
||||||
FloatVector compReds = FloatVector.broadcast(F_SPEC, MapPalette.colors[c].getRed());
|
|
||||||
FloatVector compGreens = FloatVector.broadcast(F_SPEC, MapPalette.colors[c].getGreen());
|
|
||||||
FloatVector compBlues = FloatVector.broadcast(F_SPEC, MapPalette.colors[c].getBlue());
|
|
||||||
|
|
||||||
FloatVector rMean = reds.add(compReds).div(2.0f);
|
|
||||||
FloatVector rDiff = reds.sub(compReds);
|
|
||||||
FloatVector gDiff = greens.sub(compGreens);
|
|
||||||
FloatVector bDiff = blues.sub(compBlues);
|
|
||||||
|
|
||||||
FloatVector weightR = rMean.div(256.0f).add(2);
|
|
||||||
FloatVector weightG = FloatVector.broadcast(F_SPEC, 4.0f);
|
|
||||||
FloatVector weightB = FloatVector.broadcast(F_SPEC, 255.0f).sub(rMean).div(256.0f).add(2.0f);
|
|
||||||
|
|
||||||
FloatVector distance = weightR.mul(rDiff).mul(rDiff).add(weightG.mul(gDiff).mul(gDiff)).add(weightB.mul(bDiff).mul(bDiff));
|
|
||||||
|
|
||||||
// Now we compare to the best distance we've found.
|
|
||||||
// This mask contains a "1" if better, and a "0" otherwise.
|
|
||||||
VectorMask<Float> bestDistanceMask = distance.lt(bestDistances);
|
|
||||||
bestDistances = bestDistances.blend(distance, bestDistanceMask); // Update the best distances
|
|
||||||
|
|
||||||
// Update the result array
|
|
||||||
// We also AND with the modification mask because we don't want to interfere if the alpha value isn't large enough.
|
|
||||||
resultIndex = resultIndex.blend(c, bestDistanceMask.cast(I_SPEC).and(modificationMask)); // Update the results
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int j = 0; j < speciesLength; j++) {
|
|
||||||
int index = resultIndex.lane(j);
|
|
||||||
out[i + j] = (byte) (index < 128 ? index : -129 + (index - 127));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// For the final ones, fall back to the regular method
|
|
||||||
for (; i < in.length; i++) {
|
|
||||||
out[i] = MapPalette.matchColor(new Color(in[i], true));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
package me.earthme.luminol.api;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A simple package of folia's tick region state.It linked to the RegionStats of the nms part so that</br>
|
|
||||||
* You could call these methods to get the status of this tick region</br>
|
|
||||||
*/
|
|
||||||
public interface RegionStats {
|
|
||||||
/**
|
|
||||||
* Get the entity count in this tick region
|
|
||||||
* @return the entity count
|
|
||||||
*/
|
|
||||||
int getEntityCount();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the player count in this tick region
|
|
||||||
* @return the player count
|
|
||||||
*/
|
|
||||||
int getPlayerCount();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the chunk count in this tick region
|
|
||||||
* @return the chunk count
|
|
||||||
*/
|
|
||||||
int getChunkCount();
|
|
||||||
}
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
package me.earthme.luminol.api;
|
|
||||||
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.World;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A mirror of folia's ThreadedRegion</br>
|
|
||||||
* Including some handy methods to get the information of the tick region</br>
|
|
||||||
* Note: You should call these methods inside this tick region's thread context
|
|
||||||
*/
|
|
||||||
public interface ThreadedRegion {
|
|
||||||
/**
|
|
||||||
* Get the center chunk pos of this tick region</br>
|
|
||||||
* Note:</br>
|
|
||||||
* 1.Global region will return a null value(But we don't finish the global region yet()</br>
|
|
||||||
* 2.You should call these methods inside this tick region's thread context
|
|
||||||
* @return The center chunk pos
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
Location getCenterChunkPos();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the dead section percent of this tick region
|
|
||||||
* Note: </br>
|
|
||||||
* 1.Dead percent is mean the percent of the unloaded chunk count of this tick region, which is also used for determine
|
|
||||||
* that the tick region should or not check for splitting</br>
|
|
||||||
* 2.You should call these methods inside this tick region's thread context
|
|
||||||
* @return The dead section percent
|
|
||||||
*/
|
|
||||||
double getDeadSectionPercent();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the tick region data of this tick region</br>
|
|
||||||
* Note:</br>
|
|
||||||
* 1.You should call this method inside this tick region's thread context</br>
|
|
||||||
* 2.You should call these methods inside this tick region's thread context
|
|
||||||
* @return The tick region data
|
|
||||||
*/
|
|
||||||
TickRegionData getTickRegionData();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the world of this tick region</br>
|
|
||||||
* Note: Global region will return a null value too
|
|
||||||
* @return The world of this tick region
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
World getWorld();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the id of the tick region</br>
|
|
||||||
* @return The id of the tick region
|
|
||||||
*/
|
|
||||||
long getId();
|
|
||||||
}
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
package me.earthme.luminol.api;
|
|
||||||
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
import java.util.Collection;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A mirror of folia's ThreadedRegionizer
|
|
||||||
*/
|
|
||||||
public interface ThreadedRegionizer {
|
|
||||||
/**
|
|
||||||
* Get all the tick regions
|
|
||||||
* @return Temporary copied collection of all tick regions
|
|
||||||
*/
|
|
||||||
Collection<ThreadedRegion> getAllRegions();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the tick region at the given chunk coordinates
|
|
||||||
* @param chunkX Chunk X
|
|
||||||
* @param chunkZ Chunk Z
|
|
||||||
* @return The tick region at the given chunk coordinates
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
ThreadedRegion getAtSynchronized(int chunkX, int chunkZ);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the tick region at the given chunk coordinates
|
|
||||||
* @param chunkX Chunk X
|
|
||||||
* @param chunkZ Chunk Z
|
|
||||||
* @return The tick region at the given chunk coordinates
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
ThreadedRegion getAtUnSynchronized(int chunkX, int chunkZ);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the tick region at the given location
|
|
||||||
* @param pos The location
|
|
||||||
* @return The tick region at the given location
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
default ThreadedRegion getAtSynchronized(@NotNull Location pos) {
|
|
||||||
return this.getAtSynchronized(pos.getBlockX() >> 4, pos.getBlockZ() >> 4);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the tick region at the given location
|
|
||||||
* @param pos The location
|
|
||||||
* @return The tick region at the given location
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
default ThreadedRegion getAtUnSynchronized(@NotNull Location pos) {
|
|
||||||
return this.getAtUnSynchronized(pos.getBlockX() >> 4, pos.getBlockZ() >> 4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
package me.earthme.luminol.api;
|
|
||||||
|
|
||||||
import org.bukkit.World;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A mirror of folia's tick region data
|
|
||||||
*/
|
|
||||||
public interface TickRegionData {
|
|
||||||
/**
|
|
||||||
* Get the world it's currently holding
|
|
||||||
* @return the world
|
|
||||||
*/
|
|
||||||
World getWorld();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the current tick count
|
|
||||||
* @return the current tick count
|
|
||||||
*/
|
|
||||||
long getCurrentTickCount();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the region stats
|
|
||||||
* @return the region stats
|
|
||||||
*/
|
|
||||||
RegionStats getRegionStats();
|
|
||||||
}
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
package me.earthme.luminol.api.entity;
|
|
||||||
|
|
||||||
import org.apache.commons.lang3.Validate;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.entity.Entity;
|
|
||||||
import org.bukkit.event.Cancellable;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.HandlerList;
|
|
||||||
import org.bukkit.event.player.PlayerTeleportEvent;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A simple event fired when a teleportAsync was called
|
|
||||||
* @see org.bukkit.entity.Entity#teleportAsync(org.bukkit.Location, org.bukkit.event.player.PlayerTeleportEvent.TeleportCause)
|
|
||||||
* @see org.bukkit.entity.Entity#teleportAsync(org.bukkit.Location)
|
|
||||||
* (Also fired when teleportAsync called from nms)
|
|
||||||
*/
|
|
||||||
public class EntityTeleportAsyncEvent extends Event {
|
|
||||||
private static final HandlerList HANDLERS = new HandlerList();
|
|
||||||
|
|
||||||
private final Entity entity;
|
|
||||||
private final PlayerTeleportEvent.TeleportCause teleportCause;
|
|
||||||
private final Location destination;
|
|
||||||
|
|
||||||
public EntityTeleportAsyncEvent(Entity entity, PlayerTeleportEvent.TeleportCause teleportCause, Location destination) {
|
|
||||||
Validate.notNull(entity, "entity cannot be a null value!");
|
|
||||||
Validate.notNull(teleportCause, "teleportCause cannot be a null value!");
|
|
||||||
Validate.notNull(destination, "destination cannot be a null value!");
|
|
||||||
|
|
||||||
this.entity = entity;
|
|
||||||
this.teleportCause = teleportCause;
|
|
||||||
this.destination = destination;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the entity is about to be teleported
|
|
||||||
* @return that entity
|
|
||||||
*/
|
|
||||||
public @NotNull Entity getEntity() {
|
|
||||||
return this.entity;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the cause of the teleport
|
|
||||||
* @return the cause
|
|
||||||
*/
|
|
||||||
public @NotNull PlayerTeleportEvent.TeleportCause getTeleportCause() {
|
|
||||||
return this.teleportCause;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the destination of the teleport
|
|
||||||
* @return the destination
|
|
||||||
*/
|
|
||||||
public @NotNull Location getDestination() {
|
|
||||||
return this.destination;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @NotNull HandlerList getHandlers() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
package me.earthme.luminol.api.entity;
|
|
||||||
|
|
||||||
import org.apache.commons.lang3.Validate;
|
|
||||||
import org.bukkit.entity.Entity;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.HandlerList;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A simple event created for missing teleport events api of folia
|
|
||||||
* This event is fired when the entity portal process has been done
|
|
||||||
*/
|
|
||||||
public class PostEntityPortalEvent extends Event {
|
|
||||||
private static final HandlerList HANDLER_LIST = new HandlerList();
|
|
||||||
|
|
||||||
private final Entity teleportedEntity;
|
|
||||||
|
|
||||||
public PostEntityPortalEvent(Entity teleportedEntity) {
|
|
||||||
Validate.notNull(teleportedEntity, "teleportedEntity cannot be null!");
|
|
||||||
|
|
||||||
this.teleportedEntity = teleportedEntity;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the entity which was teleported
|
|
||||||
* @return the entity which was teleported
|
|
||||||
*/
|
|
||||||
public Entity getTeleportedEntity() {
|
|
||||||
return this.teleportedEntity;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @NotNull HandlerList getHandlers() {
|
|
||||||
return HANDLER_LIST;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return HANDLER_LIST;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
package me.earthme.luminol.api.entity;
|
|
||||||
|
|
||||||
import org.apache.commons.lang3.Validate;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.World;
|
|
||||||
import org.bukkit.entity.Entity;
|
|
||||||
import org.bukkit.event.Cancellable;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.HandlerList;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A simple event created for missing teleport events api of folia
|
|
||||||
* This event will be fired when a portal teleportation is about to happen
|
|
||||||
*/
|
|
||||||
public class PreEntityPortalEvent extends Event implements Cancellable {
|
|
||||||
private static final HandlerList HANDLERS = new HandlerList();
|
|
||||||
|
|
||||||
private final Entity entity;
|
|
||||||
private final Location portalPos;
|
|
||||||
private final World destination;
|
|
||||||
|
|
||||||
private boolean cancelled = false;
|
|
||||||
|
|
||||||
public PreEntityPortalEvent(Entity entity, Location portalPos, World destination) {
|
|
||||||
Validate.notNull(entity, "entity cannot be null!");
|
|
||||||
Validate.notNull(portalPos, "portalPos cannot be null!");
|
|
||||||
Validate.notNull(destination, "destination cannot be null!");
|
|
||||||
|
|
||||||
this.entity = entity;
|
|
||||||
this.portalPos = portalPos;
|
|
||||||
this.destination = destination;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the entity that is about to teleport
|
|
||||||
* @return the entity
|
|
||||||
*/
|
|
||||||
public @NotNull Entity getEntity() {
|
|
||||||
return this.entity;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the location of the portal
|
|
||||||
* @return the portal location
|
|
||||||
*/
|
|
||||||
public @NotNull Location getPortalPos() {
|
|
||||||
return this.portalPos;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the destination world
|
|
||||||
* @return the destination world
|
|
||||||
*/
|
|
||||||
public @NotNull World getDestination() {
|
|
||||||
return this.destination;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isCancelled() {
|
|
||||||
return this.cancelled;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setCancelled(boolean cancel) {
|
|
||||||
this.cancelled = cancel;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @NotNull HandlerList getHandlers() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
package me.earthme.luminol.api.entity.player;
|
|
||||||
|
|
||||||
import org.apache.commons.lang3.Validate;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.HandlerList;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A simple event fired when the respawn process of player is done
|
|
||||||
*/
|
|
||||||
public class PostPlayerRespawnEvent extends Event {
|
|
||||||
private static final HandlerList HANDLERS = new HandlerList();
|
|
||||||
|
|
||||||
private final Player player;
|
|
||||||
|
|
||||||
public PostPlayerRespawnEvent(Player player) {
|
|
||||||
Validate.notNull(player, "Player cannot be a null value!");
|
|
||||||
|
|
||||||
this.player = player;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the respawned player
|
|
||||||
* @return the player
|
|
||||||
*/
|
|
||||||
public @NotNull Player getPlayer() {
|
|
||||||
return this.player;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @NotNull HandlerList getHandlers() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
package me.earthme.luminol.api.portal;
|
|
||||||
|
|
||||||
import org.bukkit.event.Cancellable;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.HandlerList;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A event fired when an end platform is created.
|
|
||||||
*/
|
|
||||||
public class EndPlatformCreateEvent extends Event implements Cancellable {
|
|
||||||
private static final HandlerList HANDLERS = new HandlerList();
|
|
||||||
|
|
||||||
private boolean cancelled = false;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isCancelled() {
|
|
||||||
return this.cancelled;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setCancelled(boolean cancel) {
|
|
||||||
this.cancelled = cancel;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @NotNull HandlerList getHandlers() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
package me.earthme.luminol.api.portal;
|
|
||||||
|
|
||||||
import org.apache.commons.lang3.Validate;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.HandlerList;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A event fired when the portal process started locating the destination position
|
|
||||||
* Notice: If you changed the destination to an another position in end teleportation.The end platform won't create under the entity and won't create
|
|
||||||
* if the position is out of current tick region
|
|
||||||
*/
|
|
||||||
public class PortalLocateEvent extends Event {
|
|
||||||
private static final HandlerList HANDLERS = new HandlerList();
|
|
||||||
|
|
||||||
private final Location original;
|
|
||||||
private final Location destination;
|
|
||||||
|
|
||||||
public PortalLocateEvent(Location original, Location destination) {
|
|
||||||
Validate.notNull(original, "original couldn't be null!");
|
|
||||||
Validate.notNull(destination, "destination couldn't be null!");
|
|
||||||
|
|
||||||
this.original = original;
|
|
||||||
this.destination = destination;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the destination position of this teleportation
|
|
||||||
* @return the destination position
|
|
||||||
*/
|
|
||||||
public Location getDestination() {
|
|
||||||
return this.destination;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the original portal position of this teleportation
|
|
||||||
* @return the original portal position
|
|
||||||
*/
|
|
||||||
public Location getOriginal() {
|
|
||||||
return this.original;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public @NotNull HandlerList getHandlers() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
public static HandlerList getHandlerList() {
|
|
||||||
return HANDLERS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +1,17 @@
|
|||||||
--- a/folia-server/build.gradle.kts
|
--- a/folia-server/build.gradle.kts
|
||||||
+++ b/folia-server/build.gradle.kts
|
+++ b/folia-server/build.gradle.kts
|
||||||
@@ -29,6 +_,7 @@
|
@@ -20,8 +_,9 @@
|
||||||
//}
|
minecraftVersion = providers.gradleProperty("mcVersion")
|
||||||
|
// macheOldPath = file("F:\\Projects\\PaperTooling\\mache\\versions\\1.21.4\\src\\main\\java")
|
||||||
|
// gitFilePatches = true
|
||||||
|
-
|
||||||
|
+
|
||||||
val fork = forks.register("folia") {
|
val fork = forks.register("folia") {
|
||||||
+ rootDirectory = upstreamsDirectory().map { it.dir("folia") }
|
+ rootDirectory = upstreamsDirectory().map { it.dir("folia") }
|
||||||
upstream.patchDir("paperServer") {
|
upstream.patchDir("paperServer") {
|
||||||
upstreamPath = "paper-server"
|
upstreamPath = "paper-server"
|
||||||
excludes = setOf("src/minecraft", "patches", "build.gradle.kts")
|
excludes = setOf("src/minecraft", "patches", "build.gradle.kts")
|
||||||
@@ -37,7 +_,23 @@
|
@@ -30,7 +_,23 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -32,10 +35,10 @@
|
|||||||
+ activeFork = luminol
|
+ activeFork = luminol
|
||||||
|
|
||||||
spigot {
|
spigot {
|
||||||
buildDataRef = "702e1a0a5072b2c4082371d5228cb30525687efc"
|
buildDataRef = "3edaf46ec1eed4115ce1b18d2846cded42577e42"
|
||||||
@@ -123,10 +_,14 @@
|
@@ -116,10 +_,14 @@
|
||||||
main {
|
main {
|
||||||
java { srcDir("../paper-server/src/main/java"); srcDir("../paper-server/src/generated/java") }
|
java { srcDir("../paper-server/src/main/java") }
|
||||||
resources { srcDir("../paper-server/src/main/resources") }
|
resources { srcDir("../paper-server/src/main/resources") }
|
||||||
+ java { srcDir("../folia-server/src/main/java") }
|
+ java { srcDir("../folia-server/src/main/java") }
|
||||||
+ resources { srcDir("../folia-server/src/main/resources") }
|
+ resources { srcDir("../folia-server/src/main/resources") }
|
||||||
@@ -47,14 +50,14 @@
|
|||||||
+ resources { srcDir("../folia-server/src/test/resources") }
|
+ resources { srcDir("../folia-server/src/test/resources") }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val log4jPlugins = sourceSets.create("log4jPlugins") {
|
|
||||||
@@ -153,12 +_,20 @@
|
@@ -143,7 +_,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
- implementation(project(":folia-api"))
|
- implementation(project(":folia-api"))
|
||||||
+ implementation(project(":luminol-api")) // Luminol
|
+ implementation(project(":luminol-api")) // Luminol
|
||||||
+ implementation("com.electronwill.night-config:toml:3.8.2") // Luminol - Night config
|
+ implementation("com.electronwill.night-config:toml:3.6.6") // Luminol - Night config
|
||||||
+ // Abomination start
|
+ // Abomination start
|
||||||
+ implementation("com.github.luben:zstd-jni:1.5.4-1")
|
+ implementation("com.github.luben:zstd-jni:1.5.4-1")
|
||||||
+ implementation("org.lz4:lz4-java:1.8.0")
|
+ implementation("org.lz4:lz4-java:1.8.0")
|
||||||
@@ -64,14 +67,8 @@
|
|||||||
implementation("ca.spottedleaf:concurrentutil:0.0.3")
|
implementation("ca.spottedleaf:concurrentutil:0.0.3")
|
||||||
implementation("org.jline:jline-terminal-ffm:3.27.1") // use ffm on java 22+
|
implementation("org.jline:jline-terminal-ffm:3.27.1") // use ffm on java 22+
|
||||||
implementation("org.jline:jline-terminal-jni:3.27.1") // fall back to jni on java 21
|
implementation("org.jline:jline-terminal-jni:3.27.1") // fall back to jni on java 21
|
||||||
implementation("net.minecrell:terminalconsoleappender:1.3.0")
|
@@ -201,26 +_,33 @@
|
||||||
implementation("net.kyori:adventure-text-serializer-ansi:4.21.0") // Keep in sync with adventureVersion from Paper-API build file
|
implementation("me.lucko:spark-paper:1.10.119-20241121.092015-1")
|
||||||
+ implementation("net.openhft:affinity:3.23.3") // Luminol
|
|
||||||
runtimeConfiguration(sourceSets.main.map { it.runtimeClasspath })
|
|
||||||
|
|
||||||
/*
|
|
||||||
@@ -217,26 +_,33 @@
|
|
||||||
implementation("me.lucko:spark-paper:1.10.133-20250413.112336-1")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
+// Pufferfish Start
|
+// Pufferfish Start
|
||||||
@@ -110,3 +107,14 @@
|
|||||||
"Build-Number" to (build ?: ""),
|
"Build-Number" to (build ?: ""),
|
||||||
"Build-Time" to buildTime.toString(),
|
"Build-Time" to buildTime.toString(),
|
||||||
"Git-Branch" to gitBranch,
|
"Git-Branch" to gitBranch,
|
||||||
|
@@ -351,3 +_,10 @@
|
||||||
|
classpath(tasks.createReobfPaperclipJar.flatMap { it.outputZip })
|
||||||
|
mainClass.set(null as String?)
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+// Pufferfish Start
|
||||||
|
+tasks.withType<JavaCompile> {
|
||||||
|
+ val compilerArgs = options.compilerArgs
|
||||||
|
+ compilerArgs.add("--add-modules=jdk.incubator.vector")
|
||||||
|
+}
|
||||||
|
+// Pufferfish End
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
|
Date: Sat, 22 Mar 2025 17:36:17 +0800
|
||||||
|
Subject: [PATCH] Luminol config base
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/server/Main.java b/net/minecraft/server/Main.java
|
||||||
|
index 9aa664537cc37e44db46d5a2a64ae3116938c681..8d6a6534a134e99e5ee2652d7b0c858d538e69bd 100644
|
||||||
|
--- a/net/minecraft/server/Main.java
|
||||||
|
+++ b/net/minecraft/server/Main.java
|
||||||
|
@@ -108,6 +108,7 @@ public class Main {
|
||||||
|
JvmProfiler.INSTANCE.start(Environment.SERVER);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ me.earthme.luminol.config.LuminolConfig.preLoadConfig(); // Luminol - Luminol config
|
||||||
|
io.papermc.paper.plugin.PluginInitializerManager.load(optionSet); // Paper
|
||||||
|
Bootstrap.bootStrap();
|
||||||
|
Bootstrap.validate();
|
||||||
|
diff --git a/net/minecraft/server/dedicated/DedicatedServer.java b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
|
index e3b7184e20bda4983ee1fc5463d91ca0cdd8ec1f..375f4a59333ee1d75fb1acb8c2cbada7866bd48e 100644
|
||||||
|
--- a/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
|
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
|
@@ -212,6 +212,8 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
||||||
|
this.paperConfigurations.initializeGlobalConfiguration(this.registryAccess());
|
||||||
|
this.paperConfigurations.initializeWorldDefaultsConfiguration(this.registryAccess());
|
||||||
|
// Paper end - initialize global and world-defaults configuration
|
||||||
|
+ me.earthme.luminol.config.LuminolConfig.finalizeLoadConfig(); //Luminol - load config file
|
||||||
|
+ me.earthme.luminol.config.LuminolConfig.setupLatch(); //Luminol - load config file
|
||||||
|
this.server.spark.enableEarlyIfRequested(); // Paper - spark
|
||||||
|
// Paper start - fix converting txt to json file; convert old users earlier after PlayerList creation but before file load/save
|
||||||
|
if (this.convertOldUsers()) {
|
||||||
@@ -5,10 +5,10 @@ Subject: [PATCH] Add config for server mod name
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
||||||
index 02676eb449bb98bc959717c72356bc980d4662f8..db435869dd2a2dfe0c36c62e46e5389170cfb0cd 100644
|
index be82a6b43b1f0c644c53d08a6e16bc2876c8c1e0..9261d83f28af5e057d060741ab900f8cde8f992b 100644
|
||||||
--- a/net/minecraft/server/MinecraftServer.java
|
--- a/net/minecraft/server/MinecraftServer.java
|
||||||
+++ b/net/minecraft/server/MinecraftServer.java
|
+++ b/net/minecraft/server/MinecraftServer.java
|
||||||
@@ -1965,7 +1965,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1968,7 +1968,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
|
|
||||||
@DontObfuscate
|
@DontObfuscate
|
||||||
public String getServerModName() {
|
public String getServerModName() {
|
||||||
@@ -5,11 +5,11 @@ Subject: [PATCH] Add config for unsafe teleportation
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/item/FallingBlockEntity.java b/net/minecraft/world/entity/item/FallingBlockEntity.java
|
diff --git a/net/minecraft/world/entity/item/FallingBlockEntity.java b/net/minecraft/world/entity/item/FallingBlockEntity.java
|
||||||
index e77276b1dccebd5b768c3cdbe5e0206da32b91ff..95f3bcf2f3093e66602e4323708ac349d58db4c1 100644
|
index 1fa5e6a12b943e889bde566038a632a6adcf319e..c1f6a3b3a8fa990b8e9b052341ab31bde7c04e7a 100644
|
||||||
--- a/net/minecraft/world/entity/item/FallingBlockEntity.java
|
--- a/net/minecraft/world/entity/item/FallingBlockEntity.java
|
||||||
+++ b/net/minecraft/world/entity/item/FallingBlockEntity.java
|
+++ b/net/minecraft/world/entity/item/FallingBlockEntity.java
|
||||||
@@ -67,7 +67,7 @@ public class FallingBlockEntity extends Entity {
|
@@ -65,7 +65,7 @@ public class FallingBlockEntity extends Entity {
|
||||||
public float fallDamagePerDistance = 0.0F;
|
public float fallDamagePerDistance;
|
||||||
@Nullable
|
@Nullable
|
||||||
public CompoundTag blockData;
|
public CompoundTag blockData;
|
||||||
- public boolean forceTickAfterTeleportToDuplicate;
|
- public boolean forceTickAfterTeleportToDuplicate;
|
||||||
@@ -17,7 +17,7 @@ index e77276b1dccebd5b768c3cdbe5e0206da32b91ff..95f3bcf2f3093e66602e4323708ac349
|
|||||||
protected static final EntityDataAccessor<BlockPos> DATA_START_POS = SynchedEntityData.defineId(FallingBlockEntity.class, EntityDataSerializers.BLOCK_POS);
|
protected static final EntityDataAccessor<BlockPos> DATA_START_POS = SynchedEntityData.defineId(FallingBlockEntity.class, EntityDataSerializers.BLOCK_POS);
|
||||||
public boolean autoExpire = true; // Paper - Expand FallingBlock API
|
public boolean autoExpire = true; // Paper - Expand FallingBlock API
|
||||||
|
|
||||||
@@ -382,7 +382,7 @@ public class FallingBlockEntity extends Entity {
|
@@ -401,7 +401,7 @@ public class FallingBlockEntity extends Entity {
|
||||||
ResourceKey<Level> resourceKey1 = this.level().dimension();
|
ResourceKey<Level> resourceKey1 = this.level().dimension();
|
||||||
boolean flag = (resourceKey1 == Level.END || resourceKey == Level.END) && resourceKey1 != resourceKey;
|
boolean flag = (resourceKey1 == Level.END || resourceKey == Level.END) && resourceKey1 != resourceKey;
|
||||||
Entity entity = super.teleport(teleportTransition);
|
Entity entity = super.teleport(teleportTransition);
|
||||||
@@ -27,10 +27,10 @@ index e77276b1dccebd5b768c3cdbe5e0206da32b91ff..95f3bcf2f3093e66602e4323708ac349
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/level/block/EndPortalBlock.java b/net/minecraft/world/level/block/EndPortalBlock.java
|
diff --git a/net/minecraft/world/level/block/EndPortalBlock.java b/net/minecraft/world/level/block/EndPortalBlock.java
|
||||||
index 685c0fb071efd8e3c4e81cb89e93d8f7707773c1..eaf46427e07edc59b6cffd3fec76489fe65f8f14 100644
|
index 554d75ac1374d7d93977a10e06fcf51259830c97..17c1ce4397c5953bb92aaa3b56c179b7c24a0736 100644
|
||||||
--- a/net/minecraft/world/level/block/EndPortalBlock.java
|
--- a/net/minecraft/world/level/block/EndPortalBlock.java
|
||||||
+++ b/net/minecraft/world/level/block/EndPortalBlock.java
|
+++ b/net/minecraft/world/level/block/EndPortalBlock.java
|
||||||
@@ -68,6 +68,11 @@ public class EndPortalBlock extends BaseEntityBlock implements Portal {
|
@@ -67,6 +67,11 @@ public class EndPortalBlock extends BaseEntityBlock implements Portal {
|
||||||
if (level.paperConfig().misc.disableEndCredits) {serverPlayer.seenCredits = true; return;} // Paper - Option to disable end credits
|
if (level.paperConfig().misc.disableEndCredits) {serverPlayer.seenCredits = true; return;} // Paper - Option to disable end credits
|
||||||
serverPlayer.showEndCredits();
|
serverPlayer.showEndCredits();
|
||||||
} else {
|
} else {
|
||||||
@@ -5,13 +5,13 @@ Subject: [PATCH] Add config for vanilla random
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
||||||
index 8357e4a3f381014b976067d8ed06fc073d23db44..b5838a0320c729778f27f0d6a623eed4ef7c3a52 100644
|
index 2cd2ce1060f567be6c72b7bc9d02651ec7166203..f69fd922fa67cd366dbb93c34fa15659ba76c844 100644
|
||||||
--- a/net/minecraft/world/entity/Entity.java
|
--- a/net/minecraft/world/entity/Entity.java
|
||||||
+++ b/net/minecraft/world/entity/Entity.java
|
+++ b/net/minecraft/world/entity/Entity.java
|
||||||
@@ -261,7 +261,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -255,7 +255,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
public double yOld;
|
|
||||||
public double zOld;
|
public double zOld;
|
||||||
public boolean noPhysics;
|
public boolean noPhysics;
|
||||||
|
private boolean wasOnFire;
|
||||||
- public final RandomSource random = SHARED_RANDOM; // Paper - Share random for entities to make them more random
|
- public final RandomSource random = SHARED_RANDOM; // Paper - Share random for entities to make them more random
|
||||||
+ public final RandomSource random = me.earthme.luminol.config.modules.fixes.VanillaRandomSourceConfig.useLegacyRandomSourceForPlayers ? RandomSource.create() : SHARED_RANDOM; // Paper - Share random for entities to make them more random // Luminol - Add config for vanilla random SHARED_RANDOM
|
+ public final RandomSource random = me.earthme.luminol.config.modules.fixes.VanillaRandomSourceConfig.useLegacyRandomSourceForPlayers ? RandomSource.create() : SHARED_RANDOM; // Paper - Share random for entities to make them more random // Luminol - Add config for vanilla random SHARED_RANDOM
|
||||||
public int tickCount;
|
public int tickCount;
|
||||||
@@ -5,33 +5,31 @@ Subject: [PATCH] Add tpsbar with chunkhot membar and regionbar
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java b/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java
|
diff --git a/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java b/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java
|
||||||
index bd3ce123652af11974be4cbf8d2e96f1b2ee0a68..5f26fd89704aa3fd9c37a1d68a7c4c65ce1e7a5d 100644
|
index 8d67b4629c69d3039b199aaad45533d1acde114e..f7bfeca4b11b9860241d5eb80b6df420868c7bea 100644
|
||||||
--- a/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java
|
--- a/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java
|
||||||
+++ b/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java
|
+++ b/ca/spottedleaf/moonrise/paper/util/BaseChunkSystemHooks.java
|
||||||
@@ -131,6 +131,7 @@ public abstract class BaseChunkSystemHooks implements ca.spottedleaf.moonrise.co
|
@@ -136,6 +136,7 @@ public abstract class BaseChunkSystemHooks implements ca.spottedleaf.moonrise.co
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onChunkNotTicking(final LevelChunk chunk, final ChunkHolder holder) {
|
public void onChunkNotTicking(final LevelChunk chunk, final ChunkHolder holder) {
|
||||||
+ chunk.getChunkHot().clear(); // KioCG
|
+ chunk.getChunkHot().clear(); // KioCG
|
||||||
chunk.getLevel().getCurrentWorldData().removeTickingChunk(chunk); // Folia - region threading
|
chunk.getLevel().getCurrentWorldData().removeTickingChunk(chunk.moonrise$getChunkAndHolder()); // Folia - region threading
|
||||||
|
((ca.spottedleaf.moonrise.patches.chunk_tick_iteration.ChunkTickServerLevel)(ServerLevel)chunk.getLevel()).moonrise$removeChunkForPlayerTicking(chunk); // Moonrise - chunk tick iteration
|
||||||
}
|
}
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
||||||
index b437132634f636f4c1d76c86146f377090b5fdb2..6fbdff0eeed6e37aaa7650708c7b0164795f8d0b 100644
|
index 9261d83f28af5e057d060741ab900f8cde8f992b..fc088edaa36e7e68ddd23c57e351ef3b31ed5ad8 100644
|
||||||
--- a/net/minecraft/server/MinecraftServer.java
|
--- a/net/minecraft/server/MinecraftServer.java
|
||||||
+++ b/net/minecraft/server/MinecraftServer.java
|
+++ b/net/minecraft/server/MinecraftServer.java
|
||||||
@@ -1663,7 +1663,46 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1666,7 +1666,44 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
// Folia end - region threading
|
// Folia end - region threading
|
||||||
//this.tickCount++; // Folia - region threading
|
//this.tickCount++; // Folia - region threading
|
||||||
//this.tickRateManager.tick(); // Folia - region threading
|
//this.tickRateManager.tick(); // Folia - region threading
|
||||||
+ // KioCG start - ChunkHot
|
+ // KioCG start - ChunkHot
|
||||||
+ final ca.spottedleaf.moonrise.common.list.IteratorSafeOrderedReferenceSet<net.minecraft.world.level.chunk.LevelChunk> chunks = new ca.spottedleaf.moonrise.common.list.IteratorSafeOrderedReferenceSet<>();
|
+ final ca.spottedleaf.moonrise.common.list.IteratorSafeOrderedReferenceSet<net.minecraft.world.level.chunk.LevelChunk> chunks = new ca.spottedleaf.moonrise.common.list.IteratorSafeOrderedReferenceSet<>();
|
||||||
+ if (region != null){
|
+ if (region != null){
|
||||||
+ for (net.minecraft.world.level.chunk.LevelChunk chunk : region.world.getCurrentWorldData().getTickingChunks()) {
|
|
||||||
+ /* wait for rewrite - temporarily crash fix
|
|
||||||
+ for (net.minecraft.server.level.ServerChunkCache.ChunkAndHolder chunkAndHolder : region.world.getCurrentWorldData().getTickingChunks()){
|
+ for (net.minecraft.server.level.ServerChunkCache.ChunkAndHolder chunkAndHolder : region.world.getCurrentWorldData().getTickingChunks()){
|
||||||
+ final net.minecraft.world.level.chunk.LevelChunk chunk = chunkAndHolder.chunk();
|
+ final net.minecraft.world.level.chunk.LevelChunk chunk = chunkAndHolder.chunk();
|
||||||
+ */
|
+
|
||||||
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(region.world, chunk.locX, chunk.locZ)){
|
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(region.world, chunk.locX, chunk.locZ)){
|
||||||
+ continue;
|
+ continue;
|
||||||
+ }
|
+ }
|
||||||
@@ -68,10 +66,10 @@ index b437132634f636f4c1d76c86146f377090b5fdb2..6fbdff0eeed6e37aaa7650708c7b0164
|
|||||||
this.lastServerStatus = nanos;
|
this.lastServerStatus = nanos;
|
||||||
this.status = this.buildServerStatus();
|
this.status = this.buildServerStatus();
|
||||||
diff --git a/net/minecraft/server/dedicated/DedicatedServer.java b/net/minecraft/server/dedicated/DedicatedServer.java
|
diff --git a/net/minecraft/server/dedicated/DedicatedServer.java b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
index e76599e92e4bf4f5b5d7176f4a0a2a854d10818a..20df6b46c420b25b598accb57b921055fb0c988b 100644
|
index 375f4a59333ee1d75fb1acb8c2cbada7866bd48e..3abe2881e8a80bd6c128e96b976deebe3ada4678 100644
|
||||||
--- a/net/minecraft/server/dedicated/DedicatedServer.java
|
--- a/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
|
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
@@ -724,6 +724,9 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
@@ -766,6 +766,9 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stopServer() {
|
public void stopServer() {
|
||||||
@@ -82,10 +80,10 @@ index e76599e92e4bf4f5b5d7176f4a0a2a854d10818a..20df6b46c420b25b598accb57b921055
|
|||||||
//Util.shutdownExecutors(); // Paper - Improved watchdog support; moved into super
|
//Util.shutdownExecutors(); // Paper - Improved watchdog support; moved into super
|
||||||
SkullBlockEntity.clear();
|
SkullBlockEntity.clear();
|
||||||
diff --git a/net/minecraft/server/level/ServerLevel.java b/net/minecraft/server/level/ServerLevel.java
|
diff --git a/net/minecraft/server/level/ServerLevel.java b/net/minecraft/server/level/ServerLevel.java
|
||||||
index 94fb1c99baefbdde91dc5fcf103683c7ffda6baf..b4fdbdba579fa7c7de4928c259b5ff16b0e83aeb 100644
|
index f2d2ddfd964bff914e41c0b4150fe1aad7866ebf..7defcd15c44601bfd2f7f55046038693264defee 100644
|
||||||
--- a/net/minecraft/server/level/ServerLevel.java
|
--- a/net/minecraft/server/level/ServerLevel.java
|
||||||
+++ b/net/minecraft/server/level/ServerLevel.java
|
+++ b/net/minecraft/server/level/ServerLevel.java
|
||||||
@@ -1342,6 +1342,8 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -1339,6 +1339,8 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
final int timerId = isActive ? entity.getType().tickTimerId : entity.getType().inactiveTickTimerId;
|
final int timerId = isActive ? entity.getType().tickTimerId : entity.getType().inactiveTickTimerId;
|
||||||
final ca.spottedleaf.leafprofiler.RegionizedProfiler.Handle profiler = io.papermc.paper.threadedregions.TickRegionScheduler.getProfiler();
|
final ca.spottedleaf.leafprofiler.RegionizedProfiler.Handle profiler = io.papermc.paper.threadedregions.TickRegionScheduler.getProfiler();
|
||||||
profiler.startTimer(timerId);
|
profiler.startTimer(timerId);
|
||||||
@@ -94,7 +92,7 @@ index 94fb1c99baefbdde91dc5fcf103683c7ffda6baf..b4fdbdba579fa7c7de4928c259b5ff16
|
|||||||
try {
|
try {
|
||||||
// Folia end - profiler
|
// Folia end - profiler
|
||||||
if (isActive) { // Paper - EAR 2
|
if (isActive) { // Paper - EAR 2
|
||||||
@@ -1359,6 +1361,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -1356,6 +1358,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
} else {entity.inactiveTick();} // Paper - EAR 2
|
} else {entity.inactiveTick();} // Paper - EAR 2
|
||||||
profilerFiller.pop();
|
profilerFiller.pop();
|
||||||
} finally { profiler.stopTimer(timerId); } // Folia - profiler
|
} finally { profiler.stopTimer(timerId); } // Folia - profiler
|
||||||
@@ -102,7 +100,7 @@ index 94fb1c99baefbdde91dc5fcf103683c7ffda6baf..b4fdbdba579fa7c7de4928c259b5ff16
|
|||||||
|
|
||||||
for (Entity entity1 : entity.getPassengers()) {
|
for (Entity entity1 : entity.getPassengers()) {
|
||||||
this.tickPassenger(entity, entity1, isActive); // Paper - EAR 2
|
this.tickPassenger(entity, entity1, isActive); // Paper - EAR 2
|
||||||
@@ -1378,6 +1381,8 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -1375,6 +1378,8 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
final int timerId = isActive ? passengerEntity.getType().tickTimerId : passengerEntity.getType().inactiveTickTimerId;
|
final int timerId = isActive ? passengerEntity.getType().tickTimerId : passengerEntity.getType().inactiveTickTimerId;
|
||||||
final ca.spottedleaf.leafprofiler.RegionizedProfiler.Handle profiler = io.papermc.paper.threadedregions.TickRegionScheduler.getProfiler();
|
final ca.spottedleaf.leafprofiler.RegionizedProfiler.Handle profiler = io.papermc.paper.threadedregions.TickRegionScheduler.getProfiler();
|
||||||
profiler.startTimer(timerId);
|
profiler.startTimer(timerId);
|
||||||
@@ -111,7 +109,7 @@ index 94fb1c99baefbdde91dc5fcf103683c7ffda6baf..b4fdbdba579fa7c7de4928c259b5ff16
|
|||||||
try {
|
try {
|
||||||
// Folia end - profiler
|
// Folia end - profiler
|
||||||
passengerEntity.setOldPosAndRot();
|
passengerEntity.setOldPosAndRot();
|
||||||
@@ -1412,6 +1417,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -1409,6 +1414,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
this.tickPassenger(passengerEntity, entity, isActive); // Paper - EAR 2
|
this.tickPassenger(passengerEntity, entity, isActive); // Paper - EAR 2
|
||||||
}
|
}
|
||||||
} finally { profiler.stopTimer(timerId); } // Folia - profiler
|
} finally { profiler.stopTimer(timerId); } // Folia - profiler
|
||||||
@@ -120,13 +118,13 @@ index 94fb1c99baefbdde91dc5fcf103683c7ffda6baf..b4fdbdba579fa7c7de4928c259b5ff16
|
|||||||
}
|
}
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/level/ServerPlayer.java b/net/minecraft/server/level/ServerPlayer.java
|
diff --git a/net/minecraft/server/level/ServerPlayer.java b/net/minecraft/server/level/ServerPlayer.java
|
||||||
index d2ab8110871ecf8af9d35f8b47f1d67888e15df3..ec4047312cf17f3ba91348ac8d71f747202bef87 100644
|
index dbf9231b1f01576906b90a3ddf0bf2cbbeb4590a..b17ace9118c94a756fa2901621c6b2b9bd9e5764 100644
|
||||||
--- a/net/minecraft/server/level/ServerPlayer.java
|
--- a/net/minecraft/server/level/ServerPlayer.java
|
||||||
+++ b/net/minecraft/server/level/ServerPlayer.java
|
+++ b/net/minecraft/server/level/ServerPlayer.java
|
||||||
@@ -420,7 +420,9 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
@@ -400,7 +400,9 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
||||||
public @Nullable com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent playerNaturallySpawnedEvent; // Paper - PlayerNaturallySpawnCreaturesEvent
|
public com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent playerNaturallySpawnedEvent; // Paper - PlayerNaturallySpawnCreaturesEvent
|
||||||
public @Nullable String clientBrandName = null; // Paper - Brand support
|
public @Nullable String clientBrandName = null; // Paper - Brand support
|
||||||
public @Nullable org.bukkit.event.player.PlayerQuitEvent.QuitReason quitReason = null; // Paper - Add API for quit reason; there are a lot of changes to do if we change all methods leading to the event
|
public org.bukkit.event.player.PlayerQuitEvent.QuitReason quitReason = null; // Paper - Add API for quit reason; there are a lot of changes to do if we change all methods leading to the event
|
||||||
-
|
-
|
||||||
+ public volatile boolean isTpsBarVisible = false; //Luminol - Tps bar
|
+ public volatile boolean isTpsBarVisible = false; //Luminol - Tps bar
|
||||||
+ public volatile boolean isMemBarVisible = false; //Luminol - Memory bar
|
+ public volatile boolean isMemBarVisible = false; //Luminol - Memory bar
|
||||||
@@ -134,10 +132,10 @@ index d2ab8110871ecf8af9d35f8b47f1d67888e15df3..ec4047312cf17f3ba91348ac8d71f747
|
|||||||
// Paper start - rewrite chunk system
|
// Paper start - rewrite chunk system
|
||||||
private ca.spottedleaf.moonrise.patches.chunk_system.player.RegionizedPlayerChunkLoader.PlayerChunkLoaderData chunkLoader;
|
private ca.spottedleaf.moonrise.patches.chunk_system.player.RegionizedPlayerChunkLoader.PlayerChunkLoaderData chunkLoader;
|
||||||
private final ca.spottedleaf.moonrise.patches.chunk_system.player.RegionizedPlayerChunkLoader.ViewDistanceHolder viewDistanceHolder = new ca.spottedleaf.moonrise.patches.chunk_system.player.RegionizedPlayerChunkLoader.ViewDistanceHolder();
|
private final ca.spottedleaf.moonrise.patches.chunk_system.player.RegionizedPlayerChunkLoader.ViewDistanceHolder viewDistanceHolder = new ca.spottedleaf.moonrise.patches.chunk_system.player.RegionizedPlayerChunkLoader.ViewDistanceHolder();
|
||||||
@@ -957,8 +959,35 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
@@ -1013,8 +1015,35 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
||||||
this.trackEnteredOrExitedLavaOnVehicle();
|
this.trackEnteredOrExitedLavaOnVehicle();
|
||||||
this.updatePlayerAttributes();
|
this.updatePlayerAttributes();
|
||||||
this.advancements.flushDirty(this, true);
|
this.advancements.flushDirty(this);
|
||||||
+
|
+
|
||||||
+ // KioCG start - ChunkHot
|
+ // KioCG start - ChunkHot
|
||||||
+ if (this.tickCount % 20 == 0){
|
+ if (this.tickCount % 20 == 0){
|
||||||
@@ -171,12 +169,12 @@ index d2ab8110871ecf8af9d35f8b47f1d67888e15df3..ec4047312cf17f3ba91348ac8d71f747
|
|||||||
AttributeInstance attribute = this.getAttribute(Attributes.BLOCK_INTERACTION_RANGE);
|
AttributeInstance attribute = this.getAttribute(Attributes.BLOCK_INTERACTION_RANGE);
|
||||||
if (attribute != null) {
|
if (attribute != null) {
|
||||||
diff --git a/net/minecraft/world/entity/AreaEffectCloud.java b/net/minecraft/world/entity/AreaEffectCloud.java
|
diff --git a/net/minecraft/world/entity/AreaEffectCloud.java b/net/minecraft/world/entity/AreaEffectCloud.java
|
||||||
index bfd904e468bbf2cc1a5b3353d3a69ad5087c81ae..116933975ac975bb5a801be81e1c0e9bd641f162 100644
|
index 23b342cc31c7e72ade0e1ccad86a9ccf34380f13..249cb7326c8e4012dcffdb6bbb7bfc1f1eeb7b33 100644
|
||||||
--- a/net/minecraft/world/entity/AreaEffectCloud.java
|
--- a/net/minecraft/world/entity/AreaEffectCloud.java
|
||||||
+++ b/net/minecraft/world/entity/AreaEffectCloud.java
|
+++ b/net/minecraft/world/entity/AreaEffectCloud.java
|
||||||
@@ -436,4 +436,11 @@ public class AreaEffectCloud extends Entity implements TraceableEntity {
|
@@ -415,4 +415,11 @@ public class AreaEffectCloud extends Entity implements TraceableEntity {
|
||||||
return super.applyImplicitComponent(component, value);
|
public final boolean hurtServer(ServerLevel level, DamageSource damageSource, float amount) {
|
||||||
}
|
return false;
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
+ // KioCG start
|
+ // KioCG start
|
||||||
@@ -187,18 +185,18 @@ index bfd904e468bbf2cc1a5b3353d3a69ad5087c81ae..116933975ac975bb5a801be81e1c0e9b
|
|||||||
+ // KioCG end
|
+ // KioCG end
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
||||||
index 99301832bbb90f4ab00963f9062c54e829cc813b..46359300e533221cdc2d8aff9f9b98afe593c92b 100644
|
index f69fd922fa67cd366dbb93c34fa15659ba76c844..cc8efa162fbe7ce6a91629239bf18d7b6b096a8a 100644
|
||||||
--- a/net/minecraft/world/entity/Entity.java
|
--- a/net/minecraft/world/entity/Entity.java
|
||||||
+++ b/net/minecraft/world/entity/Entity.java
|
+++ b/net/minecraft/world/entity/Entity.java
|
||||||
@@ -5961,4 +5961,6 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -5919,4 +5919,6 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
return ((ServerLevel) this.level()).isPositionEntityTicking(this.blockPosition());
|
return ((ServerLevel) this.level).isPositionEntityTicking(this.blockPosition());
|
||||||
}
|
}
|
||||||
// Paper end - Expose entity id counter
|
// Paper end - Expose entity id counter
|
||||||
+
|
+
|
||||||
+ public boolean shouldTickHot() { return this.tickCount > 20 * 10 && this.isAlive(); } // KioCG
|
+ public boolean shouldTickHot() { return this.tickCount > 20 * 10 && this.isAlive(); } // KioCG
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/entity/LightningBolt.java b/net/minecraft/world/entity/LightningBolt.java
|
diff --git a/net/minecraft/world/entity/LightningBolt.java b/net/minecraft/world/entity/LightningBolt.java
|
||||||
index c1c63c77598786d86b4aa4475cc4d36e60955085..27dd86d1d94959cbe8376ee714e3306732151105 100644
|
index f003a65b34027dff14455860815c7d719c5289fa..6f9f8e52d2311343a0c0c3900a466c6a84f7de73 100644
|
||||||
--- a/net/minecraft/world/entity/LightningBolt.java
|
--- a/net/minecraft/world/entity/LightningBolt.java
|
||||||
+++ b/net/minecraft/world/entity/LightningBolt.java
|
+++ b/net/minecraft/world/entity/LightningBolt.java
|
||||||
@@ -287,4 +287,11 @@ public class LightningBolt extends Entity {
|
@@ -287,4 +287,11 @@ public class LightningBolt extends Entity {
|
||||||
@@ -214,12 +212,12 @@ index c1c63c77598786d86b4aa4475cc4d36e60955085..27dd86d1d94959cbe8376ee714e33067
|
|||||||
+ // KioCG end
|
+ // KioCG end
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/entity/Mob.java b/net/minecraft/world/entity/Mob.java
|
diff --git a/net/minecraft/world/entity/Mob.java b/net/minecraft/world/entity/Mob.java
|
||||||
index a96318e5684d61b2bee998531695b0fe12e9deac..34738e880e6ef30730fc72d7b0fb89c53783be17 100644
|
index da922d4c0ffa0f40d5e8dd69487bf30dbbbeed87..94a7b95f41c2954561f9c3cb0f61210c0c058f1d 100644
|
||||||
--- a/net/minecraft/world/entity/Mob.java
|
--- a/net/minecraft/world/entity/Mob.java
|
||||||
+++ b/net/minecraft/world/entity/Mob.java
|
+++ b/net/minecraft/world/entity/Mob.java
|
||||||
@@ -1592,4 +1592,11 @@ public abstract class Mob extends LivingEntity implements EquipmentUser, Leashab
|
@@ -1722,4 +1722,11 @@ public abstract class Mob extends LivingEntity implements EquipmentUser, Leashab
|
||||||
this.getNavigation().updatePathfinderMaxVisitedNodes();
|
public float[] getArmorDropChances() {
|
||||||
}
|
return this.armorDropChances;
|
||||||
}
|
}
|
||||||
+
|
+
|
||||||
+ // KioCG start
|
+ // KioCG start
|
||||||
@@ -230,10 +228,10 @@ index a96318e5684d61b2bee998531695b0fe12e9deac..34738e880e6ef30730fc72d7b0fb89c5
|
|||||||
+ // KioCG end
|
+ // KioCG end
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/entity/animal/horse/TraderLlama.java b/net/minecraft/world/entity/animal/horse/TraderLlama.java
|
diff --git a/net/minecraft/world/entity/animal/horse/TraderLlama.java b/net/minecraft/world/entity/animal/horse/TraderLlama.java
|
||||||
index 38a5554d6e28ab73c225625531c94592a46d50a8..149fe0c4c2df7cd6925308f6bca5772050594cf3 100644
|
index c5b11a63bb2ab660efcc386ad9b4697e2a5efc97..f139822cb3e90b9d5fac6971e2ef1a8569d9849b 100644
|
||||||
--- a/net/minecraft/world/entity/animal/horse/TraderLlama.java
|
--- a/net/minecraft/world/entity/animal/horse/TraderLlama.java
|
||||||
+++ b/net/minecraft/world/entity/animal/horse/TraderLlama.java
|
+++ b/net/minecraft/world/entity/animal/horse/TraderLlama.java
|
||||||
@@ -156,4 +156,11 @@ public class TraderLlama extends Llama {
|
@@ -157,4 +157,11 @@ public class TraderLlama extends Llama {
|
||||||
super.start();
|
super.start();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -246,10 +244,10 @@ index 38a5554d6e28ab73c225625531c94592a46d50a8..149fe0c4c2df7cd6925308f6bca57720
|
|||||||
+ // KioCG end
|
+ // KioCG end
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/entity/npc/WanderingTrader.java b/net/minecraft/world/entity/npc/WanderingTrader.java
|
diff --git a/net/minecraft/world/entity/npc/WanderingTrader.java b/net/minecraft/world/entity/npc/WanderingTrader.java
|
||||||
index 70cc20483905d3877e2ffb51afb4902bd59f0cd0..fff3965d892e20a3ad9c84fad2c2df2ffe931fe2 100644
|
index 6655d06e2011e20e7346dfe57527795269094d8a..48aa6fcb5c16fdbb4ae902cbb72c6b8e02820c88 100644
|
||||||
--- a/net/minecraft/world/entity/npc/WanderingTrader.java
|
--- a/net/minecraft/world/entity/npc/WanderingTrader.java
|
||||||
+++ b/net/minecraft/world/entity/npc/WanderingTrader.java
|
+++ b/net/minecraft/world/entity/npc/WanderingTrader.java
|
||||||
@@ -277,4 +277,11 @@ public class WanderingTrader extends net.minecraft.world.entity.npc.AbstractVill
|
@@ -320,4 +320,11 @@ public class WanderingTrader extends net.minecraft.world.entity.npc.AbstractVill
|
||||||
return !pos.closerToCenterThan(this.trader.position(), distance);
|
return !pos.closerToCenterThan(this.trader.position(), distance);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -262,10 +260,10 @@ index 70cc20483905d3877e2ffb51afb4902bd59f0cd0..fff3965d892e20a3ad9c84fad2c2df2f
|
|||||||
+ // KioCG end
|
+ // KioCG end
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/entity/player/Player.java b/net/minecraft/world/entity/player/Player.java
|
diff --git a/net/minecraft/world/entity/player/Player.java b/net/minecraft/world/entity/player/Player.java
|
||||||
index aed525af488eb839d31d6bec0673b7e128ca4068..543750bee43bfaaaf33f2cec53eb0de05e7a1dd2 100644
|
index e70919757dee4b02384ded3551c8f580d289584a..ae049c5c3593525b991d865fec695c00ad408a59 100644
|
||||||
--- a/net/minecraft/world/entity/player/Player.java
|
--- a/net/minecraft/world/entity/player/Player.java
|
||||||
+++ b/net/minecraft/world/entity/player/Player.java
|
+++ b/net/minecraft/world/entity/player/Player.java
|
||||||
@@ -1481,6 +1481,13 @@ public abstract class Player extends LivingEntity {
|
@@ -1546,6 +1546,13 @@ public abstract class Player extends LivingEntity {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,10 +278,10 @@ index aed525af488eb839d31d6bec0673b7e128ca4068..543750bee43bfaaaf33f2cec53eb0de0
|
|||||||
// CraftBukkit start
|
// CraftBukkit start
|
||||||
return this.startSleepInBed(bedPos, false);
|
return this.startSleepInBed(bedPos, false);
|
||||||
diff --git a/net/minecraft/world/entity/projectile/Projectile.java b/net/minecraft/world/entity/projectile/Projectile.java
|
diff --git a/net/minecraft/world/entity/projectile/Projectile.java b/net/minecraft/world/entity/projectile/Projectile.java
|
||||||
index 487e550d6d1f44597cfe14c4aaeb3713e3d916b7..7308dab3248b3319cee6fd0dabfe8e4b7c2628cf 100644
|
index abfe6765faec49d4b8897608582d738c7b09522d..6e1de9252ac1236e0c5196e2511c72c0d7eb3502 100644
|
||||||
--- a/net/minecraft/world/entity/projectile/Projectile.java
|
--- a/net/minecraft/world/entity/projectile/Projectile.java
|
||||||
+++ b/net/minecraft/world/entity/projectile/Projectile.java
|
+++ b/net/minecraft/world/entity/projectile/Projectile.java
|
||||||
@@ -527,4 +527,11 @@ public abstract class Projectile extends Entity implements TraceableEntity {
|
@@ -516,4 +516,11 @@ public abstract class Projectile extends Entity implements TraceableEntity {
|
||||||
public interface ProjectileFactory<T extends Projectile> {
|
public interface ProjectileFactory<T extends Projectile> {
|
||||||
T create(ServerLevel level, LivingEntity owner, ItemStack spawnedFrom);
|
T create(ServerLevel level, LivingEntity owner, ItemStack spawnedFrom);
|
||||||
}
|
}
|
||||||
@@ -296,18 +294,18 @@ index 487e550d6d1f44597cfe14c4aaeb3713e3d916b7..7308dab3248b3319cee6fd0dabfe8e4b
|
|||||||
+ // KioCG end
|
+ // KioCG end
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/level/chunk/LevelChunk.java b/net/minecraft/world/level/chunk/LevelChunk.java
|
diff --git a/net/minecraft/world/level/chunk/LevelChunk.java b/net/minecraft/world/level/chunk/LevelChunk.java
|
||||||
index 23ccd2bc86e643eb3e79195d20c1182d3ad7ead6..569c13814e99f884048742226c2871fabf1e9790 100644
|
index 78211c68bf52c0cd402fee7bcdde223130d49b5c..83b0e91165024697f6b7d41d43142b2b33641968 100644
|
||||||
--- a/net/minecraft/world/level/chunk/LevelChunk.java
|
--- a/net/minecraft/world/level/chunk/LevelChunk.java
|
||||||
+++ b/net/minecraft/world/level/chunk/LevelChunk.java
|
+++ b/net/minecraft/world/level/chunk/LevelChunk.java
|
||||||
@@ -104,6 +104,7 @@ public class LevelChunk extends ChunkAccess implements ca.spottedleaf.moonrise.p
|
@@ -103,6 +103,7 @@ public class LevelChunk extends ChunkAccess implements ca.spottedleaf.moonrise.p
|
||||||
// Paper start - rewrite chunk system
|
// Paper start - rewrite chunk system
|
||||||
private boolean postProcessingDone;
|
private boolean postProcessingDone;
|
||||||
private ca.spottedleaf.moonrise.patches.chunk_system.scheduling.NewChunkHolder chunkAndHolder;
|
private net.minecraft.server.level.ServerChunkCache.ChunkAndHolder chunkAndHolder;
|
||||||
+ private final com.kiocg.ChunkHot chunkHot = new com.kiocg.ChunkHot(); public com.kiocg.ChunkHot getChunkHot() { return this.chunkHot; } // KioCG
|
+ private final com.kiocg.ChunkHot chunkHot = new com.kiocg.ChunkHot(); public com.kiocg.ChunkHot getChunkHot() { return this.chunkHot; } // KioCG
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final boolean moonrise$isPostProcessingDone() {
|
public final boolean moonrise$isPostProcessingDone() {
|
||||||
@@ -930,6 +931,7 @@ public class LevelChunk extends ChunkAccess implements ca.spottedleaf.moonrise.p
|
@@ -926,6 +927,7 @@ public class LevelChunk extends ChunkAccess implements ca.spottedleaf.moonrise.p
|
||||||
try {
|
try {
|
||||||
ProfilerFiller profilerFiller = Profiler.get();
|
ProfilerFiller profilerFiller = Profiler.get();
|
||||||
profilerFiller.push(this::getType);
|
profilerFiller.push(this::getType);
|
||||||
@@ -315,7 +313,7 @@ index 23ccd2bc86e643eb3e79195d20c1182d3ad7ead6..569c13814e99f884048742226c2871fa
|
|||||||
profiler.startTimer(timerId); try { // Folia - profiler
|
profiler.startTimer(timerId); try { // Folia - profiler
|
||||||
BlockState blockState = LevelChunk.this.getBlockState(blockPos);
|
BlockState blockState = LevelChunk.this.getBlockState(blockPos);
|
||||||
if (this.blockEntity.getType().isValid(blockState)) {
|
if (this.blockEntity.getType().isValid(blockState)) {
|
||||||
@@ -944,7 +946,7 @@ public class LevelChunk extends ChunkAccess implements ca.spottedleaf.moonrise.p
|
@@ -940,7 +942,7 @@ public class LevelChunk extends ChunkAccess implements ca.spottedleaf.moonrise.p
|
||||||
}
|
}
|
||||||
// Paper end - Remove the Block Entity if it's invalid
|
// Paper end - Remove the Block Entity if it's invalid
|
||||||
}
|
}
|
||||||
@@ -325,11 +323,11 @@ index 23ccd2bc86e643eb3e79195d20c1182d3ad7ead6..569c13814e99f884048742226c2871fa
|
|||||||
profilerFiller.pop();
|
profilerFiller.pop();
|
||||||
} catch (Throwable var5) {
|
} catch (Throwable var5) {
|
||||||
diff --git a/net/minecraft/world/level/redstone/NeighborUpdater.java b/net/minecraft/world/level/redstone/NeighborUpdater.java
|
diff --git a/net/minecraft/world/level/redstone/NeighborUpdater.java b/net/minecraft/world/level/redstone/NeighborUpdater.java
|
||||||
index 332b33a004ab11150cca0cc2cefc26d0286648f5..714e291b17856aacdac7db992fc18e6ae662f659 100644
|
index 26c15c60d358273a3b369c286771c81d6f0979dd..715580a893ba9dd34ee562b81350b81f9da3f905 100644
|
||||||
--- a/net/minecraft/world/level/redstone/NeighborUpdater.java
|
--- a/net/minecraft/world/level/redstone/NeighborUpdater.java
|
||||||
+++ b/net/minecraft/world/level/redstone/NeighborUpdater.java
|
+++ b/net/minecraft/world/level/redstone/NeighborUpdater.java
|
||||||
@@ -57,7 +57,10 @@ public interface NeighborUpdater {
|
@@ -60,7 +60,10 @@ public interface NeighborUpdater {
|
||||||
return;
|
}
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
+ net.minecraft.world.level.chunk.LevelChunk levelChunk = level.getChunkIfLoaded(pos); // KioCG
|
+ net.minecraft.world.level.chunk.LevelChunk levelChunk = level.getChunkIfLoaded(pos); // KioCG
|
||||||
@@ -338,4 +336,4 @@ index 332b33a004ab11150cca0cc2cefc26d0286648f5..714e291b17856aacdac7db992fc18e6a
|
|||||||
+ } finally { if (levelChunk != null) levelChunk.getChunkHot().stopTickingAndCount(); } // KioCG
|
+ } finally { if (levelChunk != null) levelChunk.getChunkHot().stopTickingAndCount(); } // KioCG
|
||||||
// Spigot start
|
// Spigot start
|
||||||
} catch (StackOverflowError ex) {
|
} catch (StackOverflowError ex) {
|
||||||
level.lastPhysicsProblem = pos.immutable();
|
level.lastPhysicsProblem = new BlockPos(pos);
|
||||||
@@ -5,10 +5,10 @@ Subject: [PATCH] Add config for username check
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/network/ServerLoginPacketListenerImpl.java b/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
diff --git a/net/minecraft/server/network/ServerLoginPacketListenerImpl.java b/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
||||||
index 829ff1f36d565f15cfe5d4997d3ccfdfe7898e0f..b7cfe0c73de732e22f90a7b38321c775e405aaa5 100644
|
index 159f2f169d26b436a70006f7bc9bdc481315dd32..2b366fea4d8d376b150786fdc00fd5e2413388f6 100644
|
||||||
--- a/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
--- a/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
||||||
+++ b/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
+++ b/net/minecraft/server/network/ServerLoginPacketListenerImpl.java
|
||||||
@@ -175,7 +175,8 @@ public class ServerLoginPacketListenerImpl implements ServerLoginPacketListener,
|
@@ -176,7 +176,8 @@ public class ServerLoginPacketListenerImpl implements ServerLoginPacketListener,
|
||||||
public void handleHello(ServerboundHelloPacket packet) {
|
public void handleHello(ServerboundHelloPacket packet) {
|
||||||
Validate.validState(this.state == ServerLoginPacketListenerImpl.State.HELLO, "Unexpected hello packet");
|
Validate.validState(this.state == ServerLoginPacketListenerImpl.State.HELLO, "Unexpected hello packet");
|
||||||
// Paper start - Validate usernames
|
// Paper start - Validate usernames
|
||||||
@@ -19,10 +19,10 @@ index 829ff1f36d565f15cfe5d4997d3ccfdfe7898e0f..b7cfe0c73de732e22f90a7b38321c775
|
|||||||
&& !this.iKnowThisMayNotBeTheBestIdeaButPleaseDisableUsernameValidation) {
|
&& !this.iKnowThisMayNotBeTheBestIdeaButPleaseDisableUsernameValidation) {
|
||||||
Validate.validState(StringUtil.isReasonablePlayerName(packet.name()), "Invalid characters in username");
|
Validate.validState(StringUtil.isReasonablePlayerName(packet.name()), "Invalid characters in username");
|
||||||
diff --git a/net/minecraft/server/players/GameProfileCache.java b/net/minecraft/server/players/GameProfileCache.java
|
diff --git a/net/minecraft/server/players/GameProfileCache.java b/net/minecraft/server/players/GameProfileCache.java
|
||||||
index 066f84df5c31242ab542932f1e243369d0e766e2..144a2644c15f276f02bb3be859dc5d05a677ac55 100644
|
index 6fb3712f33a84a3612752dcfd9e97d67066f610e..1999188b5667035362ba579a80b30336c5c7fc38 100644
|
||||||
--- a/net/minecraft/server/players/GameProfileCache.java
|
--- a/net/minecraft/server/players/GameProfileCache.java
|
||||||
+++ b/net/minecraft/server/players/GameProfileCache.java
|
+++ b/net/minecraft/server/players/GameProfileCache.java
|
||||||
@@ -75,7 +75,7 @@ public class GameProfileCache {
|
@@ -77,7 +77,7 @@ public class GameProfileCache {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Optional<GameProfile> lookupGameProfile(GameProfileRepository profileRepo, String name) {
|
private static Optional<GameProfile> lookupGameProfile(GameProfileRepository profileRepo, String name) {
|
||||||
@@ -30,7 +30,7 @@ index 066f84df5c31242ab542932f1e243369d0e766e2..144a2644c15f276f02bb3be859dc5d05
|
|||||||
+ if (!StringUtil.isValidPlayerName(name, false)) { // Luminol - Add config for username check - Directly return, skip unnecessary following logic
|
+ if (!StringUtil.isValidPlayerName(name, false)) { // Luminol - Add config for username check - Directly return, skip unnecessary following logic
|
||||||
return createUnknownProfile(name);
|
return createUnknownProfile(name);
|
||||||
} else {
|
} else {
|
||||||
final boolean shouldLookup = !org.apache.commons.lang3.StringUtils.isBlank(name) // Paper - Don't lookup a profile with a blank name
|
final AtomicReference<GameProfile> atomicReference = new AtomicReference<>();
|
||||||
diff --git a/net/minecraft/util/StringUtil.java b/net/minecraft/util/StringUtil.java
|
diff --git a/net/minecraft/util/StringUtil.java b/net/minecraft/util/StringUtil.java
|
||||||
index 77947e6915facee44588943fcd3e5b513de37e77..d9f95c5cf4bd2946244c153db0fd21c8d51ae20d 100644
|
index 77947e6915facee44588943fcd3e5b513de37e77..d9f95c5cf4bd2946244c153db0fd21c8d51ae20d 100644
|
||||||
--- a/net/minecraft/util/StringUtil.java
|
--- a/net/minecraft/util/StringUtil.java
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ Subject: [PATCH] Add config for offline mode warning
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/dedicated/DedicatedServer.java b/net/minecraft/server/dedicated/DedicatedServer.java
|
diff --git a/net/minecraft/server/dedicated/DedicatedServer.java b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
index 898373c7be5a80e82138f66bb5f739c0d4b10e5e..e76599e92e4bf4f5b5d7176f4a0a2a854d10818a 100644
|
index 3abe2881e8a80bd6c128e96b976deebe3ada4678..a0a8b0c7d091f63f023f15a2620b03ae2126782e 100644
|
||||||
--- a/net/minecraft/server/dedicated/DedicatedServer.java
|
--- a/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
|
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
@@ -243,7 +243,7 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
@@ -285,7 +285,7 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
||||||
String proxyFlavor = (io.papermc.paper.configuration.GlobalConfiguration.get().proxies.velocity.enabled) ? "Velocity" : "BungeeCord";
|
String proxyFlavor = (io.papermc.paper.configuration.GlobalConfiguration.get().proxies.velocity.enabled) ? "Velocity" : "BungeeCord";
|
||||||
String proxyLink = (io.papermc.paper.configuration.GlobalConfiguration.get().proxies.velocity.enabled) ? "https://docs.papermc.io/velocity/security" : "http://www.spigotmc.org/wiki/firewall-guide/";
|
String proxyLink = (io.papermc.paper.configuration.GlobalConfiguration.get().proxies.velocity.enabled) ? "https://docs.papermc.io/velocity/security" : "http://www.spigotmc.org/wiki/firewall-guide/";
|
||||||
// Paper end - Add Velocity IP Forwarding Support
|
// Paper end - Add Velocity IP Forwarding Support
|
||||||
@@ -5,7 +5,7 @@ Subject: [PATCH] Add config to verify signature only in online-mode
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/player/ProfilePublicKey.java b/net/minecraft/world/entity/player/ProfilePublicKey.java
|
diff --git a/net/minecraft/world/entity/player/ProfilePublicKey.java b/net/minecraft/world/entity/player/ProfilePublicKey.java
|
||||||
index 15293ed76018f4790754721bd687cbbf906c71dc..c2eaf52590f417b9562edcc70cca68ad9904fe90 100644
|
index 41a9cc693183e96c83837692e93b177a521d6789..f4a2d1a2d467808b9cb75fc32765ddc27be5fdba 100644
|
||||||
--- a/net/minecraft/world/entity/player/ProfilePublicKey.java
|
--- a/net/minecraft/world/entity/player/ProfilePublicKey.java
|
||||||
+++ b/net/minecraft/world/entity/player/ProfilePublicKey.java
|
+++ b/net/minecraft/world/entity/player/ProfilePublicKey.java
|
||||||
@@ -23,7 +23,7 @@ public record ProfilePublicKey(ProfilePublicKey.Data data) {
|
@@ -23,7 +23,7 @@ public record ProfilePublicKey(ProfilePublicKey.Data data) {
|
||||||
@@ -5,10 +5,10 @@ Subject: [PATCH] Add config to disable entity tick catchers
|
|||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/level/Level.java b/net/minecraft/world/level/Level.java
|
diff --git a/net/minecraft/world/level/Level.java b/net/minecraft/world/level/Level.java
|
||||||
index 0e7e2a17a9ba3b90d4458032b6d5ff324fad77b5..ba1ccd6eab77e27a38d22c12dba0797d65cc4c4e 100644
|
index 78f4dd7032d18b8e020a4576e4ac012c1d472e67..120e25ca0544980d1bfc1498e1386f965dae7044 100644
|
||||||
--- a/net/minecraft/world/level/Level.java
|
--- a/net/minecraft/world/level/Level.java
|
||||||
+++ b/net/minecraft/world/level/Level.java
|
+++ b/net/minecraft/world/level/Level.java
|
||||||
@@ -1533,6 +1533,7 @@ public abstract class Level implements LevelAccessor, UUIDLookup<Entity>, AutoCl
|
@@ -1547,6 +1547,7 @@ public abstract class Level implements LevelAccessor, AutoCloseable, ca.spottedl
|
||||||
try {
|
try {
|
||||||
consumerEntity.accept(entity);
|
consumerEntity.accept(entity);
|
||||||
} catch (Throwable var6) {
|
} catch (Throwable var6) {
|
||||||
@@ -1,111 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
Date: Sun, 18 May 2025 03:48:53 +0800
|
|
||||||
Subject: [PATCH] Add config to modify tripwire behavior
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/level/block/TripWireHookBlock.java b/net/minecraft/world/level/block/TripWireHookBlock.java
|
|
||||||
index 8a3a8b0fdf9545a41501dc992c6982d9c8ce7b66..8f9f5b0bf098a32a732e3ff9f636e3ea828e5f43 100644
|
|
||||||
--- a/net/minecraft/world/level/block/TripWireHookBlock.java
|
|
||||||
+++ b/net/minecraft/world/level/block/TripWireHookBlock.java
|
|
||||||
@@ -200,10 +200,17 @@ public class TripWireHookBlock extends Block {
|
|
||||||
BlockPos blockPos1 = pos.relative(direction, i2);
|
|
||||||
BlockState blockState2 = blockStates[i2];
|
|
||||||
if (blockState2 != null) {
|
|
||||||
- BlockState blockState3 = level.getBlockState(blockPos1);
|
|
||||||
- if (blockState3.is(Blocks.TRIPWIRE) || blockState3.is(Blocks.TRIPWIRE_HOOK)) {
|
|
||||||
- if (!io.papermc.paper.configuration.GlobalConfiguration.get().blockUpdates.disableTripwireUpdates || !blockState3.is(Blocks.TRIPWIRE)) level.setBlock(blockPos1, blockState2.trySetValue(ATTACHED, flag2), 3); // Paper - prevent tripwire from updating
|
|
||||||
+ // Luminol start - tripwire and tripwireHook dupe
|
|
||||||
+ if (me.earthme.luminol.config.modules.misc.TripwireBehaviorConfig.enabled) {
|
|
||||||
+ level.setBlock(blockPos1, blockState2.trySetValue(ATTACHED, flag2), 3);
|
|
||||||
+ level.getBlockState(blockPos1);
|
|
||||||
+ } else {
|
|
||||||
+ BlockState blockState3 = level.getBlockState(blockPos1);
|
|
||||||
+ if (blockState3.is(Blocks.TRIPWIRE) || blockState3.is(Blocks.TRIPWIRE_HOOK)) {
|
|
||||||
+ if (!io.papermc.paper.configuration.GlobalConfiguration.get().blockUpdates.disableTripwireUpdates || !blockState3.is(Blocks.TRIPWIRE)) level.setBlock(blockPos1, blockState2.trySetValue(ATTACHED, flag2), 3); // Paper - prevent tripwire from updating
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
+ // Luminol end - tripwire and tripwireHook dupe
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
diff --git a/net/minecraft/world/level/levelgen/feature/EndPlatformFeature.java b/net/minecraft/world/level/levelgen/feature/EndPlatformFeature.java
|
|
||||||
index 49b810ae9d9a8d0718a5f8c512e15a5573ed04fd..7d5fc6860ed426c4906f8c3eb2c10fd6db4296e5 100644
|
|
||||||
--- a/net/minecraft/world/level/levelgen/feature/EndPlatformFeature.java
|
|
||||||
+++ b/net/minecraft/world/level/levelgen/feature/EndPlatformFeature.java
|
|
||||||
@@ -28,6 +28,11 @@ public class EndPlatformFeature extends Feature<NoneFeatureConfiguration> {
|
|
||||||
// CraftBukkit end
|
|
||||||
BlockPos.MutableBlockPos mutableBlockPos = pos.mutable();
|
|
||||||
|
|
||||||
+ // Luminol start - tripwire behavior modifier
|
|
||||||
+ java.util.List<BlockPos> blockList1 = new java.util.ArrayList<>();
|
|
||||||
+ java.util.List<BlockPos> blockList2 = new java.util.ArrayList<>();
|
|
||||||
+ boolean flag21 = !java.util.Objects.equals(me.earthme.luminol.config.modules.misc.TripwireBehaviorConfig.behaviorMode, "VANILLA20")
|
|
||||||
+ && !java.util.Objects.equals(me.earthme.luminol.config.modules.misc.TripwireBehaviorConfig.behaviorMode, "MIXED");
|
|
||||||
for (int i = -2; i <= 2; i++) {
|
|
||||||
for (int i1 = -2; i1 <= 2; i1++) {
|
|
||||||
for (int i2 = -1; i2 < 3; i2++) {
|
|
||||||
@@ -35,7 +40,29 @@ public class EndPlatformFeature extends Feature<NoneFeatureConfiguration> {
|
|
||||||
Block block = i2 == -1 ? Blocks.OBSIDIAN : Blocks.AIR;
|
|
||||||
if (!blockList.getBlockState(blockPos).is(block)) { // CraftBukkit
|
|
||||||
if (dropBlocks) {
|
|
||||||
- blockList.destroyBlock(blockPos, true, null); // CraftBukkit
|
|
||||||
+ boolean flag = false;
|
|
||||||
+ if (me.earthme.luminol.config.modules.misc.TripwireBehaviorConfig.enabled) {
|
|
||||||
+ switch (me.earthme.luminol.config.modules.misc.TripwireBehaviorConfig.behaviorMode) {
|
|
||||||
+ case "VANILLA20": {
|
|
||||||
+ flag = true;
|
|
||||||
+ }
|
|
||||||
+ case "MIXED": {
|
|
||||||
+ net.minecraft.world.level.block.state.BlockState state = level.getBlockState(blockPos);
|
|
||||||
+ if (state.is(Blocks.TRIPWIRE)) {
|
|
||||||
+ if (state.getValue(net.minecraft.world.level.block.TripWireBlock.DISARMED)) {
|
|
||||||
+ flag = true;
|
|
||||||
+ blockList2.add(blockPos.immutable());
|
|
||||||
+ }
|
|
||||||
+ if (!flag) {
|
|
||||||
+ flag = checkString(blockList2, blockPos);
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ default: {} // Luminol - 1.21 & default Logic - default empty
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ if (flag) blockList1.add(blockPos.immutable());
|
|
||||||
+ else blockList.destroyBlock(blockPos, true, null); // CraftBukkit
|
|
||||||
}
|
|
||||||
|
|
||||||
blockList.setBlock(blockPos, block.defaultBlockState(), 3); // CraftBukkit
|
|
||||||
@@ -53,11 +80,30 @@ public class EndPlatformFeature extends Feature<NoneFeatureConfiguration> {
|
|
||||||
if (portalEvent.isCancelled()) return;
|
|
||||||
}
|
|
||||||
|
|
||||||
- if (dropBlocks) {
|
|
||||||
- blockList.placeBlocks(state -> level.destroyBlock(state.getPosition(), true, null));
|
|
||||||
+ if (flag21 || !me.earthme.luminol.config.modules.misc.TripwireBehaviorConfig.enabled) {
|
|
||||||
+ if (dropBlocks) {
|
|
||||||
+ blockList.placeBlocks(state -> level.destroyBlock(state.getPosition(), true, null));
|
|
||||||
+ } else {
|
|
||||||
+ blockList.placeBlocks();
|
|
||||||
+ }
|
|
||||||
} else {
|
|
||||||
+ if (dropBlocks) {
|
|
||||||
+ blockList.getSnapshotBlocks().forEach((state) -> {
|
|
||||||
+ level.destroyBlock(state.getPosition(), !blockList1.contains(state.getPosition()), null);
|
|
||||||
+ });
|
|
||||||
+ // Luminol - prevent tripwire dupe in end platform generate
|
|
||||||
+ }
|
|
||||||
blockList.placeBlocks();
|
|
||||||
}
|
|
||||||
// CraftBukkit end
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+ private static boolean checkString(java.util.List<BlockPos> blockList, BlockPos blockPos) {
|
|
||||||
+ for (BlockPos pos : blockList) {
|
|
||||||
+ if (pos.getY() != blockPos.getY()) continue;
|
|
||||||
+ if (pos.getX() == blockPos.getX() || pos.getZ() == blockPos.getZ()) return true;
|
|
||||||
+ }
|
|
||||||
+ return false;
|
|
||||||
+ }
|
|
||||||
+ // Luminol end - tripwire behavior modifier
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: HaHaWTH <102713261+HaHaWTH@users.noreply.github.com>
|
||||||
|
Date: Mon, 24 Feb 2025 06:00:00 -0800
|
||||||
|
Subject: [PATCH] Add config for tripwire dupe
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/world/level/block/TripWireHookBlock.java b/net/minecraft/world/level/block/TripWireHookBlock.java
|
||||||
|
index 9aace993c6c18f1a50610e4766225485984b8167..07ffe289b9556b45a9ef7db5357d85b14fe23feb 100644
|
||||||
|
--- a/net/minecraft/world/level/block/TripWireHookBlock.java
|
||||||
|
+++ b/net/minecraft/world/level/block/TripWireHookBlock.java
|
||||||
|
@@ -215,7 +215,7 @@ public class TripWireHookBlock extends Block {
|
||||||
|
BlockState blockState2 = blockStates[i2];
|
||||||
|
if (blockState2 != null) {
|
||||||
|
BlockState blockState3 = level.getBlockState(blockPos1);
|
||||||
|
- if (blockState3.is(Blocks.TRIPWIRE) || blockState3.is(Blocks.TRIPWIRE_HOOK)) {
|
||||||
|
+ if (me.earthme.luminol.config.modules.misc.AllowTripwireDupe.enabled || blockState3.is(Blocks.TRIPWIRE) || blockState3.is(Blocks.TRIPWIRE_HOOK)) {
|
||||||
|
if (!io.papermc.paper.configuration.GlobalConfiguration.get().blockUpdates.disableTripwireUpdates || !blockState3.is(Blocks.TRIPWIRE)) level.setBlock(blockPos1, blockState2.trySetValue(ATTACHED, Boolean.valueOf(flag2)), 3); // Paper - prevent tripwire from updating
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <wangxyper@163.com>
|
||||||
|
Date: Sun, 12 Jan 2025 10:36:31 +0800
|
||||||
|
Subject: [PATCH] Add experiment config for command block command execution
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/world/level/BaseCommandBlock.java b/net/minecraft/world/level/BaseCommandBlock.java
|
||||||
|
index b02b79ccedb8b87bc22270377dfc36e21ebe1724..3786e8288c3a66a5e986ae2a150d03ce2dd5ed16 100644
|
||||||
|
--- a/net/minecraft/world/level/BaseCommandBlock.java
|
||||||
|
+++ b/net/minecraft/world/level/BaseCommandBlock.java
|
||||||
|
@@ -114,7 +114,7 @@ public abstract class BaseCommandBlock implements CommandSource {
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean performCommand(Level level) {
|
||||||
|
- if (true) return false; // Folia - region threading
|
||||||
|
+ if (!me.earthme.luminol.config.modules.experiment.CommandBlockConfig.enabled) return false; // Folia - region threading // Luminol
|
||||||
|
if (level.isClientSide || level.getGameTime() == this.lastExecution) {
|
||||||
|
return false;
|
||||||
|
} else if ("Searge".equalsIgnoreCase(this.command)) {
|
||||||
@@ -1,16 +1,15 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <mrhua269@gmail.com>
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
Date: Sat, 8 Mar 2025 09:56:15 +0800
|
Date: Sat, 8 Mar 2025 09:56:15 +0800
|
||||||
Subject: [PATCH] Add config for entity to clean memory value which is not
|
Subject: [PATCH] Add experiment config for entity to clean memory value which
|
||||||
belong to current tickregion
|
is not belong to current tickregion
|
||||||
|
|
||||||
Folia does not fully get the entity AI patched correctly, like some memories in entity's brain is still exists when switched dimension or teleported to the new tickregion, which entity is still accessing in the next tick then it will trigger the async catcher, which lead the entity go disappear and throw an exception in the console.In this patch, if this function is turned on, the server will clean the memory that doesn't belong to the entity's tickregion before ticking any behaviors, which can simply fix that.
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/ai/Brain.java b/net/minecraft/world/entity/ai/Brain.java
|
diff --git a/net/minecraft/world/entity/ai/Brain.java b/net/minecraft/world/entity/ai/Brain.java
|
||||||
index 3eb1362e6597faa21b27c9d1611d64a236491f98..c589e18b68e45d5991291db3a0bdd833588ce945 100644
|
index 65b2b3ece213d901cdd585093e2fafcd2ef4a7cd..d61fba01feecce3610cd390f490d3097c5db19c4 100644
|
||||||
--- a/net/minecraft/world/entity/ai/Brain.java
|
--- a/net/minecraft/world/entity/ai/Brain.java
|
||||||
+++ b/net/minecraft/world/entity/ai/Brain.java
|
+++ b/net/minecraft/world/entity/ai/Brain.java
|
||||||
@@ -408,7 +408,7 @@ public class Brain<E extends LivingEntity> {
|
@@ -399,7 +399,7 @@ public class Brain<E extends LivingEntity> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void tick(ServerLevel level, E entity) {
|
public void tick(ServerLevel level, E entity) {
|
||||||
@@ -19,7 +18,7 @@ index 3eb1362e6597faa21b27c9d1611d64a236491f98..c589e18b68e45d5991291db3a0bdd833
|
|||||||
this.tickSensors(level, entity);
|
this.tickSensors(level, entity);
|
||||||
this.startEachNonRunningBehavior(level, entity);
|
this.startEachNonRunningBehavior(level, entity);
|
||||||
this.tickEachRunningBehavior(level, entity);
|
this.tickEachRunningBehavior(level, entity);
|
||||||
@@ -420,10 +420,31 @@ public class Brain<E extends LivingEntity> {
|
@@ -411,10 +411,31 @@ public class Brain<E extends LivingEntity> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,7 +32,7 @@ index 3eb1362e6597faa21b27c9d1611d64a236491f98..c589e18b68e45d5991291db3a0bdd833
|
|||||||
+ final net.minecraft.world.level.Level ownerLevel = owner.level();
|
+ final net.minecraft.world.level.Level ownerLevel = owner.level();
|
||||||
+
|
+
|
||||||
+ // type: entity
|
+ // type: entity
|
||||||
+ if (me.earthme.luminol.config.modules.fixes.ForceCleanupEntityBrainMemoryConfig.enabledForEntity && value instanceof LivingEntity entity) {
|
+ if (me.earthme.luminol.config.modules.experiment.ForceCleanupEntityBrainMemoryConfig.enabledForEntity && value instanceof LivingEntity entity) {
|
||||||
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(entity)) {
|
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(entity)) {
|
||||||
+ this.eraseMemory(entry.getKey());
|
+ this.eraseMemory(entry.getKey());
|
||||||
+ continue;
|
+ continue;
|
||||||
@@ -41,7 +40,7 @@ index 3eb1362e6597faa21b27c9d1611d64a236491f98..c589e18b68e45d5991291db3a0bdd833
|
|||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ // type: block_pos
|
+ // type: block_pos
|
||||||
+ if (me.earthme.luminol.config.modules.fixes.ForceCleanupEntityBrainMemoryConfig.enabledForBlockPos && value instanceof net.minecraft.core.BlockPos blockPos) {
|
+ if (me.earthme.luminol.config.modules.experiment.ForceCleanupEntityBrainMemoryConfig.enabledForBlockPos && value instanceof net.minecraft.core.BlockPos blockPos) {
|
||||||
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(ownerLevel, blockPos)) {
|
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(ownerLevel, blockPos)) {
|
||||||
+ this.eraseMemory(entry.getKey());
|
+ this.eraseMemory(entry.getKey());
|
||||||
+ continue;
|
+ continue;
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: MrHua269 <wangxyper@163.com>
|
|
||||||
Date: Sun, 12 Jan 2025 10:39:35 +0800
|
|
||||||
Subject: [PATCH] Add fix for off region adult following ai behavior
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java b/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java
|
|
||||||
index a9be3acbf4ea52d2988347abfa6f4f8c02b1da26..7ddf9fae8e50bbda2502c6b584fac135fac21773 100644
|
|
||||||
--- a/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java
|
|
||||||
+++ b/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java
|
|
||||||
@@ -25,6 +25,14 @@ public class BabyFollowAdult {
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
LivingEntity ageableMob = instance.get(nearestVisibleAdult); // CraftBukkit - type
|
|
||||||
+
|
|
||||||
+ // Luminol start - Fix off world entity following which caused async issue
|
|
||||||
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(ageableMob)) {
|
|
||||||
+ nearestVisibleAdult.erase();
|
|
||||||
+ return true;
|
|
||||||
+ }
|
|
||||||
+ // Luminol end
|
|
||||||
+
|
|
||||||
if (mob.closerThan(ageableMob, followRange.getMaxValue() + 1) && !mob.closerThan(ageableMob, followRange.getMinValue())) {
|
|
||||||
// CraftBukkit start
|
|
||||||
org.bukkit.event.entity.EntityTargetLivingEntityEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTargetLivingEvent(mob, ageableMob, org.bukkit.event.entity.EntityTargetEvent.TargetReason.FOLLOW_LEADER);
|
|
||||||
@@ -35,6 +43,12 @@ public class BabyFollowAdult {
|
|
||||||
nearestVisibleAdult.erase();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
+ // Luminol start - Fix off region baby follow adult ai
|
|
||||||
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(((org.bukkit.craftbukkit.entity.CraftEntity)event.getTarget()).getHandleRaw())) {
|
|
||||||
+ nearestVisibleAdult.erase();
|
|
||||||
+ return true;
|
|
||||||
+ }
|
|
||||||
+ // Luminol end
|
|
||||||
ageableMob = ((org.bukkit.craftbukkit.entity.CraftLivingEntity) event.getTarget()).getHandle();
|
|
||||||
// CraftBukkit end
|
|
||||||
WalkTarget walkTarget1 = new WalkTarget(
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: Kercute <A3167717663@hotmail.com>
|
From: Kercute <A3167717663@hotmail.com>
|
||||||
Date: Sun, 16 Mar 2025 23:31:41 +0800
|
Date: Sun, 16 Mar 2025 23:31:41 +0800
|
||||||
Subject: [PATCH] Add force the data command to be enabled config
|
Subject: [PATCH] Add experiment config for force enabling data command
|
||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/commands/Commands.java b/net/minecraft/commands/Commands.java
|
diff --git a/net/minecraft/commands/Commands.java b/net/minecraft/commands/Commands.java
|
||||||
index 4e3bfa25ec4917d2bca594b050e38be3bdea077b..ea50e3c0c4044f03dc8257680814f808fbf3a177 100644
|
index 009e6405a11a391adca41a7c4ecafbf3254d799d..cfb37f2e428605965a37dc1eb83f302fe1bd6299 100644
|
||||||
--- a/net/minecraft/commands/Commands.java
|
--- a/net/minecraft/commands/Commands.java
|
||||||
+++ b/net/minecraft/commands/Commands.java
|
+++ b/net/minecraft/commands/Commands.java
|
||||||
@@ -162,7 +162,9 @@ public class Commands {
|
@@ -162,7 +162,9 @@ public class Commands {
|
||||||
@@ -22,7 +22,7 @@ index a814512fcfb85312474ae2c2c21443843bf57831..2e084a5b28cbe4737f48c25e10af5892
|
|||||||
public MoonriseRegionFileIO.RegionDataController.WriteData moonrise$startWrite(
|
public MoonriseRegionFileIO.RegionDataController.WriteData moonrise$startWrite(
|
||||||
final int chunkX, final int chunkZ, final CompoundTag compound
|
final int chunkX, final int chunkZ, final CompoundTag compound
|
||||||
diff --git a/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java b/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java
|
diff --git a/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java b/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java
|
||||||
index 709df35246fb328cda21679b53d44d9f96206cb3..a26e1dbce1b34aba6f88c1c61ebd168dcb4206bd 100644
|
index 98fbc5c8044bd945d64569f13412a6e7e49a4e7f..9709d60d3b2a5478cd6c711669e32f28ac105667 100644
|
||||||
--- a/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java
|
--- a/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java
|
||||||
+++ b/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java
|
+++ b/ca/spottedleaf/moonrise/patches/chunk_system/io/MoonriseRegionFileIO.java
|
||||||
@@ -1260,7 +1260,7 @@ public final class MoonriseRegionFileIO {
|
@@ -1260,7 +1260,7 @@ public final class MoonriseRegionFileIO {
|
||||||
@@ -55,10 +55,10 @@ index 51c126735ace8fdde89ad97b5cab62f244212db0..c7d4d944eb198ac53a3eeae717a25c7d
|
|||||||
+ public void moonrise$write(final abomination.IRegionFile regionFile) throws IOException; // Luminol - Configurable region file format
|
+ public void moonrise$write(final abomination.IRegionFile regionFile) throws IOException; // Luminol - Configurable region file format
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
||||||
index db435869dd2a2dfe0c36c62e46e5389170cfb0cd..b437132634f636f4c1d76c86146f377090b5fdb2 100644
|
index fc088edaa36e7e68ddd23c57e351ef3b31ed5ad8..5d709b3b47702e7607dafa4a38380c801b228e2d 100644
|
||||||
--- a/net/minecraft/server/MinecraftServer.java
|
--- a/net/minecraft/server/MinecraftServer.java
|
||||||
+++ b/net/minecraft/server/MinecraftServer.java
|
+++ b/net/minecraft/server/MinecraftServer.java
|
||||||
@@ -978,10 +978,10 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -986,10 +986,10 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
if (flush) {
|
if (flush) {
|
||||||
for (ServerLevel serverLevel2 : this.getAllLevels()) {
|
for (ServerLevel serverLevel2 : this.getAllLevels()) {
|
||||||
@@ -72,10 +72,10 @@ index db435869dd2a2dfe0c36c62e46e5389170cfb0cd..b437132634f636f4c1d76c86146f3770
|
|||||||
|
|
||||||
return flag;
|
return flag;
|
||||||
diff --git a/net/minecraft/util/worldupdate/WorldUpgrader.java b/net/minecraft/util/worldupdate/WorldUpgrader.java
|
diff --git a/net/minecraft/util/worldupdate/WorldUpgrader.java b/net/minecraft/util/worldupdate/WorldUpgrader.java
|
||||||
index 559bd4eef7174b04f5aa71b982ba34cbace8da8a..8284320bf596f4b06e1dadbfac4b7ac97361ff7f 100644
|
index e0bcda2ddea0d6633445a7440fbf0d18e50a7653..57ed3f61b265fc5c231ef0f2b7c4d33b4f3f6cba 100644
|
||||||
--- a/net/minecraft/util/worldupdate/WorldUpgrader.java
|
--- a/net/minecraft/util/worldupdate/WorldUpgrader.java
|
||||||
+++ b/net/minecraft/util/worldupdate/WorldUpgrader.java
|
+++ b/net/minecraft/util/worldupdate/WorldUpgrader.java
|
||||||
@@ -75,7 +75,7 @@ public class WorldUpgrader implements AutoCloseable {
|
@@ -72,7 +72,7 @@ public class WorldUpgrader implements AutoCloseable {
|
||||||
volatile int skipped;
|
volatile int skipped;
|
||||||
final Reference2FloatMap<ResourceKey<Level>> progressMap = Reference2FloatMaps.synchronize(new Reference2FloatOpenHashMap<>());
|
final Reference2FloatMap<ResourceKey<Level>> progressMap = Reference2FloatMaps.synchronize(new Reference2FloatOpenHashMap<>());
|
||||||
volatile Component status = Component.translatable("optimizeWorld.stage.counting");
|
volatile Component status = Component.translatable("optimizeWorld.stage.counting");
|
||||||
@@ -84,7 +84,7 @@ index 559bd4eef7174b04f5aa71b982ba34cbace8da8a..8284320bf596f4b06e1dadbfac4b7ac9
|
|||||||
final DimensionDataStorage overworldDataStorage;
|
final DimensionDataStorage overworldDataStorage;
|
||||||
|
|
||||||
public WorldUpgrader(
|
public WorldUpgrader(
|
||||||
@@ -272,7 +272,7 @@ public class WorldUpgrader implements AutoCloseable {
|
@@ -261,7 +261,7 @@ public class WorldUpgrader implements AutoCloseable {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<WorldUpgrader.FileToUpgrade> getAllChunkPositions(RegionStorageInfo regionStorageInfo, Path path) {
|
private static List<WorldUpgrader.FileToUpgrade> getAllChunkPositions(RegionStorageInfo regionStorageInfo, Path path) {
|
||||||
@@ -93,7 +93,7 @@ index 559bd4eef7174b04f5aa71b982ba34cbace8da8a..8284320bf596f4b06e1dadbfac4b7ac9
|
|||||||
if (files == null) {
|
if (files == null) {
|
||||||
return List.of();
|
return List.of();
|
||||||
} else {
|
} else {
|
||||||
@@ -285,7 +285,7 @@ public class WorldUpgrader implements AutoCloseable {
|
@@ -274,7 +274,7 @@ public class WorldUpgrader implements AutoCloseable {
|
||||||
int i1 = Integer.parseInt(matcher.group(2)) << 5;
|
int i1 = Integer.parseInt(matcher.group(2)) << 5;
|
||||||
List<ChunkPos> list1 = Lists.newArrayList();
|
List<ChunkPos> list1 = Lists.newArrayList();
|
||||||
|
|
||||||
@@ -102,7 +102,7 @@ index 559bd4eef7174b04f5aa71b982ba34cbace8da8a..8284320bf596f4b06e1dadbfac4b7ac9
|
|||||||
for (int i2 = 0; i2 < 32; i2++) {
|
for (int i2 = 0; i2 < 32; i2++) {
|
||||||
for (int i3 = 0; i3 < 32; i3++) {
|
for (int i3 = 0; i3 < 32; i3++) {
|
||||||
ChunkPos chunkPos = new ChunkPos(i2 + i, i3 + i1);
|
ChunkPos chunkPos = new ChunkPos(i2 + i, i3 + i1);
|
||||||
@@ -333,7 +333,7 @@ public class WorldUpgrader implements AutoCloseable {
|
@@ -322,7 +322,7 @@ public class WorldUpgrader implements AutoCloseable {
|
||||||
|
|
||||||
protected abstract boolean tryProcessOnePosition(T chunkStorage, ChunkPos chunkPos, ResourceKey<Level> dimension);
|
protected abstract boolean tryProcessOnePosition(T chunkStorage, ChunkPos chunkPos, ResourceKey<Level> dimension);
|
||||||
|
|
||||||
@@ -111,7 +111,7 @@ index 559bd4eef7174b04f5aa71b982ba34cbace8da8a..8284320bf596f4b06e1dadbfac4b7ac9
|
|||||||
if (WorldUpgrader.this.recreateRegionFiles) {
|
if (WorldUpgrader.this.recreateRegionFiles) {
|
||||||
if (this.previousWriteFuture != null) {
|
if (this.previousWriteFuture != null) {
|
||||||
this.previousWriteFuture.join();
|
this.previousWriteFuture.join();
|
||||||
@@ -438,7 +438,7 @@ public class WorldUpgrader implements AutoCloseable {
|
@@ -424,7 +424,7 @@ public class WorldUpgrader implements AutoCloseable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,7 +121,7 @@ index 559bd4eef7174b04f5aa71b982ba34cbace8da8a..8284320bf596f4b06e1dadbfac4b7ac9
|
|||||||
|
|
||||||
class PoiUpgrader extends WorldUpgrader.SimpleRegionStorageUpgrader {
|
class PoiUpgrader extends WorldUpgrader.SimpleRegionStorageUpgrader {
|
||||||
diff --git a/net/minecraft/world/level/chunk/storage/RegionFile.java b/net/minecraft/world/level/chunk/storage/RegionFile.java
|
diff --git a/net/minecraft/world/level/chunk/storage/RegionFile.java b/net/minecraft/world/level/chunk/storage/RegionFile.java
|
||||||
index 22f3aa1674664906e8ec45372d758d79017e3987..76f1b5bb94b82044d72658d4b187dd020d4c9012 100644
|
index 0c41177462cca5c4bbab6490e323b9535fd6300f..39b3c3ca7248fe60833f04aee89c8851b21d5008 100644
|
||||||
--- a/net/minecraft/world/level/chunk/storage/RegionFile.java
|
--- a/net/minecraft/world/level/chunk/storage/RegionFile.java
|
||||||
+++ b/net/minecraft/world/level/chunk/storage/RegionFile.java
|
+++ b/net/minecraft/world/level/chunk/storage/RegionFile.java
|
||||||
@@ -22,7 +22,7 @@ import net.minecraft.util.profiling.jfr.JvmProfiler;
|
@@ -22,7 +22,7 @@ import net.minecraft.util.profiling.jfr.JvmProfiler;
|
||||||
@@ -133,16 +133,16 @@ index 22f3aa1674664906e8ec45372d758d79017e3987..76f1b5bb94b82044d72658d4b187dd02
|
|||||||
private static final Logger LOGGER = LogUtils.getLogger();
|
private static final Logger LOGGER = LogUtils.getLogger();
|
||||||
public static final int MAX_CHUNK_SIZE = 500 * 1024 * 1024; // Paper - don't write garbage data to disk if writing serialization fails
|
public static final int MAX_CHUNK_SIZE = 500 * 1024 * 1024; // Paper - don't write garbage data to disk if writing serialization fails
|
||||||
private static final int SECTOR_BYTES = 4096;
|
private static final int SECTOR_BYTES = 4096;
|
||||||
@@ -130,7 +130,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
@@ -124,7 +124,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
||||||
return this.recalculateCount.get();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// note: only call for CHUNK regionfiles
|
||||||
- boolean recalculateHeader() throws IOException {
|
- boolean recalculateHeader() throws IOException {
|
||||||
+ public boolean recalculateHeader() throws IOException { // Luminol - Configurable region file format // Luminol - Configurable region file format
|
+ public boolean recalculateHeader() throws IOException { // Luminol - Configurable region file format // Luminol - Configurable region file format
|
||||||
if (!this.canRecalcHeader) {
|
if (!this.canRecalcHeader) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -794,7 +794,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
@@ -786,7 +786,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,7 +151,7 @@ index 22f3aa1674664906e8ec45372d758d79017e3987..76f1b5bb94b82044d72658d4b187dd02
|
|||||||
int offsetIndex = getOffsetIndex(chunkPos);
|
int offsetIndex = getOffsetIndex(chunkPos);
|
||||||
int i = this.offsets.get(offsetIndex);
|
int i = this.offsets.get(offsetIndex);
|
||||||
int sectorNumber = getSectorNumber(i);
|
int sectorNumber = getSectorNumber(i);
|
||||||
@@ -912,7 +912,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
@@ -904,7 +904,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -160,7 +160,7 @@ index 22f3aa1674664906e8ec45372d758d79017e3987..76f1b5bb94b82044d72658d4b187dd02
|
|||||||
regionFile.write(this.pos, ByteBuffer.wrap(this.buf, 0, this.count));
|
regionFile.write(this.pos, ByteBuffer.wrap(this.buf, 0, this.count));
|
||||||
}
|
}
|
||||||
// Paper end - rewrite chunk system
|
// Paper end - rewrite chunk system
|
||||||
@@ -978,11 +978,11 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
@@ -970,11 +970,11 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
||||||
return (x & 31) + (z & 31) * 32;
|
return (x & 31) + (z & 31) * 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -174,7 +174,7 @@ index 22f3aa1674664906e8ec45372d758d79017e3987..76f1b5bb94b82044d72658d4b187dd02
|
|||||||
final int offset = getChunkIndex(x, z);
|
final int offset = getChunkIndex(x, z);
|
||||||
boolean previous = this.oversized[offset] == 1;
|
boolean previous = this.oversized[offset] == 1;
|
||||||
this.oversized[offset] = (byte) (oversized ? 1 : 0);
|
this.oversized[offset] = (byte) (oversized ? 1 : 0);
|
||||||
@@ -1021,7 +1021,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
@@ -1013,7 +1013,7 @@ public class RegionFile implements AutoCloseable, ca.spottedleaf.moonrise.patche
|
||||||
return this.path.getParent().resolve(this.path.getFileName().toString().replaceAll("\\.mca$", "") + "_oversized_" + x + "_" + z + ".nbt");
|
return this.path.getParent().resolve(this.path.getFileName().toString().replaceAll("\\.mca$", "") + "_oversized_" + x + "_" + z + ".nbt");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,7 +184,7 @@ index 22f3aa1674664906e8ec45372d758d79017e3987..76f1b5bb94b82044d72658d4b187dd02
|
|||||||
try (DataInputStream out = new DataInputStream(new java.io.BufferedInputStream(new java.util.zip.InflaterInputStream(Files.newInputStream(file))))) {
|
try (DataInputStream out = new DataInputStream(new java.io.BufferedInputStream(new java.util.zip.InflaterInputStream(Files.newInputStream(file))))) {
|
||||||
return net.minecraft.nbt.NbtIo.read((java.io.DataInput) out);
|
return net.minecraft.nbt.NbtIo.read((java.io.DataInput) out);
|
||||||
diff --git a/net/minecraft/world/level/chunk/storage/RegionFileStorage.java b/net/minecraft/world/level/chunk/storage/RegionFileStorage.java
|
diff --git a/net/minecraft/world/level/chunk/storage/RegionFileStorage.java b/net/minecraft/world/level/chunk/storage/RegionFileStorage.java
|
||||||
index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8188b247b 100644
|
index dad7f94b611cf0fc68b1a3878c458233f6bb6d61..437fff55b565e469f6a4e41288b6f805e125be60 100644
|
||||||
--- a/net/minecraft/world/level/chunk/storage/RegionFileStorage.java
|
--- a/net/minecraft/world/level/chunk/storage/RegionFileStorage.java
|
||||||
+++ b/net/minecraft/world/level/chunk/storage/RegionFileStorage.java
|
+++ b/net/minecraft/world/level/chunk/storage/RegionFileStorage.java
|
||||||
@@ -18,7 +18,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -18,7 +18,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
@@ -289,16 +289,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
|
|
||||||
final DataInputStream input = regionFile == null ? null : regionFile.getChunkDataInputStream(new ChunkPos(chunkX, chunkZ));
|
final DataInputStream input = regionFile == null ? null : regionFile.getChunkDataInputStream(new ChunkPos(chunkX, chunkZ));
|
||||||
|
|
||||||
@@ -238,7 +257,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -237,7 +256,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
|
|
||||||
final ChunkPos pos = new ChunkPos(chunkX, chunkZ);
|
|
||||||
final ChunkPos headerChunkPos = SerializableChunkData.getChunkCoordinate(ret);
|
|
||||||
- final RegionFile regionFile = this.getRegionFile(pos);
|
|
||||||
+ final abomination.IRegionFile regionFile = this.getRegionFile(pos); // Luminol - Configurable region file format
|
|
||||||
|
|
||||||
if (regionFile.getRecalculateCount() != readData.recalculateCount()) {
|
|
||||||
return null;
|
|
||||||
@@ -262,7 +281,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
|
||||||
}
|
}
|
||||||
// Paper end - rewrite chunk system
|
// Paper end - rewrite chunk system
|
||||||
// Paper start - rewrite chunk system
|
// Paper start - rewrite chunk system
|
||||||
@@ -307,7 +298,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
return this.getRegionFile(chunkcoordintpair, false);
|
return this.getRegionFile(chunkcoordintpair, false);
|
||||||
}
|
}
|
||||||
// Paper end - rewrite chunk system
|
// Paper end - rewrite chunk system
|
||||||
@@ -274,7 +293,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -249,7 +268,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
this.isChunkData = isChunkDataFolder(this.folder); // Paper - recalculate region file headers
|
this.isChunkData = isChunkDataFolder(this.folder); // Paper - recalculate region file headers
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -316,7 +307,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
// Paper start - rewrite chunk system
|
// Paper start - rewrite chunk system
|
||||||
if (existingOnly) {
|
if (existingOnly) {
|
||||||
return this.moonrise$getRegionFileIfExists(chunkPos.x, chunkPos.z);
|
return this.moonrise$getRegionFileIfExists(chunkPos.x, chunkPos.z);
|
||||||
@@ -282,7 +301,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -257,7 +276,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
final long key = ChunkPos.asLong(chunkPos.x >> REGION_SHIFT, chunkPos.z >> REGION_SHIFT);
|
final long key = ChunkPos.asLong(chunkPos.x >> REGION_SHIFT, chunkPos.z >> REGION_SHIFT);
|
||||||
|
|
||||||
@@ -325,7 +316,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
if (ret != null) {
|
if (ret != null) {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
@@ -297,7 +316,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -272,7 +291,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
|
|
||||||
FileUtil.createDirectoriesSafe(this.folder);
|
FileUtil.createDirectoriesSafe(this.folder);
|
||||||
|
|
||||||
@@ -334,7 +325,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
|
|
||||||
this.regionCache.putAndMoveToFirst(key, ret);
|
this.regionCache.putAndMoveToFirst(key, ret);
|
||||||
|
|
||||||
@@ -311,7 +330,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -286,7 +305,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
org.apache.logging.log4j.LogManager.getLogger().fatal(msg + " (" + file.toString().replaceAll(".+[\\\\/]", "") + " - " + x + "," + z + ") Go clean it up to remove this message. /minecraft:tp " + (x<<4)+" 128 "+(z<<4) + " - DO NOT REPORT THIS TO PAPER - You may ask for help on Discord, but do not file an issue. These error messages can not be removed.");
|
org.apache.logging.log4j.LogManager.getLogger().fatal(msg + " (" + file.toString().replaceAll(".+[\\\\/]", "") + " - " + x + "," + z + ") Go clean it up to remove this message. /minecraft:tp " + (x<<4)+" 128 "+(z<<4) + " - DO NOT REPORT THIS TO PAPER - You may ask for help on Discord, but do not file an issue. These error messages can not be removed.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -343,7 +334,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
synchronized (regionfile) {
|
synchronized (regionfile) {
|
||||||
try (DataInputStream datainputstream = regionfile.getChunkDataInputStream(chunkCoordinate)) {
|
try (DataInputStream datainputstream = regionfile.getChunkDataInputStream(chunkCoordinate)) {
|
||||||
CompoundTag oversizedData = regionfile.getOversizedData(chunkCoordinate.x, chunkCoordinate.z);
|
CompoundTag oversizedData = regionfile.getOversizedData(chunkCoordinate.x, chunkCoordinate.z);
|
||||||
@@ -346,7 +365,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -321,7 +340,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
@Nullable
|
@Nullable
|
||||||
public CompoundTag read(ChunkPos chunkPos) throws IOException {
|
public CompoundTag read(ChunkPos chunkPos) throws IOException {
|
||||||
// CraftBukkit start - SPIGOT-5680: There's no good reason to preemptively create files on read, save that for writing
|
// CraftBukkit start - SPIGOT-5680: There's no good reason to preemptively create files on read, save that for writing
|
||||||
@@ -352,7 +343,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
if (regionFile == null) {
|
if (regionFile == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -385,7 +404,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -360,7 +379,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
|
|
||||||
public void scanChunk(ChunkPos chunkPos, StreamTagVisitor visitor) throws IOException {
|
public void scanChunk(ChunkPos chunkPos, StreamTagVisitor visitor) throws IOException {
|
||||||
// CraftBukkit start - SPIGOT-5680: There's no good reason to preemptively create files on read, save that for writing
|
// CraftBukkit start - SPIGOT-5680: There's no good reason to preemptively create files on read, save that for writing
|
||||||
@@ -361,7 +352,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
if (regionFile == null) {
|
if (regionFile == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -399,7 +418,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -374,7 +393,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
}
|
}
|
||||||
|
|
||||||
public void write(ChunkPos chunkPos, @Nullable CompoundTag chunkData) throws IOException { // Paper - rewrite chunk system - public
|
public void write(ChunkPos chunkPos, @Nullable CompoundTag chunkData) throws IOException { // Paper - rewrite chunk system - public
|
||||||
@@ -370,7 +361,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
// Paper start - rewrite chunk system
|
// Paper start - rewrite chunk system
|
||||||
if (regionFile == null) {
|
if (regionFile == null) {
|
||||||
// if the RegionFile doesn't exist, no point in deleting from it
|
// if the RegionFile doesn't exist, no point in deleting from it
|
||||||
@@ -429,7 +448,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -404,7 +423,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
// Paper start - rewrite chunk system
|
// Paper start - rewrite chunk system
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
final ExceptionCollector<IOException> exceptionCollector = new ExceptionCollector<>();
|
final ExceptionCollector<IOException> exceptionCollector = new ExceptionCollector<>();
|
||||||
@@ -379,7 +370,7 @@ index 384f2cd090d6d23bd1308d6e82c24338f2bf55d1..a81245aff4cc982b9eaca976ebbb54a8
|
|||||||
try {
|
try {
|
||||||
regionFile.close();
|
regionFile.close();
|
||||||
} catch (final IOException ex) {
|
} catch (final IOException ex) {
|
||||||
@@ -445,7 +464,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
@@ -420,7 +439,7 @@ public class RegionFileStorage implements AutoCloseable, ca.spottedleaf.moonrise
|
||||||
// Paper start - rewrite chunk system
|
// Paper start - rewrite chunk system
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
final ExceptionCollector<IOException> exceptionCollector = new ExceptionCollector<>();
|
final ExceptionCollector<IOException> exceptionCollector = new ExceptionCollector<>();
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: MrHua269 <wangxyper@163.com>
|
|
||||||
Date: Mon, 27 Jan 2025 13:01:55 +0800
|
|
||||||
Subject: [PATCH] Add tick regions api
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/io/papermc/paper/threadedregions/ThreadedRegionizer.java b/io/papermc/paper/threadedregions/ThreadedRegionizer.java
|
|
||||||
index 604385af903845d966382ad0a4168798e4ed4a0e..45aa5484b1cdb317ed55f1b001dbfe13a720b2a7 100644
|
|
||||||
--- a/io/papermc/paper/threadedregions/ThreadedRegionizer.java
|
|
||||||
+++ b/io/papermc/paper/threadedregions/ThreadedRegionizer.java
|
|
||||||
@@ -43,6 +43,7 @@ public final class ThreadedRegionizer<R extends ThreadedRegionizer.ThreadedRegio
|
|
||||||
private final RegionCallbacks<R, S> callbacks;
|
|
||||||
private final StampedLock regionLock = new StampedLock();
|
|
||||||
private Thread writeLockOwner;
|
|
||||||
+ public final me.earthme.luminol.api.ThreadedRegionizer threadedRegionizerAPI; // Luminol - Tick region API
|
|
||||||
|
|
||||||
/*
|
|
||||||
static final record Operation(String type, int chunkX, int chunkZ) {}
|
|
||||||
@@ -72,6 +73,7 @@ public final class ThreadedRegionizer<R extends ThreadedRegionizer.ThreadedRegio
|
|
||||||
this.world = world;
|
|
||||||
this.callbacks = callbacks;
|
|
||||||
//this.loadTestData();
|
|
||||||
+ this.threadedRegionizerAPI = new me.earthme.luminol.api.impl.ThreadedRegionizerImpl(this.world); // Luminol - Tick region API
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
@@ -693,6 +695,7 @@ public final class ThreadedRegionizer<R extends ThreadedRegionizer.ThreadedRegio
|
|
||||||
|
|
||||||
private final ReferenceOpenHashSet<ThreadedRegion<R, S>> mergeIntoLater = new ReferenceOpenHashSet<>();
|
|
||||||
private final ReferenceOpenHashSet<ThreadedRegion<R, S>> expectingMergeFrom = new ReferenceOpenHashSet<>();
|
|
||||||
+ public final me.earthme.luminol.api.ThreadedRegion threadedRegionAPI = new me.earthme.luminol.api.impl.ThreadedRegionImpl((ThreadedRegion<TickRegions.TickRegionData, TickRegions.TickRegionSectionData>) this); // Luminol - Tickregion API
|
|
||||||
|
|
||||||
public ThreadedRegion(final ThreadedRegionizer<R, S> regioniser) {
|
|
||||||
this.regioniser = regioniser;
|
|
||||||
@@ -819,7 +822,7 @@ public final class ThreadedRegionizer<R extends ThreadedRegionizer.ThreadedRegio
|
|
||||||
return this.deadSections.size() == this.sectionByKey.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
- private final double getDeadSectionPercent() {
|
|
||||||
+ public final double getDeadSectionPercent() { // Luminol - Threaded regions api
|
|
||||||
return (double)this.deadSections.size() / (double)this.sectionByKey.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
diff --git a/io/papermc/paper/threadedregions/TickRegions.java b/io/papermc/paper/threadedregions/TickRegions.java
|
|
||||||
index 988fe74578065c9464f5639e5cc6af79619edef5..bfb39cbf1ba58d02da7e35300eb95872747506e8 100644
|
|
||||||
--- a/io/papermc/paper/threadedregions/TickRegions.java
|
|
||||||
+++ b/io/papermc/paper/threadedregions/TickRegions.java
|
|
||||||
@@ -134,6 +134,7 @@ public final class TickRegions implements ThreadedRegionizer.RegionCallbacks<Tic
|
|
||||||
private final AtomicInteger entityCount = new AtomicInteger();
|
|
||||||
private final AtomicInteger playerCount = new AtomicInteger();
|
|
||||||
private final AtomicInteger chunkCount = new AtomicInteger();
|
|
||||||
+ public final me.earthme.luminol.api.RegionStats regionStatsAPI = new me.earthme.luminol.api.impl.RegionStatsImpl(this); // Luminol - Tickregion API
|
|
||||||
|
|
||||||
public int getEntityCount() {
|
|
||||||
return this.entityCount.get();
|
|
||||||
@@ -183,6 +184,7 @@ public final class TickRegions implements ThreadedRegionizer.RegionCallbacks<Tic
|
|
||||||
private final RegionStats regionStats;
|
|
||||||
|
|
||||||
public volatile ca.spottedleaf.leafprofiler.RegionizedProfiler.Handle profiler; // Folia - profiler
|
|
||||||
+ public final me.earthme.luminol.api.TickRegionData tickRegionDataAPI = new me.earthme.luminol.api.impl.TickRegionDataImpl(this); // Luminol - Tickregion API
|
|
||||||
|
|
||||||
private TickRegionData(final ThreadedRegionizer.ThreadedRegion<TickRegionData, TickRegionSectionData> region) {
|
|
||||||
this.region = region;
|
|
||||||
@@ -3,24 +3,23 @@ From: MrHua269 <wangxyper@163.com>
|
|||||||
Date: Sun, 12 Jan 2025 10:53:41 +0800
|
Date: Sun, 12 Jan 2025 10:53:41 +0800
|
||||||
Subject: [PATCH] Teleport async if entity was moving to another region at once
|
Subject: [PATCH] Teleport async if entity was moving to another region at once
|
||||||
|
|
||||||
On folia, entity usually cannot move out of the tickregion, but sometimes it actually does(like some end pearl gun that can shoot an end pearl to the block faraway than 10000 blocks even more). To fix this, we added a temporary fix which teleport these entities to the destination instead running its move logics so that we could ensure anything is under control.But one thing need to consider is that teleportAsync is actually calling halfway of the entity tick and there is still something running when teleportAsync called, which is actually modified the entity in another thread, so there is still need an improvement
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
||||||
index 4743de5c39ee52bdde1f70e340d547a6cc7f4ead..a023cc399fc8bfee7771e5ca6716578f89b7072f 100644
|
index cc8efa162fbe7ce6a91629239bf18d7b6b096a8a..4026d465687604965f105ded21a8206fd52bd375 100644
|
||||||
--- a/net/minecraft/world/entity/Entity.java
|
--- a/net/minecraft/world/entity/Entity.java
|
||||||
+++ b/net/minecraft/world/entity/Entity.java
|
+++ b/net/minecraft/world/entity/Entity.java
|
||||||
@@ -1088,6 +1088,10 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -1100,6 +1100,10 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
|
}
|
||||||
private boolean boundingBoxChanged = false; // Gale - VMP - skip entity move if movement is zero
|
// Paper end - detailed watchdog information
|
||||||
|
|
||||||
+ //Luminol start - Fix large pos moving
|
+ //Luminol start - Fix large pos moving
|
||||||
+ private volatile boolean preventMoving = false;
|
+ private volatile boolean preventMoving = false;
|
||||||
+ //Luminol end
|
+ //Luminol end
|
||||||
+
|
+
|
||||||
public void move(MoverType type, Vec3 movement) {
|
public void move(MoverType type, Vec3 movement) {
|
||||||
// Gale start - VMP - skip entity move if movement is zero
|
final Vec3 originalMovement = movement; // Paper - Expose pre-collision velocity
|
||||||
if (!this.boundingBoxChanged && movement.equals(Vec3.ZERO)) {
|
// Paper start - detailed watchdog information
|
||||||
@@ -1103,6 +1107,32 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -1110,6 +1114,32 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
this.moveStartZ = this.getZ();
|
this.moveStartZ = this.getZ();
|
||||||
this.moveVector = movement;
|
this.moveVector = movement;
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,6 @@ From: MrHua269 <wangxyper@163.com>
|
|||||||
Date: Sun, 12 Jan 2025 10:56:59 +0800
|
Date: Sun, 12 Jan 2025 10:56:59 +0800
|
||||||
Subject: [PATCH] Try fixing folia off region POI accessing issue
|
Subject: [PATCH] Try fixing folia off region POI accessing issue
|
||||||
|
|
||||||
Folia's POIManager sometimes is trying getting the POI record that doesn't belong to current tickregion which is causing some off-main-thread exceptions thrown, so we need to replace the logic with corrected one
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/ai/village/poi/PoiManager.java b/net/minecraft/world/entity/ai/village/poi/PoiManager.java
|
diff --git a/net/minecraft/world/entity/ai/village/poi/PoiManager.java b/net/minecraft/world/entity/ai/village/poi/PoiManager.java
|
||||||
index c10810bf00d75f459c3c6a9415c1e09f0519d50e..3adafa43367cd6648ecbccb92ba5bd509740d5a4 100644
|
index c10810bf00d75f459c3c6a9415c1e09f0519d50e..3adafa43367cd6648ecbccb92ba5bd509740d5a4 100644
|
||||||
@@ -1,15 +1,14 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
Date: Sun, 12 Jan 2025 11:00:49 +0800
|
Date: Sat, 22 Mar 2025 17:36:44 +0800
|
||||||
Subject: [PATCH] Force disable builtin spark plugin
|
Subject: [PATCH] Force disable builtin spark plugin
|
||||||
|
|
||||||
The spark passed down from paper has some memory leaking issue, so we fully removed it from the code to prevent that memory leaking issue.
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
diff --git a/net/minecraft/server/MinecraftServer.java b/net/minecraft/server/MinecraftServer.java
|
||||||
index 6fbdff0eeed6e37aaa7650708c7b0164795f8d0b..33d596c0f07d076886c0dd8eb93e901cdb56e438 100644
|
index 5d709b3b47702e7607dafa4a38380c801b228e2d..c2027b8d4a5f9fccacb93ba108e34c36285aec7b 100644
|
||||||
--- a/net/minecraft/server/MinecraftServer.java
|
--- a/net/minecraft/server/MinecraftServer.java
|
||||||
+++ b/net/minecraft/server/MinecraftServer.java
|
+++ b/net/minecraft/server/MinecraftServer.java
|
||||||
@@ -781,8 +781,8 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -783,8 +783,8 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
// Paper end - Configurable player collision
|
// Paper end - Configurable player collision
|
||||||
|
|
||||||
this.server.enablePlugins(org.bukkit.plugin.PluginLoadOrder.POSTWORLD);
|
this.server.enablePlugins(org.bukkit.plugin.PluginLoadOrder.POSTWORLD);
|
||||||
@@ -20,7 +19,7 @@ index 6fbdff0eeed6e37aaa7650708c7b0164795f8d0b..33d596c0f07d076886c0dd8eb93e901c
|
|||||||
if (io.papermc.paper.plugin.PluginInitializerManager.instance().pluginRemapper != null) io.papermc.paper.plugin.PluginInitializerManager.instance().pluginRemapper.pluginsEnabled(); // Paper - Remap plugins
|
if (io.papermc.paper.plugin.PluginInitializerManager.instance().pluginRemapper != null) io.papermc.paper.plugin.PluginInitializerManager.instance().pluginRemapper.pluginsEnabled(); // Paper - Remap plugins
|
||||||
io.papermc.paper.command.brigadier.PaperCommands.INSTANCE.setValid(); // Paper - reset invalid state for event fire below
|
io.papermc.paper.command.brigadier.PaperCommands.INSTANCE.setValid(); // Paper - reset invalid state for event fire below
|
||||||
io.papermc.paper.plugin.lifecycle.event.LifecycleEventRunner.INSTANCE.callReloadableRegistrarEvent(io.papermc.paper.plugin.lifecycle.event.types.LifecycleEvents.COMMANDS, io.papermc.paper.command.brigadier.PaperCommands.INSTANCE, org.bukkit.plugin.Plugin.class, io.papermc.paper.plugin.lifecycle.event.registrar.ReloadableRegistrarEvent.Cause.INITIAL); // Paper - call commands event for regular plugins
|
io.papermc.paper.plugin.lifecycle.event.LifecycleEventRunner.INSTANCE.callReloadableRegistrarEvent(io.papermc.paper.plugin.lifecycle.event.types.LifecycleEvents.COMMANDS, io.papermc.paper.command.brigadier.PaperCommands.INSTANCE, org.bukkit.plugin.Plugin.class, io.papermc.paper.plugin.lifecycle.event.registrar.ReloadableRegistrarEvent.Cause.INITIAL); // Paper - call commands event for regular plugins
|
||||||
@@ -1064,7 +1064,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1072,7 +1072,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
Commands.COMMAND_SENDING_POOL.shutdownNow(); // Paper - Perf: Async command map building; Shutdown and don't bother finishing
|
Commands.COMMAND_SENDING_POOL.shutdownNow(); // Paper - Perf: Async command map building; Shutdown and don't bother finishing
|
||||||
// CraftBukkit start
|
// CraftBukkit start
|
||||||
if (this.server != null) {
|
if (this.server != null) {
|
||||||
@@ -29,7 +28,7 @@ index 6fbdff0eeed6e37aaa7650708c7b0164795f8d0b..33d596c0f07d076886c0dd8eb93e901c
|
|||||||
this.server.disablePlugins();
|
this.server.disablePlugins();
|
||||||
this.server.waitForAsyncTasksShutdown(); // Paper - Wait for Async Tasks during shutdown
|
this.server.waitForAsyncTasksShutdown(); // Paper - Wait for Async Tasks during shutdown
|
||||||
}
|
}
|
||||||
@@ -1248,7 +1248,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1250,7 +1250,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
this.statusIcon = this.loadStatusIcon().orElse(null);
|
this.statusIcon = this.loadStatusIcon().orElse(null);
|
||||||
this.status = this.buildServerStatus();
|
this.status = this.buildServerStatus();
|
||||||
|
|
||||||
@@ -38,7 +37,7 @@ index 6fbdff0eeed6e37aaa7650708c7b0164795f8d0b..33d596c0f07d076886c0dd8eb93e901c
|
|||||||
// Folia start - region threading
|
// Folia start - region threading
|
||||||
if (true) {
|
if (true) {
|
||||||
io.papermc.paper.threadedregions.RegionizedServer.getInstance().init(); // Folia - region threading - only after loading worlds
|
io.papermc.paper.threadedregions.RegionizedServer.getInstance().init(); // Folia - region threading - only after loading worlds
|
||||||
@@ -1591,7 +1591,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1593,7 +1593,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.emptyTicks >= i) {
|
if (this.emptyTicks >= i) {
|
||||||
@@ -47,16 +46,17 @@ index 6fbdff0eeed6e37aaa7650708c7b0164795f8d0b..33d596c0f07d076886c0dd8eb93e901c
|
|||||||
if (this.emptyTicks == i) {
|
if (this.emptyTicks == i) {
|
||||||
LOGGER.info("Server empty for {} seconds, pausing", this.pauseWhileEmptySeconds());
|
LOGGER.info("Server empty for {} seconds, pausing", this.pauseWhileEmptySeconds());
|
||||||
this.autoSave();
|
this.autoSave();
|
||||||
@@ -1610,7 +1610,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1612,7 +1612,8 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
// Paper end - avoid issues with certain tasks not processing during sleep
|
// Paper end - avoid issues with certain tasks not processing during sleep
|
||||||
//this.server.spark.executeMainThreadTasks(); // Paper - spark // Folia - region threading
|
//this.server.spark.executeMainThreadTasks(); // Paper - spark // Folia - region threading
|
||||||
this.tickConnection();
|
this.tickConnection();
|
||||||
- this.server.spark.tickEnd(((double)(System.nanoTime() - lastTick) / 1000000D)); // Paper - spark
|
- this.server.spark.tickEnd(((double)(System.nanoTime() - lastTick) / 1000000D)); // Paper - spark
|
||||||
+ if (false) this.server.spark.tickEnd(((double)(System.nanoTime() - lastTick) / 1000000D)); // Paper - spark // Luminol - Force disable builtin spark
|
+ if (false) this.server.spark.tickEnd(((double)(System.nanoTime() - lastTick) / 1000000D)); // Paper - spark // Luminol - Force disable builtin spark
|
||||||
|
+ // Paper end - Server Tick Events
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1633,7 +1633,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1635,7 +1636,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
};
|
};
|
||||||
// Folia end - region threading
|
// Folia end - region threading
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ index 6fbdff0eeed6e37aaa7650708c7b0164795f8d0b..33d596c0f07d076886c0dd8eb93e901c
|
|||||||
new com.destroystokyo.paper.event.server.ServerTickStartEvent((int)region.getCurrentTick()).callEvent(); // Paper - Server Tick Events // Folia - region threading
|
new com.destroystokyo.paper.event.server.ServerTickStartEvent((int)region.getCurrentTick()).callEvent(); // Paper - Server Tick Events // Folia - region threading
|
||||||
// Folia start - region threading
|
// Folia start - region threading
|
||||||
if (region != null) {
|
if (region != null) {
|
||||||
@@ -1743,7 +1743,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
@@ -1744,7 +1745,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
||||||
long remaining = scheduledEnd - endTime; // Folia - region ticking
|
long remaining = scheduledEnd - endTime; // Folia - region ticking
|
||||||
new com.destroystokyo.paper.event.server.ServerTickEndEvent((int)io.papermc.paper.threadedregions.RegionizedServer.getCurrentTick(), ((double)(endTime - startTime) / 1000000D), remaining).callEvent(); // Folia - region ticking
|
new com.destroystokyo.paper.event.server.ServerTickEndEvent((int)io.papermc.paper.threadedregions.RegionizedServer.getCurrentTick(), ((double)(endTime - startTime) / 1000000D), remaining).callEvent(); // Folia - region ticking
|
||||||
// Paper end - Server Tick Events
|
// Paper end - Server Tick Events
|
||||||
@@ -75,10 +75,10 @@ index 6fbdff0eeed6e37aaa7650708c7b0164795f8d0b..33d596c0f07d076886c0dd8eb93e901c
|
|||||||
}
|
}
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/dedicated/DedicatedServer.java b/net/minecraft/server/dedicated/DedicatedServer.java
|
diff --git a/net/minecraft/server/dedicated/DedicatedServer.java b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
index 20df6b46c420b25b598accb57b921055fb0c988b..5290b9cb524160717fb40704fb10fc0d0a37941b 100644
|
index a0a8b0c7d091f63f023f15a2620b03ae2126782e..d7c922540b46e289395aeed514c98e43dc298e7b 100644
|
||||||
--- a/net/minecraft/server/dedicated/DedicatedServer.java
|
--- a/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
|
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
|
||||||
@@ -173,7 +173,7 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
@@ -214,7 +214,7 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
||||||
// Paper end - initialize global and world-defaults configuration
|
// Paper end - initialize global and world-defaults configuration
|
||||||
me.earthme.luminol.config.LuminolConfig.finalizeLoadConfig(); //Luminol - load config file
|
me.earthme.luminol.config.LuminolConfig.finalizeLoadConfig(); //Luminol - load config file
|
||||||
me.earthme.luminol.config.LuminolConfig.setupLatch(); //Luminol - load config file
|
me.earthme.luminol.config.LuminolConfig.setupLatch(); //Luminol - load config file
|
||||||
@@ -87,7 +87,7 @@ index 20df6b46c420b25b598accb57b921055fb0c988b..5290b9cb524160717fb40704fb10fc0d
|
|||||||
// Paper start - fix converting txt to json file; convert old users earlier after PlayerList creation but before file load/save
|
// Paper start - fix converting txt to json file; convert old users earlier after PlayerList creation but before file load/save
|
||||||
if (this.convertOldUsers()) {
|
if (this.convertOldUsers()) {
|
||||||
this.getProfileCache().save(false); // Paper
|
this.getProfileCache().save(false); // Paper
|
||||||
@@ -183,7 +183,7 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
@@ -224,7 +224,7 @@ public class DedicatedServer extends MinecraftServer implements ServerInterface
|
||||||
org.spigotmc.WatchdogThread.doStart(org.spigotmc.SpigotConfig.timeoutTime, org.spigotmc.SpigotConfig.restartOnCrash); // Paper - start watchdog thread
|
org.spigotmc.WatchdogThread.doStart(org.spigotmc.SpigotConfig.timeoutTime, org.spigotmc.SpigotConfig.restartOnCrash); // Paper - start watchdog thread
|
||||||
thread.start(); // Paper - Enhance console tab completions for brigadier commands; start console thread after MinecraftServer.console & PaperConfig are initialized
|
thread.start(); // Paper - Enhance console tab completions for brigadier commands; start console thread after MinecraftServer.console & PaperConfig are initialized
|
||||||
io.papermc.paper.command.PaperCommands.registerCommands(this); // Paper - setup /paper command
|
io.papermc.paper.command.PaperCommands.registerCommands(this); // Paper - setup /paper command
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <wangxyper@163.com>
|
||||||
|
Date: Sun, 12 Jan 2025 11:03:09 +0800
|
||||||
|
Subject: [PATCH] Merge Paper #11945 for temporary hopper behavior fix
|
||||||
|
|
||||||
|
A hopper optimization fix on Paper's pr : https://github.com/PaperMC/Paper/pull/11945
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/world/level/block/entity/HopperBlockEntity.java b/net/minecraft/world/level/block/entity/HopperBlockEntity.java
|
||||||
|
index ae988c4910421fb720177178ef6136e595ae6946..72a81e29be6570fb119b159210453a86f003f893 100644
|
||||||
|
--- a/net/minecraft/world/level/block/entity/HopperBlockEntity.java
|
||||||
|
+++ b/net/minecraft/world/level/block/entity/HopperBlockEntity.java
|
||||||
|
@@ -698,6 +698,7 @@ public class HopperBlockEntity extends RandomizableContainerBlockEntity implemen
|
||||||
|
} else if (canMergeItems(item, stack)) {
|
||||||
|
int i = Math.min(stack.getMaxStackSize(), destination.getMaxStackSize()) - item.getCount(); // Paper - Make hoppers respect inventory max stack size
|
||||||
|
int min = Math.min(stack.getCount(), i);
|
||||||
|
+ stack = stack.copy(true); // Luminol
|
||||||
|
stack.shrink(min);
|
||||||
|
item.grow(min);
|
||||||
|
flag = min > 0;
|
||||||
@@ -3,13 +3,12 @@ From: MrHua269 <wangxyper@163.com>
|
|||||||
Date: Tue, 11 Feb 2025 13:34:47 +0800
|
Date: Tue, 11 Feb 2025 13:34:47 +0800
|
||||||
Subject: [PATCH] Fix uncorrected death check of folia
|
Subject: [PATCH] Fix uncorrected death check of folia
|
||||||
|
|
||||||
In the new mc version, mojang changed some checks in A.C.M(AbstractContainerMenu) and there is a new death check of player which will be executed when player dead.But on folia, player entity cannot be discarded unless they disconnected from the server, so there is an obvious bug that when player dead, the logic depend on that dead check will not be executed correctly because the check logic is still asserting the player is alive by checking if the player is discarded, which caused some exploits can save items in the crafting slots(with InventoryTweaks turned on in meteor client) when keepInventory is set to false
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/inventory/AbstractContainerMenu.java b/net/minecraft/world/inventory/AbstractContainerMenu.java
|
diff --git a/net/minecraft/world/inventory/AbstractContainerMenu.java b/net/minecraft/world/inventory/AbstractContainerMenu.java
|
||||||
index 813417a09b4acc7d57e80a53d970767e230d75b1..a9cf0ef95b706f05060bbcd2a4f5a03c60f783d2 100644
|
index acca8c51d2030c675c157b10d0bbc6af631afe61..d0b688e69979c5e7b8267ac96bd71bcd33444c41 100644
|
||||||
--- a/net/minecraft/world/inventory/AbstractContainerMenu.java
|
--- a/net/minecraft/world/inventory/AbstractContainerMenu.java
|
||||||
+++ b/net/minecraft/world/inventory/AbstractContainerMenu.java
|
+++ b/net/minecraft/world/inventory/AbstractContainerMenu.java
|
||||||
@@ -690,7 +690,7 @@ public abstract class AbstractContainerMenu {
|
@@ -689,7 +689,7 @@ public abstract class AbstractContainerMenu {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void dropOrPlaceInInventory(Player player, ItemStack stack) {
|
private static void dropOrPlaceInInventory(Player player, ItemStack stack) {
|
||||||
@@ -4,8 +4,26 @@ Date: Sat, 8 Mar 2025 09:55:40 +0800
|
|||||||
Subject: [PATCH] Fix a series issue around entity memory typed GlobalPos and
|
Subject: [PATCH] Fix a series issue around entity memory typed GlobalPos and
|
||||||
WalkTarget
|
WalkTarget
|
||||||
|
|
||||||
Fixes the issue remained by the memory cleaning fix due to that there is a little complex relationship in these memories, and we need to manual patch them
|
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java b/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java
|
||||||
|
index a9be3acbf4ea52d2988347abfa6f4f8c02b1da26..751f3dde8e6bc2c0365e8672f5079af0379a69de 100644
|
||||||
|
--- a/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java
|
||||||
|
+++ b/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.java
|
||||||
|
@@ -25,6 +25,14 @@ public class BabyFollowAdult {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
LivingEntity ageableMob = instance.get(nearestVisibleAdult); // CraftBukkit - type
|
||||||
|
+
|
||||||
|
+ // Luminol start - Fix off world entity following which caused async issue
|
||||||
|
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor(ageableMob)) {
|
||||||
|
+ nearestVisibleAdult.erase();
|
||||||
|
+ return true;
|
||||||
|
+ }
|
||||||
|
+ // Luminol end
|
||||||
|
+
|
||||||
|
if (mob.closerThan(ageableMob, followRange.getMaxValue() + 1) && !mob.closerThan(ageableMob, followRange.getMinValue())) {
|
||||||
|
// CraftBukkit start
|
||||||
|
org.bukkit.event.entity.EntityTargetLivingEntityEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTargetLivingEvent(mob, ageableMob, org.bukkit.event.entity.EntityTargetEvent.TargetReason.FOLLOW_LEADER);
|
||||||
diff --git a/net/minecraft/world/entity/ai/behavior/BehaviorUtils.java b/net/minecraft/world/entity/ai/behavior/BehaviorUtils.java
|
diff --git a/net/minecraft/world/entity/ai/behavior/BehaviorUtils.java b/net/minecraft/world/entity/ai/behavior/BehaviorUtils.java
|
||||||
index 2664d72c3b6906d0505df2e63c0e5075eba9461b..f03c3c512ea48c2a89eebae62484922d28e4f831 100644
|
index 2664d72c3b6906d0505df2e63c0e5075eba9461b..f03c3c512ea48c2a89eebae62484922d28e4f831 100644
|
||||||
--- a/net/minecraft/world/entity/ai/behavior/BehaviorUtils.java
|
--- a/net/minecraft/world/entity/ai/behavior/BehaviorUtils.java
|
||||||
@@ -62,7 +80,7 @@ index 36a9887f8be04c5c3fda6d926d819a9e5b2a79f2..5681592bdeb050d875c4c5d0dfaf6e01
|
|||||||
return Optional.of(new BlockPosTracker(globalPos.pos().above()));
|
return Optional.of(new BlockPosTracker(globalPos.pos().above()));
|
||||||
}
|
}
|
||||||
diff --git a/net/minecraft/world/entity/animal/sniffer/Sniffer.java b/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
diff --git a/net/minecraft/world/entity/animal/sniffer/Sniffer.java b/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
||||||
index d34dcbbdeae41d23d6fb497e0e8da038580b6d01..50097fbb673655c2513770319e316a43449afa21 100644
|
index 62ca7871d1e5d0fe611948ad43e44c23fdc2d3f8..cd0fc85fbefce4669b4cb637ec3b2628da57adbf 100644
|
||||||
--- a/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
--- a/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
||||||
+++ b/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
+++ b/net/minecraft/world/entity/animal/sniffer/Sniffer.java
|
||||||
@@ -257,7 +257,17 @@ public class Sniffer extends Animal {
|
@@ -257,7 +257,17 @@ public class Sniffer extends Animal {
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: MrHua269 <wangxyper@163.com>
|
|
||||||
Date: Sun, 12 Jan 2025 14:15:24 +0800
|
|
||||||
Subject: [PATCH] Gale: Use platform math functions
|
|
||||||
|
|
||||||
Co-authored by: Martijn Muijsers <martijnmuijsers@live.nl>
|
|
||||||
Xymb <xymb@endcrystal.me>
|
|
||||||
As part of: Gale (https://github.com/GaleMC/Gale/blob/276e903b2688f23b19bdc8d493c0bf87656d2400/patches/server/0019-Use-platform-math-functions.patch)
|
|
||||||
Kaiiju (https://github.com/KaiijuMC/Kaiiju)
|
|
||||||
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/util/Mth.java b/net/minecraft/util/Mth.java
|
|
||||||
index d5d8134da9423cec199cf44762460104677194d6..e0eed27cb33348fcb46858c40014b5fe5dbaf426 100644
|
|
||||||
--- a/net/minecraft/util/Mth.java
|
|
||||||
+++ b/net/minecraft/util/Mth.java
|
|
||||||
@@ -58,18 +58,15 @@ public class Mth {
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int floor(float value) {
|
|
||||||
- int i = (int)value;
|
|
||||||
- return value < i ? i - 1 : i;
|
|
||||||
+ return (int) Math.floor(value); // Gale - use platform math functions
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int floor(double value) {
|
|
||||||
- int i = (int)value;
|
|
||||||
- return value < i ? i - 1 : i;
|
|
||||||
+ return (int) Math.floor(value); // Gale - use platform math functions
|
|
||||||
}
|
|
||||||
|
|
||||||
public static long lfloor(double value) {
|
|
||||||
- long l = (long)value;
|
|
||||||
- return value < l ? l - 1L : l;
|
|
||||||
+ return (long) Math.floor(value); // Gale - use platform math functions
|
|
||||||
}
|
|
||||||
|
|
||||||
public static float abs(float value) {
|
|
||||||
@@ -81,13 +78,11 @@ public class Mth {
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int ceil(float value) {
|
|
||||||
- int i = (int)value;
|
|
||||||
- return value > i ? i + 1 : i;
|
|
||||||
+ return (int) Math.ceil(value); // Gale - use platform math functions
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int ceil(double value) {
|
|
||||||
- int i = (int)value;
|
|
||||||
- return value > i ? i + 1 : i;
|
|
||||||
+ return (int) Math.ceil(value); // Gale - use platform math functions
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int clamp(int value, int min, int max) {
|
|
||||||
@@ -123,15 +118,7 @@ public class Mth {
|
|
||||||
}
|
|
||||||
|
|
||||||
public static double absMax(double x, double y) {
|
|
||||||
- if (x < 0.0) {
|
|
||||||
- x = -x;
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
- if (y < 0.0) {
|
|
||||||
- y = -y;
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
- return Math.max(x, y);
|
|
||||||
+ return Math.max(Math.abs(x), Math.abs(y)); // Gale - use platform math functions
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int floorDiv(int dividend, int divisor) {
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
|
Date: Sun, 9 Mar 2025 11:39:01 +0800
|
||||||
|
Subject: [PATCH] Do not search the block out of current region
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity.java b/net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity.java
|
||||||
|
index 61887e6b052bca715c90dff5d9cd657e0b3f6a78..95e2dff6782bf7767ecb1a23e618862919ea71aa 100644
|
||||||
|
--- a/net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity.java
|
||||||
|
+++ b/net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity.java
|
||||||
|
@@ -422,6 +422,7 @@ public class TheEndGatewayBlockEntity extends TheEndPortalBlockEntity {
|
||||||
|
if (i != 0 || i1 != 0 || allowBedrock) {
|
||||||
|
for (int y = level.getMaxY(); y > (blockPos == null ? level.getMinY() : blockPos.getY()); y--) {
|
||||||
|
BlockPos blockPos1 = new BlockPos(pos.getX() + i, y, pos.getZ() + i1);
|
||||||
|
+ if (!ca.spottedleaf.moonrise.common.util.TickThread.isTickThreadFor((Level) level, blockPos1)) continue; // Luminol - Do not search the block out of current region as we might be at the edge of the tickregion
|
||||||
|
BlockState blockState = level.getBlockState(blockPos1);
|
||||||
|
if (blockState.isCollisionShapeFullBlock(level, blockPos1) && (allowBedrock || !blockState.is(Blocks.BEDROCK))) {
|
||||||
|
blockPos = blockPos1;
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
|
Date: Sat, 22 Mar 2025 20:48:24 +0800
|
||||||
|
Subject: [PATCH] Use the correct list length while generating tick report
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/io/papermc/paper/threadedregions/TickData.java b/io/papermc/paper/threadedregions/TickData.java
|
||||||
|
index 0383e4dcd611a7568597f46308060f3d7288a564..f53c37d047856f1569b6f637c54ebad03c42006e 100644
|
||||||
|
--- a/io/papermc/paper/threadedregions/TickData.java
|
||||||
|
+++ b/io/papermc/paper/threadedregions/TickData.java
|
||||||
|
@@ -178,7 +178,8 @@ public final class TickData {
|
||||||
|
} else {
|
||||||
|
long totalTickTime = 0L;
|
||||||
|
long totalCpuTime = 0L;
|
||||||
|
- for (int k = 0, len2 = collapsedData.size(); k < len2; ++k) {
|
||||||
|
+ //for (int k = 0, len2 = collapsedData.size(); k < len2; ++k) {
|
||||||
|
+ for (int k = 0, len2 = toCollapse.size(); k < len2; ++k) { // Luminol - Use the correct list length
|
||||||
|
final TickRegionScheduler.TickTime time = toCollapse.get(k);
|
||||||
|
totalTickTime += time.tickLength();
|
||||||
|
totalCpuTime += time.supportCPUTime() ? time.tickCpuTime() : 0L;
|
||||||
@@ -0,0 +1,124 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
|
Date: Sun, 23 Mar 2025 15:51:35 +0800
|
||||||
|
Subject: [PATCH] Try rewriting update queue polling
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/ca/spottedleaf/moonrise/patches/chunk_system/scheduling/ThreadedTicketLevelPropagator.java b/ca/spottedleaf/moonrise/patches/chunk_system/scheduling/ThreadedTicketLevelPropagator.java
|
||||||
|
index 310a8f80debadd64c2d962ebf83b7d0505ce6e42..59d77f04fd0f1c7b7af0314e533b72e1858a7e21 100644
|
||||||
|
--- a/ca/spottedleaf/moonrise/patches/chunk_system/scheduling/ThreadedTicketLevelPropagator.java
|
||||||
|
+++ b/ca/spottedleaf/moonrise/patches/chunk_system/scheduling/ThreadedTicketLevelPropagator.java
|
||||||
|
@@ -151,6 +151,15 @@ public abstract class ThreadedTicketLevelPropagator {
|
||||||
|
private boolean performUpdate(final Section section, final UpdateQueue.UpdateQueueNode node, final Propagator propagator,
|
||||||
|
final ReentrantAreaLock ticketLock, final ReentrantAreaLock schedulingLock,
|
||||||
|
final List<ChunkProgressionTask> scheduledTasks, final List<NewChunkHolder> changedFullStatus) {
|
||||||
|
+ // Luminol - Try rewriting update queue polling
|
||||||
|
+ if (section == null) {
|
||||||
|
+ if (node != null) {
|
||||||
|
+ this.updateQueue.remove(node);
|
||||||
|
+ }
|
||||||
|
+ return false;
|
||||||
|
+ }
|
||||||
|
+ // Luminol end
|
||||||
|
+
|
||||||
|
final int sectionX = section.sectionX;
|
||||||
|
final int sectionZ = section.sectionZ;
|
||||||
|
|
||||||
|
@@ -334,6 +343,7 @@ public abstract class ThreadedTicketLevelPropagator {
|
||||||
|
|
||||||
|
// finished
|
||||||
|
if (node != null) {
|
||||||
|
+ node.releaseUpdating(); // Luminol - Try rewriting update queue polling
|
||||||
|
this.updateQueue.remove(node);
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -468,7 +478,8 @@ public abstract class ThreadedTicketLevelPropagator {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- public UpdateQueueNode acquireNextOrWait(final long maxOrder) {
|
||||||
|
+ // Luminol start - Try rewriting update queue polling
|
||||||
|
+ /*public UpdateQueueNode acquireNextOrWait(final long maxOrder) {
|
||||||
|
final List<UpdateQueueNode> blocking = new ArrayList<>();
|
||||||
|
|
||||||
|
node_search:
|
||||||
|
@@ -502,8 +513,63 @@ public abstract class ThreadedTicketLevelPropagator {
|
||||||
|
await(blocking.get(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
+ return null;
|
||||||
|
+ }*/
|
||||||
|
+
|
||||||
|
+ public UpdateQueueNode acquireNextOrWait(final long maxOrder) {
|
||||||
|
+ UpdateQueueNode firstConflict = null;
|
||||||
|
+ UpdateQueueNode prevProcessed = null;
|
||||||
|
+
|
||||||
|
+ for (UpdateQueueNode curr = this.getHeadAcquire(); curr != null && curr.order <= maxOrder; curr = curr.getNextVolatile()) {
|
||||||
|
+ if (curr.getSectionVolatile() == null) {
|
||||||
|
+ continue;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (!curr.tryAcquireUpdating()) {
|
||||||
|
+ continue;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (curr.getSectionVolatile() == null) {
|
||||||
|
+ curr.releaseUpdating();
|
||||||
|
+ continue;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ boolean hasConflict = false;
|
||||||
|
+ for (UpdateQueueNode checked = prevProcessed; checked != null; checked = checked.getNextVolatile()) {
|
||||||
|
+ if (checked != curr && curr.intersects(checked)) {
|
||||||
|
+ hasConflict = true;
|
||||||
|
+ break;
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (hasConflict) {
|
||||||
|
+ if (firstConflict == null) {
|
||||||
|
+ firstConflict = curr;
|
||||||
|
+ }
|
||||||
|
+ curr.releaseUpdating();
|
||||||
|
+ continue;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (firstConflict != null) {
|
||||||
|
+ this.append(firstConflict);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (prevProcessed == null) {
|
||||||
|
+ prevProcessed = curr;
|
||||||
|
+ } else {
|
||||||
|
+ prevProcessed.setNextPlain(curr);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ return curr;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (firstConflict != null) {
|
||||||
|
+ this.append(firstConflict);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
+ // Luminol end
|
||||||
|
|
||||||
|
public UpdateQueueNode peek() {
|
||||||
|
for (UpdateQueueNode head = this.getHeadOpaque(), curr = head;;) {
|
||||||
|
@@ -689,6 +755,15 @@ public abstract class ThreadedTicketLevelPropagator {
|
||||||
|
private final boolean getAndSetUpdatingVolatile(final boolean value) {
|
||||||
|
return (boolean)UPDATING_HANDLE.getAndSet(this, value);
|
||||||
|
}
|
||||||
|
+ // Luminol - Try rewriting update queue polling
|
||||||
|
+ public final boolean tryAcquireUpdating() {
|
||||||
|
+ return (boolean) UPDATING_HANDLE.compareAndSet(this, false, true);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public final void releaseUpdating() {
|
||||||
|
+ UPDATING_HANDLE.setVolatile(this, false);
|
||||||
|
+ }
|
||||||
|
+ // Luminol end
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1,11 +1,8 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 11:03:59 +0800
|
Date: Sun, 12 Jan 2025 11:03:59 +0800
|
||||||
Subject: [PATCH] Kaiiju: Don't pathfind outside region
|
Subject: [PATCH] Kaiiju Don't pathfind outside region
|
||||||
|
|
||||||
Co-authored by: Sofiane H. Djerbi <46628754+kugge@users.noreply.github.com>
|
|
||||||
As part of: Kaiiju (https://github.com/KaiijuMC/Kaiiju/blob/c2b7aec8f7b418a39a2ec408e6411e6f752379da/patches/server/0028-Don-t-pathfind-outside-region.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/KaiijuMC/Kaiiju/blob/c2b7aec8f7b418a39a2ec408e6411e6f752379da/LICENSE)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/ai/behavior/MoveToTargetSink.java b/net/minecraft/world/entity/ai/behavior/MoveToTargetSink.java
|
diff --git a/net/minecraft/world/entity/ai/behavior/MoveToTargetSink.java b/net/minecraft/world/entity/ai/behavior/MoveToTargetSink.java
|
||||||
index 621ba76784f2b92790eca62be4d0688834335ab6..52b3f1795843f40fdb3298cfd1a570a211a08739 100644
|
index 621ba76784f2b92790eca62be4d0688834335ab6..52b3f1795843f40fdb3298cfd1a570a211a08739 100644
|
||||||
@@ -1,17 +1,14 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 11:04:12 +0800
|
Date: Sun, 12 Jan 2025 11:04:12 +0800
|
||||||
Subject: [PATCH] Kaiiju: Vanilla end portal teleportation
|
Subject: [PATCH] Kaiiju Vanilla end portal teleportation
|
||||||
|
|
||||||
Co-authored by: Sofiane H. Djerbi <46628754+kugge@users.noreply.github.com>
|
|
||||||
As part of: Kaiiju (https://github.com/KaiijuMC/Kaiiju/blob/c2b7aec8f7b418a39a2ec408e6411e6f752379da/patches/server/0024-Vanilla-end-portal-teleportation.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/KaiijuMC/Kaiiju/blob/c2b7aec8f7b418a39a2ec408e6411e6f752379da/LICENSE)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
||||||
index 95fd1fc621a01d4a2a97e78f471a1d1a599db612..75b5856b892272aaa70616c35dea75ba3ac76058 100644
|
index 4026d465687604965f105ded21a8206fd52bd375..8ec2b94add58d64d9b83d632427923720ec74990 100644
|
||||||
--- a/net/minecraft/world/entity/Entity.java
|
--- a/net/minecraft/world/entity/Entity.java
|
||||||
+++ b/net/minecraft/world/entity/Entity.java
|
+++ b/net/minecraft/world/entity/Entity.java
|
||||||
@@ -4277,14 +4277,18 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -4275,14 +4275,18 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
targetPos, 16, // load 16 blocks to be safe from block physics
|
targetPos, 16, // load 16 blocks to be safe from block physics
|
||||||
ca.spottedleaf.concurrentutil.util.Priority.HIGH,
|
ca.spottedleaf.concurrentutil.util.Priority.HIGH,
|
||||||
(chunks) -> {
|
(chunks) -> {
|
||||||
@@ -34,7 +31,7 @@ index 95fd1fc621a01d4a2a97e78f471a1d1a599db612..75b5856b892272aaa70616c35dea75ba
|
|||||||
TeleportTransition.PLAY_PORTAL_SOUND.then(TeleportTransition.PLACE_PORTAL_TICKET),
|
TeleportTransition.PLAY_PORTAL_SOUND.then(TeleportTransition.PLACE_PORTAL_TICKET),
|
||||||
org.bukkit.event.player.PlayerTeleportEvent.TeleportCause.END_PORTAL
|
org.bukkit.event.player.PlayerTeleportEvent.TeleportCause.END_PORTAL
|
||||||
)
|
)
|
||||||
@@ -4310,11 +4314,15 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -4297,11 +4301,15 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
ca.spottedleaf.concurrentutil.util.Priority.HIGH,
|
ca.spottedleaf.concurrentutil.util.Priority.HIGH,
|
||||||
(chunks) -> {
|
(chunks) -> {
|
||||||
BlockPos adjustedSpawn = destination.getHeightmapPos(Heightmap.Types.MOTION_BLOCKING_NO_LEAVES, spawnPos);
|
BlockPos adjustedSpawn = destination.getHeightmapPos(Heightmap.Types.MOTION_BLOCKING_NO_LEAVES, spawnPos);
|
||||||
@@ -52,10 +49,10 @@ index 95fd1fc621a01d4a2a97e78f471a1d1a599db612..75b5856b892272aaa70616c35dea75ba
|
|||||||
Relative.union(Relative.DELTA, Relative.ROTATION),
|
Relative.union(Relative.DELTA, Relative.ROTATION),
|
||||||
TeleportTransition.PLAY_PORTAL_SOUND.then(TeleportTransition.PLACE_PORTAL_TICKET),
|
TeleportTransition.PLAY_PORTAL_SOUND.then(TeleportTransition.PLACE_PORTAL_TICKET),
|
||||||
org.bukkit.event.player.PlayerTeleportEvent.TeleportCause.END_PORTAL
|
org.bukkit.event.player.PlayerTeleportEvent.TeleportCause.END_PORTAL
|
||||||
@@ -4511,6 +4519,10 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -4479,6 +4487,10 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
|
if (!this.canPortalAsync(destination, takePassengers)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Luminol end
|
|
||||||
+ // Kaiiju start - sync end platform spawning & entity teleportation
|
+ // Kaiiju start - sync end platform spawning & entity teleportation
|
||||||
+ final java.util.function.Consumer<Entity> tpComplete = type == PortalType.END && destination.getTypeKey() == net.minecraft.world.level.dimension.LevelStem.END ?
|
+ final java.util.function.Consumer<Entity> tpComplete = type == PortalType.END && destination.getTypeKey() == net.minecraft.world.level.dimension.LevelStem.END ?
|
||||||
+ e -> net.minecraft.world.level.levelgen.feature.EndPlatformFeature.createEndPlatform(destination, ServerLevel.END_SPAWN_POINT.below(), true, null) : teleportComplete;
|
+ e -> net.minecraft.world.level.levelgen.feature.EndPlatformFeature.createEndPlatform(destination, ServerLevel.END_SPAWN_POINT.below(), true, null) : teleportComplete;
|
||||||
@@ -63,7 +60,7 @@ index 95fd1fc621a01d4a2a97e78f471a1d1a599db612..75b5856b892272aaa70616c35dea75ba
|
|||||||
|
|
||||||
Vec3 initialPosition = this.position();
|
Vec3 initialPosition = this.position();
|
||||||
ChunkPos initialPositionChunk = new ChunkPos(
|
ChunkPos initialPositionChunk = new ChunkPos(
|
||||||
@@ -4575,8 +4587,12 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -4543,9 +4555,14 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
info.postTeleportTransition().onTransition(teleported);
|
info.postTeleportTransition().onTransition(teleported);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -75,5 +72,7 @@ index 95fd1fc621a01d4a2a97e78f471a1d1a599db612..75b5856b892272aaa70616c35dea75ba
|
|||||||
+ if (tpComplete != null){
|
+ if (tpComplete != null){
|
||||||
+ tpComplete.accept(teleported);
|
+ tpComplete.accept(teleported);
|
||||||
}
|
}
|
||||||
// Kaiiju end
|
+ // Kaiiju end
|
||||||
}
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: adabugra <57899270+adabugra@users.noreply.github.com>
|
|
||||||
Date: Fri, 31 Jan 2025 19:17:01 +0300
|
|
||||||
Subject: [PATCH] Leaves: Disable moved wrongly threshold
|
|
||||||
|
|
||||||
Co-authored by: violetc <58360096+s-yh-china@users.noreply.github.com>
|
|
||||||
As part of: Leaves (https://github.com/LeavesMC/Leaves/blob/f553c53e4230aa032e54a69b6479f1959ed24a60/patches/removed/server/0099-Disable-moved-wrongly-threshold.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/network/ServerGamePacketListenerImpl.java b/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
|
||||||
index d60a1d4c4c8bd7650170775e37e8ca76b46a1588..4fc3c9f2b04711569c12a0efa027601fdd0a40b5 100644
|
|
||||||
--- a/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
|
||||||
+++ b/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
|
||||||
@@ -573,7 +573,7 @@ public class ServerGamePacketListenerImpl
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Paper end - Prevent moving into unloaded chunks
|
|
||||||
- if (d7 - d6 > Math.max(100.0, Mth.square(org.spigotmc.SpigotConfig.movedTooQuicklyMultiplier * (float) i * speed)) && !this.isSingleplayerOwner()) {
|
|
||||||
+ if (!me.earthme.luminol.config.modules.misc.DisableMovedWronglyThreshold.enabled && d7 - d6 > Math.max(100.0, Mth.square(org.spigotmc.SpigotConfig.movedTooQuicklyMultiplier * (float) i * speed)) && !this.isSingleplayerOwner()) { // Leaves - disable can
|
|
||||||
// CraftBukkit end
|
|
||||||
LOGGER.warn(
|
|
||||||
"{} (vehicle of {}) moved too quickly! {},{},{}", rootVehicle.getName().getString(), this.player.getName().getString(), d3, d4, d5
|
|
||||||
@@ -603,7 +603,7 @@ public class ServerGamePacketListenerImpl
|
|
||||||
d5 = d2 - rootVehicle.getZ();
|
|
||||||
d7 = d3 * d3 + d4 * d4 + d5 * d5;
|
|
||||||
boolean flag2 = false;
|
|
||||||
- if (d7 > org.spigotmc.SpigotConfig.movedWronglyThreshold) { // Spigot
|
|
||||||
+ if (!me.earthme.luminol.config.modules.misc.DisableMovedWronglyThreshold.enabled && d7 > org.spigotmc.SpigotConfig.movedWronglyThreshold) { // Spigot // Leaves - disable can
|
|
||||||
flag2 = true; // Paper - diff on change, this should be moved wrongly
|
|
||||||
LOGGER.warn("{} (vehicle of {}) moved wrongly! {}", rootVehicle.getName().getString(), this.player.getName().getString(), Math.sqrt(d7));
|
|
||||||
}
|
|
||||||
@@ -1487,7 +1487,7 @@ public class ServerGamePacketListenerImpl
|
|
||||||
|
|
||||||
if (this.shouldCheckPlayerMovement(isFallFlying)) {
|
|
||||||
float f2 = isFallFlying ? 300.0F : 100.0F;
|
|
||||||
- if (d7 - d6 > Math.max(f2, Mth.square(org.spigotmc.SpigotConfig.movedTooQuicklyMultiplier * (float) i * speed))) {
|
|
||||||
+ if (!me.earthme.luminol.config.modules.misc.DisableMovedWronglyThreshold.enabled && d7 - d6 > Math.max(f2, Mth.square(org.spigotmc.SpigotConfig.movedTooQuicklyMultiplier * (float) i * speed))) { // Leaves - disable can
|
|
||||||
// CraftBukkit end
|
|
||||||
// Paper start - Add fail move event
|
|
||||||
io.papermc.paper.event.player.PlayerFailMoveEvent event = fireFailMove(io.papermc.paper.event.player.PlayerFailMoveEvent.FailReason.MOVED_TOO_QUICKLY,
|
|
||||||
@@ -1561,7 +1561,8 @@ public class ServerGamePacketListenerImpl
|
|
||||||
d5 = d2 - this.player.getZ();
|
|
||||||
d7 = d3 * d3 + d4 * d4 + d5 * d5;
|
|
||||||
boolean movedWrongly = false; // Paper - Add fail move event; rename
|
|
||||||
- if (!this.player.isChangingDimension()
|
|
||||||
+ if (!me.earthme.luminol.config.modules.misc.DisableMovedWronglyThreshold.enabled // Leaves - disable can
|
|
||||||
+ && !this.player.isChangingDimension()
|
|
||||||
&& d7 > org.spigotmc.SpigotConfig.movedWronglyThreshold // Spigot
|
|
||||||
&& !this.player.isSleeping()
|
|
||||||
&& !this.player.isCreative()
|
|
||||||
@@ -1,17 +1,14 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 11:07:08 +0800
|
Date: Sun, 12 Jan 2025 11:07:08 +0800
|
||||||
Subject: [PATCH] Kaiiju: Entity tick and removal limiter
|
Subject: [PATCH] Kaiiju Entity tick and removal limiter
|
||||||
|
|
||||||
Co-authored by: Xymb <xymb@endcrystal.me>
|
|
||||||
As part of: Kaiiju (https://github.com/KaiijuMC/Kaiiju/blob/c2b7aec8f7b418a39a2ec408e6411e6f752379da/patches/server/0021-Entity-ticking-throttling-removal-to-prevent-lag.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/KaiijuMC/Kaiiju/blob/c2b7aec8f7b418a39a2ec408e6411e6f752379da/LICENSE)
|
|
||||||
|
|
||||||
diff --git a/io/papermc/paper/threadedregions/RegionizedWorldData.java b/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
diff --git a/io/papermc/paper/threadedregions/RegionizedWorldData.java b/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
||||||
index 17bf9a4cf48273d5021d48ae57acc4fd053dd32d..0168c2a0e3ce16f107bbd83e1071004e61de32f8 100644
|
index b8f1f042342d3fed5fa26df0de07e8e2b0937130..4d9837f11da4dc59fdb945fdb4849c4d1519f5dc 100644
|
||||||
--- a/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
--- a/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
||||||
+++ b/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
+++ b/io/papermc/paper/threadedregions/RegionizedWorldData.java
|
||||||
@@ -354,6 +354,7 @@ public final class RegionizedWorldData {
|
@@ -358,6 +358,7 @@ public final class RegionizedWorldData {
|
||||||
private final IteratorSafeOrderedReferenceSet<Mob> navigatingMobs = new IteratorSafeOrderedReferenceSet<>();
|
private final IteratorSafeOrderedReferenceSet<Mob> navigatingMobs = new IteratorSafeOrderedReferenceSet<>();
|
||||||
public final ReferenceList<Entity> trackerEntities = new ReferenceList<>(EMPTY_ENTITY_ARRAY); // Moonrise - entity tracker
|
public final ReferenceList<Entity> trackerEntities = new ReferenceList<>(EMPTY_ENTITY_ARRAY); // Moonrise - entity tracker
|
||||||
public final ReferenceList<Entity> trackerUnloadedEntities = new ReferenceList<>(EMPTY_ENTITY_ARRAY); // Moonrise - entity tracker
|
public final ReferenceList<Entity> trackerUnloadedEntities = new ReferenceList<>(EMPTY_ENTITY_ARRAY); // Moonrise - entity tracker
|
||||||
@@ -20,10 +17,10 @@ index 17bf9a4cf48273d5021d48ae57acc4fd053dd32d..0168c2a0e3ce16f107bbd83e1071004e
|
|||||||
// block ticking
|
// block ticking
|
||||||
private final ObjectLinkedOpenHashSet<BlockEventData> blockEvents = new ObjectLinkedOpenHashSet<>();
|
private final ObjectLinkedOpenHashSet<BlockEventData> blockEvents = new ObjectLinkedOpenHashSet<>();
|
||||||
diff --git a/net/minecraft/server/level/ServerLevel.java b/net/minecraft/server/level/ServerLevel.java
|
diff --git a/net/minecraft/server/level/ServerLevel.java b/net/minecraft/server/level/ServerLevel.java
|
||||||
index 19c472901f1fd982115779dfad31a7487334f606..8329bc0cf531a1317ff8e213e948019d28df1eea 100644
|
index 7defcd15c44601bfd2f7f55046038693264defee..5a87825606047f058df8de84bf933d216b5878b0 100644
|
||||||
--- a/net/minecraft/server/level/ServerLevel.java
|
--- a/net/minecraft/server/level/ServerLevel.java
|
||||||
+++ b/net/minecraft/server/level/ServerLevel.java
|
+++ b/net/minecraft/server/level/ServerLevel.java
|
||||||
@@ -803,6 +803,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -808,6 +808,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.startTimer(ca.spottedleaf.leafprofiler.LProfilerRegistry.ACTIVATE_ENTITIES); try { // Folia - profiler
|
profiler.startTimer(ca.spottedleaf.leafprofiler.LProfilerRegistry.ACTIVATE_ENTITIES); try { // Folia - profiler
|
||||||
@@ -31,7 +28,7 @@ index 19c472901f1fd982115779dfad31a7487334f606..8329bc0cf531a1317ff8e213e948019d
|
|||||||
io.papermc.paper.entity.activation.ActivationRange.activateEntities(this); // Paper - EAR
|
io.papermc.paper.entity.activation.ActivationRange.activateEntities(this); // Paper - EAR
|
||||||
} finally { profiler.stopTimer(ca.spottedleaf.leafprofiler.LProfilerRegistry.ACTIVATE_ENTITIES); } // Folia - profiler
|
} finally { profiler.stopTimer(ca.spottedleaf.leafprofiler.LProfilerRegistry.ACTIVATE_ENTITIES); } // Folia - profiler
|
||||||
profiler.startTimer(ca.spottedleaf.leafprofiler.LProfilerRegistry.ENTITY_TICK); try { // Folia - profiler
|
profiler.startTimer(ca.spottedleaf.leafprofiler.LProfilerRegistry.ENTITY_TICK); try { // Folia - profiler
|
||||||
@@ -824,6 +825,13 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -829,6 +830,13 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
|
|
||||||
entity.stopRiding();
|
entity.stopRiding();
|
||||||
}
|
}
|
||||||
@@ -45,7 +42,7 @@ index 19c472901f1fd982115779dfad31a7487334f606..8329bc0cf531a1317ff8e213e948019d
|
|||||||
|
|
||||||
profilerFiller.push("tick");
|
profilerFiller.push("tick");
|
||||||
this.guardEntityTick(this::tickNonPassenger, entity);
|
this.guardEntityTick(this::tickNonPassenger, entity);
|
||||||
@@ -833,6 +841,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -838,6 +846,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
Date: Wed, 4 Jun 2025 12:51:07 +0800
|
|
||||||
Subject: [PATCH] Leaves: Configurable collision behavior
|
|
||||||
|
|
||||||
Co-authored by: Fortern <blueten.ki@gmail.com>
|
|
||||||
As part of: Leaves (https://github.com/LeavesMC/Leaves/blob/c5f18b7864206cea4411211b51787f10affbcb9c/leaves-server/minecraft-patches/features/0111-Configurable-collision-behavior.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/ca/spottedleaf/moonrise/patches/collisions/CollisionUtil.java b/ca/spottedleaf/moonrise/patches/collisions/CollisionUtil.java
|
|
||||||
index e1bf7bc3cca63101b3c0550b5b4c0d28d0f3776e..d753d550b1df88ad9f2315ec3fc8f342be183c6d 100644
|
|
||||||
--- a/ca/spottedleaf/moonrise/patches/collisions/CollisionUtil.java
|
|
||||||
+++ b/ca/spottedleaf/moonrise/patches/collisions/CollisionUtil.java
|
|
||||||
@@ -101,6 +101,14 @@ public final class CollisionUtil {
|
|
||||||
(box1.minZ - box2.maxZ) < -COLLISION_EPSILON && (box1.maxZ - box2.minZ) > COLLISION_EPSILON;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ // Leaves start - Configurable collision behavior
|
|
||||||
+ public static boolean voxelShapeIntersectVanilla(final AABB box1, final AABB box2) {
|
|
||||||
+ return box1.minX < box2.maxX && box1.maxX > box2.minX &&
|
|
||||||
+ box1.minY < box2.maxY && box1.maxY > box2.minY &&
|
|
||||||
+ box1.minZ < box2.maxZ && box1.maxZ > box2.minZ;
|
|
||||||
+ }
|
|
||||||
+ // Leaves end - Configurable collision behavior
|
|
||||||
+
|
|
||||||
// assume !isEmpty(target) && abs(source_move) >= COLLISION_EPSILON
|
|
||||||
public static double collideX(final AABB target, final AABB source, final double source_move) {
|
|
||||||
if ((source.minY - target.maxY) < -COLLISION_EPSILON && (source.maxY - target.minY) > COLLISION_EPSILON &&
|
|
||||||
@@ -2025,7 +2033,7 @@ public final class CollisionUtil {
|
|
||||||
AABB singleAABB = ((CollisionVoxelShape)blockCollision).moonrise$getSingleAABBRepresentation();
|
|
||||||
if (singleAABB != null) {
|
|
||||||
singleAABB = singleAABB.move((double)blockX, (double)blockY, (double)blockZ);
|
|
||||||
- if (!voxelShapeIntersect(aabb, singleAABB)) {
|
|
||||||
+ if (shouldSkip(aabb, blockCollision, singleAABB)) { // Leaves - Configurable collision behavior
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -2078,6 +2086,18 @@ public final class CollisionUtil {
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ // Leaves start - Configurable collision behavior
|
|
||||||
+ private static boolean shouldSkip(AABB aabb, VoxelShape blockCollision, AABB singleAABB) {
|
|
||||||
+ boolean isBlockShape = blockCollision == Shapes.block();
|
|
||||||
+ return switch (me.earthme.luminol.config.modules.misc.CollisionBehaviorConfig.behaviorMode) {
|
|
||||||
+ case "VANILLA" -> !voxelShapeIntersectVanilla(aabb, singleAABB);
|
|
||||||
+ case "PAPER" -> !voxelShapeIntersect(aabb, singleAABB);
|
|
||||||
+ default -> isBlockShape && !voxelShapeIntersectVanilla(aabb, singleAABB) || !isBlockShape && !voxelShapeIntersect(aabb, singleAABB);
|
|
||||||
+ // All other value as BLOCK_SHAPE_VANILLA to process
|
|
||||||
+ };
|
|
||||||
+ }
|
|
||||||
+ // Leaves end - Configurable collision behavior
|
|
||||||
+
|
|
||||||
public static boolean getEntityHardCollisions(final Level world, final Entity entity, AABB aabb,
|
|
||||||
final List<AABB> into, final int collisionFlags, final Predicate<Entity> predicate) {
|
|
||||||
final boolean checkOnly = (collisionFlags & COLLISION_FLAG_CHECK_ONLY) != 0;
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
Date: Wed, 4 Jun 2025 12:54:22 +0800
|
|
||||||
Subject: [PATCH] Leaves: Fix chunk reload detector
|
|
||||||
|
|
||||||
Co-authored by: Fortern <blueten.ki@gmail.com>
|
|
||||||
As part of: Leaves (https://github.com/LeavesMC/Leaves/blob/c5f18b7864206cea4411211b51787f10affbcb9c/leaves-server/minecraft-patches/features/0123-Fix-chunk-reload-detector.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/level/ServerEntity.java b/net/minecraft/server/level/ServerEntity.java
|
|
||||||
index b118e91f1e0b5a8b8c0b2a4a32faabc5a34a5954..663bd286426537daf97ae09dc7e076a9ec6d4c9c 100644
|
|
||||||
--- a/net/minecraft/server/level/ServerEntity.java
|
|
||||||
+++ b/net/minecraft/server/level/ServerEntity.java
|
|
||||||
@@ -376,7 +376,7 @@ public class ServerEntity {
|
|
||||||
if (!list.isEmpty()) {
|
|
||||||
consumer.accept(new ClientboundSetEquipmentPacket(this.entity.getId(), list, true)); // Paper - data sanitization
|
|
||||||
}
|
|
||||||
- ((LivingEntity) this.entity).detectEquipmentUpdates(); // CraftBukkit - SPIGOT-3789: sync again immediately after sending
|
|
||||||
+ if (this.entity.totalEntityAge == 0) ((LivingEntity) this.entity).detectEquipmentUpdates(); // CraftBukkit - SPIGOT-3789: sync again immediately after sending // Leaves - fix chunk reload detector (#492)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!this.entity.getPassengers().isEmpty()) {
|
|
||||||
@@ -1,13 +1,11 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 11:43:15 +0800
|
Date: Sun, 12 Jan 2025 11:43:15 +0800
|
||||||
Subject: [PATCH] Purpur: Use alternative keep alive
|
Subject: [PATCH] Purpur Use alternative keep alive
|
||||||
|
|
||||||
As part of: Purpur (https://github.com/PurpurMC/Purpur/blob/09f547de09fc5d886f18f6d99ff389289766ec9d/purpur-server/minecraft-patches/sources/net/minecraft/server/network/ServerCommonPacketListenerImpl.java.patch)
|
|
||||||
Licensed under: MIT (https://github.com/PurpurMC/Purpur/blob/09f547de09fc5d886f18f6d99ff389289766ec9d/LICENSE)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/network/ServerCommonPacketListenerImpl.java b/net/minecraft/server/network/ServerCommonPacketListenerImpl.java
|
diff --git a/net/minecraft/server/network/ServerCommonPacketListenerImpl.java b/net/minecraft/server/network/ServerCommonPacketListenerImpl.java
|
||||||
index 8bc92e45099007fa2120184916c4cdca98a6a452..50ddb37511074b01749a7c60b1d639ec67b3644c 100644
|
index f7f89695f40e4aff39d324e6a7948a8a3a8c04b3..bceef2e8cd9a84ca32f17085839dff0232f2ee31 100644
|
||||||
--- a/net/minecraft/server/network/ServerCommonPacketListenerImpl.java
|
--- a/net/minecraft/server/network/ServerCommonPacketListenerImpl.java
|
||||||
+++ b/net/minecraft/server/network/ServerCommonPacketListenerImpl.java
|
+++ b/net/minecraft/server/network/ServerCommonPacketListenerImpl.java
|
||||||
@@ -41,6 +41,7 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
@@ -41,6 +41,7 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
||||||
@@ -18,7 +16,7 @@ index 8bc92e45099007fa2120184916c4cdca98a6a452..50ddb37511074b01749a7c60b1d639ec
|
|||||||
private int latency;
|
private int latency;
|
||||||
private volatile boolean suspendFlushingOnServerThread = false;
|
private volatile boolean suspendFlushingOnServerThread = false;
|
||||||
// CraftBukkit start
|
// CraftBukkit start
|
||||||
@@ -130,6 +131,16 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
@@ -131,6 +132,16 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void handleKeepAlive(ServerboundKeepAlivePacket packet) {
|
public void handleKeepAlive(ServerboundKeepAlivePacket packet) {
|
||||||
@@ -35,10 +33,11 @@ index 8bc92e45099007fa2120184916c4cdca98a6a452..50ddb37511074b01749a7c60b1d639ec
|
|||||||
if (this.keepAlivePending && packet.getId() == this.keepAliveChallenge) {
|
if (this.keepAlivePending && packet.getId() == this.keepAliveChallenge) {
|
||||||
int i = (int)(Util.getMillis() - this.keepAliveTime);
|
int i = (int)(Util.getMillis() - this.keepAliveTime);
|
||||||
this.latency = (this.latency * 3 + i) / 4;
|
this.latency = (this.latency * 3 + i) / 4;
|
||||||
@@ -254,6 +265,21 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
@@ -255,7 +266,22 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
||||||
// Paper start - give clients a longer time to respond to pings as per pre 1.12.2 timings
|
// Paper start - give clients a longer time to respond to pings as per pre 1.12.2 timings
|
||||||
// This should effectively place the keepalive handling back to "as it was" before 1.12.2
|
// This should effectively place the keepalive handling back to "as it was" before 1.12.2
|
||||||
final long elapsedTime = millis - this.keepAliveTime;
|
final long elapsedTime = millis - this.keepAliveTime;
|
||||||
|
- if (!this.isSingleplayerOwner() && elapsedTime >= 15000L) { // use vanilla's 15000L between keep alive packets
|
||||||
+ // Purpur start
|
+ // Purpur start
|
||||||
+ if (me.earthme.luminol.config.modules.optimizations.PurpurAlternativeKeepaliveConfig.useAlternateKeepAlive) {
|
+ if (me.earthme.luminol.config.modules.optimizations.PurpurAlternativeKeepaliveConfig.useAlternateKeepAlive) {
|
||||||
+ if (elapsedTime >= 1000L) { // 1 second
|
+ if (elapsedTime >= 1000L) { // 1 second
|
||||||
@@ -54,10 +53,11 @@ index 8bc92e45099007fa2120184916c4cdca98a6a452..50ddb37511074b01749a7c60b1d639ec
|
|||||||
+ }
|
+ }
|
||||||
+ } else {
|
+ } else {
|
||||||
+
|
+
|
||||||
if (!this.isSingleplayerOwner() && elapsedTime >= 15000L) { // use vanilla's 15000L between keep alive packets
|
+ if (!this.isSingleplayerOwner() && elapsedTime >= 15000L) { // use vanilla's 15000L between keep alive packets
|
||||||
if (this.keepAlivePending) {
|
if (this.keepAlivePending) {
|
||||||
if (!this.processedDisconnect && elapsedTime >= KEEPALIVE_LIMIT) { // check keepalive limit, don't fire if already disconnected
|
if (!this.processedDisconnect && elapsedTime >= KEEPALIVE_LIMIT) { // check keepalive limit, don't fire if already disconnected
|
||||||
@@ -267,6 +293,7 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
this.disconnect(TIMEOUT_DISCONNECTION_MESSAGE, org.bukkit.event.player.PlayerKickEvent.Cause.TIMEOUT); // Paper - kick event cause
|
||||||
|
@@ -268,6 +294,7 @@ public abstract class ServerCommonPacketListenerImpl implements ServerCommonPack
|
||||||
this.send(new ClientboundKeepAlivePacket(this.keepAliveChallenge));
|
this.send(new ClientboundKeepAlivePacket(this.keepAliveChallenge));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
Date: Mon, 28 Apr 2025 22:51:32 +0800
|
|
||||||
Subject: [PATCH] Leaves: Fix SculkCatalyst exp skip
|
|
||||||
|
|
||||||
Co-authored by: violetc <58360096+s-yh-china@users.noreply.github.com>
|
|
||||||
As part of: Leaves (https://github.com/LeavesMC/Leaves/blob/f553c53e4230aa032e54a69b6479f1959ed24a60/leaves-server/paper-patches/features/0016-Fix-SculkCatalyst-exp-skip.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/level/ServerPlayer.java b/net/minecraft/server/level/ServerPlayer.java
|
|
||||||
index 56d00caf9db21798fdcbd6ec2cd84a841a5dfd99..4c811d989382f9b04f2c978ea5d1b845a55cc000 100644
|
|
||||||
--- a/net/minecraft/server/level/ServerPlayer.java
|
|
||||||
+++ b/net/minecraft/server/level/ServerPlayer.java
|
|
||||||
@@ -1285,7 +1285,7 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
|
||||||
}
|
|
||||||
|
|
||||||
// SPIGOT-5478 must be called manually now
|
|
||||||
- if (event.shouldDropExperience()) this.dropExperience(this.serverLevel(), cause.getEntity()); // Paper - tie to event
|
|
||||||
+ if (shouldDropExperience(event.shouldDropExperience(), event.forceUseEventDropStatus())) this.dropExperience(this.serverLevel(), cause.getEntity()); // Paper - tie to event // Leaves - exp fix
|
|
||||||
// we clean the player's inventory after the EntityDeathEvent is called so plugins can get the exact state of the inventory.
|
|
||||||
if (!event.getKeepInventory()) {
|
|
||||||
// Paper start - PlayerDeathEvent#getItemsToKeep
|
|
||||||
@@ -1332,6 +1332,15 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
|
||||||
this.setClientLoaded(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
+ // Leaves start - exp fix
|
|
||||||
+ private boolean shouldDropExperience(boolean eventResult, boolean forceUseEvent) {
|
|
||||||
+ if (forceUseEvent) {
|
|
||||||
+ return eventResult;
|
|
||||||
+ }
|
|
||||||
+ return wasExperienceConsumed() ? false : eventResult;
|
|
||||||
+ }
|
|
||||||
+ // Leaves end - exp fix
|
|
||||||
+
|
|
||||||
private void tellNeutralMobsThatIDied() {
|
|
||||||
AABB aabb = new AABB(this.blockPosition()).inflate(32.0, 10.0, 32.0);
|
|
||||||
this.level()
|
|
||||||
diff --git a/net/minecraft/world/entity/LivingEntity.java b/net/minecraft/world/entity/LivingEntity.java
|
|
||||||
index 6102493315f1db2695478ecd7a346cc3f371ebe0..99a0f521c2a327121f20821188356e2e415bc380 100644
|
|
||||||
--- a/net/minecraft/world/entity/LivingEntity.java
|
|
||||||
+++ b/net/minecraft/world/entity/LivingEntity.java
|
|
||||||
@@ -264,6 +264,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
|
||||||
protected final EntityEquipment equipment;
|
|
||||||
// CraftBukkit start
|
|
||||||
public int expToDrop;
|
|
||||||
+ public int expToReward; // Leaves - exp fix
|
|
||||||
public List<DefaultDrop> drops = new java.util.ArrayList<>(); // Paper - Restore vanilla drops behavior
|
|
||||||
public final org.bukkit.craftbukkit.attribute.CraftAttributeMap craftAttributes;
|
|
||||||
public boolean collides = true;
|
|
||||||
@@ -1847,6 +1848,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
|
||||||
entity.killedEntity((ServerLevel) this.level(), this);
|
|
||||||
}
|
|
||||||
this.gameEvent(GameEvent.ENTITY_DIE);
|
|
||||||
+ if (!this.wasExperienceConsumed()) this.dropExperience((ServerLevel) this.level(), damageSource.getEntity()); // Leaves - exp fix
|
|
||||||
} else {
|
|
||||||
this.dead = false;
|
|
||||||
this.setHealth((float) deathEvent.getReviveHealth());
|
|
||||||
@@ -1920,7 +1922,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
|
||||||
this.drops = new java.util.ArrayList<>();
|
|
||||||
// this.dropEquipment(level); // CraftBukkit - moved up
|
|
||||||
// CraftBukkit end
|
|
||||||
- this.dropExperience(level, damageSource.getEntity());
|
|
||||||
+ // this.dropExperience(level, damageSource.getEntity()); // Leaves - exp fix
|
|
||||||
return deathEvent; // Paper
|
|
||||||
}
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity.java b/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity.java
|
|
||||||
index c94d3c755449e23e77d5ba82c6c5e384ff5cedc7..376d2b9a45e0d9b1f90ae356416370340e7cee1f 100644
|
|
||||||
--- a/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity.java
|
|
||||||
+++ b/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity.java
|
|
||||||
@@ -96,8 +96,7 @@ public class SculkCatalystBlockEntity extends BlockEntity implements GameEventLi
|
|
||||||
public boolean handleGameEvent(ServerLevel level, Holder<GameEvent> gameEvent, GameEvent.Context context, Vec3 pos) {
|
|
||||||
if (gameEvent.is(GameEvent.ENTITY_DIE) && context.sourceEntity() instanceof LivingEntity livingEntity) {
|
|
||||||
if (!livingEntity.wasExperienceConsumed()) {
|
|
||||||
- DamageSource lastDamageSource = livingEntity.getLastDamageSource();
|
|
||||||
- int experienceReward = livingEntity.getExperienceReward(level, Optionull.map(lastDamageSource, DamageSource::getEntity));
|
|
||||||
+ int experienceReward = livingEntity.expToReward; // Leaves - exp fix
|
|
||||||
if (livingEntity.shouldDropExperience() && experienceReward > 0) {
|
|
||||||
this.sculkSpreader.addCursors(BlockPos.containing(pos.relative(Direction.UP, 0.5)), experienceReward);
|
|
||||||
this.tryAwardItSpreadsAdvancement(level, livingEntity);
|
|
||||||
@@ -1,18 +1,15 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Thu, 30 Jan 2025 08:42:29 +0800
|
Date: Thu, 30 Jan 2025 08:42:29 +0800
|
||||||
Subject: [PATCH] Purpur: Lobotomize stuck villagers
|
Subject: [PATCH] Purpur Lobotomize stuck villagers
|
||||||
|
|
||||||
Co-authored by: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
|
||||||
As part of: Purpur (https://github.com/PurpurMC/Purpur/blob/09f547de09fc5d886f18f6d99ff389289766ec9d/purpur-server/minecraft-patches/features/0001-Ridables.patch)
|
|
||||||
Licensed under: MIT (https://github.com/PurpurMC/Purpur/blob/09f547de09fc5d886f18f6d99ff389289766ec9d/LICENSE)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/npc/Villager.java b/net/minecraft/world/entity/npc/Villager.java
|
diff --git a/net/minecraft/world/entity/npc/Villager.java b/net/minecraft/world/entity/npc/Villager.java
|
||||||
index aac65526817b1767511c7e180a4d9ded89ef89a1..02f1e08789d47d2e4f3ca51c1196dccea872963f 100644
|
index 7ea74aeb905b95e5919d74df5fbc5e8f7a9985e3..b61da3d0d7d24b674cae155b95f7fab0669f4a20 100644
|
||||||
--- a/net/minecraft/world/entity/npc/Villager.java
|
--- a/net/minecraft/world/entity/npc/Villager.java
|
||||||
+++ b/net/minecraft/world/entity/npc/Villager.java
|
+++ b/net/minecraft/world/entity/npc/Villager.java
|
||||||
@@ -196,6 +196,53 @@ public class Villager extends AbstractVillager implements ReputationEventHandler
|
@@ -193,6 +193,53 @@ public class Villager extends AbstractVillager implements ReputationEventHandler
|
||||||
this.setVillagerData(this.getVillagerData().withType(villagerType).withProfession(level.registryAccess(), VillagerProfession.NONE));
|
this.setVillagerData(this.getVillagerData().setType(villagerType).setProfession(VillagerProfession.NONE));
|
||||||
}
|
}
|
||||||
|
|
||||||
+ // Purpur start
|
+ // Purpur start
|
||||||
@@ -65,7 +62,7 @@ index aac65526817b1767511c7e180a4d9ded89ef89a1..02f1e08789d47d2e4f3ca51c1196dcce
|
|||||||
@Override
|
@Override
|
||||||
public Brain<Villager> getBrain() {
|
public Brain<Villager> getBrain() {
|
||||||
return (Brain<Villager>)super.getBrain();
|
return (Brain<Villager>)super.getBrain();
|
||||||
@@ -292,11 +339,20 @@ public class Villager extends AbstractVillager implements ReputationEventHandler
|
@@ -289,11 +336,21 @@ public class Villager extends AbstractVillager implements ReputationEventHandler
|
||||||
// Paper start - EAR 2
|
// Paper start - EAR 2
|
||||||
this.customServerAiStep(level, false);
|
this.customServerAiStep(level, false);
|
||||||
}
|
}
|
||||||
@@ -74,6 +71,7 @@ index aac65526817b1767511c7e180a4d9ded89ef89a1..02f1e08789d47d2e4f3ca51c1196dcce
|
|||||||
// Paper end - EAR 2
|
// Paper end - EAR 2
|
||||||
ProfilerFiller profilerFiller = Profiler.get();
|
ProfilerFiller profilerFiller = Profiler.get();
|
||||||
profilerFiller.push("villagerBrain");
|
profilerFiller.push("villagerBrain");
|
||||||
|
- if (!inactive) this.getBrain().tick(level, this); // Paper - EAR 2
|
||||||
+ // Purpur start
|
+ // Purpur start
|
||||||
+ if (me.earthme.luminol.config.modules.optimizations.LobotomizeVillageConfig.villagerLobotomizeEnabled) {
|
+ if (me.earthme.luminol.config.modules.optimizations.LobotomizeVillageConfig.villagerLobotomizeEnabled) {
|
||||||
+ // treat as inactive if lobotomized
|
+ // treat as inactive if lobotomized
|
||||||
@@ -82,8 +80,9 @@ index aac65526817b1767511c7e180a4d9ded89ef89a1..02f1e08789d47d2e4f3ca51c1196dcce
|
|||||||
+ this.isLobotomized = false;
|
+ this.isLobotomized = false;
|
||||||
+ }
|
+ }
|
||||||
+ // Purpur end
|
+ // Purpur end
|
||||||
if (!inactive) this.getBrain().tick(level, this); // Paper - EAR 2
|
+ if (!inactive) {
|
||||||
+ else if (this.isLobotomized && shouldRestock()) restock(); // Purpur - Lobotomize stuck villagers
|
+ this.getBrain().tick(level, this); // Paper - EAR 2
|
||||||
|
+ } else if (this.isLobotomized && shouldRestock()) restock(); // Purpur - Lobotomize stuck villagers
|
||||||
profilerFiller.pop();
|
profilerFiller.pop();
|
||||||
if (this.assignProfessionWhenSpawned) {
|
if (this.assignProfessionWhenSpawned) {
|
||||||
this.assignProfessionWhenSpawned = false;
|
this.assignProfessionWhenSpawned = false;
|
||||||
@@ -1,90 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bacteriawa <A3167717663@hotmail.com>
|
|
||||||
Date: Thu, 7 Nov 2024 21:50:47 +0100
|
|
||||||
Subject: [PATCH] Lithium: Fast util
|
|
||||||
|
|
||||||
This patch is based on the following mixins:
|
|
||||||
* "net/caffeinemc/mods/lithium/mixin/math/fast_util/DirectionMixin.java"
|
|
||||||
* "net/caffeinemc/mods/lithium/mixin/math/fast_util/AABBMixin.java"
|
|
||||||
By: 2No2Name <2No2Name@web.de>
|
|
||||||
As part of: Lithium (https://github.com/CaffeineMC/lithium-fabric)
|
|
||||||
Licensed under: LGPL-3.0 (https://www.gnu.org/licenses/lgpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/core/Direction.java b/net/minecraft/core/Direction.java
|
|
||||||
index 63fd7b45750430b565d599337d3112cbaa7e7550..1363c80e7c7be20c52a947f2eb6fabc5e5b6c97c 100644
|
|
||||||
--- a/net/minecraft/core/Direction.java
|
|
||||||
+++ b/net/minecraft/core/Direction.java
|
|
||||||
@@ -222,7 +222,7 @@ public enum Direction implements StringRepresentable, ca.spottedleaf.moonrise.pa
|
|
||||||
}
|
|
||||||
|
|
||||||
public Direction getOpposite() {
|
|
||||||
- return this.opposite; // Paper - optimise collisions
|
|
||||||
+ return VALUES[this.oppositeIndex]; // Leaf - Lithium - fast util
|
|
||||||
}
|
|
||||||
|
|
||||||
public Direction getClockWise(Direction.Axis axis) {
|
|
||||||
@@ -355,7 +355,7 @@ public enum Direction implements StringRepresentable, ca.spottedleaf.moonrise.pa
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Direction getRandom(RandomSource random) {
|
|
||||||
- return Util.getRandom(VALUES, random);
|
|
||||||
+ return VALUES[random.nextInt(VALUES.length)]; // Leaf - Lithium - fast util
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Direction getApproximateNearest(double x, double y, double z) {
|
|
||||||
diff --git a/net/minecraft/world/phys/AABB.java b/net/minecraft/world/phys/AABB.java
|
|
||||||
index c22acc8889fbb3c9ee698624189c195ee4b5eefb..85942c81db268fb6e827683651003bff217ad309 100644
|
|
||||||
--- a/net/minecraft/world/phys/AABB.java
|
|
||||||
+++ b/net/minecraft/world/phys/AABB.java
|
|
||||||
@@ -19,6 +19,15 @@ public class AABB {
|
|
||||||
public final double maxY;
|
|
||||||
public final double maxZ;
|
|
||||||
|
|
||||||
+ // Leaf start - Lithium - fast util
|
|
||||||
+ static {
|
|
||||||
+ assert Direction.Axis.X.ordinal() == 0;
|
|
||||||
+ assert Direction.Axis.Y.ordinal() == 1;
|
|
||||||
+ assert Direction.Axis.Z.ordinal() == 2;
|
|
||||||
+ assert Direction.Axis.values().length == 3;
|
|
||||||
+ }
|
|
||||||
+ // Leaf end - Lithium - fast util
|
|
||||||
+
|
|
||||||
public AABB(double x1, double y1, double z1, double x2, double y2, double z2) {
|
|
||||||
this.minX = Math.min(x1, x2);
|
|
||||||
this.minY = Math.min(y1, y2);
|
|
||||||
@@ -80,11 +89,33 @@ public class AABB {
|
|
||||||
}
|
|
||||||
|
|
||||||
public double min(Direction.Axis axis) {
|
|
||||||
- return axis.choose(this.minX, this.minY, this.minZ);
|
|
||||||
+ // Leaf start - Lithium - fast util
|
|
||||||
+ switch (axis.ordinal()) {
|
|
||||||
+ case 0: //X
|
|
||||||
+ return this.minX;
|
|
||||||
+ case 1: //Y
|
|
||||||
+ return this.minY;
|
|
||||||
+ case 2: //Z
|
|
||||||
+ return this.minZ;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ throw new IllegalArgumentException();
|
|
||||||
+ // Leaf end - Lithium - fast util
|
|
||||||
}
|
|
||||||
|
|
||||||
public double max(Direction.Axis axis) {
|
|
||||||
- return axis.choose(this.maxX, this.maxY, this.maxZ);
|
|
||||||
+ // Leaf start - Lithium - fast util
|
|
||||||
+ switch (axis.ordinal()) {
|
|
||||||
+ case 0: //X
|
|
||||||
+ return this.maxX;
|
|
||||||
+ case 1: //Y
|
|
||||||
+ return this.maxY;
|
|
||||||
+ case 2: //Z
|
|
||||||
+ return this.maxZ;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ throw new IllegalArgumentException();
|
|
||||||
+ // Leaf end - Lithium - fast util
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@@ -0,0 +1,172 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Suisuroru <qwertyuiop14077@qq.com>
|
||||||
|
Date: Thu, 20 Feb 2025 01:00:28 +0800
|
||||||
|
Subject: [PATCH] Purpur-Barrels-and-enderchests-6-rows
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/server/players/PlayerList.java b/net/minecraft/server/players/PlayerList.java
|
||||||
|
index 751b011701d6ae373099226ea63ffbafcd24ce6a..e5e946462da9e56344428139768075b7bd228ec0 100644
|
||||||
|
--- a/net/minecraft/server/players/PlayerList.java
|
||||||
|
+++ b/net/minecraft/server/players/PlayerList.java
|
||||||
|
@@ -1103,6 +1103,10 @@ public abstract class PlayerList {
|
||||||
|
player.getBukkitEntity().recalculatePermissions(); // CraftBukkit
|
||||||
|
this.server.getCommands().sendCommands(player);
|
||||||
|
} // Paper - Add sendOpLevel API
|
||||||
|
+
|
||||||
|
+ // Purpur start - Barrels and enderchests 6 rows
|
||||||
|
+ player.enderChestSlotCount = me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.enderchestRows < 7 && me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.enderchestRows > 0 ? 9 * me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.enderchestRows : 27;
|
||||||
|
+ // Purpur end - Barrels and enderchests 6 rows
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isWhiteListed(GameProfile profile) {
|
||||||
|
diff --git a/net/minecraft/world/entity/player/Player.java b/net/minecraft/world/entity/player/Player.java
|
||||||
|
index ae049c5c3593525b991d865fec695c00ad408a59..c6252a245e9701f69db1fe167f6590095237553a 100644
|
||||||
|
--- a/net/minecraft/world/entity/player/Player.java
|
||||||
|
+++ b/net/minecraft/world/entity/player/Player.java
|
||||||
|
@@ -200,6 +200,7 @@ public abstract class Player extends LivingEntity {
|
||||||
|
private int currentImpulseContextResetGraceTime;
|
||||||
|
public boolean affectsSpawning = true; // Paper - Affects Spawning API
|
||||||
|
public net.kyori.adventure.util.TriState flyingFallDamage = net.kyori.adventure.util.TriState.NOT_SET; // Paper - flying fall damage
|
||||||
|
+ public int enderChestSlotCount = -1; // Purpur - Barrels and enderchests 6 rows
|
||||||
|
|
||||||
|
// CraftBukkit start
|
||||||
|
public boolean fauxSleeping;
|
||||||
|
diff --git a/net/minecraft/world/inventory/ChestMenu.java b/net/minecraft/world/inventory/ChestMenu.java
|
||||||
|
index 280169afbd637eeb67ddf7eaeb4eecd464a128d5..461705345dd897c8304c884272531af836f8854f 100644
|
||||||
|
--- a/net/minecraft/world/inventory/ChestMenu.java
|
||||||
|
+++ b/net/minecraft/world/inventory/ChestMenu.java
|
||||||
|
@@ -66,10 +66,30 @@ public class ChestMenu extends AbstractContainerMenu {
|
||||||
|
return new ChestMenu(MenuType.GENERIC_9x6, containerId, playerInventory, 6);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Purpur start - Barrels and enderchests 6 rows
|
||||||
|
+ public static ChestMenu oneRow(int syncId, Inventory playerInventory, Container inventory) {
|
||||||
|
+ return new ChestMenu(MenuType.GENERIC_9x1, syncId, playerInventory, inventory, 1);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static ChestMenu twoRows(int syncId, Inventory playerInventory, Container inventory) {
|
||||||
|
+ return new ChestMenu(MenuType.GENERIC_9x2, syncId, playerInventory, inventory, 2);
|
||||||
|
+ }
|
||||||
|
+ // Purpur end - Barrels and enderchests 6 rows
|
||||||
|
+
|
||||||
|
public static ChestMenu threeRows(int containerId, Inventory playerInventory, Container container) {
|
||||||
|
return new ChestMenu(MenuType.GENERIC_9x3, containerId, playerInventory, container, 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Purpur start - Barrels and enderchests 6 rows
|
||||||
|
+ public static ChestMenu fourRows(int syncId, Inventory playerInventory, Container inventory) {
|
||||||
|
+ return new ChestMenu(MenuType.GENERIC_9x4, syncId, playerInventory, inventory, 4);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ public static ChestMenu fiveRows(int syncId, Inventory playerInventory, Container inventory) {
|
||||||
|
+ return new ChestMenu(MenuType.GENERIC_9x5, syncId, playerInventory, inventory, 5);
|
||||||
|
+ }
|
||||||
|
+ // Purpur end - Barrels and enderchests 6 rows
|
||||||
|
+
|
||||||
|
public static ChestMenu sixRows(int containerId, Inventory playerInventory, Container container) {
|
||||||
|
return new ChestMenu(MenuType.GENERIC_9x6, containerId, playerInventory, container, 6);
|
||||||
|
}
|
||||||
|
diff --git a/net/minecraft/world/inventory/PlayerEnderChestContainer.java b/net/minecraft/world/inventory/PlayerEnderChestContainer.java
|
||||||
|
index a6a359bab2a727f4631b633a8bb370dd40decc75..5fab998cdec92a2bd965e6b48cc6189b195dc86d 100644
|
||||||
|
--- a/net/minecraft/world/inventory/PlayerEnderChestContainer.java
|
||||||
|
+++ b/net/minecraft/world/inventory/PlayerEnderChestContainer.java
|
||||||
|
@@ -25,11 +25,18 @@ public class PlayerEnderChestContainer extends SimpleContainer {
|
||||||
|
}
|
||||||
|
|
||||||
|
public PlayerEnderChestContainer(Player owner) {
|
||||||
|
- super(27);
|
||||||
|
+ super(me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.enderchestRows < 7 && me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.enderchestRows > 0 ? 9 * me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.enderchestRows : 27);
|
||||||
|
this.owner = owner;
|
||||||
|
// CraftBukkit end
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Purpur start - Barrels and enderchests 6 rows
|
||||||
|
+ @Override
|
||||||
|
+ public int getContainerSize() {
|
||||||
|
+ return owner.enderChestSlotCount < 0 ? super.getContainerSize() : owner.enderChestSlotCount;
|
||||||
|
+ }
|
||||||
|
+ // Purpur end - Barrels and enderchests 6 rows
|
||||||
|
+
|
||||||
|
public void setActiveChest(EnderChestBlockEntity enderChestBlockEntity) {
|
||||||
|
this.activeChest = enderChestBlockEntity;
|
||||||
|
}
|
||||||
|
diff --git a/net/minecraft/world/level/block/EnderChestBlock.java b/net/minecraft/world/level/block/EnderChestBlock.java
|
||||||
|
index f5533960708bdbaf2eacefbc7c7c3123b7d26502..bf9801f1370c8d5e6ca459207b221ef2e92dac9e 100644
|
||||||
|
--- a/net/minecraft/world/level/block/EnderChestBlock.java
|
||||||
|
+++ b/net/minecraft/world/level/block/EnderChestBlock.java
|
||||||
|
@@ -85,8 +85,14 @@ public class EnderChestBlock extends AbstractChestBlock<EnderChestBlockEntity> i
|
||||||
|
enderChestInventory.setActiveChest(enderChestBlockEntity); // Needs to happen before ChestMenu.threeRows as it is required for opening animations
|
||||||
|
if (level instanceof ServerLevel serverLevel && player.openMenu(
|
||||||
|
new SimpleMenuProvider(
|
||||||
|
- (containerId, playerInventory, player1) -> ChestMenu.threeRows(containerId, playerInventory, enderChestInventory), CONTAINER_TITLE
|
||||||
|
- )
|
||||||
|
+ (containerId, playerInventory, player1) -> switch (me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.enderchestRows) {
|
||||||
|
+ case 6 -> ChestMenu.sixRows(containerId, playerInventory, enderChestInventory);
|
||||||
|
+ case 5 -> ChestMenu.fiveRows(containerId, playerInventory, enderChestInventory);
|
||||||
|
+ case 4 -> ChestMenu.fourRows(containerId, playerInventory, enderChestInventory);
|
||||||
|
+ case 2 -> ChestMenu.twoRows(containerId, playerInventory, enderChestInventory);
|
||||||
|
+ case 1 -> ChestMenu.oneRow(containerId, playerInventory, enderChestInventory);
|
||||||
|
+ default -> ChestMenu.threeRows(containerId, playerInventory, enderChestInventory);
|
||||||
|
+ }, CONTAINER_TITLE) // Purpur - Barrels and enderchests 6 rows
|
||||||
|
).isPresent()) {
|
||||||
|
// Paper end - Fix InventoryOpenEvent cancellation - moved up;
|
||||||
|
player.awardStat(Stats.OPEN_ENDERCHEST);
|
||||||
|
diff --git a/net/minecraft/world/level/block/entity/BarrelBlockEntity.java b/net/minecraft/world/level/block/entity/BarrelBlockEntity.java
|
||||||
|
index 0f808855f58281578c2758513787f0f7330c9291..5b6ee21c21686dad86717b87c0033149cefad142 100644
|
||||||
|
--- a/net/minecraft/world/level/block/entity/BarrelBlockEntity.java
|
||||||
|
+++ b/net/minecraft/world/level/block/entity/BarrelBlockEntity.java
|
||||||
|
@@ -55,7 +55,17 @@ public class BarrelBlockEntity extends RandomizableContainerBlockEntity {
|
||||||
|
this.maxStack = i;
|
||||||
|
}
|
||||||
|
// CraftBukkit end
|
||||||
|
- private NonNullList<ItemStack> items = NonNullList.withSize(27, ItemStack.EMPTY);
|
||||||
|
+ // Purpur start - Barrels and enderchests 6 rows
|
||||||
|
+ private NonNullList<ItemStack> items = NonNullList.withSize(switch (me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.barrelRows) {
|
||||||
|
+ case 6 -> 54;
|
||||||
|
+ case 5 -> 45;
|
||||||
|
+ case 4 -> 36;
|
||||||
|
+ case 2 -> 18;
|
||||||
|
+ case 1 -> 9;
|
||||||
|
+ default -> 27;
|
||||||
|
+ }, ItemStack.EMPTY);
|
||||||
|
+ // Purpur end - Barrels and enderchests 6 rows
|
||||||
|
+
|
||||||
|
public final ContainerOpenersCounter openersCounter = new ContainerOpenersCounter() {
|
||||||
|
@Override
|
||||||
|
protected void onOpen(Level level, BlockPos pos, BlockState state) {
|
||||||
|
@@ -107,7 +117,16 @@ public class BarrelBlockEntity extends RandomizableContainerBlockEntity {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getContainerSize() {
|
||||||
|
- return 27;
|
||||||
|
+ // Purpur start - Barrels and enderchests 6 rows
|
||||||
|
+ return switch (me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.barrelRows) {
|
||||||
|
+ case 6 -> 54;
|
||||||
|
+ case 5 -> 45;
|
||||||
|
+ case 4 -> 36;
|
||||||
|
+ case 2 -> 18;
|
||||||
|
+ case 1 -> 9;
|
||||||
|
+ default -> 27;
|
||||||
|
+ };
|
||||||
|
+ // Purpur end - Barrels and enderchests 6 rows
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@@ -127,7 +146,16 @@ public class BarrelBlockEntity extends RandomizableContainerBlockEntity {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected AbstractContainerMenu createMenu(int id, Inventory player) {
|
||||||
|
- return ChestMenu.threeRows(id, player, this);
|
||||||
|
+ // Purpur start - Barrels and enderchests 6 rows
|
||||||
|
+ return switch (me.earthme.luminol.config.modules.misc.ContainerExpansionConfig.barrelRows) {
|
||||||
|
+ case 6 -> ChestMenu.sixRows(id, player, this);
|
||||||
|
+ case 5 -> ChestMenu.fiveRows(id, player, this);
|
||||||
|
+ case 4 -> ChestMenu.fourRows(id, player, this);
|
||||||
|
+ case 2 -> ChestMenu.twoRows(id, player, this);
|
||||||
|
+ case 1 -> ChestMenu.oneRow(id, player, this);
|
||||||
|
+ default -> ChestMenu.threeRows(id, player, this);
|
||||||
|
+ };
|
||||||
|
+ // Purpur end - Barrels and enderchests 6 rows
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bacteriawa <A3167717663@hotmail.com>
|
|
||||||
Date: Fri, 8 Nov 2024 00:22:44 +0800
|
|
||||||
Subject: [PATCH] Lithium: Skip unnecessary calculations if player is not
|
|
||||||
flying or swing
|
|
||||||
|
|
||||||
This patch is based on the following mixins:
|
|
||||||
* "net/caffeinemc/mods/lithium/mixin/entity/fast_elytra_check/LivingEntityMixin.java"
|
|
||||||
* "net/caffeinemc/mods/lithium/mixin/entity/fast_hand_swing/LivingEntityMixin.java"
|
|
||||||
By: 2No2Name <2No2Name@web.de>
|
|
||||||
As part of: Lithium (https://github.com/CaffeineMC/lithium-fabric)
|
|
||||||
Licensed under: LGPL-3.0 (https://www.gnu.org/licenses/lgpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/LivingEntity.java b/net/minecraft/world/entity/LivingEntity.java
|
|
||||||
index 99a0f521c2a327121f20821188356e2e415bc380..9d10ca1808ba66a792f41ed4484897607d037303 100644
|
|
||||||
--- a/net/minecraft/world/entity/LivingEntity.java
|
|
||||||
+++ b/net/minecraft/world/entity/LivingEntity.java
|
|
||||||
@@ -2692,6 +2692,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void updateSwingTime() {
|
|
||||||
+ if (!this.swinging && this.swingTime == 0) return; // Leaf - Lithium - entity.fast_hand_swing
|
|
||||||
int currentSwingDuration = this.getCurrentSwingDuration();
|
|
||||||
if (this.swinging) {
|
|
||||||
this.swingTime++;
|
|
||||||
@@ -3575,6 +3576,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
|
||||||
protected void updateFallFlying() {
|
|
||||||
this.checkSlowFallDistance();
|
|
||||||
if (!this.level().isClientSide) {
|
|
||||||
+ if (!this.isFallFlying() && this.fallFlyTicks == 0) return; // Leaf - Lithium - entity.fast_elytra_check
|
|
||||||
if (!this.canGlide()) {
|
|
||||||
if (this.getSharedFlag(7) != false && !CraftEventFactory.callToggleGlideEvent(this, false).isCancelled()) // CraftBukkit
|
|
||||||
this.setSharedFlag(7, false);
|
|
||||||
@@ -1,17 +1,14 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 12:21:59 +0800
|
Date: Sun, 12 Jan 2025 12:21:59 +0800
|
||||||
Subject: [PATCH] Petal: Reduce sensor work
|
Subject: [PATCH] Petal Reduce sensor work
|
||||||
|
|
||||||
Co-authored by: peaches94 <peachescu94@gmail.com>
|
|
||||||
As part of: Petal (https://github.com/Bloom-host/Petal/blob/cc691540fb48240f38b376f3d94c8b0db2b60d99/patches/server/0005-feat-reduce-sensor-work.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/Bloom-host/Petal/blob/cc691540fb48240f38b376f3d94c8b0db2b60d99/LICENSE)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/Mob.java b/net/minecraft/world/entity/Mob.java
|
diff --git a/net/minecraft/world/entity/Mob.java b/net/minecraft/world/entity/Mob.java
|
||||||
index 34738e880e6ef30730fc72d7b0fb89c53783be17..92d967ca683c50e072419e9398d671a01e0263bc 100644
|
index 94a7b95f41c2954561f9c3cb0f61210c0c058f1d..dbe0fc0c46f66c61a2f286d521302719b28917c1 100644
|
||||||
--- a/net/minecraft/world/entity/Mob.java
|
--- a/net/minecraft/world/entity/Mob.java
|
||||||
+++ b/net/minecraft/world/entity/Mob.java
|
+++ b/net/minecraft/world/entity/Mob.java
|
||||||
@@ -736,11 +736,11 @@ public abstract class Mob extends LivingEntity implements EquipmentUser, Leashab
|
@@ -866,11 +866,11 @@ public abstract class Mob extends LivingEntity implements EquipmentUser, Leashab
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Paper end - Allow nerfed mobs to jump and float
|
// Paper end - Allow nerfed mobs to jump and float
|
||||||
@@ -1,30 +1,27 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 12:25:44 +0800
|
Date: Sun, 12 Jan 2025 12:25:44 +0800
|
||||||
Subject: [PATCH] Pufferfish: Cache climbing check for activation
|
Subject: [PATCH] Pufferfish Cache climbing check for activation
|
||||||
|
|
||||||
Co-authored by: Paul Sauve <paul@technove.co>
|
|
||||||
As part of: Pufferfish (https://github.com/pufferfish-gg/Pufferfish/blob/04bc249f9eee6157338b6884113b6fa3192bf59b/patches/server/0017-Cache-climbing-check-for-activation.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/pufferfish-gg/Pufferfish/blob/04bc249f9eee6157338b6884113b6fa3192bf59b/PATCH-LICENSE)
|
|
||||||
|
|
||||||
diff --git a/io/papermc/paper/entity/activation/ActivationRange.java b/io/papermc/paper/entity/activation/ActivationRange.java
|
diff --git a/io/papermc/paper/entity/activation/ActivationRange.java b/io/papermc/paper/entity/activation/ActivationRange.java
|
||||||
index aec5370b285d4648280b3e1c4c2fcaa501376739..21ca0737d07e4edb5c9f52a703ba1ea0d290925e 100644
|
index c260741a87513b89a5cc62c543fb9f990f86491e..beb9b3b3cd5ca60bd2cdada937bff8a1da639da5 100644
|
||||||
--- a/io/papermc/paper/entity/activation/ActivationRange.java
|
--- a/io/papermc/paper/entity/activation/ActivationRange.java
|
||||||
+++ b/io/papermc/paper/entity/activation/ActivationRange.java
|
+++ b/io/papermc/paper/entity/activation/ActivationRange.java
|
||||||
@@ -237,7 +237,7 @@ public final class ActivationRange {
|
@@ -225,7 +225,7 @@ public final class ActivationRange {
|
||||||
}
|
}
|
||||||
// special cases.
|
// special cases.
|
||||||
if (entity instanceof final LivingEntity living) {
|
if (entity instanceof final LivingEntity living) {
|
||||||
- if (living.onClimbable() || living.jumping || living.hurtTime > 0 || !living.activeEffects.isEmpty() || living.isFreezing()) {
|
- if (living.onClimbable() || living.jumping || living.hurtTime > 0 || !living.activeEffects.isEmpty() || living.isFreezing()) {
|
||||||
+ if (living.onClimableCached() || living.onClimbable() || living.jumping || living.hurtTime > 0 || !living.activeEffects.isEmpty() || living.isFreezing()) { // Pufferfish - use cached
|
+ if ( living.onClimableCached() || living.onClimbable() || living.jumping || living.hurtTime > 0 || !living.activeEffects.isEmpty() || living.isFreezing()) { // Pufferfish - use cached
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (entity instanceof final Mob mob && mob.getTarget() != null) {
|
if (entity instanceof final Mob mob && mob.getTarget() != null) {
|
||||||
diff --git a/net/minecraft/world/entity/LivingEntity.java b/net/minecraft/world/entity/LivingEntity.java
|
diff --git a/net/minecraft/world/entity/LivingEntity.java b/net/minecraft/world/entity/LivingEntity.java
|
||||||
index 9d10ca1808ba66a792f41ed4484897607d037303..5b5e63c4dc10076ba33a8ddf0ebae96643b1161f 100644
|
index 6258b008ad3e00d41e9f3014572d6f7a06b1847c..2293c3db45e9ecce4e0d4b2f87b8e90228e44d94 100644
|
||||||
--- a/net/minecraft/world/entity/LivingEntity.java
|
--- a/net/minecraft/world/entity/LivingEntity.java
|
||||||
+++ b/net/minecraft/world/entity/LivingEntity.java
|
+++ b/net/minecraft/world/entity/LivingEntity.java
|
||||||
@@ -2114,6 +2114,20 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
@@ -2044,6 +2044,20 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
||||||
return this.lastClimbablePos;
|
return this.lastClimbablePos;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1,17 +1,14 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 12:27:17 +0800
|
Date: Sun, 12 Jan 2025 12:27:17 +0800
|
||||||
Subject: [PATCH] Pufferfish: Reduce chunk loading & lookups
|
Subject: [PATCH] Pufferfish Reduce chunk loading & lookups
|
||||||
|
|
||||||
Co-authored by: Paul Sauve <paul@technove.co>
|
|
||||||
As part of: Pufferfish (https://github.com/pufferfish-gg/Pufferfish/blob/04bc249f9eee6157338b6884113b6fa3192bf59b/patches/server/0014-Reduce-chunk-loading-lookups.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/pufferfish-gg/Pufferfish/blob/04bc249f9eee6157338b6884113b6fa3192bf59b/PATCH-LICENSE)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/monster/EnderMan.java b/net/minecraft/world/entity/monster/EnderMan.java
|
diff --git a/net/minecraft/world/entity/monster/EnderMan.java b/net/minecraft/world/entity/monster/EnderMan.java
|
||||||
index 5ae08be75ca01924fc78bdd8d6bb6747ddc21aea..6e0b6304205210cc60293329fe30bd6c99cd263a 100644
|
index 4b5ffd278e0e9d47100e5452949e8d757bbfece4..772ccc4dc66253a84a6d24d00e271d9b4916f052 100644
|
||||||
--- a/net/minecraft/world/entity/monster/EnderMan.java
|
--- a/net/minecraft/world/entity/monster/EnderMan.java
|
||||||
+++ b/net/minecraft/world/entity/monster/EnderMan.java
|
+++ b/net/minecraft/world/entity/monster/EnderMan.java
|
||||||
@@ -300,11 +300,18 @@ public class EnderMan extends Monster implements NeutralMob {
|
@@ -309,11 +309,18 @@ public class EnderMan extends Monster implements NeutralMob {
|
||||||
private boolean teleport(double x, double y, double z) {
|
private boolean teleport(double x, double y, double z) {
|
||||||
BlockPos.MutableBlockPos mutableBlockPos = new BlockPos.MutableBlockPos(x, y, z);
|
BlockPos.MutableBlockPos mutableBlockPos = new BlockPos.MutableBlockPos(x, y, z);
|
||||||
|
|
||||||
@@ -0,0 +1,159 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MrHua269 <wangxyper@163.com>
|
||||||
|
Date: Sun, 12 Jan 2025 14:15:24 +0800
|
||||||
|
Subject: [PATCH] Gale Use platform math functions
|
||||||
|
|
||||||
|
License: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
||||||
|
Gale - https://galemc.org
|
||||||
|
|
||||||
|
This patch is based on the following patch:
|
||||||
|
"Use Math.floor instead of fastfloor"
|
||||||
|
By: Xymb <xymb@endcrystal.me>
|
||||||
|
As part of: Kaiiju (https://github.com/KaiijuMC/Kaiiju)
|
||||||
|
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
||||||
|
|
||||||
|
* Comparison of floor methods used in Paper *
|
||||||
|
|
||||||
|
Measure shown is floored number of milliseconds
|
||||||
|
(nanoseconds integer-divided by 1_000_000
|
||||||
|
taken to get the floor of 1000 randomly chosen doubles
|
||||||
|
(all in the range of [-Integer.MAX_VALUE + 10, Integer.MAX_VALUE - 10])
|
||||||
|
100_000 times (making it 100_000_000 floor operations total)
|
||||||
|
and adding it to a total.
|
||||||
|
|
||||||
|
We are testing the following methods:
|
||||||
|
* net.minecraft.util.Mth.floor
|
||||||
|
* java.lang.Math.floor
|
||||||
|
* java.lang.StrictMath.floor
|
||||||
|
* org.apache.commons.math3.util.FastMath.floor
|
||||||
|
* org.apache.commons.math3.util.FastMath.floor, but with a hot start (see comment in code)
|
||||||
|
* io.papermc.paper.util.MCUtil.fastFloor
|
||||||
|
|
||||||
|
The tests performed clearly show that Math.floor is the fastest.
|
||||||
|
This is most likely due to java.lang.Math's usage of the @IntrinsicCandidate
|
||||||
|
annotation, which allows the JVM to use a more optimized implementation at runtime.
|
||||||
|
However, in the case that there is no intrinsic replacement for Math.floor,
|
||||||
|
it defers to StrictMath.floor, which relies on a number of native methods, and is
|
||||||
|
still much faster than the existing Minecraft utility functions.
|
||||||
|
Therefore, using Math.floor instead of these functions is better regardless.
|
||||||
|
In Apache Commons Math 4, FastMath.floor has also been removed in favor of Math.floor.
|
||||||
|
|
||||||
|
The versions used:
|
||||||
|
* Windows 10 Home 21H2 19044.3086
|
||||||
|
* OpenJDK Runtime Environment Temurin-19.0.2+7 (build 19.0.2+7)
|
||||||
|
* Paper a3c760e6af1e8c7244ef75c6da6e6df278a79e14 on Minecraft 1.20.1
|
||||||
|
* Apache Commons Math 3.6.1
|
||||||
|
|
||||||
|
Results:
|
||||||
|
Total is of type int Total is of type double
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
Mth.floor 2113 (double) Mth.floor 2658
|
||||||
|
(int) Math.floor 130 Math.floor 194
|
||||||
|
(int) StrictMath.floor 835 StrictMath.floor 381
|
||||||
|
(int) FastMath.floor 412 FastMath.floor 376
|
||||||
|
(int) FastMath.floor with hot start 359 FastMath.floor with hot start 321
|
||||||
|
MCUtil.fastFloor 2284 (double) MCUtil.fastFloor 2469
|
||||||
|
|
||||||
|
Code is below:
|
||||||
|
```java
|
||||||
|
package somepackage;
|
||||||
|
|
||||||
|
import io.papermc.paper.util.MCUtil;
|
||||||
|
import net.minecraft.util.Mth;
|
||||||
|
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
public class Main {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
// IF FastMath.floor with a hot start:
|
||||||
|
// FastMath.floor(37485.5);
|
||||||
|
|
||||||
|
var random = new Random(4889338);
|
||||||
|
int size = 1000;
|
||||||
|
var values = new double[size];
|
||||||
|
double bound = Integer.MAX_VALUE - 10;
|
||||||
|
for (int i = 0; i < size; i++) {
|
||||||
|
values[i] = random.nextDouble(bound * 2) - bound;
|
||||||
|
}
|
||||||
|
int repeats = 100_000;
|
||||||
|
|
||||||
|
// int total = 0;
|
||||||
|
// OR
|
||||||
|
// double total = 0;
|
||||||
|
|
||||||
|
long start = System.nanoTime();
|
||||||
|
for (int repeat = 0; repeat < repeats; repeat++) {
|
||||||
|
for (int index = 0; index < size; index++) {
|
||||||
|
total += insert_function_being_tested_here(values[index]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
long diff = System.nanoTime() - start;
|
||||||
|
System.out.println(total);
|
||||||
|
System.out.println(diff / 1_000_000L);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
diff --git a/net/minecraft/util/Mth.java b/net/minecraft/util/Mth.java
|
||||||
|
index d5d8134da9423cec199cf44762460104677194d6..e0eed27cb33348fcb46858c40014b5fe5dbaf426 100644
|
||||||
|
--- a/net/minecraft/util/Mth.java
|
||||||
|
+++ b/net/minecraft/util/Mth.java
|
||||||
|
@@ -58,18 +58,15 @@ public class Mth {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int floor(float value) {
|
||||||
|
- int i = (int)value;
|
||||||
|
- return value < i ? i - 1 : i;
|
||||||
|
+ return (int) Math.floor(value); // Gale - use platform math functions
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int floor(double value) {
|
||||||
|
- int i = (int)value;
|
||||||
|
- return value < i ? i - 1 : i;
|
||||||
|
+ return (int) Math.floor(value); // Gale - use platform math functions
|
||||||
|
}
|
||||||
|
|
||||||
|
public static long lfloor(double value) {
|
||||||
|
- long l = (long)value;
|
||||||
|
- return value < l ? l - 1L : l;
|
||||||
|
+ return (long) Math.floor(value); // Gale - use platform math functions
|
||||||
|
}
|
||||||
|
|
||||||
|
public static float abs(float value) {
|
||||||
|
@@ -81,13 +78,11 @@ public class Mth {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int ceil(float value) {
|
||||||
|
- int i = (int)value;
|
||||||
|
- return value > i ? i + 1 : i;
|
||||||
|
+ return (int) Math.ceil(value); // Gale - use platform math functions
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int ceil(double value) {
|
||||||
|
- int i = (int)value;
|
||||||
|
- return value > i ? i + 1 : i;
|
||||||
|
+ return (int) Math.ceil(value); // Gale - use platform math functions
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int clamp(int value, int min, int max) {
|
||||||
|
@@ -123,15 +118,7 @@ public class Mth {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static double absMax(double x, double y) {
|
||||||
|
- if (x < 0.0) {
|
||||||
|
- x = -x;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- if (y < 0.0) {
|
||||||
|
- y = -y;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- return Math.max(x, y);
|
||||||
|
+ return Math.max(Math.abs(x), Math.abs(y)); // Gale - use platform math functions
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int floorDiv(int dividend, int divisor) {
|
||||||
@@ -1,14 +1,11 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 15:31:52 +0800
|
Date: Sun, 12 Jan 2025 15:31:52 +0800
|
||||||
Subject: [PATCH] Gale: Variable entity wake-up duration
|
Subject: [PATCH] Gale Variable entity wake-up duration
|
||||||
|
|
||||||
Co-authored by: Martijn Muijsers <martijnmuijsers@live.nl>
|
|
||||||
As part of: Gale (https://github.com/GaleMC/Gale/blob/276e903b2688f23b19bdc8d493c0bf87656d2400/patches/server/0054-Variable-entity-wake-up-duration.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/io/papermc/paper/entity/activation/ActivationRange.java b/io/papermc/paper/entity/activation/ActivationRange.java
|
diff --git a/io/papermc/paper/entity/activation/ActivationRange.java b/io/papermc/paper/entity/activation/ActivationRange.java
|
||||||
index 5ca1ed5e564038d6ee0b8437fb477fe8c8f09d94..aec5370b285d4648280b3e1c4c2fcaa501376739 100644
|
index beb9b3b3cd5ca60bd2cdada937bff8a1da639da5..3c9fc433155dd235668ded700d51d95434ba745f 100644
|
||||||
--- a/io/papermc/paper/entity/activation/ActivationRange.java
|
--- a/io/papermc/paper/entity/activation/ActivationRange.java
|
||||||
+++ b/io/papermc/paper/entity/activation/ActivationRange.java
|
+++ b/io/papermc/paper/entity/activation/ActivationRange.java
|
||||||
@@ -54,27 +54,39 @@ public final class ActivationRange {
|
@@ -54,27 +54,39 @@ public final class ActivationRange {
|
||||||
@@ -1,21 +1,16 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 15:35:15 +0800
|
Date: Sun, 12 Jan 2025 15:35:15 +0800
|
||||||
Subject: [PATCH] Gale: Skip entity move if movement is zero
|
Subject: [PATCH] Gale Skip entity move if movement is zero
|
||||||
|
|
||||||
Co-authored by: Martijn Muijsers <martijnmuijsers@live.nl>
|
|
||||||
ishland <ishlandmc@yeah.net>
|
|
||||||
As part of: Gale (https://github.com/GaleMC/Gale/blob/276e903b2688f23b19bdc8d493c0bf87656d2400/patches/server/0103-Skip-entity-move-if-movement-is-zero.patch)
|
|
||||||
VMP (https://github.com/RelativityMC/VMP-fabric)
|
|
||||||
Licensed under: MIT (https://opensource.org/licenses/MIT)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
diff --git a/net/minecraft/world/entity/Entity.java b/net/minecraft/world/entity/Entity.java
|
||||||
index cb347fe9e2876f3b26f004785c882f5faef560d7..95fd1fc621a01d4a2a97e78f471a1d1a599db612 100644
|
index 8ec2b94add58d64d9b83d632427923720ec74990..3ad00cc095588574218ca6d729ead119403202e0 100644
|
||||||
--- a/net/minecraft/world/entity/Entity.java
|
--- a/net/minecraft/world/entity/Entity.java
|
||||||
+++ b/net/minecraft/world/entity/Entity.java
|
+++ b/net/minecraft/world/entity/Entity.java
|
||||||
@@ -1085,7 +1085,14 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -1104,7 +1104,14 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
private double moveStartZ;
|
private volatile boolean preventMoving = false;
|
||||||
// Paper end - detailed watchdog information
|
//Luminol end
|
||||||
|
|
||||||
+ private boolean boundingBoxChanged = false; // Gale - VMP - skip entity move if movement is zero
|
+ private boolean boundingBoxChanged = false; // Gale - VMP - skip entity move if movement is zero
|
||||||
+
|
+
|
||||||
@@ -28,7 +23,7 @@ index cb347fe9e2876f3b26f004785c882f5faef560d7..95fd1fc621a01d4a2a97e78f471a1d1a
|
|||||||
final Vec3 originalMovement = movement; // Paper - Expose pre-collision velocity
|
final Vec3 originalMovement = movement; // Paper - Expose pre-collision velocity
|
||||||
// Paper start - detailed watchdog information
|
// Paper start - detailed watchdog information
|
||||||
ca.spottedleaf.moonrise.common.util.TickThread.ensureTickThread("Cannot move an entity off-main");
|
ca.spottedleaf.moonrise.common.util.TickThread.ensureTickThread("Cannot move an entity off-main");
|
||||||
@@ -5052,6 +5059,11 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
@@ -5045,6 +5052,11 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void setBoundingBox(AABB bb) {
|
public final void setBoundingBox(AABB bb) {
|
||||||
@@ -1,22 +1,17 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Wed, 22 Jan 2025 17:18:00 +0800
|
Date: Wed, 22 Jan 2025 17:18:00 +0800
|
||||||
Subject: [PATCH] Gale: Replace AI attributes with optimized collections
|
Subject: [PATCH] Gale Replace AI attributes with optimized collections
|
||||||
|
|
||||||
Co-authored by: Martijn Muijsers <martijnmuijsers@live.nl>
|
|
||||||
2No2Name <2No2Name@web.de>
|
|
||||||
As part of: Gale (https://github.com/GaleMC/Gale/blob/276e903b2688f23b19bdc8d493c0bf87656d2400/patches/server/0087-Replace-AI-attributes-with-optimized-collections.patch)
|
|
||||||
Lithium (https://github.com/CaffeineMC/lithium-fabric)
|
|
||||||
Licensed under: LGPL-3.0 (https://www.gnu.org/licenses/lgpl-3.0.html)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/ai/attributes/AttributeMap.java b/net/minecraft/world/entity/ai/attributes/AttributeMap.java
|
diff --git a/net/minecraft/world/entity/ai/attributes/AttributeMap.java b/net/minecraft/world/entity/ai/attributes/AttributeMap.java
|
||||||
index bed9b564c493cd84bf53fc49368fda736f3fbc2b..c61071e0019a18eb73223ed9b64619c9cb691896 100644
|
index 4c808c7ef336de74048f40bd1cc8b14131a9325d..8dfd32a8ec590c688dc8d64f18b6b59378c17880 100644
|
||||||
--- a/net/minecraft/world/entity/ai/attributes/AttributeMap.java
|
--- a/net/minecraft/world/entity/ai/attributes/AttributeMap.java
|
||||||
+++ b/net/minecraft/world/entity/ai/attributes/AttributeMap.java
|
+++ b/net/minecraft/world/entity/ai/attributes/AttributeMap.java
|
||||||
@@ -14,9 +14,11 @@ import net.minecraft.nbt.ListTag;
|
@@ -19,9 +19,11 @@ import org.slf4j.Logger;
|
||||||
import net.minecraft.resources.ResourceLocation;
|
|
||||||
|
|
||||||
public class AttributeMap {
|
public class AttributeMap {
|
||||||
|
private static final Logger LOGGER = LogUtils.getLogger();
|
||||||
- private final Map<Holder<Attribute>, AttributeInstance> attributes = new Object2ObjectOpenHashMap<>();
|
- private final Map<Holder<Attribute>, AttributeInstance> attributes = new Object2ObjectOpenHashMap<>();
|
||||||
- private final Set<AttributeInstance> attributesToSync = new ObjectOpenHashSet<>();
|
- private final Set<AttributeInstance> attributesToSync = new ObjectOpenHashSet<>();
|
||||||
- private final Set<AttributeInstance> attributesToUpdate = new ObjectOpenHashSet<>();
|
- private final Set<AttributeInstance> attributesToUpdate = new ObjectOpenHashSet<>();
|
||||||
@@ -1,13 +1,8 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Wed, 22 Jan 2025 17:23:16 +0800
|
Date: Wed, 22 Jan 2025 17:23:16 +0800
|
||||||
Subject: [PATCH] Gale: Optimize noise generation
|
Subject: [PATCH] Gale Optimize noise generation
|
||||||
|
|
||||||
Co-authored by: Martijn Muijsers <martijnmuijsers@live.nl>
|
|
||||||
ishland <ishlandmc@yeah.net>
|
|
||||||
As part of: Gale (https://github.com/GaleMC/Gale/blob/276e903b2688f23b19bdc8d493c0bf87656d2400/patches/server/0106-Optimize-noise-generation.patch)
|
|
||||||
C2ME (https://github.com/RelativityMC/C2ME-fabric)
|
|
||||||
Licensed under: MIT (https://opensource.org/licenses/MIT)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/level/levelgen/synth/ImprovedNoise.java b/net/minecraft/world/level/levelgen/synth/ImprovedNoise.java
|
diff --git a/net/minecraft/world/level/levelgen/synth/ImprovedNoise.java b/net/minecraft/world/level/levelgen/synth/ImprovedNoise.java
|
||||||
index fb11a2eea540d55e50eab59f9857ca5d99f556f8..dcc1a3f8b611c9f103b848db90b077b984b60ada 100644
|
index fb11a2eea540d55e50eab59f9857ca5d99f556f8..dcc1a3f8b611c9f103b848db90b077b984b60ada 100644
|
||||||
@@ -1,16 +1,14 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 15:35:43 +0800
|
Date: Sun, 12 Jan 2025 15:35:43 +0800
|
||||||
Subject: [PATCH] SparklyPaper: Optimize canSee checks
|
Subject: [PATCH] SparklyPaper Optimize canSee checks
|
||||||
|
|
||||||
Co-authored by: MrPowerGamerBR <git@mrpowergamerbr.com>
|
|
||||||
As part of: SparklyPaper (https://github.com/SparklyPower/SparklyPaper/blob/a69d3690472c9967772ffd4d4bd1f41403b7ea6f/sparklypaper-server/paper-patches/features/0005-Optimize-canSee-checks.patch)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/level/ChunkMap.java b/net/minecraft/server/level/ChunkMap.java
|
diff --git a/net/minecraft/server/level/ChunkMap.java b/net/minecraft/server/level/ChunkMap.java
|
||||||
index d0c03dc51c8ad4997963b244ada855827a4c4065..ee53f78396f4377d3e5c2998826f231208066ef6 100644
|
index 5c507be097051de9a43a31bbc6190c3db7688667..7eff847790394aecd058e7a61905da86163b4c6e 100644
|
||||||
--- a/net/minecraft/server/level/ChunkMap.java
|
--- a/net/minecraft/server/level/ChunkMap.java
|
||||||
+++ b/net/minecraft/server/level/ChunkMap.java
|
+++ b/net/minecraft/server/level/ChunkMap.java
|
||||||
@@ -1294,7 +1294,7 @@ public class ChunkMap extends ChunkStorage implements ChunkHolder.PlayerProvider
|
@@ -1224,7 +1224,7 @@ public class ChunkMap extends ChunkStorage implements ChunkHolder.PlayerProvider
|
||||||
}
|
}
|
||||||
// Folia end - region threading
|
// Folia end - region threading
|
||||||
// CraftBukkit start - respect vanish API
|
// CraftBukkit start - respect vanish API
|
||||||
@@ -1,17 +1,15 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Sun, 12 Jan 2025 15:37:25 +0800
|
Date: Sun, 12 Jan 2025 15:37:25 +0800
|
||||||
Subject: [PATCH] SparklyPaper: Skip "distanceToSqr" call in
|
Subject: [PATCH] SparklyPaper Skip "distanceToSqr" call in
|
||||||
"ServerEntity#sendChanges" if the delta movement hasn't changed
|
"ServerEntity#sendChanges" if the delta movement hasn't changed
|
||||||
|
|
||||||
Co-authored by: MrPowerGamerBR <git@mrpowergamerbr.com>
|
|
||||||
As part of: SparklyPaper (https://github.com/SparklyPower/SparklyPaper/blob/a69d3690472c9967772ffd4d4bd1f41403b7ea6f/sparklypaper-server/minecraft-patches/features/0002-Skip-distanceToSqr-call-in-ServerEntity-sendChanges-.patch)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/level/ServerEntity.java b/net/minecraft/server/level/ServerEntity.java
|
diff --git a/net/minecraft/server/level/ServerEntity.java b/net/minecraft/server/level/ServerEntity.java
|
||||||
index 663bd286426537daf97ae09dc7e076a9ec6d4c9c..8739b4e806878cf3a4af9ad1aef7f2a55880d503 100644
|
index 0fb253aa55a24b56b17f524b3261c5b75c7d7e59..1de43a4969a2a4535239b15a7bc30d99eb6934c6 100644
|
||||||
--- a/net/minecraft/server/level/ServerEntity.java
|
--- a/net/minecraft/server/level/ServerEntity.java
|
||||||
+++ b/net/minecraft/server/level/ServerEntity.java
|
+++ b/net/minecraft/server/level/ServerEntity.java
|
||||||
@@ -205,6 +205,8 @@ public class ServerEntity {
|
@@ -195,6 +195,8 @@ public class ServerEntity {
|
||||||
|
|
||||||
if (this.entity.hasImpulse || this.trackDelta || this.entity instanceof LivingEntity && ((LivingEntity)this.entity).isFallFlying()) {
|
if (this.entity.hasImpulse || this.trackDelta || this.entity instanceof LivingEntity && ((LivingEntity)this.entity).isFallFlying()) {
|
||||||
Vec3 deltaMovement = this.entity.getDeltaMovement();
|
Vec3 deltaMovement = this.entity.getDeltaMovement();
|
||||||
@@ -20,7 +18,7 @@ index 663bd286426537daf97ae09dc7e076a9ec6d4c9c..8739b4e806878cf3a4af9ad1aef7f2a5
|
|||||||
double d = deltaMovement.distanceToSqr(this.lastSentMovement);
|
double d = deltaMovement.distanceToSqr(this.lastSentMovement);
|
||||||
if (d > 1.0E-7 || d > 0.0 && deltaMovement.lengthSqr() == 0.0) {
|
if (d > 1.0E-7 || d > 0.0 && deltaMovement.lengthSqr() == 0.0) {
|
||||||
this.lastSentMovement = deltaMovement;
|
this.lastSentMovement = deltaMovement;
|
||||||
@@ -222,6 +224,7 @@ public class ServerEntity {
|
@@ -212,6 +214,7 @@ public class ServerEntity {
|
||||||
this.broadcast.accept(new ClientboundSetEntityMotionPacket(this.entity.getId(), this.lastSentMovement));
|
this.broadcast.accept(new ClientboundSetEntityMotionPacket(this.entity.getId(), this.lastSentMovement));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,8 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <wangxyper@163.com>
|
From: MrHua269 <wangxyper@163.com>
|
||||||
Date: Tue, 28 Jan 2025 18:56:53 +0800
|
Date: Tue, 28 Jan 2025 18:56:53 +0800
|
||||||
Subject: [PATCH] Leaf: Secure seed and matter seed command
|
Subject: [PATCH] Leaf Secure seed and matter seed command
|
||||||
|
|
||||||
Co-authored by: Apehum <apehumchik@gmail.com>
|
|
||||||
As part of: Leaf (https://github.com/Winds-Studio/Leaf/blob/7f3e240bbe0970683c40279a7a65f0fde47503b6/leaf-server/paper-patches/features/0019-Matter-Secure-Seed.patch and https://github.com/Winds-Studio/Leaf/blob/7f3e240bbe0970683c40279a7a65f0fde47503b6/leaf-server/minecraft-patches/features/0050-Matter-Secure-Seed-command.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/Winds-Studio/Leaf/blob/7f3e240bbe0970683c40279a7a65f0fde47503b6/licenses/GPL-3.0.txt)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/commands/SeedCommand.java b/net/minecraft/server/commands/SeedCommand.java
|
diff --git a/net/minecraft/server/commands/SeedCommand.java b/net/minecraft/server/commands/SeedCommand.java
|
||||||
index a65affc41a4fc299bc2281f0f53f2e075633899d..f071e469468b768bd9c063d78c222b1b3e3b13bd 100644
|
index a65affc41a4fc299bc2281f0f53f2e075633899d..f071e469468b768bd9c063d78c222b1b3e3b13bd 100644
|
||||||
@@ -53,10 +50,10 @@ index f6518e29f805018c72222f5aaa7b662071665b65..8d082996a0f361cfd12af6a2138efd70
|
|||||||
this.get("generator-settings", property -> GsonHelper.parse(!property.isEmpty() ? property : "{}"), new JsonObject()),
|
this.get("generator-settings", property -> GsonHelper.parse(!property.isEmpty() ? property : "{}"), new JsonObject()),
|
||||||
this.get("level-type", property -> property.toLowerCase(Locale.ROOT), WorldPresets.NORMAL.location().toString())
|
this.get("level-type", property -> property.toLowerCase(Locale.ROOT), WorldPresets.NORMAL.location().toString())
|
||||||
diff --git a/net/minecraft/server/level/ServerChunkCache.java b/net/minecraft/server/level/ServerChunkCache.java
|
diff --git a/net/minecraft/server/level/ServerChunkCache.java b/net/minecraft/server/level/ServerChunkCache.java
|
||||||
index 977fefea7f81d69b40dca46f72b9629f8c491c44..f8322334fb6a0cea38c4d1981862ba673fd1b100 100644
|
index ac06b8a4813716a8d136be5731cbd96113976a7e..82d95005fc67336458b50c47d44ec4047fffcd1e 100644
|
||||||
--- a/net/minecraft/server/level/ServerChunkCache.java
|
--- a/net/minecraft/server/level/ServerChunkCache.java
|
||||||
+++ b/net/minecraft/server/level/ServerChunkCache.java
|
+++ b/net/minecraft/server/level/ServerChunkCache.java
|
||||||
@@ -674,6 +674,7 @@ public class ServerChunkCache extends ChunkSource implements ca.spottedleaf.moon
|
@@ -680,6 +680,7 @@ public class ServerChunkCache extends ChunkSource implements ca.spottedleaf.moon
|
||||||
}
|
}
|
||||||
|
|
||||||
public ChunkGenerator getGenerator() {
|
public ChunkGenerator getGenerator() {
|
||||||
@@ -65,10 +62,10 @@ index 977fefea7f81d69b40dca46f72b9629f8c491c44..f8322334fb6a0cea38c4d1981862ba67
|
|||||||
}
|
}
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/level/ServerLevel.java b/net/minecraft/server/level/ServerLevel.java
|
diff --git a/net/minecraft/server/level/ServerLevel.java b/net/minecraft/server/level/ServerLevel.java
|
||||||
index b4fdbdba579fa7c7de4928c259b5ff16b0e83aeb..19c472901f1fd982115779dfad31a7487334f606 100644
|
index 5a87825606047f058df8de84bf933d216b5878b0..d8e1febfa14be1c0f4869ae647bd17113660432b 100644
|
||||||
--- a/net/minecraft/server/level/ServerLevel.java
|
--- a/net/minecraft/server/level/ServerLevel.java
|
||||||
+++ b/net/minecraft/server/level/ServerLevel.java
|
+++ b/net/minecraft/server/level/ServerLevel.java
|
||||||
@@ -564,6 +564,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
@@ -620,6 +620,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
||||||
chunkGenerator = new org.bukkit.craftbukkit.generator.CustomChunkGenerator(this, chunkGenerator, gen);
|
chunkGenerator = new org.bukkit.craftbukkit.generator.CustomChunkGenerator(this, chunkGenerator, gen);
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
@@ -77,14 +74,14 @@ index b4fdbdba579fa7c7de4928c259b5ff16b0e83aeb..19c472901f1fd982115779dfad31a748
|
|||||||
DataFixer fixerUpper = server.getFixerUpper();
|
DataFixer fixerUpper = server.getFixerUpper();
|
||||||
// Paper - rewrite chunk system
|
// Paper - rewrite chunk system
|
||||||
diff --git a/net/minecraft/world/entity/monster/Slime.java b/net/minecraft/world/entity/monster/Slime.java
|
diff --git a/net/minecraft/world/entity/monster/Slime.java b/net/minecraft/world/entity/monster/Slime.java
|
||||||
index 5a81172c88f5699f1440b69b331a8ea353c1950a..8fc1f8ff2e4378f4c2b0755f5c203eec0167df7e 100644
|
index 8db4cba1be6d7a5538295ba8da1fdaf7a77a16d0..25ef938623e2e4f65f6554731b756995638e4231 100644
|
||||||
--- a/net/minecraft/world/entity/monster/Slime.java
|
--- a/net/minecraft/world/entity/monster/Slime.java
|
||||||
+++ b/net/minecraft/world/entity/monster/Slime.java
|
+++ b/net/minecraft/world/entity/monster/Slime.java
|
||||||
@@ -328,7 +328,12 @@ public class Slime extends Mob implements Enemy {
|
@@ -340,7 +340,12 @@ public class Slime extends Mob implements Enemy {
|
||||||
}
|
}
|
||||||
|
|
||||||
ChunkPos chunkPos = new ChunkPos(pos);
|
ChunkPos chunkPos = new ChunkPos(pos);
|
||||||
- boolean flag = level.getMinecraftWorld().paperConfig().entities.spawning.allChunksAreSlimeChunks || WorldgenRandom.seedSlimeChunk(chunkPos.x, chunkPos.z, ((WorldGenLevel) level).getSeed(), level.getMinecraftWorld().spigotConfig.slimeSeed).nextInt(10) == 0; // Paper
|
- boolean flag = level.getMinecraftWorld().paperConfig().entities.spawning.allChunksAreSlimeChunks || WorldgenRandom.seedSlimeChunk(chunkPos.x, chunkPos.z, ((WorldGenLevel) level).getSeed(), level.getMinecraftWorld().spigotConfig.slimeSeed).nextInt(10) == 0; // Spigot // Paper
|
||||||
+ // Leaf start - Matter - Secure Seed
|
+ // Leaf start - Matter - Secure Seed
|
||||||
+ boolean isSlimeChunk = me.earthme.luminol.config.modules.misc.SecureSeedConfig.enabled
|
+ boolean isSlimeChunk = me.earthme.luminol.config.modules.misc.SecureSeedConfig.enabled
|
||||||
+ ? level.getChunk(chunkPos.x, chunkPos.z).isSlimeChunk()
|
+ ? level.getChunk(chunkPos.x, chunkPos.z).isSlimeChunk()
|
||||||
@@ -95,7 +92,7 @@ index 5a81172c88f5699f1440b69b331a8ea353c1950a..8fc1f8ff2e4378f4c2b0755f5c203eec
|
|||||||
final double maxHeightSlimeChunk = level.getMinecraftWorld().paperConfig().entities.spawning.slimeSpawnHeight.slimeChunk.maximum;
|
final double maxHeightSlimeChunk = level.getMinecraftWorld().paperConfig().entities.spawning.slimeSpawnHeight.slimeChunk.maximum;
|
||||||
if (random.nextInt(10) == 0 && flag && pos.getY() < maxHeightSlimeChunk) {
|
if (random.nextInt(10) == 0 && flag && pos.getY() < maxHeightSlimeChunk) {
|
||||||
diff --git a/net/minecraft/world/level/chunk/ChunkAccess.java b/net/minecraft/world/level/chunk/ChunkAccess.java
|
diff --git a/net/minecraft/world/level/chunk/ChunkAccess.java b/net/minecraft/world/level/chunk/ChunkAccess.java
|
||||||
index 3b7f0d5fe40bdda65ab859a0c22bf0d369dc0f01..6683df8d0f5a61ab094393f761a3d3a22d6e0455 100644
|
index 6d565b52552534ce9cacfc35ad1bf4adcb69eac3..3a6db5bc0c8be7d68e15317a621c1965fdc3a9bd 100644
|
||||||
--- a/net/minecraft/world/level/chunk/ChunkAccess.java
|
--- a/net/minecraft/world/level/chunk/ChunkAccess.java
|
||||||
+++ b/net/minecraft/world/level/chunk/ChunkAccess.java
|
+++ b/net/minecraft/world/level/chunk/ChunkAccess.java
|
||||||
@@ -87,6 +87,10 @@ public abstract class ChunkAccess implements BiomeManager.NoiseBiomeSource, Ligh
|
@@ -87,6 +87,10 @@ public abstract class ChunkAccess implements BiomeManager.NoiseBiomeSource, Ligh
|
||||||
@@ -125,13 +122,13 @@ index 3b7f0d5fe40bdda65ab859a0c22bf0d369dc0f01..6683df8d0f5a61ab094393f761a3d3a2
|
|||||||
+ // Leaf end - Matter - Secure Seed
|
+ // Leaf end - Matter - Secure Seed
|
||||||
+
|
+
|
||||||
public abstract BlockState getBlockState(final int x, final int y, final int z); // Paper
|
public abstract BlockState getBlockState(final int x, final int y, final int z); // Paper
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
public abstract BlockState setBlockState(BlockPos pos, BlockState state, boolean isMoving);
|
||||||
diff --git a/net/minecraft/world/level/chunk/ChunkGenerator.java b/net/minecraft/world/level/chunk/ChunkGenerator.java
|
diff --git a/net/minecraft/world/level/chunk/ChunkGenerator.java b/net/minecraft/world/level/chunk/ChunkGenerator.java
|
||||||
index a7b0a9f9e7bb8918abc631eed0043f834646fa04..7664edaf958363701438311aa9fa3bc9f2a30874 100644
|
index b85c547f281c58bf45c9062d0b886cb4ff7b386b..55df64f9069496010841bfc373887d27fc5c2162 100644
|
||||||
--- a/net/minecraft/world/level/chunk/ChunkGenerator.java
|
--- a/net/minecraft/world/level/chunk/ChunkGenerator.java
|
||||||
+++ b/net/minecraft/world/level/chunk/ChunkGenerator.java
|
+++ b/net/minecraft/world/level/chunk/ChunkGenerator.java
|
||||||
@@ -342,7 +342,11 @@ public abstract class ChunkGenerator {
|
@@ -343,7 +343,11 @@ public abstract class ChunkGenerator {
|
||||||
Registry<Structure> registry = level.registryAccess().lookupOrThrow(Registries.STRUCTURE);
|
Registry<Structure> registry = level.registryAccess().lookupOrThrow(Registries.STRUCTURE);
|
||||||
Map<Integer, List<Structure>> map = registry.stream().collect(Collectors.groupingBy(structure1 -> structure1.step().ordinal()));
|
Map<Integer, List<Structure>> map = registry.stream().collect(Collectors.groupingBy(structure1 -> structure1.step().ordinal()));
|
||||||
List<FeatureSorter.StepFeatureData> list = this.featuresPerStep.get();
|
List<FeatureSorter.StepFeatureData> list = this.featuresPerStep.get();
|
||||||
@@ -144,7 +141,7 @@ index a7b0a9f9e7bb8918abc631eed0043f834646fa04..7664edaf958363701438311aa9fa3bc9
|
|||||||
long l = worldgenRandom.setDecorationSeed(level.getSeed(), blockPos.getX(), blockPos.getZ());
|
long l = worldgenRandom.setDecorationSeed(level.getSeed(), blockPos.getX(), blockPos.getZ());
|
||||||
Set<Holder<Biome>> set = new ObjectArraySet<>();
|
Set<Holder<Biome>> set = new ObjectArraySet<>();
|
||||||
ChunkPos.rangeClosed(sectionPos.chunk(), 1).forEach(chunkPos -> {
|
ChunkPos.rangeClosed(sectionPos.chunk(), 1).forEach(chunkPos -> {
|
||||||
@@ -551,8 +555,15 @@ public abstract class ChunkGenerator {
|
@@ -556,8 +560,15 @@ public abstract class ChunkGenerator {
|
||||||
} else {
|
} else {
|
||||||
ArrayList<StructureSet.StructureSelectionEntry> list1 = new ArrayList<>(list.size());
|
ArrayList<StructureSet.StructureSelectionEntry> list1 = new ArrayList<>(list.size());
|
||||||
list1.addAll(list);
|
list1.addAll(list);
|
||||||
@@ -326,7 +323,7 @@ index c92508741439a8d0d833ea02d0104416adb83c92..a4063fe0c8e113f0fbd751b84aefaaad
|
|||||||
public static OptionalLong parseSeed(String seed) {
|
public static OptionalLong parseSeed(String seed) {
|
||||||
seed = seed.trim();
|
seed = seed.trim();
|
||||||
diff --git a/net/minecraft/world/level/levelgen/feature/GeodeFeature.java b/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
diff --git a/net/minecraft/world/level/levelgen/feature/GeodeFeature.java b/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
||||||
index 4e72eb49dbf4c70ae7556ba6eb210fcd5ef36aaa..4404211177c7a0595851c1ca01d2aa5758f625c9 100644
|
index 38475f6975533909924c8d54f438cf43cdfe31a3..db58fa5d2ee42711ae5ab8b7384fccdfe756e2dc 100644
|
||||||
--- a/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
--- a/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
||||||
+++ b/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
+++ b/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
||||||
@@ -41,7 +41,11 @@ public class GeodeFeature extends Feature<GeodeConfiguration> {
|
@@ -41,7 +41,11 @@ public class GeodeFeature extends Feature<GeodeConfiguration> {
|
||||||
@@ -381,10 +378,10 @@ index ee0d9dddb36b6879fa113299e24f1aa3b2b151cc..8a93a4eb0a4935af169ff4d4108a8c6e
|
|||||||
int i3 = this.spreadType.evaluate(worldgenRandom, i2);
|
int i3 = this.spreadType.evaluate(worldgenRandom, i2);
|
||||||
int i4 = this.spreadType.evaluate(worldgenRandom, i2);
|
int i4 = this.spreadType.evaluate(worldgenRandom, i2);
|
||||||
diff --git a/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java b/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
diff --git a/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java b/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
||||||
index 1f939b325ec5291b3c4aabc4735c863f9436a6f8..e5ed4c9d59b880968cedd49d5b415c4eb22d02be 100644
|
index 670335a7bbfbc9da64c389977498c22dfcd03251..d684a7c8e6455a9154b16e2c8bca5217cd1f597a 100644
|
||||||
--- a/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
--- a/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
||||||
+++ b/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
+++ b/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
||||||
@@ -119,8 +119,16 @@ public abstract class StructurePlacement {
|
@@ -118,8 +118,16 @@ public abstract class StructurePlacement {
|
||||||
public abstract StructurePlacementType<?> type();
|
public abstract StructurePlacementType<?> type();
|
||||||
|
|
||||||
private static boolean probabilityReducer(long levelSeed, int regionX, int regionZ, int salt, float probability, @org.jetbrains.annotations.Nullable Integer saltOverride) { // Paper - Add missing structure set seed configs; ignore here
|
private static boolean probabilityReducer(long levelSeed, int regionX, int regionZ, int salt, float probability, @org.jetbrains.annotations.Nullable Integer saltOverride) { // Paper - Add missing structure set seed configs; ignore here
|
||||||
@@ -404,7 +401,7 @@ index 1f939b325ec5291b3c4aabc4735c863f9436a6f8..e5ed4c9d59b880968cedd49d5b415c4e
|
|||||||
}
|
}
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java b/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
diff --git a/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java b/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
||||||
index 1cfa0fcd28685736fcdce4aef817e4d4cc4061cb..307999350819dfbc31cfd32438b7711a4f6d1467 100644
|
index eb85edaa3b7fab4f11545b0fa8bfea882dedb67d..a5b8abc06adbfcbffccfc005a625b952d8729470 100644
|
||||||
--- a/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
--- a/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
||||||
+++ b/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
+++ b/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
||||||
@@ -64,7 +64,11 @@ public class JigsawPlacement {
|
@@ -64,7 +64,11 @@ public class JigsawPlacement {
|
||||||
@@ -1,18 +1,15 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <mrhua269@gmail.com>
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
Date: Sat, 8 Mar 2025 21:14:53 +0800
|
Date: Sat, 8 Mar 2025 21:14:53 +0800
|
||||||
Subject: [PATCH] Leaf: Remove useless creating stats json bases on player name
|
Subject: [PATCH] Leaf Remove useless creating stats json bases on player name
|
||||||
logic
|
logic
|
||||||
|
|
||||||
Co-authored by: Dreeam <61569423+Dreeam-qwq@users.noreply.github.com>
|
|
||||||
As part of: Leaf (https://github.com/Winds-Studio/Leaf/blob/7f3e240bbe0970683c40279a7a65f0fde47503b6/leaf-server/minecraft-patches/features/0043-Remove-useless-creating-stats-json-bases-on-player-n.patch)
|
|
||||||
Licensed under: MIT (https://github.com/Winds-Studio/Leaf/blob/7f3e240bbe0970683c40279a7a65f0fde47503b6/licenses/MIT.txt)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/players/PlayerList.java b/net/minecraft/server/players/PlayerList.java
|
diff --git a/net/minecraft/server/players/PlayerList.java b/net/minecraft/server/players/PlayerList.java
|
||||||
index 44994e63a1e48efe69c0b67d02b99a3c814026b7..001483b7098523f3645a95c81fcf0e38b551705e 100644
|
index e5e946462da9e56344428139768075b7bd228ec0..9777a5b7ba9916e426ba87d6ee7cd56f0e43c195 100644
|
||||||
--- a/net/minecraft/server/players/PlayerList.java
|
--- a/net/minecraft/server/players/PlayerList.java
|
||||||
+++ b/net/minecraft/server/players/PlayerList.java
|
+++ b/net/minecraft/server/players/PlayerList.java
|
||||||
@@ -1430,6 +1430,8 @@ public abstract class PlayerList {
|
@@ -1420,6 +1420,8 @@ public abstract class PlayerList {
|
||||||
if (serverStatsCounter == null) {
|
if (serverStatsCounter == null) {
|
||||||
File file = this.server.getWorldPath(LevelResource.PLAYER_STATS_DIR).toFile();
|
File file = this.server.getWorldPath(LevelResource.PLAYER_STATS_DIR).toFile();
|
||||||
File file1 = new File(file, uuid + ".json");
|
File file1 = new File(file, uuid + ".json");
|
||||||
@@ -21,7 +18,7 @@ index 44994e63a1e48efe69c0b67d02b99a3c814026b7..001483b7098523f3645a95c81fcf0e38
|
|||||||
if (!file1.exists()) {
|
if (!file1.exists()) {
|
||||||
File file2 = new File(file, displayName + ".json"); // CraftBukkit
|
File file2 = new File(file, displayName + ".json"); // CraftBukkit
|
||||||
Path path = file2.toPath();
|
Path path = file2.toPath();
|
||||||
@@ -1437,6 +1439,8 @@ public abstract class PlayerList {
|
@@ -1427,6 +1429,8 @@ public abstract class PlayerList {
|
||||||
file2.renameTo(file1);
|
file2.renameTo(file1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
Date: Sat, 26 Apr 2025 21:47:45 +0800
|
|
||||||
Subject: [PATCH] Correct player respawn place
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/level/ServerPlayer.java b/net/minecraft/server/level/ServerPlayer.java
|
|
||||||
index 4c811d989382f9b04f2c978ea5d1b845a55cc000..c3201cb0ba6f928f658d4c74a1ef2b7e8900b1f6 100644
|
|
||||||
--- a/net/minecraft/server/level/ServerPlayer.java
|
|
||||||
+++ b/net/minecraft/server/level/ServerPlayer.java
|
|
||||||
@@ -492,8 +492,10 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
|
||||||
double amountX = selectMaxX - selectMinX;
|
|
||||||
double amountZ = selectMaxZ - selectMinZ;
|
|
||||||
|
|
||||||
- int selectX = amountX < 1.0 ? Mth.floor(worldBorder.getCenterX()) : (int)Mth.floor((amountX + 1.0) * random.nextDouble() + selectMinX);
|
|
||||||
- int selectZ = amountZ < 1.0 ? Mth.floor(worldBorder.getCenterZ()) : (int)Mth.floor((amountZ + 1.0) * random.nextDouble() + selectMinZ);
|
|
||||||
+ // Luminol start - Correct player respawn place
|
|
||||||
+ int selectX = amountX < 0.0 ? Mth.floor(worldBorder.getCenterX()) : (int)Mth.floor(amountX * random.nextDouble() + selectMinX);
|
|
||||||
+ int selectZ = amountZ < 0.0 ? Mth.floor(worldBorder.getCenterZ()) : (int)Mth.floor(amountZ * random.nextDouble() + selectMinZ);
|
|
||||||
+ // Luminol end - Correct player respawn place
|
|
||||||
|
|
||||||
return new BlockPos(selectX, 0, selectZ);
|
|
||||||
}
|
|
||||||
@@ -504,10 +506,20 @@ public class ServerPlayer extends Player implements ca.spottedleaf.moonrise.patc
|
|
||||||
}
|
|
||||||
|
|
||||||
private static BlockPos findSpawnAround(ServerLevel world, ServerPlayer player, BlockPos selected) {
|
|
||||||
+ // Luminol start - Correct player respawn place
|
|
||||||
+ BlockPos inChunk;
|
|
||||||
+ inChunk = PlayerRespawnLogic.getOverworldRespawnPos(world, selected.getX(), selected.getZ());
|
|
||||||
+ if (inChunk != null) {
|
|
||||||
+ AABB checkVolume = player.getBoundingBoxAt((double)inChunk.getX() + 0.5, (double)inChunk.getY(), (double)inChunk.getZ() + 0.5);
|
|
||||||
+ if (player.noCollisionNoLiquid(world, checkVolume)) {
|
|
||||||
+ return inChunk;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ // Luminol end - Correct player respawn place
|
|
||||||
// try hard to find, so that we don't attempt another chunk load
|
|
||||||
for (int dz = -SPAWN_RADIUS_SELECTION_SEARCH; dz <= SPAWN_RADIUS_SELECTION_SEARCH; ++dz) {
|
|
||||||
for (int dx = -SPAWN_RADIUS_SELECTION_SEARCH; dx <= SPAWN_RADIUS_SELECTION_SEARCH; ++dx) {
|
|
||||||
- BlockPos inChunk = PlayerRespawnLogic.getOverworldRespawnPos(world, selected.getX() + dx, selected.getZ() + dz);
|
|
||||||
+ inChunk = PlayerRespawnLogic.getOverworldRespawnPos(world, selected.getX() + dx, selected.getZ() + dz); // Luminol - Correct player respawn place
|
|
||||||
if (inChunk == null) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
@@ -1,14 +1,11 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <mrhua269@gmail.com>
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
Date: Sat, 8 Mar 2025 21:20:11 +0800
|
Date: Sat, 8 Mar 2025 21:20:11 +0800
|
||||||
Subject: [PATCH] Leaf: Replace brain maps with optimized collection
|
Subject: [PATCH] Leaf Replace brain maps with optimized collection
|
||||||
|
|
||||||
Co-authored by: HaHaWTH <102713261+HaHaWTH@users.noreply.github.com>
|
|
||||||
As part of: Leaf (https://github.com/Winds-Studio/Leaf/blob/7f3e240bbe0970683c40279a7a65f0fde47503b6/leaf-server/minecraft-patches/features/0070-Replace-brain-maps-with-optimized-collection.patch)
|
|
||||||
Licensed under: MIT (https://github.com/Winds-Studio/Leaf/blob/7f3e240bbe0970683c40279a7a65f0fde47503b6/licenses/MIT.txt)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/ai/Brain.java b/net/minecraft/world/entity/ai/Brain.java
|
diff --git a/net/minecraft/world/entity/ai/Brain.java b/net/minecraft/world/entity/ai/Brain.java
|
||||||
index c589e18b68e45d5991291db3a0bdd833588ce945..ff17bda274989d6b94cea280378a6e5de4f84d4b 100644
|
index d61fba01feecce3610cd390f490d3097c5db19c4..67b71145e4feb4835a79a6007b04511a2c3b938a 100644
|
||||||
--- a/net/minecraft/world/entity/ai/Brain.java
|
--- a/net/minecraft/world/entity/ai/Brain.java
|
||||||
+++ b/net/minecraft/world/entity/ai/Brain.java
|
+++ b/net/minecraft/world/entity/ai/Brain.java
|
||||||
@@ -45,14 +45,14 @@ public class Brain<E extends LivingEntity> {
|
@@ -45,14 +45,14 @@ public class Brain<E extends LivingEntity> {
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Helvetica Volubi <suisuroru@blue-millennium.fun>
|
|
||||||
Date: Sat, 24 May 2025 04:04:42 +0800
|
|
||||||
Subject: [PATCH] Command IllegalArgumentException crash fix
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/server/commands/FillCommand.java b/net/minecraft/server/commands/FillCommand.java
|
|
||||||
index 3172e86defe86f44b1b095d89e2a35b06372dae9..5ce1f5c3e42fd0b8674cce8da9f3a732114607fb 100644
|
|
||||||
--- a/net/minecraft/server/commands/FillCommand.java
|
|
||||||
+++ b/net/minecraft/server/commands/FillCommand.java
|
|
||||||
@@ -245,6 +245,10 @@ public class FillCommand {
|
|
||||||
// Folia start - region threading
|
|
||||||
} catch (CommandSyntaxException ex) {
|
|
||||||
sendMessage(source, ex);
|
|
||||||
+ // Luminol Start - Server crash fix
|
|
||||||
+ } catch (IllegalArgumentException ex) {
|
|
||||||
+ net.minecraft.server.commands.SetBlockCommand.processIAE(source, ex);
|
|
||||||
+ // Luminol End - Server crash fix
|
|
||||||
}}); return 0; // Folia end - region threading
|
|
||||||
}
|
|
||||||
}
|
|
||||||
diff --git a/net/minecraft/server/commands/SetBlockCommand.java b/net/minecraft/server/commands/SetBlockCommand.java
|
|
||||||
index 96819168051a971685c9b69044fb5c4953bebd95..7f538574a44d4815687fe1f4cc3e7de47cac703b 100644
|
|
||||||
--- a/net/minecraft/server/commands/SetBlockCommand.java
|
|
||||||
+++ b/net/minecraft/server/commands/SetBlockCommand.java
|
|
||||||
@@ -101,6 +101,15 @@ public class SetBlockCommand {
|
|
||||||
}
|
|
||||||
// Folia end - region threading
|
|
||||||
|
|
||||||
+ // Luminol Start - Server crash fix
|
|
||||||
+ public static void processIAE(CommandSourceStack src, IllegalArgumentException ex) {
|
|
||||||
+ Component hoverText = Component.translatable("command.failed")
|
|
||||||
+ .withStyle(style -> style.withHoverEvent(new net.minecraft.network.chat.HoverEvent.ShowText(Component.literal(ex.getMessage()))));
|
|
||||||
+ src.sendFailure(hoverText);
|
|
||||||
+ com.mojang.logging.LogUtils.getLogger().error(ex.getMessage(), ex);
|
|
||||||
+ }
|
|
||||||
+ // Luminol end - Server crash fix
|
|
||||||
+
|
|
||||||
private static int setBlock(
|
|
||||||
CommandSourceStack source, BlockPos pos, BlockInput block, SetBlockCommand.Mode mode, @Nullable Predicate<BlockInWorld> filter, boolean strict
|
|
||||||
) throws CommandSyntaxException {
|
|
||||||
@@ -137,6 +146,10 @@ public class SetBlockCommand {
|
|
||||||
// Folia start - region threading
|
|
||||||
} catch (CommandSyntaxException ex) {
|
|
||||||
sendMessage(source, ex);
|
|
||||||
+ // Luminol Start - Server crash fix
|
|
||||||
+ } catch (IllegalArgumentException ex) {
|
|
||||||
+ processIAE(source, ex);
|
|
||||||
+ // Luminol End - Server crash fix
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return 1;
|
|
||||||
@@ -1,18 +1,14 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: MrHua269 <mrhua269@gmail.com>
|
From: MrHua269 <mrhua269@gmail.com>
|
||||||
Date: Sat, 8 Mar 2025 21:21:11 +0800
|
Date: Sat, 8 Mar 2025 21:21:11 +0800
|
||||||
Subject: [PATCH] Paper: Prevent zombie reinforcements loading chunks
|
Subject: [PATCH] Leaf Paper PR: Prevent zombie reinforcements loading chunks
|
||||||
|
|
||||||
Origin: https://github.com/PaperMC/Paper/pull/11945
|
|
||||||
Co-authored by: Newwind <support@newwindserver.com>
|
|
||||||
As part of: Paper (https://github.com/PaperMC/Paper/blob/2ae1f05336d0f13b646e6c284f83ded16aae84ff/patches/server/1045-Prevent-zombie-reinforcements-loading-chunks.patch)
|
|
||||||
Licensed under: GPL-3.0 (https://github.com/PaperMC/Paper/blob/fa360aa83657d15e8e803ce55800986f6bff8f70/licenses/GPL.md)
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/monster/Zombie.java b/net/minecraft/world/entity/monster/Zombie.java
|
diff --git a/net/minecraft/world/entity/monster/Zombie.java b/net/minecraft/world/entity/monster/Zombie.java
|
||||||
index 39b65970a48568c95ff482b9636e7391f300ffa8..4395947fc8c719864ac2afde5e6bbb53da5129c2 100644
|
index cf231380febd6d316eb902d43c636135ee0d7fa4..731473610e068a613d67efaee08ded810fe86cf0 100644
|
||||||
--- a/net/minecraft/world/entity/monster/Zombie.java
|
--- a/net/minecraft/world/entity/monster/Zombie.java
|
||||||
+++ b/net/minecraft/world/entity/monster/Zombie.java
|
+++ b/net/minecraft/world/entity/monster/Zombie.java
|
||||||
@@ -353,6 +353,13 @@ public class Zombie extends Monster {
|
@@ -348,6 +348,13 @@ public class Zombie extends Monster {
|
||||||
int i2 = floor1 + Mth.nextInt(this.random, 7, 40) * Mth.nextInt(this.random, -1, 1);
|
int i2 = floor1 + Mth.nextInt(this.random, 7, 40) * Mth.nextInt(this.random, -1, 1);
|
||||||
int i3 = floor2 + Mth.nextInt(this.random, 7, 40) * Mth.nextInt(this.random, -1, 1);
|
int i3 = floor2 + Mth.nextInt(this.random, 7, 40) * Mth.nextInt(this.random, -1, 1);
|
||||||
BlockPos blockPos = new BlockPos(i1, i2, i3);
|
BlockPos blockPos = new BlockPos(i1, i2, i3);
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user