Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-26 16:12:46 +01:00
Merge pull request #3267 from GeyserMC/feature/extensions
Geyser 2.1.0 - Extensions, API Expansion and Gradle Migration
Dieser Commit ist enthalten in:
Commit
e3d1e555e3
26
.github/workflows/pullrequest.yml
vendored
26
.github/workflows/pullrequest.yml
vendored
@ -9,47 +9,43 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/cache@v2
|
- name: Set up JDK 17
|
||||||
with:
|
|
||||||
path: ~/.m2/repository
|
|
||||||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-maven-
|
|
||||||
- name: Set up JDK 16
|
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
java-version: 16
|
distribution: 'temurin'
|
||||||
|
java-version: 17
|
||||||
|
cache: 'gradle'
|
||||||
- name: submodules-init
|
- name: submodules-init
|
||||||
uses: snickerbockers/submodules-init@v4
|
uses: snickerbockers/submodules-init@v4
|
||||||
- name: Build with Maven
|
- name: Build with Gradle
|
||||||
run: mvn -B package -T 2C
|
run: ./gradlew build
|
||||||
- name: Archive artifacts (Geyser Standalone)
|
- name: Archive artifacts (Geyser Standalone)
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: success()
|
if: success()
|
||||||
with:
|
with:
|
||||||
name: Geyser Standalone
|
name: Geyser Standalone
|
||||||
path: bootstrap/standalone/target/Geyser.jar
|
path: bootstrap/standalone/build/libs/Geyser.jar
|
||||||
- name: Archive artifacts (Geyser Spigot)
|
- name: Archive artifacts (Geyser Spigot)
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: success()
|
if: success()
|
||||||
with:
|
with:
|
||||||
name: Geyser Spigot
|
name: Geyser Spigot
|
||||||
path: bootstrap/spigot/target/Geyser-Spigot.jar
|
path: bootstrap/spigot/build/libs/Geyser-Spigot.jar
|
||||||
- name: Archive artifacts (Geyser BungeeCord)
|
- name: Archive artifacts (Geyser BungeeCord)
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: success()
|
if: success()
|
||||||
with:
|
with:
|
||||||
name: Geyser BungeeCord
|
name: Geyser BungeeCord
|
||||||
path: bootstrap/bungeecord/target/Geyser-BungeeCord.jar
|
path: bootstrap/bungeecord/build/libs/Geyser-BungeeCord.jar
|
||||||
- name: Archive artifacts (Geyser Sponge)
|
- name: Archive artifacts (Geyser Sponge)
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: success()
|
if: success()
|
||||||
with:
|
with:
|
||||||
name: Geyser Sponge
|
name: Geyser Sponge
|
||||||
path: bootstrap/sponge/target/Geyser-Sponge.jar
|
path: bootstrap/sponge/build/libs/Geyser-Sponge.jar
|
||||||
- name: Archive artifacts (Geyser Velocity)
|
- name: Archive artifacts (Geyser Velocity)
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: success()
|
if: success()
|
||||||
with:
|
with:
|
||||||
name: Geyser Velocity
|
name: Geyser Velocity
|
||||||
path: bootstrap/velocity/target/Geyser-Velocity.jar
|
path: bootstrap/velocity/build/libs/Geyser-Velocity.jar
|
||||||
|
7
.gitignore
vendored
7
.gitignore
vendored
@ -235,8 +235,12 @@ nbdist/
|
|||||||
|
|
||||||
# End of https://www.gitignore.io/api/git,java,maven,eclipse,netbeans,jetbrains+all,visualstudiocode
|
# End of https://www.gitignore.io/api/git,java,maven,eclipse,netbeans,jetbrains+all,visualstudiocode
|
||||||
|
|
||||||
|
### Gradle ###
|
||||||
|
.gradle
|
||||||
|
|
||||||
### Geyser ###
|
### Geyser ###
|
||||||
run/
|
run/
|
||||||
|
extensions/
|
||||||
config.yml
|
config.yml
|
||||||
logs/
|
logs/
|
||||||
key.pem
|
key.pem
|
||||||
@ -245,4 +249,5 @@ locales/
|
|||||||
/packs/
|
/packs/
|
||||||
/dump.json
|
/dump.json
|
||||||
/saved-refresh-tokens.json
|
/saved-refresh-tokens.json
|
||||||
/languages/
|
/custom_mappings/
|
||||||
|
/languages/
|
||||||
|
40
Jenkinsfile
vendored
40
Jenkinsfile
vendored
@ -1,8 +1,8 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
tools {
|
tools {
|
||||||
maven 'Maven 3'
|
gradle 'Gradle 7'
|
||||||
jdk 'Java 16'
|
jdk 'Java 17'
|
||||||
}
|
}
|
||||||
options {
|
options {
|
||||||
buildDiscarder(logRotator(artifactNumToKeepStr: '20'))
|
buildDiscarder(logRotator(artifactNumToKeepStr: '20'))
|
||||||
@ -11,11 +11,16 @@ pipeline {
|
|||||||
stage ('Build') {
|
stage ('Build') {
|
||||||
steps {
|
steps {
|
||||||
sh 'git submodule update --init --recursive'
|
sh 'git submodule update --init --recursive'
|
||||||
sh 'mvn clean package'
|
rtGradleRun(
|
||||||
|
usesPlugin: true,
|
||||||
|
tool: 'Gradle 7',
|
||||||
|
buildFile: 'build.gradle.kts',
|
||||||
|
tasks: 'clean build',
|
||||||
|
)
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
archiveArtifacts artifacts: 'bootstrap/**/target/*.jar', excludes: 'bootstrap/**/target/original-*.jar', fingerprint: true
|
archiveArtifacts artifacts: 'bootstrap/**/build/libs/*.jar', excludes: 'bootstrap/**/build/libs/*-sources.jar,bootstrap/**/build/libs/*-unshaded.jar', fingerprint: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -24,27 +29,30 @@ pipeline {
|
|||||||
when {
|
when {
|
||||||
anyOf {
|
anyOf {
|
||||||
branch "master"
|
branch "master"
|
||||||
|
branch "feature/extensions"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
rtMavenDeployer(
|
rtGradleDeployer(
|
||||||
id: "maven-deployer",
|
id: "GRADLE_DEPLOYER",
|
||||||
serverId: "opencollab-artifactory",
|
serverId: "opencollab-artifactory",
|
||||||
releaseRepo: "maven-releases",
|
releaseRepo: "maven-releases",
|
||||||
snapshotRepo: "maven-snapshots"
|
snapshotRepo: "maven-snapshots"
|
||||||
)
|
)
|
||||||
rtMavenResolver(
|
rtGradleResolver(
|
||||||
id: "maven-resolver",
|
id: "GRADLE_RESOLVER",
|
||||||
serverId: "opencollab-artifactory",
|
serverId: "opencollab-artifactory"
|
||||||
releaseRepo: "maven-deploy-release",
|
|
||||||
snapshotRepo: "maven-deploy-snapshot"
|
|
||||||
)
|
)
|
||||||
rtMavenRun(
|
rtGradleRun(
|
||||||
pom: 'pom.xml',
|
usesPlugin: true,
|
||||||
goals: 'javadoc:jar source:jar install -pl :core -am -DskipTests',
|
tool: 'Gradle 7',
|
||||||
deployerId: "maven-deployer",
|
rootDir: "",
|
||||||
resolverId: "maven-resolver"
|
useWrapper: true,
|
||||||
|
buildFile: 'build.gradle.kts',
|
||||||
|
tasks: 'build artifactoryPublish',
|
||||||
|
deployerId: "GRADLE_DEPLOYER",
|
||||||
|
resolverId: "GRADLE_RESOLVER"
|
||||||
)
|
)
|
||||||
rtPublishBuildInfo(
|
rtPublishBuildInfo(
|
||||||
serverId: "opencollab-artifactory"
|
serverId: "opencollab-artifactory"
|
||||||
|
@ -34,7 +34,6 @@ Take a look [here](https://wiki.geysermc.org/geyser/setup/) for how to set up Ge
|
|||||||
|
|
||||||
## What's Left to be Added/Fixed
|
## What's Left to be Added/Fixed
|
||||||
- Near-perfect movement (to the point where anticheat on large servers is unlikely to ban you)
|
- Near-perfect movement (to the point where anticheat on large servers is unlikely to ban you)
|
||||||
- Resource pack conversion/CustomModelData
|
|
||||||
- Some Entity Flags
|
- Some Entity Flags
|
||||||
- Structure block UI
|
- Structure block UI
|
||||||
|
|
||||||
@ -43,9 +42,8 @@ There are a few things Geyser is unable to support due to various differences be
|
|||||||
|
|
||||||
## Compiling
|
## Compiling
|
||||||
1. Clone the repo to your computer
|
1. Clone the repo to your computer
|
||||||
2. [Install Maven](https://maven.apache.org/install.html)
|
2. Navigate to the Geyser root directory and run `git submodule update --init --recursive`. This command downloads all the needed submodules for Geyser and is a crucial step in this process.
|
||||||
3. Navigate to the Geyser root directory and run `git submodule update --init --recursive`. This command downloads all the needed submodules for Geyser and is a crucial step in this process.
|
3. Run `gradlew build` and locate to `bootstrap/build` folder.
|
||||||
4. Run `mvn clean install` and locate to the `target` folder.
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
Any contributions are appreciated. Please feel free to reach out to us on [Discord](http://discord.geysermc.org/) if
|
Any contributions are appreciated. Please feel free to reach out to us on [Discord](http://discord.geysermc.org/) if
|
||||||
|
0
ap/build.gradle.kts
Normale Datei
0
ap/build.gradle.kts
Normale Datei
14
ap/pom.xml
14
ap/pom.xml
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>geyser-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
|
|
||||||
<artifactId>ap</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</project>
|
|
@ -23,7 +23,7 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.processor;
|
package org.geysermc.geyser.processor;
|
||||||
|
|
||||||
import javax.annotation.processing.SupportedAnnotationTypes;
|
import javax.annotation.processing.SupportedAnnotationTypes;
|
||||||
import javax.annotation.processing.SupportedSourceVersion;
|
import javax.annotation.processing.SupportedSourceVersion;
|
@ -23,7 +23,7 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.processor;
|
package org.geysermc.geyser.processor;
|
||||||
|
|
||||||
import javax.annotation.processing.AbstractProcessor;
|
import javax.annotation.processing.AbstractProcessor;
|
||||||
import javax.annotation.processing.ProcessingEnvironment;
|
import javax.annotation.processing.ProcessingEnvironment;
|
||||||
@ -39,6 +39,7 @@ import java.io.BufferedReader;
|
|||||||
import java.io.BufferedWriter;
|
import java.io.BufferedWriter;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.NoSuchFileException;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
@ -163,10 +164,15 @@ public class ClassProcessor extends AbstractProcessor {
|
|||||||
this.processingEnv.getMessager().printMessage(Diagnostic.Kind.NOTE, "Reading existing " + this.annotationClassName + " list from " + this.outputPath);
|
this.processingEnv.getMessager().printMessage(Diagnostic.Kind.NOTE, "Reading existing " + this.annotationClassName + " list from " + this.outputPath);
|
||||||
return Files.newBufferedReader(this.outputPath);
|
return Files.newBufferedReader(this.outputPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
FileObject obj = this.processingEnv.getFiler().getResource(StandardLocation.CLASS_OUTPUT, "", this.annotationClassName);
|
FileObject obj = this.processingEnv.getFiler().getResource(StandardLocation.CLASS_OUTPUT, "", this.annotationClassName);
|
||||||
if (obj != null) {
|
if (obj != null) {
|
||||||
this.processingEnv.getMessager().printMessage(Diagnostic.Kind.NOTE, "Reading existing " + this.annotationClassName + " list from " + obj.toUri());
|
this.processingEnv.getMessager().printMessage(Diagnostic.Kind.NOTE, "Reading existing " + this.annotationClassName + " list from " + obj.toUri());
|
||||||
return new BufferedReader(obj.openReader(false));
|
try {
|
||||||
|
return new BufferedReader(obj.openReader(false));
|
||||||
|
} catch (NoSuchFileException ignored) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
@ -23,7 +23,7 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.processor;
|
package org.geysermc.geyser.processor;
|
||||||
|
|
||||||
import javax.annotation.processing.SupportedAnnotationTypes;
|
import javax.annotation.processing.SupportedAnnotationTypes;
|
||||||
import javax.annotation.processing.SupportedSourceVersion;
|
import javax.annotation.processing.SupportedSourceVersion;
|
@ -23,7 +23,7 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.processor;
|
package org.geysermc.geyser.processor;
|
||||||
|
|
||||||
import javax.annotation.processing.SupportedAnnotationTypes;
|
import javax.annotation.processing.SupportedAnnotationTypes;
|
||||||
import javax.annotation.processing.SupportedSourceVersion;
|
import javax.annotation.processing.SupportedSourceVersion;
|
@ -23,7 +23,7 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.processor;
|
package org.geysermc.geyser.processor;
|
||||||
|
|
||||||
import javax.annotation.processing.SupportedAnnotationTypes;
|
import javax.annotation.processing.SupportedAnnotationTypes;
|
||||||
import javax.annotation.processing.SupportedSourceVersion;
|
import javax.annotation.processing.SupportedSourceVersion;
|
@ -23,7 +23,7 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.processor;
|
package org.geysermc.geyser.processor;
|
||||||
|
|
||||||
import javax.annotation.processing.SupportedAnnotationTypes;
|
import javax.annotation.processing.SupportedAnnotationTypes;
|
||||||
import javax.annotation.processing.SupportedSourceVersion;
|
import javax.annotation.processing.SupportedSourceVersion;
|
@ -0,0 +1,5 @@
|
|||||||
|
org.geysermc.geyser.processor.BlockEntityProcessor
|
||||||
|
org.geysermc.geyser.processor.CollisionRemapperProcessor
|
||||||
|
org.geysermc.geyser.processor.ItemRemapperProcessor
|
||||||
|
org.geysermc.geyser.processor.PacketTranslatorProcessor
|
||||||
|
org.geysermc.geyser.processor.SoundHandlerProcessor
|
7
api/base/build.gradle.kts
Normale Datei
7
api/base/build.gradle.kts
Normale Datei
@ -0,0 +1,7 @@
|
|||||||
|
dependencies {
|
||||||
|
api("org.geysermc.cumulus", "cumulus", Versions.cumulusVersion)
|
||||||
|
api("org.geysermc.event", "events", Versions.eventsVersion) {
|
||||||
|
exclude(group = "com.google.guava", module = "guava")
|
||||||
|
exclude(group = "org.lanternpowered", module = "lmbda")
|
||||||
|
}
|
||||||
|
}
|
@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>api-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>base-api</artifactId>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<maven.compiler.source>16</maven.compiler.source>
|
|
||||||
<maven.compiler.target>16</maven.compiler.target>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.checkerframework</groupId>
|
|
||||||
<artifactId>checker-qual</artifactId>
|
|
||||||
<version>3.19.0</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
|
@ -39,6 +39,7 @@ public class Geyser {
|
|||||||
*
|
*
|
||||||
* @return the base api
|
* @return the base api
|
||||||
*/
|
*/
|
||||||
|
@NonNull
|
||||||
public static GeyserApiBase api() {
|
public static GeyserApiBase api() {
|
||||||
if (api == null) {
|
if (api == null) {
|
||||||
throw new RuntimeException("Api has not been registered yet!");
|
throw new RuntimeException("Api has not been registered yet!");
|
||||||
@ -69,7 +70,7 @@ public class Geyser {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers the given api type. The api cannot be
|
* Registers the given api type. The api cannot be
|
||||||
* registered if {@link #registered()} is true as
|
* registered if {@link #isRegistered()} is true as
|
||||||
* an api has already been specified.
|
* an api has already been specified.
|
||||||
*
|
*
|
||||||
* @param api the api
|
* @param api the api
|
||||||
@ -88,7 +89,7 @@ public class Geyser {
|
|||||||
*
|
*
|
||||||
* @return if the api has been registered
|
* @return if the api has been registered
|
||||||
*/
|
*/
|
||||||
public static boolean registered() {
|
public static boolean isRegistered() {
|
||||||
return api != null;
|
return api != null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,9 +25,13 @@
|
|||||||
|
|
||||||
package org.geysermc.api;
|
package org.geysermc.api;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
||||||
import org.checkerframework.checker.nullness.qual.NonNull;
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
import org.checkerframework.checker.nullness.qual.Nullable;
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
import org.geysermc.api.session.Connection;
|
import org.checkerframework.common.value.qual.IntRange;
|
||||||
|
import org.geysermc.api.connection.Connection;
|
||||||
|
import org.geysermc.cumulus.form.Form;
|
||||||
|
import org.geysermc.cumulus.form.util.FormBuilder;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
@ -37,52 +41,88 @@ import java.util.UUID;
|
|||||||
*/
|
*/
|
||||||
public interface GeyserApiBase {
|
public interface GeyserApiBase {
|
||||||
/**
|
/**
|
||||||
* Gets the session from the given UUID, if applicable. The player must be logged in to the Java server
|
* Gets the connection from the given UUID, if applicable. The player must be logged in to the Java server
|
||||||
* for this to return a non-null value.
|
* for this to return a non-null value.
|
||||||
*
|
*
|
||||||
* @param uuid the UUID of the session
|
* @param uuid the UUID of the connection
|
||||||
* @return the session from the given UUID, if applicable
|
* @return the connection from the given UUID, if applicable
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
Connection connectionByUuid(@NonNull UUID uuid);
|
Connection connectionByUuid(@NonNull UUID uuid);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the session from the given
|
* Gets the connection from the given XUID, if applicable. This method only works for online connections.
|
||||||
* XUID, if applicable.
|
|
||||||
*
|
*
|
||||||
* @param xuid the XUID of the session
|
* @param xuid the XUID of the session
|
||||||
* @return the session from the given UUID, if applicable
|
* @return the connection from the given UUID, if applicable
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
Connection connectionByXuid(@NonNull String xuid);
|
Connection connectionByXuid(@NonNull String xuid);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the session from the given
|
* Method to determine if the given <b>online</b> player is a Bedrock player.
|
||||||
* name, if applicable.
|
|
||||||
*
|
*
|
||||||
* @param name the uuid of the session
|
* @param uuid the uuid of the online player
|
||||||
* @return the session from the given name, if applicable
|
* @return true if the given online player is a Bedrock player
|
||||||
*/
|
*/
|
||||||
@Nullable
|
boolean isBedrockPlayer(@NonNull UUID uuid);
|
||||||
Connection connectionByName(@NonNull String name);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets all the online sessions.
|
* Sends a form to the given connection and opens it.
|
||||||
*
|
*
|
||||||
* @return all the online sessions
|
* @param uuid the uuid of the connection to open it on
|
||||||
|
* @param form the form to send
|
||||||
|
* @return whether the form was successfully sent
|
||||||
|
*/
|
||||||
|
boolean sendForm(@NonNull UUID uuid, @NonNull Form form);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends a form to the given connection and opens it.
|
||||||
|
*
|
||||||
|
* @param uuid the uuid of the connection to open it on
|
||||||
|
* @param formBuilder the formBuilder to send
|
||||||
|
* @return whether the form was successfully sent
|
||||||
|
*/
|
||||||
|
boolean sendForm(@NonNull UUID uuid, @NonNull FormBuilder<?, ?, ?> formBuilder);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transfer the given connection to a server. A Bedrock player can successfully transfer to the same server they are
|
||||||
|
* currently playing on.
|
||||||
|
*
|
||||||
|
* @param uuid the uuid of the connection
|
||||||
|
* @param address the address of the server
|
||||||
|
* @param port the port of the server
|
||||||
|
* @return true if the transfer was a success
|
||||||
|
*/
|
||||||
|
boolean transfer(@NonNull UUID uuid, @NonNull String address, @IntRange(from = 0, to = 65535) int port);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns all the online connections.
|
||||||
*/
|
*/
|
||||||
@NonNull
|
@NonNull
|
||||||
List<? extends Connection> onlineConnections();
|
List<? extends Connection> onlineConnections();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the major API version. Bumped whenever a significant breaking change or feature addition is added.
|
* Returns the amount of online connections.
|
||||||
|
*/
|
||||||
|
int onlineConnectionsCount();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the prefix used by Floodgate. Will be null when the auth-type isn't Floodgate.
|
||||||
|
*/
|
||||||
|
@MonotonicNonNull
|
||||||
|
String usernamePrefix();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the major API version. Bumped whenever a significant breaking change or feature addition is added.
|
||||||
*/
|
*/
|
||||||
default int majorApiVersion() {
|
default int majorApiVersion() {
|
||||||
return 0;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the minor API version. May be bumped for new API additions.
|
* Returns the minor API version. May be bumped for new API additions.
|
||||||
*/
|
*/
|
||||||
default int minorApiVersion() {
|
default int minorApiVersion() {
|
||||||
return 0;
|
return 0;
|
||||||
|
121
api/base/src/main/java/org/geysermc/api/connection/Connection.java
Normale Datei
121
api/base/src/main/java/org/geysermc/api/connection/Connection.java
Normale Datei
@ -0,0 +1,121 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.api.connection;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.checkerframework.common.value.qual.IntRange;
|
||||||
|
import org.geysermc.api.util.BedrockPlatform;
|
||||||
|
import org.geysermc.api.util.InputMode;
|
||||||
|
import org.geysermc.api.util.UiProfile;
|
||||||
|
import org.geysermc.cumulus.form.Form;
|
||||||
|
import org.geysermc.cumulus.form.util.FormBuilder;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a player connection.
|
||||||
|
*/
|
||||||
|
public interface Connection {
|
||||||
|
/**
|
||||||
|
* Returns the bedrock name of the connection.
|
||||||
|
*/
|
||||||
|
@NonNull String bedrockUsername();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the java name of the connection.
|
||||||
|
*/
|
||||||
|
@MonotonicNonNull
|
||||||
|
String javaUsername();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the UUID of the connection.
|
||||||
|
*/
|
||||||
|
@MonotonicNonNull
|
||||||
|
UUID javaUuid();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the XUID of the connection.
|
||||||
|
*/
|
||||||
|
@NonNull String xuid();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the version of the Bedrock client.
|
||||||
|
*/
|
||||||
|
@NonNull String version();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the platform that the connection is playing on.
|
||||||
|
*/
|
||||||
|
@NonNull BedrockPlatform platform();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the language code of the connection.
|
||||||
|
*/
|
||||||
|
@NonNull String languageCode();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the User Interface Profile of the connection.
|
||||||
|
*/
|
||||||
|
@NonNull UiProfile uiProfile();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the Input Mode of the Bedrock client.
|
||||||
|
*/
|
||||||
|
@NonNull InputMode inputMode();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns whether the connection is linked.
|
||||||
|
* This will always return false when the auth-type isn't Floodgate.
|
||||||
|
*/
|
||||||
|
boolean isLinked();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends a form to the connection and opens it.
|
||||||
|
*
|
||||||
|
* @param form the form to send
|
||||||
|
* @return whether the form was successfully sent
|
||||||
|
*/
|
||||||
|
boolean sendForm(@NonNull Form form);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends a form to the connection and opens it.
|
||||||
|
*
|
||||||
|
* @param formBuilder the formBuilder to send
|
||||||
|
* @return whether the form was successfully sent
|
||||||
|
*/
|
||||||
|
boolean sendForm(@NonNull FormBuilder<?, ?, ?> formBuilder);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transfer the connection to a server. A Bedrock player can successfully transfer to the same server they are
|
||||||
|
* currently playing on.
|
||||||
|
*
|
||||||
|
* @param address the address of the server
|
||||||
|
* @param port the port of the server
|
||||||
|
* @return true if the transfer was a success
|
||||||
|
*/
|
||||||
|
boolean transfer(@NonNull String address, @IntRange(from = 0, to = 65535) int port);
|
||||||
|
}
|
73
api/base/src/main/java/org/geysermc/api/util/BedrockPlatform.java
Normale Datei
73
api/base/src/main/java/org/geysermc/api/util/BedrockPlatform.java
Normale Datei
@ -0,0 +1,73 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.api.util;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
public enum BedrockPlatform {
|
||||||
|
UNKNOWN("Unknown"),
|
||||||
|
GOOGLE("Android"),
|
||||||
|
IOS("iOS"),
|
||||||
|
OSX("macOS"),
|
||||||
|
AMAZON("Amazon"),
|
||||||
|
GEARVR("Gear VR"),
|
||||||
|
HOLOLENS("Hololens"),
|
||||||
|
UWP("Windows 10"),
|
||||||
|
WIN32("Windows x86"),
|
||||||
|
DEDICATED("Dedicated"),
|
||||||
|
TVOS("Apple TV"),
|
||||||
|
PS4("PS4"),
|
||||||
|
NX("Switch"),
|
||||||
|
XBOX("Xbox One"),
|
||||||
|
WINDOWS_PHONE("Windows Phone");
|
||||||
|
|
||||||
|
private static final BedrockPlatform[] VALUES = values();
|
||||||
|
|
||||||
|
private final String displayName;
|
||||||
|
|
||||||
|
BedrockPlatform(String displayName) {
|
||||||
|
this.displayName = displayName;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the BedrockPlatform from the identifier.
|
||||||
|
*
|
||||||
|
* @param id the BedrockPlatform identifier
|
||||||
|
* @return The BedrockPlatform or {@link #UNKNOWN} if the platform wasn't found
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
public static BedrockPlatform fromId(int id) {
|
||||||
|
return id < VALUES.length ? VALUES[id] : VALUES[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return friendly display name of platform.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return displayName;
|
||||||
|
}
|
||||||
|
}
|
49
api/base/src/main/java/org/geysermc/api/util/InputMode.java
Normale Datei
49
api/base/src/main/java/org/geysermc/api/util/InputMode.java
Normale Datei
@ -0,0 +1,49 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.api.util;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
public enum InputMode {
|
||||||
|
UNKNOWN,
|
||||||
|
KEYBOARD_MOUSE,
|
||||||
|
TOUCH,
|
||||||
|
CONTROLLER,
|
||||||
|
VR;
|
||||||
|
|
||||||
|
private static final InputMode[] VALUES = values();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the InputMode from the identifier.
|
||||||
|
*
|
||||||
|
* @param id the InputMode identifier
|
||||||
|
* @return The InputMode or {@link #UNKNOWN} if the mode wasn't found
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
public static InputMode fromId(int id) {
|
||||||
|
return VALUES.length > id ? VALUES[id] : VALUES[0];
|
||||||
|
}
|
||||||
|
}
|
45
api/base/src/main/java/org/geysermc/api/util/UiProfile.java
Normale Datei
45
api/base/src/main/java/org/geysermc/api/util/UiProfile.java
Normale Datei
@ -0,0 +1,45 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.api.util;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
public enum UiProfile {
|
||||||
|
CLASSIC, POCKET;
|
||||||
|
|
||||||
|
private static final UiProfile[] VALUES = values();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the UiProfile from the identifier.
|
||||||
|
*
|
||||||
|
* @param id the UiProfile identifier
|
||||||
|
* @return The UiProfile or {@link #CLASSIC} if the profile wasn't found
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
public static UiProfile fromId(int id) {
|
||||||
|
return VALUES.length > id ? VALUES[id] : VALUES[0];
|
||||||
|
}
|
||||||
|
}
|
14
api/geyser/build.gradle.kts
Normale Datei
14
api/geyser/build.gradle.kts
Normale Datei
@ -0,0 +1,14 @@
|
|||||||
|
plugins {
|
||||||
|
id("geyser.api-conventions")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api(projects.api)
|
||||||
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications.named<MavenPublication>("mavenJava") {
|
||||||
|
groupId = rootProject.group as String + ".geyser"
|
||||||
|
artifactId = "api"
|
||||||
|
}
|
||||||
|
}
|
@ -1,33 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>api-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<artifactId>geyser-api</artifactId>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<maven.compiler.source>16</maven.compiler.source>
|
|
||||||
<maven.compiler.target>16</maven.compiler.target>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.checkerframework</groupId>
|
|
||||||
<artifactId>checker-qual</artifactId>
|
|
||||||
<version>3.19.0</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>base-api</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
|
@ -27,8 +27,14 @@ package org.geysermc.geyser.api;
|
|||||||
|
|
||||||
import org.checkerframework.checker.nullness.qual.NonNull;
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
import org.checkerframework.checker.nullness.qual.Nullable;
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
import org.geysermc.api.Geyser;
|
||||||
import org.geysermc.api.GeyserApiBase;
|
import org.geysermc.api.GeyserApiBase;
|
||||||
import org.geysermc.geyser.api.connection.GeyserConnection;
|
import org.geysermc.geyser.api.connection.GeyserConnection;
|
||||||
|
import org.geysermc.geyser.api.event.EventBus;
|
||||||
|
import org.geysermc.geyser.api.event.EventRegistrar;
|
||||||
|
import org.geysermc.geyser.api.extension.ExtensionManager;
|
||||||
|
import org.geysermc.geyser.api.network.BedrockListener;
|
||||||
|
import org.geysermc.geyser.api.network.RemoteServer;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
@ -37,24 +43,6 @@ import java.util.UUID;
|
|||||||
* Represents the API used in Geyser.
|
* Represents the API used in Geyser.
|
||||||
*/
|
*/
|
||||||
public interface GeyserApi extends GeyserApiBase {
|
public interface GeyserApi extends GeyserApiBase {
|
||||||
/**
|
|
||||||
* Shuts down the current Geyser instance.
|
|
||||||
*/
|
|
||||||
void shutdown();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Reloads the current Geyser instance.
|
|
||||||
*/
|
|
||||||
void reload();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets if this Geyser instance is running in an IDE. This only needs to be used in cases where files
|
|
||||||
* expected to be in a jarfile are not present.
|
|
||||||
*
|
|
||||||
* @return true if the version number is not 'DEV'.
|
|
||||||
*/
|
|
||||||
boolean productionEnvironment();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
@ -67,15 +55,65 @@ public interface GeyserApi extends GeyserApiBase {
|
|||||||
@Override
|
@Override
|
||||||
@Nullable GeyserConnection connectionByXuid(@NonNull String xuid);
|
@Nullable GeyserConnection connectionByXuid(@NonNull String xuid);
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritDoc}
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
@Nullable GeyserConnection connectionByName(@NonNull String name);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
@NonNull
|
@NonNull
|
||||||
List<? extends GeyserConnection> onlineConnections();
|
List<? extends GeyserConnection> onlineConnections();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link ExtensionManager}.
|
||||||
|
*
|
||||||
|
* @return the extension manager
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
ExtensionManager extensionManager();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides an implementation for the specified API type.
|
||||||
|
*
|
||||||
|
* @param apiClass the builder class
|
||||||
|
* @param <R> the implementation type
|
||||||
|
* @param <T> the API type
|
||||||
|
* @return the builder instance
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
<R extends T, T> R provider(@NonNull Class<T> apiClass, @Nullable Object... args);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link EventBus} for handling
|
||||||
|
* Geyser events.
|
||||||
|
*
|
||||||
|
* @return the event bus
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
EventBus<EventRegistrar> eventBus();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the default {@link RemoteServer} configured
|
||||||
|
* within the config file that is used by default.
|
||||||
|
*
|
||||||
|
* @return the default remote server used within Geyser
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
RemoteServer defaultRemoteServer();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link BedrockListener} used for listening
|
||||||
|
* for Minecraft: Bedrock Edition client connections.
|
||||||
|
*
|
||||||
|
* @return the listener used for Bedrock client connectins
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
BedrockListener bedrockListener();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the current {@link GeyserApiBase} instance.
|
||||||
|
*
|
||||||
|
* @return the current geyser api instance
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
static GeyserApi api() {
|
||||||
|
return Geyser.api(GeyserApi.class);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
215
api/geyser/src/main/java/org/geysermc/geyser/api/command/Command.java
Normale Datei
215
api/geyser/src/main/java/org/geysermc/geyser/api/command/Command.java
Normale Datei
@ -0,0 +1,215 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.command;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.geyser.api.GeyserApi;
|
||||||
|
import org.geysermc.geyser.api.connection.GeyserConnection;
|
||||||
|
import org.geysermc.geyser.api.extension.Extension;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a command.
|
||||||
|
*/
|
||||||
|
public interface Command {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the command name.
|
||||||
|
*
|
||||||
|
* @return the command name
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String name();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the command description.
|
||||||
|
*
|
||||||
|
* @return the command description
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String description();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the permission node associated with
|
||||||
|
* this command.
|
||||||
|
*
|
||||||
|
* @return the permission node for this command
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String permission();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the aliases for this command.
|
||||||
|
*
|
||||||
|
* @return the aliases for this command
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
List<String> aliases();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets if this command is designed to be used only by server operators.
|
||||||
|
*
|
||||||
|
* @return if this command is designated to be used only by server operators.
|
||||||
|
*/
|
||||||
|
boolean isSuggestedOpOnly();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets if this command is executable on console.
|
||||||
|
*
|
||||||
|
* @return if this command is executable on console
|
||||||
|
*/
|
||||||
|
boolean isExecutableOnConsole();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the subcommands associated with this
|
||||||
|
* command. Mainly used within the Geyser Standalone
|
||||||
|
* GUI to know what subcommands are supported.
|
||||||
|
*
|
||||||
|
* @return the subcommands associated with this command
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default List<String> subCommands() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to send a deny message to Java players if this command can only be used by Bedrock players.
|
||||||
|
*
|
||||||
|
* @return true if this command can only be used by Bedrock players.
|
||||||
|
*/
|
||||||
|
default boolean isBedrockOnly() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new {@link Command.Builder} used to construct commands.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
* @param <T> the source type
|
||||||
|
* @return a new command builder used to construct commands
|
||||||
|
*/
|
||||||
|
static <T extends CommandSource> Command.Builder<T> builder(@NonNull Extension extension) {
|
||||||
|
return GeyserApi.api().provider(Builder.class, extension);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Builder<T extends CommandSource> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the source type to use for this command.
|
||||||
|
* <p>
|
||||||
|
* Command source types can be anything that extend
|
||||||
|
* {@link CommandSource}, such as {@link GeyserConnection}.
|
||||||
|
* This will guarantee that the source used in the executor
|
||||||
|
* is an instance of this source.
|
||||||
|
*
|
||||||
|
* @param sourceType the source type
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> source(@NonNull Class<? extends T> sourceType);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the command name.
|
||||||
|
*
|
||||||
|
* @param name the command name
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> name(@NonNull String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the command description.
|
||||||
|
*
|
||||||
|
* @param description the command description
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> description(@NonNull String description);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the permission node.
|
||||||
|
*
|
||||||
|
* @param permission the permission node
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> permission(@NonNull String permission);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the aliases.
|
||||||
|
*
|
||||||
|
* @param aliases the aliases
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> aliases(@NonNull List<String> aliases);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets if this command is designed to be used only by server operators.
|
||||||
|
*
|
||||||
|
* @param suggestedOpOnly if this command is designed to be used only by server operators
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> suggestedOpOnly(boolean suggestedOpOnly);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets if this command is executable on console.
|
||||||
|
*
|
||||||
|
* @param executableOnConsole if this command is executable on console
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> executableOnConsole(boolean executableOnConsole);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the subcommands.
|
||||||
|
*
|
||||||
|
* @param subCommands the subcommands
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> subCommands(@NonNull List<String> subCommands);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets if this command is bedrock only.
|
||||||
|
*
|
||||||
|
* @param bedrockOnly if this command is bedrock only
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> bedrockOnly(boolean bedrockOnly);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the {@link CommandExecutor} for this command.
|
||||||
|
*
|
||||||
|
* @param executor the command executor
|
||||||
|
* @return the builder
|
||||||
|
*/
|
||||||
|
Builder<T> executor(@NonNull CommandExecutor<T> executor);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds the command.
|
||||||
|
*
|
||||||
|
* @return the command
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
Command build();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,45 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.command;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles executing a command.
|
||||||
|
*
|
||||||
|
* @param <T> the command source
|
||||||
|
*/
|
||||||
|
public interface CommandExecutor<T extends CommandSource> {
|
||||||
|
/**
|
||||||
|
* Executes the given {@link Command} with the given
|
||||||
|
* {@link CommandSource}.
|
||||||
|
*
|
||||||
|
* @param source the command source
|
||||||
|
* @param command the command
|
||||||
|
* @param args the arguments
|
||||||
|
*/
|
||||||
|
void execute(@NonNull T source, @NonNull Command command, @NonNull String[] args);
|
||||||
|
}
|
@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.command;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an instance capable of sending commands.
|
||||||
|
*/
|
||||||
|
public interface CommandSource {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name of the command source.
|
||||||
|
*
|
||||||
|
* @return the name of the command source
|
||||||
|
*/
|
||||||
|
String name();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends the given message to the command source
|
||||||
|
*
|
||||||
|
* @param message the message to send
|
||||||
|
*/
|
||||||
|
void sendMessage(@NonNull String message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sends the given messages to the command source
|
||||||
|
*
|
||||||
|
* @param messages the messages to send
|
||||||
|
*/
|
||||||
|
default void sendMessage(String[] messages) {
|
||||||
|
for (String message : messages) {
|
||||||
|
sendMessage(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If this source is the console.
|
||||||
|
*
|
||||||
|
* @return true if this source is the console
|
||||||
|
*/
|
||||||
|
boolean isConsole();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the locale of the command source.
|
||||||
|
*
|
||||||
|
* @return the locale of the command source.
|
||||||
|
*/
|
||||||
|
String locale();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if this command source has the given permission
|
||||||
|
*
|
||||||
|
* @param permission The permission node to check
|
||||||
|
* @return true if this command source has a permission
|
||||||
|
*/
|
||||||
|
boolean hasPermission(String permission);
|
||||||
|
}
|
@ -25,10 +25,11 @@
|
|||||||
|
|
||||||
package org.geysermc.geyser.api.connection;
|
package org.geysermc.geyser.api.connection;
|
||||||
|
|
||||||
import org.geysermc.api.session.Connection;
|
import org.geysermc.api.connection.Connection;
|
||||||
|
import org.geysermc.geyser.api.command.CommandSource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a player session used in Geyser.
|
* Represents a player connection used in Geyser.
|
||||||
*/
|
*/
|
||||||
public interface GeyserConnection extends Connection {
|
public interface GeyserConnection extends Connection, CommandSource {
|
||||||
}
|
}
|
||||||
|
43
api/geyser/src/main/java/org/geysermc/geyser/api/event/EventBus.java
Normale Datei
43
api/geyser/src/main/java/org/geysermc/geyser/api/event/EventBus.java
Normale Datei
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.event.bus.OwnedEventBus;
|
||||||
|
import org.geysermc.geyser.api.extension.Extension;
|
||||||
|
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a bus capable of subscribing
|
||||||
|
* or "listening" to events and firing them.
|
||||||
|
*/
|
||||||
|
public interface EventBus<R extends EventRegistrar> extends OwnedEventBus<R, Event, EventSubscriber<R, ? extends Event>> {
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
<T extends Event> Set<? extends EventSubscriber<R, T>> subscribers(@NonNull Class<T> eventClass);
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.geyser.api.GeyserApi;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an owner for an event that allows it
|
||||||
|
* to be registered through an {@link EventBus}.
|
||||||
|
*/
|
||||||
|
public interface EventRegistrar {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an {@link EventRegistrar} instance.
|
||||||
|
*
|
||||||
|
* @param object the object to wrap around
|
||||||
|
* @return an event registrar instance
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
static EventRegistrar of(@NonNull Object object) {
|
||||||
|
return GeyserApi.api().provider(EventRegistrar.class, object);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event;
|
||||||
|
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.event.subscribe.OwnedSubscriber;
|
||||||
|
import org.geysermc.geyser.api.extension.Extension;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a subscribed listener to a {@link Event}. Wraps around
|
||||||
|
* the event and is capable of unsubscribing from the event or give
|
||||||
|
* information about it.
|
||||||
|
*
|
||||||
|
* @param <T> the class of the event
|
||||||
|
*/
|
||||||
|
public interface EventSubscriber<R extends EventRegistrar, T extends Event> extends OwnedSubscriber<R, T> {
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.geyser.api.extension.Extension;
|
||||||
|
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An {@link EventBus} with additional methods that implicitly
|
||||||
|
* set the extension instance.
|
||||||
|
*/
|
||||||
|
public interface ExtensionEventBus extends org.geysermc.event.bus.EventBus<Event, EventSubscriber<Extension, ? extends Event>> {
|
||||||
|
@Override
|
||||||
|
@NonNull <T extends Event> Set<? extends EventSubscriber<EventRegistrar, T>> subscribers(@NonNull Class<T> eventClass);
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event;
|
||||||
|
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.event.subscribe.Subscriber;
|
||||||
|
|
||||||
|
public interface ExtensionEventSubscriber<T extends Event> extends Subscriber<T> {
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.connection;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.geyser.api.connection.GeyserConnection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An event that contains a {@link GeyserConnection}.
|
||||||
|
*/
|
||||||
|
public abstract class ConnectionEvent implements Event {
|
||||||
|
private final GeyserConnection connection;
|
||||||
|
|
||||||
|
public ConnectionEvent(@NonNull GeyserConnection connection) {
|
||||||
|
this.connection = connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link GeyserConnection}.
|
||||||
|
*
|
||||||
|
* @return the connection
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
public GeyserConnection connection() {
|
||||||
|
return this.connection;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,85 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.downstream;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Cancellable;
|
||||||
|
import org.geysermc.geyser.api.connection.GeyserConnection;
|
||||||
|
import org.geysermc.geyser.api.event.connection.ConnectionEvent;
|
||||||
|
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when the Java server defines the commands available on the server.
|
||||||
|
* <br>
|
||||||
|
* This event is mapped to the existence of Brigadier on the server.
|
||||||
|
*/
|
||||||
|
public class ServerDefineCommandsEvent extends ConnectionEvent implements Cancellable {
|
||||||
|
private final Set<? extends CommandInfo> commands;
|
||||||
|
private boolean cancelled;
|
||||||
|
|
||||||
|
public ServerDefineCommandsEvent(@NonNull GeyserConnection connection, @NonNull Set<? extends CommandInfo> commands) {
|
||||||
|
super(connection);
|
||||||
|
this.commands = commands;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A collection of commands sent from the server. Any element in this collection can be removed, but no element can
|
||||||
|
* be added.
|
||||||
|
*
|
||||||
|
* @return a collection of the commands sent over
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
public Set<? extends CommandInfo> commands() {
|
||||||
|
return this.commands;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isCancelled() {
|
||||||
|
return this.cancelled;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setCancelled(boolean cancelled) {
|
||||||
|
this.cancelled = cancelled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface CommandInfo {
|
||||||
|
/**
|
||||||
|
* Gets the name of the command.
|
||||||
|
*
|
||||||
|
* @return the name of the command
|
||||||
|
*/
|
||||||
|
String name();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the description of the command.
|
||||||
|
*
|
||||||
|
* @return the description of the command
|
||||||
|
*/
|
||||||
|
String description();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.lifecycle;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.geyser.api.command.Command;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when commands are defined within Geyser.
|
||||||
|
*
|
||||||
|
* This event allows you to register new commands using the {@link #register(Command)}
|
||||||
|
* method and retrieve the default commands defined.
|
||||||
|
*/
|
||||||
|
public interface GeyserDefineCommandsEvent extends Event {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers the given {@link Command} into the Geyser
|
||||||
|
* command manager.
|
||||||
|
*
|
||||||
|
* @param command the command to register
|
||||||
|
*/
|
||||||
|
void register(@NonNull Command command);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets all the registered built-in {@link Command}s.
|
||||||
|
*
|
||||||
|
* @return all the registered built-in commands
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
Map<String, Command> commands();
|
||||||
|
}
|
@ -0,0 +1,76 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.lifecycle;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.geyser.api.item.custom.CustomItemData;
|
||||||
|
import org.geysermc.geyser.api.item.custom.NonVanillaCustomItemData;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called on Geyser's startup when looking for custom items. Custom items must be registered through this event.
|
||||||
|
*
|
||||||
|
* This event will not be called if the "add non-Bedrock items" setting is disabled in the Geyser config.
|
||||||
|
*/
|
||||||
|
public interface GeyserDefineCustomItemsEvent extends Event {
|
||||||
|
/**
|
||||||
|
* Gets a multimap of all the already registered custom items indexed by the item's extended java item's identifier.
|
||||||
|
*
|
||||||
|
* @return a multimap of all the already registered custom items
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
Map<String, Collection<CustomItemData>> getExistingCustomItems();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the list of the already registered non-vanilla custom items.
|
||||||
|
*
|
||||||
|
* @return the list of the already registered non-vanilla custom items
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
List<NonVanillaCustomItemData> getExistingNonVanillaCustomItems();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a custom item with a base Java item. This is used to register items with custom textures and properties
|
||||||
|
* based on NBT data.
|
||||||
|
*
|
||||||
|
* @param identifier the base (java) item
|
||||||
|
* @param customItemData the custom item data to register
|
||||||
|
* @return if the item was registered
|
||||||
|
*/
|
||||||
|
boolean register(@NonNull String identifier, @NonNull CustomItemData customItemData);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a custom item with no base item. This is used for mods.
|
||||||
|
*
|
||||||
|
* @param customItemData the custom item data to register
|
||||||
|
* @return if the item was registered
|
||||||
|
*/
|
||||||
|
boolean register(@NonNull NonVanillaCustomItemData customItemData);
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.lifecycle;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when resource packs are loaded within Geyser.
|
||||||
|
*
|
||||||
|
* @param resourcePacks a mutable list of the currently listed resource packs
|
||||||
|
*/
|
||||||
|
public record GeyserLoadResourcePacksEvent(@NonNull List<Path> resourcePacks) implements Event {
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.lifecycle;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.geyser.api.event.EventBus;
|
||||||
|
import org.geysermc.geyser.api.event.EventRegistrar;
|
||||||
|
import org.geysermc.geyser.api.extension.ExtensionManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when Geyser has completed initializing.
|
||||||
|
*
|
||||||
|
* @param extensionManager the extension manager
|
||||||
|
* @param eventBus the event bus
|
||||||
|
*/
|
||||||
|
public record GeyserPostInitializeEvent(@NonNull ExtensionManager extensionManager, @NonNull EventBus<EventRegistrar> eventBus) implements Event {
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.lifecycle;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.geyser.api.event.EventBus;
|
||||||
|
import org.geysermc.geyser.api.event.EventRegistrar;
|
||||||
|
import org.geysermc.geyser.api.extension.ExtensionManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when Geyser is starting to initialize.
|
||||||
|
*
|
||||||
|
* @param extensionManager the extension manager
|
||||||
|
* @param eventBus the event bus
|
||||||
|
*/
|
||||||
|
public record GeyserPreInitializeEvent(@NonNull ExtensionManager extensionManager, @NonNull EventBus<EventRegistrar> eventBus) implements Event {
|
||||||
|
}
|
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.event.lifecycle;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.event.Event;
|
||||||
|
import org.geysermc.geyser.api.event.EventBus;
|
||||||
|
import org.geysermc.geyser.api.event.EventRegistrar;
|
||||||
|
import org.geysermc.geyser.api.extension.ExtensionManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when Geyser is shutting down.
|
||||||
|
*/
|
||||||
|
public record GeyserShutdownEvent(@NonNull ExtensionManager extensionManager, @NonNull EventBus<EventRegistrar> eventBus) implements Event {
|
||||||
|
}
|
@ -0,0 +1,139 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.extension;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.api.GeyserApiBase;
|
||||||
|
import org.geysermc.geyser.api.GeyserApi;
|
||||||
|
import org.geysermc.geyser.api.event.EventRegistrar;
|
||||||
|
import org.geysermc.geyser.api.event.ExtensionEventBus;
|
||||||
|
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an extension within Geyser.
|
||||||
|
*/
|
||||||
|
public interface Extension extends EventRegistrar {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets if the extension is enabled
|
||||||
|
*
|
||||||
|
* @return true if the extension is enabled
|
||||||
|
*/
|
||||||
|
default boolean isEnabled() {
|
||||||
|
return this.extensionLoader().isEnabled(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enables or disables the extension
|
||||||
|
*
|
||||||
|
* @param enabled if the extension should be enabled
|
||||||
|
*/
|
||||||
|
default void setEnabled(boolean enabled) {
|
||||||
|
this.extensionLoader().setEnabled(this, enabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's data folder
|
||||||
|
*
|
||||||
|
* @return the extension's data folder
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default Path dataFolder() {
|
||||||
|
return this.extensionLoader().dataFolder(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link ExtensionEventBus}.
|
||||||
|
*
|
||||||
|
* @return the extension event bus
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default ExtensionEventBus eventBus() {
|
||||||
|
return this.extensionLoader().eventBus(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link ExtensionManager}.
|
||||||
|
*
|
||||||
|
* @return the extension manager
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default ExtensionManager extensionManager() {
|
||||||
|
return this.geyserApi().extensionManager();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's name
|
||||||
|
*
|
||||||
|
* @return the extension's name
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default String name() {
|
||||||
|
return this.description().name();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets this extension's {@link ExtensionDescription}.
|
||||||
|
*
|
||||||
|
* @return the extension's description
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default ExtensionDescription description() {
|
||||||
|
return this.extensionLoader().description(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's logger
|
||||||
|
*
|
||||||
|
* @return the extension's logger
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default ExtensionLogger logger() {
|
||||||
|
return this.extensionLoader().logger(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link ExtensionLoader}.
|
||||||
|
*
|
||||||
|
* @return the extension loader
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default ExtensionLoader extensionLoader() {
|
||||||
|
return Objects.requireNonNull(this.extensionManager().extensionLoader());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link GeyserApiBase} instance
|
||||||
|
*
|
||||||
|
* @return the geyser api instance
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
default GeyserApi geyserApi() {
|
||||||
|
return GeyserApi.api();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,106 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.extension;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents the description of an {@link Extension}.
|
||||||
|
*/
|
||||||
|
public interface ExtensionDescription {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's id.
|
||||||
|
*
|
||||||
|
* @return the extension's id
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String id();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's name.
|
||||||
|
*
|
||||||
|
* @return the extension's name
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String name();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's main class.
|
||||||
|
*
|
||||||
|
* @return the extension's main class
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String main();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's major api version
|
||||||
|
*
|
||||||
|
* @return the extension's major api version
|
||||||
|
*/
|
||||||
|
int majorApiVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's minor api version
|
||||||
|
*
|
||||||
|
* @return the extension's minor api version
|
||||||
|
*/
|
||||||
|
int minorApiVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's patch api version
|
||||||
|
*
|
||||||
|
* @return the extension's patch api version
|
||||||
|
*/
|
||||||
|
int patchApiVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's api version.
|
||||||
|
*
|
||||||
|
* @return the extension's api version
|
||||||
|
*/
|
||||||
|
default String apiVersion() {
|
||||||
|
return majorApiVersion() + "." + minorApiVersion() + "." + patchApiVersion();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's description.
|
||||||
|
*
|
||||||
|
* @return the extension's description
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String version();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the extension's authors.
|
||||||
|
*
|
||||||
|
* @return the extension's authors
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
List<String> authors();
|
||||||
|
}
|
@ -0,0 +1,105 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.extension;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.geyser.api.event.ExtensionEventBus;
|
||||||
|
|
||||||
|
import java.nio.file.Path;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The extension loader is responsible for loading, unloading, enabling and disabling extensions
|
||||||
|
*/
|
||||||
|
public abstract class ExtensionLoader {
|
||||||
|
/**
|
||||||
|
* Gets if the given {@link Extension} is enabled.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
* @return if the extension is enabled
|
||||||
|
*/
|
||||||
|
protected abstract boolean isEnabled(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets if the given {@link Extension} is enabled.
|
||||||
|
*
|
||||||
|
* @param extension the extension to enable
|
||||||
|
* @param enabled if the extension should be enabled
|
||||||
|
*/
|
||||||
|
protected abstract void setEnabled(@NonNull Extension extension, boolean enabled);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the given {@link Extension}'s data folder.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
* @return the data folder of the given extension
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
protected abstract Path dataFolder(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the given {@link Extension}'s {@link ExtensionDescription}.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
* @return the description of the given extension
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
protected abstract ExtensionDescription description(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the given {@link Extension}'s {@link ExtensionEventBus}.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
* @return the extension's event bus
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
protected abstract ExtensionEventBus eventBus(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link ExtensionLogger} for the given {@link Extension}.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
* @return the extension logger for the given extension
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
protected abstract ExtensionLogger logger(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads all extensions.
|
||||||
|
*
|
||||||
|
* @param extensionManager the extension manager
|
||||||
|
*/
|
||||||
|
protected abstract void loadAllExtensions(@NonNull ExtensionManager extensionManager);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers the given {@link Extension} with the given {@link ExtensionManager}.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
* @param extensionManager the extension manager
|
||||||
|
*/
|
||||||
|
protected void register(@NonNull Extension extension, @NonNull ExtensionManager extensionManager) {
|
||||||
|
extensionManager.register(extension);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,94 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.extension;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the Geyser extension logger
|
||||||
|
*/
|
||||||
|
public interface ExtensionLogger {
|
||||||
|
/**
|
||||||
|
* Get the logger prefix
|
||||||
|
*
|
||||||
|
* @return the logger prefix
|
||||||
|
*/
|
||||||
|
String prefix();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs a severe message to console
|
||||||
|
*
|
||||||
|
* @param message the message to log
|
||||||
|
*/
|
||||||
|
void severe(String message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs a severe message and an exception to console
|
||||||
|
*
|
||||||
|
* @param message the message to log
|
||||||
|
* @param error the error to throw
|
||||||
|
*/
|
||||||
|
void severe(String message, Throwable error);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs an error message to console
|
||||||
|
*
|
||||||
|
* @param message the message to log
|
||||||
|
*/
|
||||||
|
void error(String message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs an error message and an exception to console
|
||||||
|
*
|
||||||
|
* @param message the message to log
|
||||||
|
* @param error the error to throw
|
||||||
|
*/
|
||||||
|
void error(String message, Throwable error);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs a warning message to console
|
||||||
|
*
|
||||||
|
* @param message the message to log
|
||||||
|
*/
|
||||||
|
void warning(String message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs an info message to console
|
||||||
|
*
|
||||||
|
* @param message the message to log
|
||||||
|
*/
|
||||||
|
void info(String message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs a debug message to console
|
||||||
|
*
|
||||||
|
* @param message the message to log
|
||||||
|
*/
|
||||||
|
void debug(String message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If debug is enabled for this logger
|
||||||
|
*/
|
||||||
|
boolean isDebug();
|
||||||
|
}
|
@ -0,0 +1,90 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.extension;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Manages Geyser {@link Extension}s
|
||||||
|
*/
|
||||||
|
public abstract class ExtensionManager {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets an extension with the given name.
|
||||||
|
*
|
||||||
|
* @param name the name of the extension
|
||||||
|
* @return an extension with the given name
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public abstract Extension extension(@NonNull String name);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enables the given {@link Extension}.
|
||||||
|
*
|
||||||
|
* @param extension the extension to enable
|
||||||
|
*/
|
||||||
|
public abstract void enable(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables the given {@link Extension}.
|
||||||
|
*
|
||||||
|
* @param extension the extension to disable
|
||||||
|
*/
|
||||||
|
public abstract void disable(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets all the {@link Extension}s currently loaded.
|
||||||
|
*
|
||||||
|
* @return all the extensions currently loaded
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
public abstract Collection<Extension> extensions();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link ExtensionLoader}.
|
||||||
|
*
|
||||||
|
* @return the extension loader
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public abstract ExtensionLoader extensionLoader();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers an {@link Extension} with the given {@link ExtensionLoader}.
|
||||||
|
*
|
||||||
|
* @param extension the extension
|
||||||
|
*/
|
||||||
|
public abstract void register(@NonNull Extension extension);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads all extensions from the given {@link ExtensionLoader}.
|
||||||
|
*/
|
||||||
|
protected final void loadAllExtensions(@NonNull ExtensionLoader extensionLoader) {
|
||||||
|
extensionLoader.loadAllExtensions(this);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.extension.exception;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thrown when an extension's description is invalid.
|
||||||
|
*/
|
||||||
|
public class InvalidDescriptionException extends Exception {
|
||||||
|
public InvalidDescriptionException(Throwable cause) {
|
||||||
|
super(cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvalidDescriptionException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvalidDescriptionException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.extension.exception;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thrown when an extension is invalid.
|
||||||
|
*/
|
||||||
|
public class InvalidExtensionException extends Exception {
|
||||||
|
public InvalidExtensionException(Throwable cause) {
|
||||||
|
super(cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvalidExtensionException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvalidExtensionException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,109 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.item.custom;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
import org.geysermc.geyser.api.GeyserApi;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is used to store data for a custom item.
|
||||||
|
*/
|
||||||
|
public interface CustomItemData {
|
||||||
|
/**
|
||||||
|
* Gets the item's name.
|
||||||
|
*
|
||||||
|
* @return the item's name
|
||||||
|
*/
|
||||||
|
@NonNull String name();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the custom item options of the item.
|
||||||
|
*
|
||||||
|
* @return the custom item options of the item.
|
||||||
|
*/
|
||||||
|
CustomItemOptions customItemOptions();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's display name. By default, this is the item's name.
|
||||||
|
*
|
||||||
|
* @return the item's display name
|
||||||
|
*/
|
||||||
|
@NonNull String displayName();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's icon. By default, this is the item's name.
|
||||||
|
*
|
||||||
|
* @return the item's icon
|
||||||
|
*/
|
||||||
|
@NonNull String icon();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets if the item is allowed to be put into the offhand.
|
||||||
|
*
|
||||||
|
* @return true if the item is allowed to be used in the offhand, false otherwise
|
||||||
|
*/
|
||||||
|
boolean allowOffhand();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's texture size. This is to resize the item if the texture is not 16x16.
|
||||||
|
*
|
||||||
|
* @return the item's texture size
|
||||||
|
*/
|
||||||
|
int textureSize();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's render offsets. If it is null, the item will be rendered normally, with no offsets.
|
||||||
|
*
|
||||||
|
* @return the item's render offsets
|
||||||
|
*/
|
||||||
|
@Nullable CustomRenderOffsets renderOffsets();
|
||||||
|
|
||||||
|
static CustomItemData.Builder builder() {
|
||||||
|
return GeyserApi.api().provider(CustomItemData.Builder.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Builder {
|
||||||
|
/**
|
||||||
|
* Will also set the display name and icon to the provided parameter, if it is currently not set.
|
||||||
|
*/
|
||||||
|
Builder name(@NonNull String name);
|
||||||
|
|
||||||
|
Builder customItemOptions(@NonNull CustomItemOptions customItemOptions);
|
||||||
|
|
||||||
|
Builder displayName(@NonNull String displayName);
|
||||||
|
|
||||||
|
Builder icon(@NonNull String icon);
|
||||||
|
|
||||||
|
Builder allowOffhand(boolean allowOffhand);
|
||||||
|
|
||||||
|
Builder textureSize(int textureSize);
|
||||||
|
|
||||||
|
Builder renderOffsets(@Nullable CustomRenderOffsets renderOffsets);
|
||||||
|
|
||||||
|
CustomItemData build();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,83 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.item.custom;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.geysermc.geyser.api.GeyserApi;
|
||||||
|
import org.geysermc.geyser.api.util.TriState;
|
||||||
|
|
||||||
|
import java.util.OptionalInt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class represents the different ways you can register custom items
|
||||||
|
*/
|
||||||
|
public interface CustomItemOptions {
|
||||||
|
/**
|
||||||
|
* Gets if the item should be unbreakable.
|
||||||
|
*
|
||||||
|
* @return if the item should be unbreakable
|
||||||
|
*/
|
||||||
|
@NonNull TriState unbreakable();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's custom model data predicate.
|
||||||
|
*
|
||||||
|
* @return the item's custom model data
|
||||||
|
*/
|
||||||
|
@NonNull OptionalInt customModelData();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's damage predicate.
|
||||||
|
*
|
||||||
|
* @return the item's damage predicate
|
||||||
|
*/
|
||||||
|
@NonNull OptionalInt damagePredicate();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the item has at least one option set
|
||||||
|
*
|
||||||
|
* @return true if the item at least one options set
|
||||||
|
*/
|
||||||
|
default boolean hasCustomItemOptions() {
|
||||||
|
return this.unbreakable() != TriState.NOT_SET ||
|
||||||
|
this.customModelData().isPresent() ||
|
||||||
|
this.damagePredicate().isPresent();
|
||||||
|
}
|
||||||
|
|
||||||
|
static CustomItemOptions.Builder builder() {
|
||||||
|
return GeyserApi.api().provider(CustomItemOptions.Builder.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Builder {
|
||||||
|
Builder unbreakable(boolean unbreakable);
|
||||||
|
|
||||||
|
Builder customModelData(int customModelData);
|
||||||
|
|
||||||
|
Builder damagePredicate(int damagePredicate);
|
||||||
|
|
||||||
|
CustomItemOptions build();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.item.custom;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is used to store the render offsets of custom items.
|
||||||
|
*/
|
||||||
|
public record CustomRenderOffsets(@Nullable Hand mainHand, @Nullable Hand offhand) {
|
||||||
|
/**
|
||||||
|
* The hand that is used for the offset.
|
||||||
|
*/
|
||||||
|
public record Hand(@Nullable Offset firstPerson, @Nullable Offset thirdPerson) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The offset of the item.
|
||||||
|
*/
|
||||||
|
public record Offset(@Nullable OffsetXYZ position, @Nullable OffsetXYZ rotation, @Nullable OffsetXYZ scale) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* X, Y and Z positions for the offset.
|
||||||
|
*/
|
||||||
|
public record OffsetXYZ(float x, float y, float z) {
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,188 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.item.custom;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.index.qual.NonNegative;
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
import org.geysermc.geyser.api.GeyserApi;
|
||||||
|
|
||||||
|
import java.util.OptionalInt;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a completely custom item that is not based on an existing vanilla Minecraft item.
|
||||||
|
*/
|
||||||
|
public interface NonVanillaCustomItemData extends CustomItemData {
|
||||||
|
/**
|
||||||
|
* Gets the java identifier for this item.
|
||||||
|
*
|
||||||
|
* @return The java identifier for this item.
|
||||||
|
*/
|
||||||
|
@NonNull String identifier();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the java item id of the item.
|
||||||
|
*
|
||||||
|
* @return the java item id of the item
|
||||||
|
*/
|
||||||
|
@NonNegative int javaId();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the stack size of the item.
|
||||||
|
*
|
||||||
|
* @return the stack size of the item
|
||||||
|
*/
|
||||||
|
@NonNegative int stackSize();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the max damage of the item.
|
||||||
|
*
|
||||||
|
* @return the max damage of the item
|
||||||
|
*/
|
||||||
|
int maxDamage();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the tool type of the item.
|
||||||
|
*
|
||||||
|
* @return the tool type of the item
|
||||||
|
*/
|
||||||
|
@Nullable String toolType();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the tool tier of the item.
|
||||||
|
*
|
||||||
|
* @return the tool tier of the item
|
||||||
|
*/
|
||||||
|
@Nullable String toolTier();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the armor type of the item.
|
||||||
|
*
|
||||||
|
* @return the armor type of the item
|
||||||
|
*/
|
||||||
|
@Nullable String armorType();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the armor protection value of the item.
|
||||||
|
*
|
||||||
|
* @return the armor protection value of the item
|
||||||
|
*/
|
||||||
|
int protectionValue();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's translation string.
|
||||||
|
*
|
||||||
|
* @return the item's translation string
|
||||||
|
*/
|
||||||
|
@Nullable String translationString();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the repair materials of the item.
|
||||||
|
*
|
||||||
|
* @return the repair materials of the item
|
||||||
|
*/
|
||||||
|
@Nullable Set<String> repairMaterials();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's creative category, or tab id.
|
||||||
|
*
|
||||||
|
* @return the item's creative category
|
||||||
|
*/
|
||||||
|
@NonNull OptionalInt creativeCategory();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the item's creative group.
|
||||||
|
*
|
||||||
|
* @return the item's creative group
|
||||||
|
*/
|
||||||
|
@Nullable String creativeGroup();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets if the item is a hat. This is used to determine if the item should be rendered on the player's head, and
|
||||||
|
* normally allow the player to equip it. This is not meant for armor.
|
||||||
|
*
|
||||||
|
* @return if the item is a hat
|
||||||
|
*/
|
||||||
|
boolean isHat();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets if the item is a tool. This is used to set the render type of the item, if the item is handheld.
|
||||||
|
*
|
||||||
|
* @return if the item is a tool
|
||||||
|
*/
|
||||||
|
boolean isTool();
|
||||||
|
|
||||||
|
static NonVanillaCustomItemData.Builder builder() {
|
||||||
|
return GeyserApi.api().provider(NonVanillaCustomItemData.Builder.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Builder extends CustomItemData.Builder {
|
||||||
|
Builder name(@NonNull String name);
|
||||||
|
|
||||||
|
Builder identifier(@NonNull String identifier);
|
||||||
|
|
||||||
|
Builder javaId(@NonNegative int javaId);
|
||||||
|
|
||||||
|
Builder stackSize(@NonNegative int stackSize);
|
||||||
|
|
||||||
|
Builder maxDamage(int maxDamage);
|
||||||
|
|
||||||
|
Builder toolType(@Nullable String toolType);
|
||||||
|
|
||||||
|
Builder toolTier(@Nullable String toolTier);
|
||||||
|
|
||||||
|
Builder armorType(@Nullable String armorType);
|
||||||
|
|
||||||
|
Builder protectionValue(int protectionValue);
|
||||||
|
|
||||||
|
Builder translationString(@Nullable String translationString);
|
||||||
|
|
||||||
|
Builder repairMaterials(@Nullable Set<String> repairMaterials);
|
||||||
|
|
||||||
|
Builder creativeCategory(int creativeCategory);
|
||||||
|
|
||||||
|
Builder creativeGroup(@Nullable String creativeGroup);
|
||||||
|
|
||||||
|
Builder hat(boolean isHat);
|
||||||
|
|
||||||
|
Builder tool(boolean isTool);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
Builder displayName(@NonNull String displayName);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
Builder allowOffhand(boolean allowOffhand);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
Builder textureSize(int textureSize);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
Builder renderOffsets(@Nullable CustomRenderOffsets renderOffsets);
|
||||||
|
|
||||||
|
NonVanillaCustomItemData build();
|
||||||
|
}
|
||||||
|
}
|
@ -23,26 +23,24 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.geyser.session.auth;
|
package org.geysermc.geyser.api.network;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonParser;
|
import java.util.Locale;
|
||||||
import com.fasterxml.jackson.databind.DeserializationContext;
|
|
||||||
import com.fasterxml.jackson.databind.JsonDeserializer;
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
/**
|
||||||
|
* The authentication types that a Java server can be on connection.
|
||||||
@Getter
|
*/
|
||||||
public enum AuthType {
|
public enum AuthType {
|
||||||
OFFLINE,
|
OFFLINE,
|
||||||
ONLINE,
|
ONLINE,
|
||||||
|
/**
|
||||||
|
* The internal name for connecting to an online mode server without needing a Java account. The presence of this
|
||||||
|
* authentication type does not necessarily mean the Floodgate plugin is installed; it only means that this
|
||||||
|
* authentication type will be attempted.
|
||||||
|
*/
|
||||||
FLOODGATE;
|
FLOODGATE;
|
||||||
|
|
||||||
public static final AuthType[] VALUES = values();
|
private static final AuthType[] VALUES = values();
|
||||||
|
|
||||||
public static AuthType getById(int id) {
|
|
||||||
return id < VALUES.length ? VALUES[id] : OFFLINE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert the AuthType string (from config) to the enum, ONLINE on fail
|
* Convert the AuthType string (from config) to the enum, ONLINE on fail
|
||||||
@ -52,7 +50,7 @@ public enum AuthType {
|
|||||||
* @return The converted AuthType
|
* @return The converted AuthType
|
||||||
*/
|
*/
|
||||||
public static AuthType getByName(String name) {
|
public static AuthType getByName(String name) {
|
||||||
String upperCase = name.toUpperCase();
|
String upperCase = name.toUpperCase(Locale.ROOT);
|
||||||
for (AuthType type : VALUES) {
|
for (AuthType type : VALUES) {
|
||||||
if (type.name().equals(upperCase)) {
|
if (type.name().equals(upperCase)) {
|
||||||
return type;
|
return type;
|
||||||
@ -60,11 +58,4 @@ public enum AuthType {
|
|||||||
}
|
}
|
||||||
return ONLINE;
|
return ONLINE;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Deserializer extends JsonDeserializer<AuthType> {
|
|
||||||
@Override
|
|
||||||
public AuthType deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
|
|
||||||
return getByName(p.getValueAsString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -0,0 +1,77 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.network;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The listener that handles connections from Minecraft:
|
||||||
|
* Bedrock Edition.
|
||||||
|
*/
|
||||||
|
public interface BedrockListener {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the address used for listening for Bedrock
|
||||||
|
* connections from.
|
||||||
|
*
|
||||||
|
* @return the listening address
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
String address();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the port used for listening for Bedrock
|
||||||
|
* connections from.
|
||||||
|
*
|
||||||
|
* @return the listening port
|
||||||
|
*/
|
||||||
|
int port();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the primary MOTD shown to Bedrock players if a ping passthrough setting is not enabled.
|
||||||
|
* <p>
|
||||||
|
* This is the first line that will be displayed.
|
||||||
|
*
|
||||||
|
* @return the primary MOTD shown to Bedrock players.
|
||||||
|
*/
|
||||||
|
String primaryMotd();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the secondary MOTD shown to Bedrock players if a ping passthrough setting is not enabled.
|
||||||
|
* <p>
|
||||||
|
* This is the second line that will be displayed.
|
||||||
|
*
|
||||||
|
* @return the secondary MOTD shown to Bedrock players.
|
||||||
|
*/
|
||||||
|
String secondaryMotd();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the server name that is sent to Bedrock clients.
|
||||||
|
*
|
||||||
|
* @return the server sent to Bedrock clients
|
||||||
|
*/
|
||||||
|
String serverName();
|
||||||
|
}
|
@ -23,46 +23,48 @@
|
|||||||
* @link https://github.com/GeyserMC/Geyser
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.geysermc.api.session;
|
package org.geysermc.geyser.api.network;
|
||||||
|
|
||||||
import org.checkerframework.checker.nullness.qual.NonNull;
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
import org.checkerframework.common.value.qual.IntRange;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a player connection.
|
* Represents the Java server that Geyser is connecting to.
|
||||||
*/
|
*/
|
||||||
@NonNull
|
public interface RemoteServer {
|
||||||
public interface Connection {
|
|
||||||
/**
|
|
||||||
* Gets the name of the connection.
|
|
||||||
*
|
|
||||||
* @return the name of the connection
|
|
||||||
*/
|
|
||||||
String name();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the {@link UUID} of the connection.
|
* Gets the IP address of the remote server.
|
||||||
*
|
*
|
||||||
* @return the UUID of the connection
|
* @return the IP address of the remote server
|
||||||
*/
|
*/
|
||||||
UUID uuid();
|
String address();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the XUID of the connection.
|
* Gets the port of the remote server.
|
||||||
*
|
*
|
||||||
* @return the XUID of the connection
|
* @return the port of the remote server
|
||||||
*/
|
*/
|
||||||
String xuid();
|
int port();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transfer the connection to a server. A Bedrock player can successfully transfer to the same server they are
|
* Gets the protocol version of the remote server.
|
||||||
* currently playing on.
|
|
||||||
*
|
*
|
||||||
* @param address The address of the server
|
* @return the protocol version of the remote server
|
||||||
* @param port The port of the server
|
|
||||||
* @return true if the transfer was a success
|
|
||||||
*/
|
*/
|
||||||
boolean transfer(@NonNull String address, @IntRange(from = 0, to = 65535) int port);
|
int protocolVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the Minecraft version of the remote server.
|
||||||
|
*
|
||||||
|
* @return the Minecraft version of the remote server
|
||||||
|
*/
|
||||||
|
String minecraftVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the {@link AuthType} required by the remote server.
|
||||||
|
*
|
||||||
|
* @return the auth type required by the remote server
|
||||||
|
*/
|
||||||
|
@NonNull
|
||||||
|
AuthType authType();
|
||||||
}
|
}
|
83
api/geyser/src/main/java/org/geysermc/geyser/api/util/TriState.java
Normale Datei
83
api/geyser/src/main/java/org/geysermc/geyser/api/util/TriState.java
Normale Datei
@ -0,0 +1,83 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.geyser.api.util;
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.NonNull;
|
||||||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is a way to represent a boolean, but with a non set value added.
|
||||||
|
* This class was inspired by adventure's version https://github.com/KyoriPowered/adventure/blob/main/4/api/src/main/java/net/kyori/adventure/util/TriState.java
|
||||||
|
*/
|
||||||
|
public enum TriState {
|
||||||
|
/**
|
||||||
|
* Describes a value that is not set, null, or not present.
|
||||||
|
*/
|
||||||
|
NOT_SET,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes a true value.
|
||||||
|
*/
|
||||||
|
TRUE,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes a false value.
|
||||||
|
*/
|
||||||
|
FALSE;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts the TriState to a boolean.
|
||||||
|
*
|
||||||
|
* @return the boolean value of the TriState
|
||||||
|
*/
|
||||||
|
public @Nullable Boolean toBoolean() {
|
||||||
|
return switch (this) {
|
||||||
|
case TRUE -> true;
|
||||||
|
case FALSE -> false;
|
||||||
|
default -> null;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a TriState from a boolean.
|
||||||
|
*
|
||||||
|
* @param value the Boolean value
|
||||||
|
* @return the created TriState
|
||||||
|
*/
|
||||||
|
public static @NonNull TriState fromBoolean(@Nullable Boolean value) {
|
||||||
|
return value == null ? NOT_SET : fromBoolean(value.booleanValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a TriState from a primitive boolean.
|
||||||
|
*
|
||||||
|
* @param value the boolean value
|
||||||
|
* @return the created TriState
|
||||||
|
*/
|
||||||
|
public @NonNull static TriState fromBoolean(boolean value) {
|
||||||
|
return value ? TRUE : FALSE;
|
||||||
|
}
|
||||||
|
}
|
24
api/pom.xml
24
api/pom.xml
@ -1,24 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>geyser-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
|
|
||||||
<artifactId>api-parent</artifactId>
|
|
||||||
<packaging>pom</packaging>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<maven.compiler.source>16</maven.compiler.source>
|
|
||||||
<maven.compiler.target>16</maven.compiler.target>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<modules>
|
|
||||||
<module>base</module>
|
|
||||||
<module>geyser</module>
|
|
||||||
</modules>
|
|
||||||
</project>
|
|
37
bootstrap/bungeecord/build.gradle.kts
Normale Datei
37
bootstrap/bungeecord/build.gradle.kts
Normale Datei
@ -0,0 +1,37 @@
|
|||||||
|
val bungeeVersion = "a7c6ede";
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api(projects.core)
|
||||||
|
|
||||||
|
implementation("net.kyori", "adventure-text-serializer-bungeecord", Versions.adventurePlatformVersion)
|
||||||
|
}
|
||||||
|
|
||||||
|
platformRelocate("net.md_5.bungee.jni")
|
||||||
|
platformRelocate("com.fasterxml.jackson")
|
||||||
|
platformRelocate("io.netty.channel.kqueue") // This is not used because relocating breaks natives, but we must include it or else we get ClassDefNotFound
|
||||||
|
platformRelocate("net.kyori")
|
||||||
|
|
||||||
|
// These dependencies are already present on the platform
|
||||||
|
provided("com.github.SpigotMC.BungeeCord", "bungeecord-proxy", bungeeVersion)
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass.set("org.geysermc.geyser.platform.bungeecord.GeyserBungeeMain")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
||||||
|
archiveBaseName.set("Geyser-BungeeCord")
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
exclude(dependency("com.google.*:.*"))
|
||||||
|
exclude(dependency("org.yaml:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-transport-native-epoll:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-transport-native-unix-common:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-handler:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-common:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-buffer:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-resolver:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-transport:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-codec:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-resolver-dns:.*"))
|
||||||
|
}
|
||||||
|
}
|
@ -1,109 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>bootstrap-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<artifactId>bootstrap-bungeecord</artifactId>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>core</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<!-- Used for better working with internals without reflection -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.SpigotMC.BungeeCord</groupId>
|
|
||||||
<artifactId>bungeecord-proxy</artifactId>
|
|
||||||
<version>a7c6ede</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.kyori</groupId>
|
|
||||||
<artifactId>adventure-text-serializer-bungeecord</artifactId>
|
|
||||||
<version>${adventure-platform.version}</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
<build>
|
|
||||||
<finalName>${outputName}-BungeeCord</finalName>
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<directory>src/main/resources/</directory>
|
|
||||||
<filtering>true</filtering>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.2.0</version>
|
|
||||||
<configuration>
|
|
||||||
<archive>
|
|
||||||
<manifestEntries>
|
|
||||||
<Main-Class>org.geysermc.geyser.platform.bungeecord.GeyserBungeeMain</Main-Class>
|
|
||||||
</manifestEntries>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<version>3.3.0</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<relocations>
|
|
||||||
<relocation>
|
|
||||||
<pattern>net.md_5.bungee.jni</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.bungeecord.shaded.jni</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.fasterxml.jackson</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.bungeecord.shaded.jackson</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<!-- This is not used because relocating breaks natives, but we must include it
|
|
||||||
or else we get ClassDefNotFound -->
|
|
||||||
<pattern>io.netty.channel.kqueue</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.bungeecord.shaded.io.netty.channel.kqueue</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>net.kyori</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.bungeecord.shaded.kyori</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
</relocations>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<artifactSet>
|
|
||||||
<excludes>
|
|
||||||
<exclude>com.google.*:*</exclude>
|
|
||||||
<exclude>org.yaml:*</exclude>
|
|
||||||
<exclude>io.netty:netty-transport-native-epoll:*</exclude>
|
|
||||||
<exclude>io.netty:netty-transport-native-unix-common:*</exclude>
|
|
||||||
<exclude>io.netty:netty-handler:*</exclude>
|
|
||||||
<exclude>io.netty:netty-common:*</exclude>
|
|
||||||
<exclude>io.netty:netty-buffer:*</exclude>
|
|
||||||
<exclude>io.netty:netty-resolver:*</exclude>
|
|
||||||
<exclude>io.netty:netty-transport:*</exclude>
|
|
||||||
<exclude>io.netty:netty-codec:*</exclude>
|
|
||||||
<exclude>io.netty:netty-resolver-dns:*</exclude>
|
|
||||||
</excludes>
|
|
||||||
</artifactSet>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
@ -28,8 +28,8 @@ package org.geysermc.geyser.platform.bungeecord;
|
|||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import net.md_5.bungee.api.ProxyServer;
|
import net.md_5.bungee.api.ProxyServer;
|
||||||
import net.md_5.bungee.api.plugin.Plugin;
|
import net.md_5.bungee.api.plugin.Plugin;
|
||||||
import org.geysermc.geyser.text.AsteriskSerializer;
|
|
||||||
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
||||||
|
import org.geysermc.geyser.text.AsteriskSerializer;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
@ -39,8 +39,8 @@ import net.md_5.bungee.api.plugin.Listener;
|
|||||||
import net.md_5.bungee.api.plugin.Plugin;
|
import net.md_5.bungee.api.plugin.Plugin;
|
||||||
import net.md_5.bungee.event.EventHandler;
|
import net.md_5.bungee.event.EventHandler;
|
||||||
import net.md_5.bungee.netty.PipelineUtils;
|
import net.md_5.bungee.netty.PipelineUtils;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
|
||||||
import org.geysermc.geyser.GeyserBootstrap;
|
import org.geysermc.geyser.GeyserBootstrap;
|
||||||
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.network.netty.GeyserInjector;
|
import org.geysermc.geyser.network.netty.GeyserInjector;
|
||||||
import org.geysermc.geyser.network.netty.LocalServerChannelWrapper;
|
import org.geysermc.geyser.network.netty.LocalServerChannelWrapper;
|
||||||
import org.geysermc.geyser.network.netty.LocalSession;
|
import org.geysermc.geyser.network.netty.LocalSession;
|
||||||
|
@ -25,31 +25,39 @@
|
|||||||
|
|
||||||
package org.geysermc.geyser.platform.bungeecord;
|
package org.geysermc.geyser.platform.bungeecord;
|
||||||
|
|
||||||
|
import io.netty.channel.Channel;
|
||||||
|
import net.md_5.bungee.BungeeCord;
|
||||||
import net.md_5.bungee.api.config.ListenerInfo;
|
import net.md_5.bungee.api.config.ListenerInfo;
|
||||||
import net.md_5.bungee.api.plugin.Plugin;
|
import net.md_5.bungee.api.plugin.Plugin;
|
||||||
import net.md_5.bungee.protocol.ProtocolConstants;
|
import net.md_5.bungee.protocol.ProtocolConstants;
|
||||||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
import org.geysermc.common.PlatformType;
|
import org.geysermc.common.PlatformType;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
|
||||||
import org.geysermc.geyser.GeyserBootstrap;
|
import org.geysermc.geyser.GeyserBootstrap;
|
||||||
import org.geysermc.geyser.command.CommandManager;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.session.auth.AuthType;
|
import org.geysermc.geyser.api.command.Command;
|
||||||
|
import org.geysermc.geyser.api.extension.Extension;
|
||||||
|
import org.geysermc.geyser.api.network.AuthType;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandManager;
|
||||||
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
||||||
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
||||||
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
||||||
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
||||||
import org.geysermc.geyser.util.FileUtils;
|
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
|
||||||
import org.geysermc.geyser.platform.bungeecord.command.GeyserBungeeCommandExecutor;
|
import org.geysermc.geyser.platform.bungeecord.command.GeyserBungeeCommandExecutor;
|
||||||
import org.geysermc.geyser.platform.bungeecord.command.GeyserBungeeCommandManager;
|
import org.geysermc.geyser.platform.bungeecord.command.GeyserBungeeCommandManager;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
import org.geysermc.geyser.util.FileUtils;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
public class GeyserBungeePlugin extends Plugin implements GeyserBootstrap {
|
public class GeyserBungeePlugin extends Plugin implements GeyserBootstrap {
|
||||||
@ -63,9 +71,7 @@ public class GeyserBungeePlugin extends Plugin implements GeyserBootstrap {
|
|||||||
private GeyserImpl geyser;
|
private GeyserImpl geyser;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onEnable() {
|
public void onLoad() {
|
||||||
GeyserLocale.init(this);
|
|
||||||
|
|
||||||
// Copied from ViaVersion.
|
// Copied from ViaVersion.
|
||||||
// https://github.com/ViaVersion/ViaVersion/blob/b8072aad86695cc8ec6f5e4103e43baf3abf6cc5/bungee/src/main/java/us/myles/ViaVersion/BungeePlugin.java#L43
|
// https://github.com/ViaVersion/ViaVersion/blob/b8072aad86695cc8ec6f5e4103e43baf3abf6cc5/bungee/src/main/java/us/myles/ViaVersion/BungeePlugin.java#L43
|
||||||
try {
|
try {
|
||||||
@ -80,6 +86,8 @@ public class GeyserBungeePlugin extends Plugin implements GeyserBootstrap {
|
|||||||
getLogger().warning("/_____________\\");
|
getLogger().warning("/_____________\\");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GeyserLocale.init(this);
|
||||||
|
|
||||||
if (!getDataFolder().exists())
|
if (!getDataFolder().exists())
|
||||||
getDataFolder().mkdir();
|
getDataFolder().mkdir();
|
||||||
|
|
||||||
@ -95,13 +103,38 @@ public class GeyserBungeePlugin extends Plugin implements GeyserBootstrap {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.geyserLogger = new GeyserBungeeLogger(getLogger(), geyserConfig.isDebugMode());
|
||||||
|
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);
|
||||||
|
|
||||||
|
this.geyser = GeyserImpl.load(PlatformType.BUNGEECORD, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
// Remove this in like a year
|
||||||
|
if (getProxy().getPluginManager().getPlugin("floodgate-bungee") != null) {
|
||||||
|
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.outdated", "https://ci.opencollab.dev/job/GeyserMC/job/Floodgate/job/master/"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (geyserConfig.getRemote().authType() == AuthType.FLOODGATE && getProxy().getPluginManager().getPlugin("floodgate") == null) {
|
||||||
|
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.not_installed") + " " + GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.disabling"));
|
||||||
|
return;
|
||||||
|
} else if (geyserConfig.isAutoconfiguredRemote() && getProxy().getPluginManager().getPlugin("floodgate") != null) {
|
||||||
|
// Floodgate installed means that the user wants Floodgate authentication
|
||||||
|
geyserLogger.debug("Auto-setting to Floodgate authentication.");
|
||||||
|
geyserConfig.getRemote().setAuthType(AuthType.FLOODGATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
geyserConfig.loadFloodgate(this);
|
||||||
|
|
||||||
if (getProxy().getConfig().getListeners().size() == 1) {
|
if (getProxy().getConfig().getListeners().size() == 1) {
|
||||||
ListenerInfo listener = getProxy().getConfig().getListeners().toArray(new ListenerInfo[0])[0];
|
ListenerInfo listener = getProxy().getConfig().getListeners().toArray(new ListenerInfo[0])[0];
|
||||||
|
|
||||||
InetSocketAddress javaAddr = listener.getHost();
|
InetSocketAddress javaAddr = listener.getHost();
|
||||||
|
|
||||||
// By default this should be localhost but may need to be changed in some circumstances
|
// By default this should be localhost but may need to be changed in some circumstances
|
||||||
if (this.geyserConfig.getRemote().getAddress().equalsIgnoreCase("auto")) {
|
if (this.geyserConfig.getRemote().address().equalsIgnoreCase("auto")) {
|
||||||
this.geyserConfig.setAutoconfiguredRemote(true);
|
this.geyserConfig.setAutoconfiguredRemote(true);
|
||||||
// Don't use localhost if not listening on all interfaces
|
// Don't use localhost if not listening on all interfaces
|
||||||
if (!javaAddr.getHostString().equals("0.0.0.0") && !javaAddr.getHostString().equals("")) {
|
if (!javaAddr.getHostString().equals("0.0.0.0") && !javaAddr.getHostString().equals("")) {
|
||||||
@ -115,42 +148,63 @@ public class GeyserBungeePlugin extends Plugin implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.geyserLogger = new GeyserBungeeLogger(getLogger(), geyserConfig.isDebugMode());
|
// Big hack - Bungee does not provide us an event to listen to, so schedule a repeating
|
||||||
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);
|
// task that waits for a field to be filled which is set after the plugin enable
|
||||||
|
// process is complete
|
||||||
|
this.awaitStartupCompletion(0);
|
||||||
|
}
|
||||||
|
|
||||||
// Remove this in like a year
|
@SuppressWarnings("unchecked")
|
||||||
if (getProxy().getPluginManager().getPlugin("floodgate-bungee") != null) {
|
private void awaitStartupCompletion(int tries) {
|
||||||
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.outdated", "https://ci.opencollab.dev/job/GeyserMC/job/Floodgate/job/master/"));
|
// After 20 tries give up waiting. This will happen
|
||||||
|
// just after 3 minutes approximately
|
||||||
|
if (tries >= 20) {
|
||||||
|
this.geyserLogger.warning("BungeeCord plugin startup is taking abnormally long, so Geyser is starting now. " +
|
||||||
|
"If all your plugins are loaded properly, this is a bug! " +
|
||||||
|
"If not, consider cutting down the amount of plugins on your proxy as it is causing abnormally slow starting times.");
|
||||||
|
this.postStartup();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (geyserConfig.getRemote().getAuthType() == AuthType.FLOODGATE && getProxy().getPluginManager().getPlugin("floodgate") == null) {
|
try {
|
||||||
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.not_installed") + " " + GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.disabling"));
|
Field listenersField = BungeeCord.getInstance().getClass().getDeclaredField("listeners");
|
||||||
return;
|
listenersField.setAccessible(true);
|
||||||
} else if (geyserConfig.isAutoconfiguredRemote() && getProxy().getPluginManager().getPlugin("floodgate") != null) {
|
|
||||||
// Floodgate installed means that the user wants Floodgate authentication
|
Collection<Channel> listeners = (Collection<Channel>) listenersField.get(BungeeCord.getInstance());
|
||||||
geyserLogger.debug("Auto-setting to Floodgate authentication.");
|
if (listeners.isEmpty()) {
|
||||||
geyserConfig.getRemote().setAuthType(AuthType.FLOODGATE);
|
this.getProxy().getScheduler().schedule(this, this::postStartup, tries, TimeUnit.SECONDS);
|
||||||
|
} else {
|
||||||
|
this.awaitStartupCompletion(++tries);
|
||||||
|
}
|
||||||
|
} catch (NoSuchFieldException | IllegalAccessException ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
geyserConfig.loadFloodgate(this);
|
private void postStartup() {
|
||||||
|
GeyserImpl.start();
|
||||||
this.geyser = GeyserImpl.start(PlatformType.BUNGEECORD, this);
|
|
||||||
|
|
||||||
this.geyserInjector = new GeyserBungeeInjector(this);
|
this.geyserInjector = new GeyserBungeeInjector(this);
|
||||||
this.geyserInjector.initializeLocalChannel(this);
|
this.geyserInjector.initializeLocalChannel(this);
|
||||||
|
|
||||||
this.geyserCommandManager = new GeyserBungeeCommandManager(geyser);
|
this.geyserCommandManager = new GeyserBungeeCommandManager(geyser);
|
||||||
|
this.geyserCommandManager.init();
|
||||||
|
|
||||||
|
this.getProxy().getPluginManager().registerCommand(this, new GeyserBungeeCommandExecutor("geyser", this.geyser, this.geyserCommandManager.getCommands()));
|
||||||
|
for (Map.Entry<Extension, Map<String, Command>> entry : this.geyserCommandManager.extensionCommands().entrySet()) {
|
||||||
|
Map<String, Command> commands = entry.getValue();
|
||||||
|
if (commands.isEmpty()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.getProxy().getPluginManager().registerCommand(this, new GeyserBungeeCommandExecutor(entry.getKey().description().id(), this.geyser, commands));
|
||||||
|
}
|
||||||
|
|
||||||
if (geyserConfig.isLegacyPingPassthrough()) {
|
if (geyserConfig.isLegacyPingPassthrough()) {
|
||||||
this.geyserBungeePingPassthrough = GeyserLegacyPingPassthrough.init(geyser);
|
this.geyserBungeePingPassthrough = GeyserLegacyPingPassthrough.init(geyser);
|
||||||
} else {
|
} else {
|
||||||
this.geyserBungeePingPassthrough = new GeyserBungeePingPassthrough(getProxy());
|
this.geyserBungeePingPassthrough = new GeyserBungeePingPassthrough(getProxy());
|
||||||
}
|
}
|
||||||
|
|
||||||
this.getProxy().getPluginManager().registerCommand(this, new GeyserBungeeCommandExecutor(geyser));
|
|
||||||
|
|
||||||
this.getProxy().getPluginManager().registerListener(this, new GeyserBungeeUpdateListener());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -174,7 +228,7 @@ public class GeyserBungeePlugin extends Plugin implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CommandManager getGeyserCommandManager() {
|
public GeyserCommandManager getGeyserCommandManager() {
|
||||||
return this.geyserCommandManager;
|
return this.geyserCommandManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ import net.md_5.bungee.api.plugin.Listener;
|
|||||||
import net.md_5.bungee.event.EventHandler;
|
import net.md_5.bungee.event.EventHandler;
|
||||||
import org.geysermc.geyser.Constants;
|
import org.geysermc.geyser.Constants;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.platform.bungeecord.command.BungeeCommandSender;
|
import org.geysermc.geyser.platform.bungeecord.command.BungeeCommandSource;
|
||||||
import org.geysermc.geyser.util.VersionCheckUtils;
|
import org.geysermc.geyser.util.VersionCheckUtils;
|
||||||
|
|
||||||
public final class GeyserBungeeUpdateListener implements Listener {
|
public final class GeyserBungeeUpdateListener implements Listener {
|
||||||
@ -41,7 +41,7 @@ public final class GeyserBungeeUpdateListener implements Listener {
|
|||||||
if (GeyserImpl.getInstance().getConfig().isNotifyOnNewBedrockUpdate()) {
|
if (GeyserImpl.getInstance().getConfig().isNotifyOnNewBedrockUpdate()) {
|
||||||
final ProxiedPlayer player = event.getPlayer();
|
final ProxiedPlayer player = event.getPlayer();
|
||||||
if (player.hasPermission(Constants.UPDATE_PERMISSION)) {
|
if (player.hasPermission(Constants.UPDATE_PERMISSION)) {
|
||||||
VersionCheckUtils.checkForGeyserUpdate(() -> new BungeeCommandSender(player));
|
VersionCheckUtils.checkForGeyserUpdate(() -> new BungeeCommandSource(player));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,19 +29,19 @@ import net.kyori.adventure.text.Component;
|
|||||||
import net.kyori.adventure.text.serializer.bungeecord.BungeeComponentSerializer;
|
import net.kyori.adventure.text.serializer.bungeecord.BungeeComponentSerializer;
|
||||||
import net.md_5.bungee.api.chat.TextComponent;
|
import net.md_5.bungee.api.chat.TextComponent;
|
||||||
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
||||||
import org.geysermc.geyser.command.CommandSender;
|
import org.geysermc.geyser.command.GeyserCommandSource;
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
|
||||||
public class BungeeCommandSender implements CommandSender {
|
public class BungeeCommandSource implements GeyserCommandSource {
|
||||||
|
|
||||||
private final net.md_5.bungee.api.CommandSender handle;
|
private final net.md_5.bungee.api.CommandSender handle;
|
||||||
|
|
||||||
public BungeeCommandSender(net.md_5.bungee.api.CommandSender handle) {
|
public BungeeCommandSource(net.md_5.bungee.api.CommandSender handle) {
|
||||||
this.handle = handle;
|
this.handle = handle;
|
||||||
// Ensure even Java players' languages are loaded
|
// Ensure even Java players' languages are loaded
|
||||||
GeyserLocale.loadGeyserLocale(getLocale());
|
GeyserLocale.loadGeyserLocale(this.locale());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -72,7 +72,7 @@ public class BungeeCommandSender implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getLocale() {
|
public String locale() {
|
||||||
if (handle instanceof ProxiedPlayer player) {
|
if (handle instanceof ProxiedPlayer player) {
|
||||||
Locale locale = player.getLocale();
|
Locale locale = player.getLocale();
|
||||||
if (locale != null) {
|
if (locale != null) {
|
@ -30,39 +30,40 @@ import net.md_5.bungee.api.CommandSender;
|
|||||||
import net.md_5.bungee.api.plugin.Command;
|
import net.md_5.bungee.api.plugin.Command;
|
||||||
import net.md_5.bungee.api.plugin.TabExecutor;
|
import net.md_5.bungee.api.plugin.TabExecutor;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.CommandExecutor;
|
|
||||||
import org.geysermc.geyser.command.GeyserCommand;
|
import org.geysermc.geyser.command.GeyserCommand;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandExecutor;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public class GeyserBungeeCommandExecutor extends Command implements TabExecutor {
|
public class GeyserBungeeCommandExecutor extends Command implements TabExecutor {
|
||||||
private final CommandExecutor commandExecutor;
|
private final GeyserCommandExecutor commandExecutor;
|
||||||
|
|
||||||
public GeyserBungeeCommandExecutor(GeyserImpl geyser) {
|
public GeyserBungeeCommandExecutor(String name, GeyserImpl geyser, Map<String, org.geysermc.geyser.api.command.Command> commands) {
|
||||||
super("geyser");
|
super(name);
|
||||||
|
|
||||||
this.commandExecutor = new CommandExecutor(geyser);
|
this.commandExecutor = new GeyserCommandExecutor(geyser, commands);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execute(CommandSender sender, String[] args) {
|
public void execute(CommandSender sender, String[] args) {
|
||||||
BungeeCommandSender commandSender = new BungeeCommandSender(sender);
|
BungeeCommandSource commandSender = new BungeeCommandSource(sender);
|
||||||
GeyserSession session = this.commandExecutor.getGeyserSession(commandSender);
|
GeyserSession session = this.commandExecutor.getGeyserSession(commandSender);
|
||||||
|
|
||||||
if (args.length > 0) {
|
if (args.length > 0) {
|
||||||
GeyserCommand command = this.commandExecutor.getCommand(args[0]);
|
GeyserCommand command = this.commandExecutor.getCommand(args[0]);
|
||||||
if (command != null) {
|
if (command != null) {
|
||||||
if (!sender.hasPermission(command.getPermission())) {
|
if (!sender.hasPermission(command.permission())) {
|
||||||
String message = GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.permission_fail", commandSender.getLocale());
|
String message = GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.permission_fail", commandSender.locale());
|
||||||
|
|
||||||
commandSender.sendMessage(ChatColor.RED + message);
|
commandSender.sendMessage(ChatColor.RED + message);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (command.isBedrockOnly() && session == null) {
|
if (command.isBedrockOnly() && session == null) {
|
||||||
String message = GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.bedrock_only", commandSender.getLocale());
|
String message = GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.bedrock_only", commandSender.locale());
|
||||||
|
|
||||||
commandSender.sendMessage(ChatColor.RED + message);
|
commandSender.sendMessage(ChatColor.RED + message);
|
||||||
return;
|
return;
|
||||||
@ -77,7 +78,7 @@ public class GeyserBungeeCommandExecutor extends Command implements TabExecutor
|
|||||||
@Override
|
@Override
|
||||||
public Iterable<String> onTabComplete(CommandSender sender, String[] args) {
|
public Iterable<String> onTabComplete(CommandSender sender, String[] args) {
|
||||||
if (args.length == 1) {
|
if (args.length == 1) {
|
||||||
return commandExecutor.tabComplete(new BungeeCommandSender(sender));
|
return commandExecutor.tabComplete(new BungeeCommandSource(sender));
|
||||||
} else {
|
} else {
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
@ -26,16 +26,16 @@
|
|||||||
package org.geysermc.geyser.platform.bungeecord.command;
|
package org.geysermc.geyser.platform.bungeecord.command;
|
||||||
|
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.CommandManager;
|
import org.geysermc.geyser.command.GeyserCommandManager;
|
||||||
|
|
||||||
public class GeyserBungeeCommandManager extends CommandManager {
|
public class GeyserBungeeCommandManager extends GeyserCommandManager {
|
||||||
|
|
||||||
public GeyserBungeeCommandManager(GeyserImpl geyser) {
|
public GeyserBungeeCommandManager(GeyserImpl geyser) {
|
||||||
super(geyser);
|
super(geyser);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDescription(String command) {
|
public String description(String command) {
|
||||||
return ""; // no support for command descriptions in bungee
|
return ""; // no support for command descriptions in bungee
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
main: org.geysermc.geyser.platform.bungeecord.GeyserBungeePlugin
|
main: org.geysermc.geyser.platform.bungeecord.GeyserBungeePlugin
|
||||||
name: ${outputName}-BungeeCord
|
name: ${name}-BungeeCord
|
||||||
author: ${project.organization.name}
|
author: ${author}
|
||||||
website: ${project.organization.url}
|
website: ${url}
|
||||||
version: ${project.version}
|
version: ${version}
|
@ -1,53 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>geyser-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<artifactId>bootstrap-parent</artifactId>
|
|
||||||
<packaging>pom</packaging>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<adventure-platform.version>4.1.2</adventure-platform.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>spigot-public</id>
|
|
||||||
<url>https://hub.spigotmc.org/nexus/content/repositories/public/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>sponge-repo</id>
|
|
||||||
<url>https://repo.spongepowered.org/repository/maven-public/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>bungeecord-repo</id>
|
|
||||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>velocity-repo</id>
|
|
||||||
<url>https://repo.velocitypowered.com/snapshots/</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>ap</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<modules>
|
|
||||||
<module>bungeecord</module>
|
|
||||||
<module>spigot</module>
|
|
||||||
<module>sponge</module>
|
|
||||||
<module>standalone</module>
|
|
||||||
<module>velocity</module>
|
|
||||||
</modules>
|
|
||||||
</project>
|
|
68
bootstrap/spigot/build.gradle.kts
Normale Datei
68
bootstrap/spigot/build.gradle.kts
Normale Datei
@ -0,0 +1,68 @@
|
|||||||
|
val paperVersion = "1.19-R0.1-SNAPSHOT"
|
||||||
|
val viaVersion = "4.0.0"
|
||||||
|
val adaptersVersion = "1.5-SNAPSHOT"
|
||||||
|
val commodoreVersion = "2.2"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api(projects.core)
|
||||||
|
|
||||||
|
implementation("org.geysermc.geyser.adapters", "spigot-all", adaptersVersion)
|
||||||
|
|
||||||
|
implementation("me.lucko", "commodore", commodoreVersion)
|
||||||
|
|
||||||
|
implementation("net.kyori", "adventure-text-serializer-bungeecord", Versions.adventurePlatformVersion)
|
||||||
|
|
||||||
|
// Both paper-api and paper-mojangapi only provide Java 17 versions for 1.19
|
||||||
|
compileOnly("io.papermc.paper", "paper-api", paperVersion) {
|
||||||
|
attributes {
|
||||||
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
compileOnly("io.papermc.paper", "paper-mojangapi", paperVersion) {
|
||||||
|
attributes {
|
||||||
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
platformRelocate("it.unimi.dsi.fastutil")
|
||||||
|
platformRelocate("com.fasterxml.jackson")
|
||||||
|
// Relocate net.kyori but exclude the component logger
|
||||||
|
platformRelocate("net.kyori", "net.kyori.adventure.text.logger.slf4j.ComponentLogger")
|
||||||
|
platformRelocate("org.objectweb.asm")
|
||||||
|
platformRelocate("me.lucko.commodore")
|
||||||
|
platformRelocate("io.netty.channel.kqueue")
|
||||||
|
|
||||||
|
// These dependencies are already present on the platform
|
||||||
|
provided("com.viaversion", "viaversion", viaVersion)
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass.set("org.geysermc.geyser.platform.spigot.GeyserSpigotMain")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
||||||
|
archiveBaseName.set("Geyser-Spigot")
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
exclude(dependency("com.google.*:.*"))
|
||||||
|
exclude(dependency("org.yaml:.*"))
|
||||||
|
|
||||||
|
// We cannot shade Netty, or else native libraries will not load
|
||||||
|
// Needed because older Spigot builds do not provide the haproxy module
|
||||||
|
exclude(dependency("io.netty:netty-transport-native-epoll:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-transport-native-unix-common:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-transport-native-kqueue:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-handler:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-common:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-buffer:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-resolver:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-transport:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-codec:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-codec-dns:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-resolver-dns:.*"))
|
||||||
|
exclude(dependency("io.netty:netty-resolver-dns-native-macos:.*"))
|
||||||
|
|
||||||
|
// Commodore includes Brigadier
|
||||||
|
exclude(dependency("com.mojang:.*"))
|
||||||
|
}
|
||||||
|
}
|
@ -1,163 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>bootstrap-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<artifactId>bootstrap-spigot</artifactId>
|
|
||||||
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>papermc</id>
|
|
||||||
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>viaversion-repo</id>
|
|
||||||
<url>https://repo.viaversion.com</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<!-- For Commodore -->
|
|
||||||
<id>minecraft-repo</id>
|
|
||||||
<url>https://libraries.minecraft.net/</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>core</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.papermc.paper</groupId>
|
|
||||||
<artifactId>paper-api</artifactId>
|
|
||||||
<version>1.19-R0.1-SNAPSHOT</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.papermc.paper</groupId>
|
|
||||||
<artifactId>paper-mojangapi</artifactId>
|
|
||||||
<version>1.19-R0.1-SNAPSHOT</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.viaversion</groupId>
|
|
||||||
<artifactId>viaversion</artifactId>
|
|
||||||
<version>4.0.0</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc.geyser.adapters</groupId>
|
|
||||||
<artifactId>spigot-all</artifactId>
|
|
||||||
<version>1.5-SNAPSHOT</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>me.lucko</groupId>
|
|
||||||
<artifactId>commodore</artifactId>
|
|
||||||
<version>2.2</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.kyori</groupId>
|
|
||||||
<artifactId>adventure-text-serializer-bungeecord</artifactId>
|
|
||||||
<version>${adventure-platform.version}</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
<build>
|
|
||||||
<finalName>${outputName}-Spigot</finalName>
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<directory>src/main/resources/</directory>
|
|
||||||
<filtering>true</filtering>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.2.0</version>
|
|
||||||
<configuration>
|
|
||||||
<archive>
|
|
||||||
<manifestEntries>
|
|
||||||
<Main-Class>org.geysermc.geyser.platform.spigot.GeyserSpigotMain</Main-Class>
|
|
||||||
</manifestEntries>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<version>3.3.0</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<relocations>
|
|
||||||
<relocation>
|
|
||||||
<pattern>it.unimi.dsi.fastutil</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.spigot.shaded.fastutil</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.fasterxml.jackson</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.spigot.shaded.jackson</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>net.kyori</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.spigot.shaded.kyori</shadedPattern>
|
|
||||||
<excludes>
|
|
||||||
<exclude>net.kyori.adventure.text.logger.slf4j.ComponentLogger</exclude>
|
|
||||||
</excludes>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>org.objectweb.asm</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.spigot.shaded.asm</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>me.lucko.commodore</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.spigot.shaded.commodore</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<!-- This is not used because relocating breaks natives, but we must include it
|
|
||||||
or else we get ClassDefNotFound after 1.18.2 -->
|
|
||||||
<pattern>io.netty.channel.kqueue</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.spigot.shaded.io.netty.channel.kqueue</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
</relocations>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<artifactSet>
|
|
||||||
<excludes>
|
|
||||||
<exclude>com.google.*:*</exclude>
|
|
||||||
<exclude>org.yaml:*</exclude>
|
|
||||||
<!-- We cannot shade Netty, or else native libraries will not load -->
|
|
||||||
<!-- Needed because older Spigot builds do not provide the haproxy module -->
|
|
||||||
<exclude>io.netty:netty-transport-native-epoll:*</exclude>
|
|
||||||
<exclude>io.netty:netty-transport-native-unix-common:*</exclude>
|
|
||||||
<exclude>io.netty:netty-handler:*</exclude>
|
|
||||||
<exclude>io.netty:netty-common:*</exclude>
|
|
||||||
<exclude>io.netty:netty-buffer:*</exclude>
|
|
||||||
<exclude>io.netty:netty-resolver:*</exclude>
|
|
||||||
<exclude>io.netty:netty-transport:*</exclude>
|
|
||||||
<exclude>io.netty:netty-codec:*</exclude>
|
|
||||||
<exclude>io.netty:netty-codec-dns:*</exclude>
|
|
||||||
<exclude>io.netty:netty-resolver-dns:*</exclude>
|
|
||||||
<exclude>io.netty:netty-resolver-dns-native-macos:*</exclude>
|
|
||||||
<exclude>com.mojang:*</exclude> <!-- Commodore includes Brigadier -->
|
|
||||||
</excludes>
|
|
||||||
</artifactSet>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
@ -29,7 +29,7 @@ import com.destroystokyo.paper.event.server.PaperServerListPingEvent;
|
|||||||
import com.destroystokyo.paper.network.StatusClient;
|
import com.destroystokyo.paper.network.StatusClient;
|
||||||
import com.destroystokyo.paper.profile.PlayerProfile;
|
import com.destroystokyo.paper.profile.PlayerProfile;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.geysermc.geyser.network.MinecraftProtocol;
|
import org.geysermc.geyser.network.GameProtocol;
|
||||||
import org.geysermc.geyser.ping.GeyserPingInfo;
|
import org.geysermc.geyser.ping.GeyserPingInfo;
|
||||||
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
@ -62,11 +62,11 @@ public final class GeyserPaperPingPassthrough implements IGeyserPingPassthrough
|
|||||||
// Approximately pre-1.19
|
// Approximately pre-1.19
|
||||||
event = OLD_CONSTRUCTOR.newInstance(new GeyserStatusClient(inetSocketAddress),
|
event = OLD_CONSTRUCTOR.newInstance(new GeyserStatusClient(inetSocketAddress),
|
||||||
Bukkit.getMotd(), Bukkit.getOnlinePlayers().size(),
|
Bukkit.getMotd(), Bukkit.getOnlinePlayers().size(),
|
||||||
Bukkit.getMaxPlayers(), Bukkit.getVersion(), MinecraftProtocol.getJavaProtocolVersion(), null);
|
Bukkit.getMaxPlayers(), Bukkit.getVersion(), GameProtocol.getJavaProtocolVersion(), null);
|
||||||
} else {
|
} else {
|
||||||
event = new PaperServerListPingEvent(new GeyserStatusClient(inetSocketAddress),
|
event = new PaperServerListPingEvent(new GeyserStatusClient(inetSocketAddress),
|
||||||
Bukkit.getMotd(), Bukkit.shouldSendChatPreviews(), Bukkit.getOnlinePlayers().size(),
|
Bukkit.getMotd(), Bukkit.shouldSendChatPreviews(), Bukkit.getOnlinePlayers().size(),
|
||||||
Bukkit.getMaxPlayers(), Bukkit.getVersion(), MinecraftProtocol.getJavaProtocolVersion(), null);
|
Bukkit.getMaxPlayers(), Bukkit.getVersion(), GameProtocol.getJavaProtocolVersion(), null);
|
||||||
}
|
}
|
||||||
Bukkit.getPluginManager().callEvent(event);
|
Bukkit.getPluginManager().callEvent(event);
|
||||||
if (event.isCancelled()) {
|
if (event.isCancelled()) {
|
||||||
@ -82,7 +82,7 @@ public final class GeyserPaperPingPassthrough implements IGeyserPingPassthrough
|
|||||||
}
|
}
|
||||||
|
|
||||||
GeyserPingInfo geyserPingInfo = new GeyserPingInfo(event.getMotd(), players,
|
GeyserPingInfo geyserPingInfo = new GeyserPingInfo(event.getMotd(), players,
|
||||||
new GeyserPingInfo.Version(Bukkit.getVersion(), MinecraftProtocol.getJavaProtocolVersion()));
|
new GeyserPingInfo.Version(Bukkit.getVersion(), GameProtocol.getJavaProtocolVersion()));
|
||||||
|
|
||||||
if (!event.shouldHidePlayers()) {
|
if (!event.shouldHidePlayers()) {
|
||||||
for (PlayerProfile profile : event.getPlayerSample()) {
|
for (PlayerProfile profile : event.getPlayerSample()) {
|
||||||
@ -105,7 +105,7 @@ public final class GeyserPaperPingPassthrough implements IGeyserPingPassthrough
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getProtocolVersion() {
|
public int getProtocolVersion() {
|
||||||
return MinecraftProtocol.getJavaProtocolVersion();
|
return GameProtocol.getJavaProtocolVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -28,8 +28,8 @@ package org.geysermc.geyser.platform.spigot;
|
|||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.geysermc.geyser.text.AsteriskSerializer;
|
|
||||||
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
||||||
|
import org.geysermc.geyser.text.AsteriskSerializer;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -170,8 +170,8 @@ public class GeyserSpigotInjector extends GeyserInjector {
|
|||||||
*/
|
*/
|
||||||
private void workAroundWeirdBug(GeyserBootstrap bootstrap) {
|
private void workAroundWeirdBug(GeyserBootstrap bootstrap) {
|
||||||
MinecraftProtocol protocol = new MinecraftProtocol();
|
MinecraftProtocol protocol = new MinecraftProtocol();
|
||||||
LocalSession session = new LocalSession(bootstrap.getGeyserConfig().getRemote().getAddress(),
|
LocalSession session = new LocalSession(bootstrap.getGeyserConfig().getRemote().address(),
|
||||||
bootstrap.getGeyserConfig().getRemote().getPort(), this.serverSocketAddress,
|
bootstrap.getGeyserConfig().getRemote().port(), this.serverSocketAddress,
|
||||||
InetAddress.getLoopbackAddress().getHostAddress(), protocol, protocol.createHelper());
|
InetAddress.getLoopbackAddress().getHostAddress(), protocol, protocol.createHelper());
|
||||||
session.connect();
|
session.connect();
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,7 @@ import org.bukkit.Bukkit;
|
|||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.event.server.ServerListPingEvent;
|
import org.bukkit.event.server.ServerListPingEvent;
|
||||||
import org.bukkit.util.CachedServerIcon;
|
import org.bukkit.util.CachedServerIcon;
|
||||||
import org.geysermc.geyser.network.MinecraftProtocol;
|
import org.geysermc.geyser.network.GameProtocol;
|
||||||
import org.geysermc.geyser.ping.GeyserPingInfo;
|
import org.geysermc.geyser.ping.GeyserPingInfo;
|
||||||
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
||||||
|
|
||||||
@ -52,7 +52,7 @@ public class GeyserSpigotPingPassthrough implements IGeyserPingPassthrough {
|
|||||||
Bukkit.getPluginManager().callEvent(event);
|
Bukkit.getPluginManager().callEvent(event);
|
||||||
GeyserPingInfo geyserPingInfo = new GeyserPingInfo(event.getMotd(),
|
GeyserPingInfo geyserPingInfo = new GeyserPingInfo(event.getMotd(),
|
||||||
new GeyserPingInfo.Players(event.getMaxPlayers(), event.getNumPlayers()),
|
new GeyserPingInfo.Players(event.getMaxPlayers(), event.getNumPlayers()),
|
||||||
new GeyserPingInfo.Version(Bukkit.getVersion(), MinecraftProtocol.getJavaProtocolVersion()) // thanks Spigot for not exposing this, just default to latest
|
new GeyserPingInfo.Version(Bukkit.getVersion(), GameProtocol.getJavaProtocolVersion()) // thanks Spigot for not exposing this, just default to latest
|
||||||
);
|
);
|
||||||
Bukkit.getOnlinePlayers().stream().map(Player::getName).forEach(geyserPingInfo.getPlayerList()::add);
|
Bukkit.getOnlinePlayers().stream().map(Player::getName).forEach(geyserPingInfo.getPlayerList()::add);
|
||||||
return geyserPingInfo;
|
return geyserPingInfo;
|
||||||
|
@ -32,36 +32,44 @@ import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|||||||
import io.netty.buffer.ByteBuf;
|
import io.netty.buffer.ByteBuf;
|
||||||
import me.lucko.commodore.CommodoreProvider;
|
import me.lucko.commodore.CommodoreProvider;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.command.CommandMap;
|
||||||
import org.bukkit.command.PluginCommand;
|
import org.bukkit.command.PluginCommand;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.server.ServerLoadEvent;
|
||||||
import org.bukkit.permissions.Permission;
|
import org.bukkit.permissions.Permission;
|
||||||
import org.bukkit.permissions.PermissionDefault;
|
import org.bukkit.permissions.PermissionDefault;
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
import org.geysermc.common.PlatformType;
|
import org.geysermc.common.PlatformType;
|
||||||
import org.geysermc.geyser.Constants;
|
import org.geysermc.geyser.Constants;
|
||||||
import org.geysermc.geyser.GeyserBootstrap;
|
import org.geysermc.geyser.GeyserBootstrap;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.adapters.spigot.SpigotAdapters;
|
import org.geysermc.geyser.adapters.spigot.SpigotAdapters;
|
||||||
import org.geysermc.geyser.command.CommandManager;
|
import org.geysermc.geyser.api.command.Command;
|
||||||
import org.geysermc.geyser.command.GeyserCommand;
|
import org.geysermc.geyser.api.extension.Extension;
|
||||||
|
import org.geysermc.geyser.api.network.AuthType;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandManager;
|
||||||
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
||||||
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
||||||
import org.geysermc.geyser.level.WorldManager;
|
import org.geysermc.geyser.level.WorldManager;
|
||||||
import org.geysermc.geyser.network.MinecraftProtocol;
|
import org.geysermc.geyser.network.GameProtocol;
|
||||||
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
||||||
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
||||||
import org.geysermc.geyser.platform.spigot.command.GeyserBrigadierSupport;
|
import org.geysermc.geyser.platform.spigot.command.GeyserBrigadierSupport;
|
||||||
import org.geysermc.geyser.platform.spigot.command.GeyserSpigotCommandExecutor;
|
import org.geysermc.geyser.platform.spigot.command.GeyserSpigotCommandExecutor;
|
||||||
import org.geysermc.geyser.platform.spigot.command.GeyserSpigotCommandManager;
|
import org.geysermc.geyser.platform.spigot.command.GeyserSpigotCommandManager;
|
||||||
import org.geysermc.geyser.platform.spigot.command.SpigotCommandSender;
|
import org.geysermc.geyser.platform.spigot.command.SpigotCommandSource;
|
||||||
import org.geysermc.geyser.platform.spigot.world.GeyserPistonListener;
|
import org.geysermc.geyser.platform.spigot.world.GeyserPistonListener;
|
||||||
import org.geysermc.geyser.platform.spigot.world.GeyserSpigotBlockPlaceListener;
|
import org.geysermc.geyser.platform.spigot.world.GeyserSpigotBlockPlaceListener;
|
||||||
import org.geysermc.geyser.platform.spigot.world.manager.*;
|
import org.geysermc.geyser.platform.spigot.world.manager.*;
|
||||||
import org.geysermc.geyser.session.auth.AuthType;
|
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
import org.geysermc.geyser.util.FileUtils;
|
import org.geysermc.geyser.util.FileUtils;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -90,24 +98,7 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
private String minecraftVersion;
|
private String minecraftVersion;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onEnable() {
|
public void onLoad() {
|
||||||
GeyserLocale.init(this);
|
|
||||||
|
|
||||||
// This is manually done instead of using Bukkit methods to save the config because otherwise comments get removed
|
|
||||||
try {
|
|
||||||
if (!getDataFolder().exists()) {
|
|
||||||
getDataFolder().mkdir();
|
|
||||||
}
|
|
||||||
File configFile = FileUtils.fileOrCopiedFromResource(new File(getDataFolder(), "config.yml"), "config.yml",
|
|
||||||
(x) -> x.replaceAll("generateduuid", UUID.randomUUID().toString()), this);
|
|
||||||
this.geyserConfig = FileUtils.loadConfig(configFile, GeyserSpigotConfiguration.class);
|
|
||||||
} catch (IOException ex) {
|
|
||||||
getLogger().log(Level.SEVERE, GeyserLocale.getLocaleStringLog("geyser.config.failed"), ex);
|
|
||||||
ex.printStackTrace();
|
|
||||||
Bukkit.getPluginManager().disablePlugin(this);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// AvailableCommandsSerializer_v291 complains otherwise
|
// AvailableCommandsSerializer_v291 complains otherwise
|
||||||
ByteBuf.class.getMethod("writeShortLE", int.class);
|
ByteBuf.class.getMethod("writeShortLE", int.class);
|
||||||
@ -139,8 +130,51 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GeyserLocale.init(this);
|
||||||
|
|
||||||
|
// This is manually done instead of using Bukkit methods to save the config because otherwise comments get removed
|
||||||
|
try {
|
||||||
|
if (!getDataFolder().exists()) {
|
||||||
|
getDataFolder().mkdir();
|
||||||
|
}
|
||||||
|
File configFile = FileUtils.fileOrCopiedFromResource(new File(getDataFolder(), "config.yml"), "config.yml",
|
||||||
|
(x) -> x.replaceAll("generateduuid", UUID.randomUUID().toString()), this);
|
||||||
|
this.geyserConfig = FileUtils.loadConfig(configFile, GeyserSpigotConfiguration.class);
|
||||||
|
} catch (IOException ex) {
|
||||||
|
getLogger().log(Level.SEVERE, GeyserLocale.getLocaleStringLog("geyser.config.failed"), ex);
|
||||||
|
ex.printStackTrace();
|
||||||
|
Bukkit.getPluginManager().disablePlugin(this);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.geyserLogger = GeyserPaperLogger.supported() ? new GeyserPaperLogger(this, getLogger(), geyserConfig.isDebugMode())
|
||||||
|
: new GeyserSpigotLogger(getLogger(), geyserConfig.isDebugMode());
|
||||||
|
|
||||||
|
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);
|
||||||
|
|
||||||
|
this.geyser = GeyserImpl.load(PlatformType.SPIGOT, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
// Remove this in like a year
|
||||||
|
if (Bukkit.getPluginManager().getPlugin("floodgate-bukkit") != null) {
|
||||||
|
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.outdated", Constants.FLOODGATE_DOWNLOAD_LOCATION));
|
||||||
|
this.getPluginLoader().disablePlugin(this);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (geyserConfig.getRemote().authType() == AuthType.FLOODGATE && Bukkit.getPluginManager().getPlugin("floodgate") == null) {
|
||||||
|
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.not_installed") + " " + GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.disabling"));
|
||||||
|
this.getPluginLoader().disablePlugin(this);
|
||||||
|
} else if (geyserConfig.isAutoconfiguredRemote() && Bukkit.getPluginManager().getPlugin("floodgate") != null) {
|
||||||
|
// Floodgate installed means that the user wants Floodgate authentication
|
||||||
|
geyserLogger.debug("Auto-setting to Floodgate authentication.");
|
||||||
|
geyserConfig.getRemote().setAuthType(AuthType.FLOODGATE);
|
||||||
|
}
|
||||||
|
|
||||||
// By default this should be localhost but may need to be changed in some circumstances
|
// By default this should be localhost but may need to be changed in some circumstances
|
||||||
if (this.geyserConfig.getRemote().getAddress().equalsIgnoreCase("auto")) {
|
if (this.geyserConfig.getRemote().address().equalsIgnoreCase("auto")) {
|
||||||
geyserConfig.setAutoconfiguredRemote(true);
|
geyserConfig.setAutoconfiguredRemote(true);
|
||||||
// Don't use localhost if not listening on all interfaces
|
// Don't use localhost if not listening on all interfaces
|
||||||
if (!Bukkit.getIp().equals("0.0.0.0") && !Bukkit.getIp().equals("")) {
|
if (!Bukkit.getIp().equals("0.0.0.0") && !Bukkit.getIp().equals("")) {
|
||||||
@ -153,34 +187,47 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
geyserConfig.getBedrock().setPort(Bukkit.getPort());
|
geyserConfig.getBedrock().setPort(Bukkit.getPort());
|
||||||
}
|
}
|
||||||
|
|
||||||
this.geyserLogger = GeyserPaperLogger.supported() ? new GeyserPaperLogger(this, getLogger(), geyserConfig.isDebugMode())
|
|
||||||
: new GeyserSpigotLogger(getLogger(), geyserConfig.isDebugMode());
|
|
||||||
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);
|
|
||||||
|
|
||||||
// Remove this in like a year
|
|
||||||
if (Bukkit.getPluginManager().getPlugin("floodgate-bukkit") != null) {
|
|
||||||
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.outdated", Constants.FLOODGATE_DOWNLOAD_LOCATION));
|
|
||||||
this.getPluginLoader().disablePlugin(this);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (geyserConfig.getRemote().getAuthType() == AuthType.FLOODGATE && Bukkit.getPluginManager().getPlugin("floodgate") == null) {
|
|
||||||
geyserLogger.severe(GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.not_installed") + " " + GeyserLocale.getLocaleStringLog("geyser.bootstrap.floodgate.disabling"));
|
|
||||||
this.getPluginLoader().disablePlugin(this);
|
|
||||||
return;
|
|
||||||
} else if (geyserConfig.isAutoconfiguredRemote() && Bukkit.getPluginManager().getPlugin("floodgate") != null) {
|
|
||||||
// Floodgate installed means that the user wants Floodgate authentication
|
|
||||||
geyserLogger.debug("Auto-setting to Floodgate authentication.");
|
|
||||||
geyserConfig.getRemote().setAuthType(AuthType.FLOODGATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
geyserConfig.loadFloodgate(this);
|
geyserConfig.loadFloodgate(this);
|
||||||
|
|
||||||
|
// Needs to be an anonymous inner class otherwise Bukkit complains about missing classes
|
||||||
|
Bukkit.getPluginManager().registerEvents(new Listener() {
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onServerLoaded(ServerLoadEvent event) {
|
||||||
|
// Wait until all plugins have loaded so Geyser can start
|
||||||
|
postStartup();
|
||||||
|
}
|
||||||
|
}, this);
|
||||||
|
|
||||||
|
this.geyserCommandManager = new GeyserSpigotCommandManager(geyser);
|
||||||
|
this.geyserCommandManager.init();
|
||||||
|
|
||||||
|
// Because Bukkit locks its command map upon startup, we need to
|
||||||
|
// add our plugin commands in onEnable, but populating the executor
|
||||||
|
// can happen at any time
|
||||||
|
CommandMap commandMap = GeyserSpigotCommandManager.getCommandMap();
|
||||||
|
for (Extension extension : this.geyserCommandManager.extensionCommands().keySet()) {
|
||||||
|
// Thanks again, Bukkit
|
||||||
|
try {
|
||||||
|
Constructor<PluginCommand> constructor = PluginCommand.class.getDeclaredConstructor(String.class, Plugin.class);
|
||||||
|
constructor.setAccessible(true);
|
||||||
|
|
||||||
|
PluginCommand pluginCommand = constructor.newInstance(extension.description().id(), this);
|
||||||
|
pluginCommand.setDescription("The main command for the " + extension.name() + " Geyser extension!");
|
||||||
|
|
||||||
|
commandMap.register(extension.description().id(), "geyserext", pluginCommand);
|
||||||
|
} catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException ex) {
|
||||||
|
this.geyserLogger.error("Failed to construct PluginCommand for extension " + extension.description().name(), ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void postStartup() {
|
||||||
|
GeyserImpl.start();
|
||||||
|
|
||||||
// Turn "(MC: 1.16.4)" into 1.16.4.
|
// Turn "(MC: 1.16.4)" into 1.16.4.
|
||||||
this.minecraftVersion = Bukkit.getServer().getVersion().split("\\(MC: ")[1].split("\\)")[0];
|
this.minecraftVersion = Bukkit.getServer().getVersion().split("\\(MC: ")[1].split("\\)")[0];
|
||||||
|
|
||||||
this.geyser = GeyserImpl.start(PlatformType.SPIGOT, this);
|
|
||||||
|
|
||||||
if (geyserConfig.isLegacyPingPassthrough()) {
|
if (geyserConfig.isLegacyPingPassthrough()) {
|
||||||
this.geyserSpigotPingPassthrough = GeyserLegacyPingPassthrough.init(geyser);
|
this.geyserSpigotPingPassthrough = GeyserLegacyPingPassthrough.init(geyser);
|
||||||
} else {
|
} else {
|
||||||
@ -195,8 +242,6 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
geyserLogger.debug("Spigot ping passthrough type: " + (this.geyserSpigotPingPassthrough == null ? null : this.geyserSpigotPingPassthrough.getClass()));
|
geyserLogger.debug("Spigot ping passthrough type: " + (this.geyserSpigotPingPassthrough == null ? null : this.geyserSpigotPingPassthrough.getClass()));
|
||||||
|
|
||||||
this.geyserCommandManager = new GeyserSpigotCommandManager(geyser);
|
|
||||||
|
|
||||||
boolean isViaVersion = Bukkit.getPluginManager().getPlugin("ViaVersion") != null;
|
boolean isViaVersion = Bukkit.getPluginManager().getPlugin("ViaVersion") != null;
|
||||||
if (isViaVersion) {
|
if (isViaVersion) {
|
||||||
try {
|
try {
|
||||||
@ -217,7 +262,7 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
|
|
||||||
boolean isPre1_12 = !isCompatible(Bukkit.getServer().getVersion(), "1.12.0");
|
boolean isPre1_12 = !isCompatible(Bukkit.getServer().getVersion(), "1.12.0");
|
||||||
// Set if we need to use a different method for getting a player's locale
|
// Set if we need to use a different method for getting a player's locale
|
||||||
SpigotCommandSender.setUseLegacyLocaleMethod(isPre1_12);
|
SpigotCommandSource.setUseLegacyLocaleMethod(isPre1_12);
|
||||||
|
|
||||||
// We want to do this late in the server startup process to allow plugins such as ViaVersion and ProtocolLib
|
// We want to do this late in the server startup process to allow plugins such as ViaVersion and ProtocolLib
|
||||||
// To do their job injecting, then connect into *that*
|
// To do their job injecting, then connect into *that*
|
||||||
@ -266,23 +311,57 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
geyserLogger.debug("Using default world manager: " + this.geyserWorldManager.getClass());
|
geyserLogger.debug("Using default world manager: " + this.geyserWorldManager.getClass());
|
||||||
}
|
}
|
||||||
|
|
||||||
PluginCommand pluginCommand = this.getCommand("geyser");
|
PluginCommand geyserCommand = this.getCommand("geyser");
|
||||||
pluginCommand.setExecutor(new GeyserSpigotCommandExecutor(geyser));
|
geyserCommand.setExecutor(new GeyserSpigotCommandExecutor(geyser, geyserCommandManager.getCommands()));
|
||||||
|
|
||||||
|
for (Map.Entry<Extension, Map<String, Command>> entry : this.geyserCommandManager.extensionCommands().entrySet()) {
|
||||||
|
Map<String, Command> commands = entry.getValue();
|
||||||
|
if (commands.isEmpty()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
PluginCommand command = this.getCommand(entry.getKey().description().id());
|
||||||
|
if (command == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
command.setExecutor(new GeyserSpigotCommandExecutor(this.geyser, commands));
|
||||||
|
}
|
||||||
|
|
||||||
if (!INITIALIZED) {
|
if (!INITIALIZED) {
|
||||||
// Register permissions so they appear in, for example, LuckPerms' UI
|
// Register permissions so they appear in, for example, LuckPerms' UI
|
||||||
// Re-registering permissions throws an error
|
// Re-registering permissions throws an error
|
||||||
for (Map.Entry<String, GeyserCommand> entry : geyserCommandManager.getCommands().entrySet()) {
|
for (Map.Entry<String, Command> entry : geyserCommandManager.commands().entrySet()) {
|
||||||
GeyserCommand command = entry.getValue();
|
Command command = entry.getValue();
|
||||||
if (command.getAliases().contains(entry.getKey())) {
|
if (command.aliases().contains(entry.getKey())) {
|
||||||
// Don't register aliases
|
// Don't register aliases
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
Bukkit.getPluginManager().addPermission(new Permission(command.getPermission(),
|
Bukkit.getPluginManager().addPermission(new Permission(command.permission(),
|
||||||
GeyserLocale.getLocaleStringLog(command.getDescription()),
|
GeyserLocale.getLocaleStringLog(command.description()),
|
||||||
command.isSuggestedOpOnly() ? PermissionDefault.OP : PermissionDefault.TRUE));
|
command.isSuggestedOpOnly() ? PermissionDefault.OP : PermissionDefault.TRUE));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Register permissions for extension commands
|
||||||
|
for (Map.Entry<Extension, Map<String, Command>> commandEntry : this.geyserCommandManager.extensionCommands().entrySet()) {
|
||||||
|
for (Map.Entry<String, Command> entry : commandEntry.getValue().entrySet()) {
|
||||||
|
Command command = entry.getValue();
|
||||||
|
if (command.aliases().contains(entry.getKey())) {
|
||||||
|
// Don't register aliases
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (command.permission().isBlank()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Bukkit.getPluginManager().addPermission(new Permission(command.permission(),
|
||||||
|
GeyserLocale.getLocaleStringLog(command.description()),
|
||||||
|
command.isSuggestedOpOnly() ? PermissionDefault.OP : PermissionDefault.TRUE));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Bukkit.getPluginManager().addPermission(new Permission(Constants.UPDATE_PERMISSION,
|
Bukkit.getPluginManager().addPermission(new Permission(Constants.UPDATE_PERMISSION,
|
||||||
"Whether update notifications can be seen", PermissionDefault.OP));
|
"Whether update notifications can be seen", PermissionDefault.OP));
|
||||||
|
|
||||||
@ -298,7 +377,7 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
boolean brigadierSupported = CommodoreProvider.isSupported();
|
boolean brigadierSupported = CommodoreProvider.isSupported();
|
||||||
geyserLogger.debug("Brigadier supported? " + brigadierSupported);
|
geyserLogger.debug("Brigadier supported? " + brigadierSupported);
|
||||||
if (brigadierSupported) {
|
if (brigadierSupported) {
|
||||||
GeyserBrigadierSupport.loadBrigadier(this, pluginCommand);
|
GeyserBrigadierSupport.loadBrigadier(this, geyserCommand);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check to ensure the current setup can support the protocol version Geyser uses
|
// Check to ensure the current setup can support the protocol version Geyser uses
|
||||||
@ -328,7 +407,7 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CommandManager getGeyserCommandManager() {
|
public GeyserCommandManager getGeyserCommandManager() {
|
||||||
return this.geyserCommandManager;
|
return this.geyserCommandManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -410,7 +489,7 @@ public class GeyserSpigotPlugin extends JavaPlugin implements GeyserBootstrap {
|
|||||||
*/
|
*/
|
||||||
private boolean isViaVersionNeeded() {
|
private boolean isViaVersionNeeded() {
|
||||||
ProtocolVersion serverVersion = getServerProtocolVersion();
|
ProtocolVersion serverVersion = getServerProtocolVersion();
|
||||||
List<ProtocolPathEntry> protocolList = Via.getManager().getProtocolManager().getProtocolPath(MinecraftProtocol.getJavaProtocolVersion(),
|
List<ProtocolPathEntry> protocolList = Via.getManager().getProtocolManager().getProtocolPath(GameProtocol.getJavaProtocolVersion(),
|
||||||
serverVersion.getVersion());
|
serverVersion.getVersion());
|
||||||
if (protocolList == null) {
|
if (protocolList == null) {
|
||||||
// No translation needed!
|
// No translation needed!
|
||||||
|
@ -31,7 +31,7 @@ import org.bukkit.event.Listener;
|
|||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
import org.bukkit.event.player.PlayerJoinEvent;
|
||||||
import org.geysermc.geyser.Constants;
|
import org.geysermc.geyser.Constants;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.platform.spigot.command.SpigotCommandSender;
|
import org.geysermc.geyser.platform.spigot.command.SpigotCommandSource;
|
||||||
import org.geysermc.geyser.util.VersionCheckUtils;
|
import org.geysermc.geyser.util.VersionCheckUtils;
|
||||||
|
|
||||||
public final class GeyserSpigotUpdateListener implements Listener {
|
public final class GeyserSpigotUpdateListener implements Listener {
|
||||||
@ -41,7 +41,7 @@ public final class GeyserSpigotUpdateListener implements Listener {
|
|||||||
if (GeyserImpl.getInstance().getConfig().isNotifyOnNewBedrockUpdate()) {
|
if (GeyserImpl.getInstance().getConfig().isNotifyOnNewBedrockUpdate()) {
|
||||||
final Player player = event.getPlayer();
|
final Player player = event.getPlayer();
|
||||||
if (player.hasPermission(Constants.UPDATE_PERMISSION)) {
|
if (player.hasPermission(Constants.UPDATE_PERMISSION)) {
|
||||||
VersionCheckUtils.checkForGeyserUpdate(() -> new SpigotCommandSender(player));
|
VersionCheckUtils.checkForGeyserUpdate(() -> new SpigotCommandSource(player));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ import com.viaversion.viaversion.api.Via;
|
|||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.UnsafeValues;
|
import org.bukkit.UnsafeValues;
|
||||||
import org.geysermc.geyser.GeyserLogger;
|
import org.geysermc.geyser.GeyserLogger;
|
||||||
import org.geysermc.geyser.network.MinecraftProtocol;
|
import org.geysermc.geyser.network.GameProtocol;
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
@ -48,7 +48,7 @@ public final class GeyserSpigotVersionChecker {
|
|||||||
try {
|
try {
|
||||||
// This method is only present on later versions of Paper
|
// This method is only present on later versions of Paper
|
||||||
UnsafeValues.class.getMethod("getProtocolVersion");
|
UnsafeValues.class.getMethod("getProtocolVersion");
|
||||||
if (Bukkit.getUnsafe().getProtocolVersion() != MinecraftProtocol.getJavaProtocolVersion()) {
|
if (Bukkit.getUnsafe().getProtocolVersion() != GameProtocol.getJavaProtocolVersion()) {
|
||||||
sendOutdatedMessage(logger);
|
sendOutdatedMessage(logger);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@ -82,7 +82,7 @@ public final class GeyserSpigotVersionChecker {
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (protocolVersion != MinecraftProtocol.getJavaProtocolVersion()) {
|
if (protocolVersion != GameProtocol.getJavaProtocolVersion()) {
|
||||||
sendOutdatedMessage(logger);
|
sendOutdatedMessage(logger);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@ -94,13 +94,13 @@ public final class GeyserSpigotVersionChecker {
|
|||||||
private static void checkViaVersionSupportedVersions(GeyserLogger logger) {
|
private static void checkViaVersionSupportedVersions(GeyserLogger logger) {
|
||||||
// Run after ViaVersion has obtained the server protocol version
|
// Run after ViaVersion has obtained the server protocol version
|
||||||
Via.getPlatform().runSync(() -> {
|
Via.getPlatform().runSync(() -> {
|
||||||
if (Via.getAPI().getSupportedVersions().contains(MinecraftProtocol.getJavaProtocolVersion())) {
|
if (Via.getAPI().getSupportedVersions().contains(GameProtocol.getJavaProtocolVersion())) {
|
||||||
// Via supports this protocol version; we will be able to connect.
|
// Via supports this protocol version; we will be able to connect.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (Via.getAPI().getFullSupportedVersions().contains(MinecraftProtocol.getJavaProtocolVersion())) {
|
if (Via.getAPI().getFullSupportedVersions().contains(GameProtocol.getJavaProtocolVersion())) {
|
||||||
// ViaVersion supports our protocol, but the user has blocked them from connecting.
|
// ViaVersion supports our protocol, but the user has blocked them from connecting.
|
||||||
logger.warning(GeyserLocale.getLocaleStringLog("geyser.bootstrap.viaversion.blocked", MinecraftProtocol.getAllSupportedJavaVersions()));
|
logger.warning(GeyserLocale.getLocaleStringLog("geyser.bootstrap.viaversion.blocked", GameProtocol.getAllSupportedJavaVersions()));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Else, presumably, ViaVersion is not updated.
|
// Else, presumably, ViaVersion is not updated.
|
||||||
@ -114,7 +114,7 @@ public final class GeyserSpigotVersionChecker {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static void sendOutdatedMessage(GeyserLogger logger) {
|
private static void sendOutdatedMessage(GeyserLogger logger) {
|
||||||
logger.warning(GeyserLocale.getLocaleStringLog("geyser.bootstrap.no_supported_protocol", MinecraftProtocol.getAllSupportedJavaVersions(), VIAVERSION_DOWNLOAD_URL));
|
logger.warning(GeyserLocale.getLocaleStringLog("geyser.bootstrap.no_supported_protocol", GameProtocol.getAllSupportedJavaVersions(), VIAVERSION_DOWNLOAD_URL));
|
||||||
}
|
}
|
||||||
|
|
||||||
private GeyserSpigotVersionChecker() {
|
private GeyserSpigotVersionChecker() {
|
||||||
|
@ -31,7 +31,7 @@ import org.bukkit.entity.Player;
|
|||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.GeyserCommand;
|
import org.geysermc.geyser.api.command.Command;
|
||||||
|
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
@ -49,14 +49,14 @@ public final class GeyserPaperCommandListener implements Listener {
|
|||||||
if (geyserBrigadier != null) {
|
if (geyserBrigadier != null) {
|
||||||
Player player = event.getPlayer();
|
Player player = event.getPlayer();
|
||||||
boolean isJavaPlayer = isProbablyJavaPlayer(player);
|
boolean isJavaPlayer = isProbablyJavaPlayer(player);
|
||||||
Map<String, GeyserCommand> commands = GeyserImpl.getInstance().getCommandManager().getCommands();
|
Map<String, Command> commands = GeyserImpl.getInstance().commandManager().getCommands();
|
||||||
Iterator<? extends CommandNode<?>> it = geyserBrigadier.getChildren().iterator();
|
Iterator<? extends CommandNode<?>> it = geyserBrigadier.getChildren().iterator();
|
||||||
|
|
||||||
while (it.hasNext()) {
|
while (it.hasNext()) {
|
||||||
CommandNode<?> subnode = it.next();
|
CommandNode<?> subnode = it.next();
|
||||||
GeyserCommand command = commands.get(subnode.getName());
|
Command command = commands.get(subnode.getName());
|
||||||
if (command != null) {
|
if (command != null) {
|
||||||
if ((command.isBedrockOnly() && isJavaPlayer) || !player.hasPermission(command.getPermission())) {
|
if ((command.isBedrockOnly() && isJavaPlayer) || !player.hasPermission(command.permission())) {
|
||||||
// Remove this from the node as we don't have permission to use it
|
// Remove this from the node as we don't have permission to use it
|
||||||
it.remove();
|
it.remove();
|
||||||
}
|
}
|
||||||
|
@ -30,37 +30,38 @@ import org.bukkit.command.Command;
|
|||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.command.TabExecutor;
|
import org.bukkit.command.TabExecutor;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.CommandExecutor;
|
|
||||||
import org.geysermc.geyser.command.GeyserCommand;
|
import org.geysermc.geyser.command.GeyserCommand;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandExecutor;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public class GeyserSpigotCommandExecutor extends CommandExecutor implements TabExecutor {
|
public class GeyserSpigotCommandExecutor extends GeyserCommandExecutor implements TabExecutor {
|
||||||
|
|
||||||
public GeyserSpigotCommandExecutor(GeyserImpl geyser) {
|
public GeyserSpigotCommandExecutor(GeyserImpl geyser, Map<String, org.geysermc.geyser.api.command.Command> commands) {
|
||||||
super(geyser);
|
super(geyser, commands);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
||||||
SpigotCommandSender commandSender = new SpigotCommandSender(sender);
|
SpigotCommandSource commandSender = new SpigotCommandSource(sender);
|
||||||
GeyserSession session = getGeyserSession(commandSender);
|
GeyserSession session = getGeyserSession(commandSender);
|
||||||
|
|
||||||
if (args.length > 0) {
|
if (args.length > 0) {
|
||||||
GeyserCommand geyserCommand = getCommand(args[0]);
|
GeyserCommand geyserCommand = getCommand(args[0]);
|
||||||
if (geyserCommand != null) {
|
if (geyserCommand != null) {
|
||||||
if (!sender.hasPermission(geyserCommand.getPermission())) {
|
if (!sender.hasPermission(geyserCommand.permission())) {
|
||||||
String message = GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.permission_fail", commandSender.getLocale());
|
String message = GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.permission_fail", commandSender.locale());
|
||||||
|
|
||||||
commandSender.sendMessage(ChatColor.RED + message);
|
commandSender.sendMessage(ChatColor.RED + message);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (geyserCommand.isBedrockOnly() && session == null) {
|
if (geyserCommand.isBedrockOnly() && session == null) {
|
||||||
sender.sendMessage(ChatColor.RED + GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.bedrock_only", commandSender.getLocale()));
|
sender.sendMessage(ChatColor.RED + GeyserLocale.getPlayerLocaleString("geyser.bootstrap.command.bedrock_only", commandSender.locale()));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
geyserCommand.execute(session, commandSender, args.length > 1 ? Arrays.copyOfRange(args, 1, args.length) : new String[0]);
|
geyserCommand.execute(session, commandSender, args.length > 1 ? Arrays.copyOfRange(args, 1, args.length) : new String[0]);
|
||||||
@ -76,7 +77,7 @@ public class GeyserSpigotCommandExecutor extends CommandExecutor implements TabE
|
|||||||
@Override
|
@Override
|
||||||
public List<String> onTabComplete(CommandSender sender, Command command, String label, String[] args) {
|
public List<String> onTabComplete(CommandSender sender, Command command, String label, String[] args) {
|
||||||
if (args.length == 1) {
|
if (args.length == 1) {
|
||||||
return tabComplete(new SpigotCommandSender(sender));
|
return tabComplete(new SpigotCommandSource(sender));
|
||||||
}
|
}
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
@ -30,11 +30,11 @@ import org.bukkit.Server;
|
|||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandMap;
|
import org.bukkit.command.CommandMap;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.CommandManager;
|
import org.geysermc.geyser.command.GeyserCommandManager;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
|
|
||||||
public class GeyserSpigotCommandManager extends CommandManager {
|
public class GeyserSpigotCommandManager extends GeyserCommandManager {
|
||||||
|
|
||||||
private static final CommandMap COMMAND_MAP;
|
private static final CommandMap COMMAND_MAP;
|
||||||
|
|
||||||
@ -61,8 +61,12 @@ public class GeyserSpigotCommandManager extends CommandManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDescription(String command) {
|
public String description(String command) {
|
||||||
Command cmd = COMMAND_MAP.getCommand(command.replace("/", ""));
|
Command cmd = COMMAND_MAP.getCommand(command.replace("/", ""));
|
||||||
return cmd != null ? cmd.getDescription() : "";
|
return cmd != null ? cmd.getDescription() : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static CommandMap getCommandMap() {
|
||||||
|
return COMMAND_MAP;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -30,14 +30,14 @@ import net.kyori.adventure.text.serializer.bungeecord.BungeeComponentSerializer;
|
|||||||
import org.bukkit.command.ConsoleCommandSender;
|
import org.bukkit.command.ConsoleCommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.CommandSender;
|
import org.geysermc.geyser.command.GeyserCommandSource;
|
||||||
import org.geysermc.geyser.platform.spigot.PaperAdventure;
|
import org.geysermc.geyser.platform.spigot.PaperAdventure;
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
public class SpigotCommandSender implements CommandSender {
|
public class SpigotCommandSource implements GeyserCommandSource {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to use {@code Player.getLocale()} or {@code Player.spigot().getLocale()}, depending on version.
|
* Whether to use {@code Player.getLocale()} or {@code Player.spigot().getLocale()}, depending on version.
|
||||||
@ -49,7 +49,7 @@ public class SpigotCommandSender implements CommandSender {
|
|||||||
private final org.bukkit.command.CommandSender handle;
|
private final org.bukkit.command.CommandSender handle;
|
||||||
private final String locale;
|
private final String locale;
|
||||||
|
|
||||||
public SpigotCommandSender(org.bukkit.command.CommandSender handle) {
|
public SpigotCommandSource(org.bukkit.command.CommandSender handle) {
|
||||||
this.handle = handle;
|
this.handle = handle;
|
||||||
this.locale = getSpigotLocale();
|
this.locale = getSpigotLocale();
|
||||||
// Ensure even Java players' languages are loaded
|
// Ensure even Java players' languages are loaded
|
||||||
@ -83,7 +83,7 @@ public class SpigotCommandSender implements CommandSender {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getLocale() {
|
public String locale() {
|
||||||
return locale;
|
return locale;
|
||||||
}
|
}
|
||||||
|
|
@ -41,12 +41,12 @@ import org.bukkit.event.block.BlockPistonEvent;
|
|||||||
import org.bukkit.event.block.BlockPistonExtendEvent;
|
import org.bukkit.event.block.BlockPistonExtendEvent;
|
||||||
import org.bukkit.event.block.BlockPistonRetractEvent;
|
import org.bukkit.event.block.BlockPistonRetractEvent;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
|
||||||
import org.geysermc.geyser.session.cache.PistonCache;
|
|
||||||
import org.geysermc.geyser.level.block.BlockStateValues;
|
import org.geysermc.geyser.level.block.BlockStateValues;
|
||||||
import org.geysermc.geyser.translator.level.block.entity.PistonBlockEntity;
|
|
||||||
import org.geysermc.geyser.level.physics.Direction;
|
import org.geysermc.geyser.level.physics.Direction;
|
||||||
import org.geysermc.geyser.platform.spigot.world.manager.GeyserSpigotWorldManager;
|
import org.geysermc.geyser.platform.spigot.world.manager.GeyserSpigotWorldManager;
|
||||||
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
import org.geysermc.geyser.session.cache.PistonCache;
|
||||||
|
import org.geysermc.geyser.translator.level.block.entity.PistonBlockEntity;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
@ -33,10 +33,10 @@ import org.bukkit.event.EventHandler;
|
|||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.bukkit.event.block.BlockPlaceEvent;
|
import org.bukkit.event.block.BlockPlaceEvent;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
|
||||||
import org.geysermc.geyser.level.block.BlockStateValues;
|
import org.geysermc.geyser.level.block.BlockStateValues;
|
||||||
import org.geysermc.geyser.registry.BlockRegistries;
|
|
||||||
import org.geysermc.geyser.platform.spigot.world.manager.GeyserSpigotWorldManager;
|
import org.geysermc.geyser.platform.spigot.world.manager.GeyserSpigotWorldManager;
|
||||||
|
import org.geysermc.geyser.registry.BlockRegistries;
|
||||||
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class GeyserSpigotBlockPlaceListener implements Listener {
|
public class GeyserSpigotBlockPlaceListener implements Listener {
|
||||||
|
@ -30,10 +30,10 @@ import com.viaversion.viaversion.protocols.protocol1_13to1_12_2.storage.BlockSto
|
|||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
|
||||||
import org.geysermc.geyser.level.block.BlockStateValues;
|
|
||||||
import org.geysermc.geyser.adapters.spigot.SpigotAdapters;
|
import org.geysermc.geyser.adapters.spigot.SpigotAdapters;
|
||||||
import org.geysermc.geyser.adapters.spigot.SpigotWorldAdapter;
|
import org.geysermc.geyser.adapters.spigot.SpigotWorldAdapter;
|
||||||
|
import org.geysermc.geyser.level.block.BlockStateValues;
|
||||||
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used with ViaVersion and pre-1.13.
|
* Used with ViaVersion and pre-1.13.
|
||||||
|
@ -36,8 +36,8 @@ import org.bukkit.Bukkit;
|
|||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
|
||||||
import org.geysermc.geyser.level.block.BlockStateValues;
|
import org.geysermc.geyser.level.block.BlockStateValues;
|
||||||
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -26,8 +26,8 @@
|
|||||||
package org.geysermc.geyser.platform.spigot.world.manager;
|
package org.geysermc.geyser.platform.spigot.world.manager;
|
||||||
|
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
|
||||||
import org.geysermc.geyser.level.block.BlockStateValues;
|
import org.geysermc.geyser.level.block.BlockStateValues;
|
||||||
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Should only be used when we know {@link GeyserSpigotWorldManager#getBlockAt(GeyserSession, int, int, int)}
|
* Should only be used when we know {@link GeyserSpigotWorldManager#getBlockAt(GeyserSession, int, int, int)}
|
||||||
|
@ -32,9 +32,9 @@ import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
|||||||
import it.unimi.dsi.fastutil.ints.Int2IntMap;
|
import it.unimi.dsi.fastutil.ints.Int2IntMap;
|
||||||
import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap;
|
import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap;
|
||||||
import it.unimi.dsi.fastutil.ints.IntList;
|
import it.unimi.dsi.fastutil.ints.IntList;
|
||||||
import org.geysermc.geyser.network.MinecraftProtocol;
|
import org.geysermc.geyser.network.GameProtocol;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
|
||||||
import org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin;
|
import org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin;
|
||||||
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -50,7 +50,7 @@ public class GeyserSpigotLegacyNativeWorldManager extends GeyserSpigotNativeWorl
|
|||||||
IntList allBlockStates = adapter.getAllBlockStates();
|
IntList allBlockStates = adapter.getAllBlockStates();
|
||||||
oldToNewBlockId = new Int2IntOpenHashMap(allBlockStates.size());
|
oldToNewBlockId = new Int2IntOpenHashMap(allBlockStates.size());
|
||||||
ProtocolVersion serverVersion = plugin.getServerProtocolVersion();
|
ProtocolVersion serverVersion = plugin.getServerProtocolVersion();
|
||||||
List<ProtocolPathEntry> protocolList = Via.getManager().getProtocolManager().getProtocolPath(MinecraftProtocol.getJavaProtocolVersion(),
|
List<ProtocolPathEntry> protocolList = Via.getManager().getProtocolManager().getProtocolPath(GameProtocol.getJavaProtocolVersion(),
|
||||||
serverVersion.getVersion());
|
serverVersion.getVersion());
|
||||||
for (int oldBlockId : allBlockStates) {
|
for (int oldBlockId : allBlockStates) {
|
||||||
int newBlockId = oldBlockId;
|
int newBlockId = oldBlockId;
|
||||||
|
@ -28,10 +28,10 @@ package org.geysermc.geyser.platform.spigot.world.manager;
|
|||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
|
||||||
import org.geysermc.geyser.level.block.BlockStateValues;
|
|
||||||
import org.geysermc.geyser.adapters.spigot.SpigotAdapters;
|
import org.geysermc.geyser.adapters.spigot.SpigotAdapters;
|
||||||
import org.geysermc.geyser.adapters.spigot.SpigotWorldAdapter;
|
import org.geysermc.geyser.adapters.spigot.SpigotWorldAdapter;
|
||||||
|
import org.geysermc.geyser.level.block.BlockStateValues;
|
||||||
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
|
||||||
public class GeyserSpigotNativeWorldManager extends GeyserSpigotWorldManager {
|
public class GeyserSpigotNativeWorldManager extends GeyserSpigotWorldManager {
|
||||||
protected final SpigotWorldAdapter adapter;
|
protected final SpigotWorldAdapter adapter;
|
||||||
|
@ -41,7 +41,7 @@ import org.bukkit.plugin.Plugin;
|
|||||||
import org.geysermc.geyser.level.GameRule;
|
import org.geysermc.geyser.level.GameRule;
|
||||||
import org.geysermc.geyser.level.GeyserWorldManager;
|
import org.geysermc.geyser.level.GeyserWorldManager;
|
||||||
import org.geysermc.geyser.level.block.BlockStateValues;
|
import org.geysermc.geyser.level.block.BlockStateValues;
|
||||||
import org.geysermc.geyser.network.MinecraftProtocol;
|
import org.geysermc.geyser.network.GameProtocol;
|
||||||
import org.geysermc.geyser.registry.BlockRegistries;
|
import org.geysermc.geyser.registry.BlockRegistries;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
import org.geysermc.geyser.translator.inventory.LecternInventoryTranslator;
|
import org.geysermc.geyser.translator.inventory.LecternInventoryTranslator;
|
||||||
@ -57,7 +57,7 @@ public class GeyserSpigotWorldManager extends GeyserWorldManager {
|
|||||||
/**
|
/**
|
||||||
* The current client protocol version for ViaVersion usage.
|
* The current client protocol version for ViaVersion usage.
|
||||||
*/
|
*/
|
||||||
protected static final int CLIENT_PROTOCOL_VERSION = MinecraftProtocol.getJavaProtocolVersion();
|
protected static final int CLIENT_PROTOCOL_VERSION = GameProtocol.getJavaProtocolVersion();
|
||||||
|
|
||||||
private final Plugin plugin;
|
private final Plugin plugin;
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
main: org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin
|
main: org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin
|
||||||
name: ${outputName}-Spigot
|
name: ${name}-Spigot
|
||||||
author: ${project.organization.name}
|
author: ${author}
|
||||||
website: ${project.organization.url}
|
website: ${url}
|
||||||
version: ${project.version}
|
version: ${version}
|
||||||
softdepend: ["ViaVersion", "floodgate"]
|
softdepend: ["ViaVersion", "floodgate"]
|
||||||
api-version: 1.13
|
api-version: 1.13
|
||||||
commands:
|
commands:
|
||||||
geyser:
|
geyser:
|
||||||
description: The main command for Geyser.
|
description: The main command for Geyser.
|
||||||
usage: /geyser <subcommand>
|
usage: /geyser <subcommand>
|
36
bootstrap/sponge/build.gradle.kts
Normale Datei
36
bootstrap/sponge/build.gradle.kts
Normale Datei
@ -0,0 +1,36 @@
|
|||||||
|
val spongeVersion = "7.1.0"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api(projects.core)
|
||||||
|
}
|
||||||
|
|
||||||
|
platformRelocate("com.fasterxml.jackson")
|
||||||
|
platformRelocate("io.netty")
|
||||||
|
platformRelocate("it.unimi.dsi.fastutil")
|
||||||
|
platformRelocate("com.google.common")
|
||||||
|
platformRelocate("com.google.guava")
|
||||||
|
platformRelocate("net.kyori")
|
||||||
|
|
||||||
|
// Exclude these dependencies
|
||||||
|
exclude("com.google.code.gson:*")
|
||||||
|
exclude("org.yaml:*")
|
||||||
|
exclude("org.slf4j:*")
|
||||||
|
exclude("org.ow2.asm:*")
|
||||||
|
|
||||||
|
// These dependencies are already present on the platform
|
||||||
|
provided("org.spongepowered", "spongeapi", spongeVersion)
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass.set("org.geysermc.geyser.platform.sponge.GeyserSpongeMain")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
||||||
|
archiveBaseName.set("Geyser-Sponge")
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
exclude(dependency("com.google.code.gson:.*"))
|
||||||
|
exclude(dependency("org.yaml:.*"))
|
||||||
|
exclude(dependency("org.slf4j:.*"))
|
||||||
|
exclude(dependency("org.ow2.asm:.*"))
|
||||||
|
}
|
||||||
|
}
|
@ -1,101 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>bootstrap-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<artifactId>bootstrap-sponge</artifactId>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>core</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.spongepowered</groupId>
|
|
||||||
<artifactId>spongeapi</artifactId>
|
|
||||||
<version>7.1.0</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
<build>
|
|
||||||
<finalName>${outputName}-Sponge</finalName>
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<directory>src/main/resources/</directory>
|
|
||||||
<filtering>true</filtering>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.2.0</version>
|
|
||||||
<configuration>
|
|
||||||
<archive>
|
|
||||||
<manifestEntries>
|
|
||||||
<Main-Class>org.geysermc.geyser.platform.sponge.GeyserSpongeMain</Main-Class>
|
|
||||||
</manifestEntries>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<version>3.3.0</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<relocations>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.fasterxml.jackson</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.sponge.shaded.jackson</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>io.netty</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.sponge.shaded.netty</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>it.unimi.dsi.fastutil</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.sponge.shaded.fastutil</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.common</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.sponge.shaded.google.common</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.google.guava</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.sponge.shaded.google.guava</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
<relocation>
|
|
||||||
<pattern>net.kyori</pattern>
|
|
||||||
<shadedPattern>org.geysermc.geyser.platform.sponge.shaded.kyori</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
</relocations>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<artifactSet>
|
|
||||||
<excludes>
|
|
||||||
<exclude>com.google.code.gson:*</exclude>
|
|
||||||
<exclude>org.yaml:*</exclude>
|
|
||||||
<exclude>org.slf4j:*</exclude>
|
|
||||||
<exclude>org.ow2.asm:*</exclude>
|
|
||||||
</excludes>
|
|
||||||
</artifactSet>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
@ -25,8 +25,8 @@
|
|||||||
|
|
||||||
package org.geysermc.geyser.platform.sponge;
|
package org.geysermc.geyser.platform.sponge;
|
||||||
|
|
||||||
|
import org.geysermc.geyser.network.GameProtocol;
|
||||||
import org.geysermc.geyser.ping.GeyserPingInfo;
|
import org.geysermc.geyser.ping.GeyserPingInfo;
|
||||||
import org.geysermc.geyser.network.MinecraftProtocol;
|
|
||||||
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
||||||
import org.spongepowered.api.MinecraftVersion;
|
import org.spongepowered.api.MinecraftVersion;
|
||||||
import org.spongepowered.api.Sponge;
|
import org.spongepowered.api.Sponge;
|
||||||
@ -73,7 +73,7 @@ public class GeyserSpongePingPassthrough implements IGeyserPingPassthrough {
|
|||||||
),
|
),
|
||||||
new GeyserPingInfo.Version(
|
new GeyserPingInfo.Version(
|
||||||
event.getResponse().getVersion().getName(),
|
event.getResponse().getVersion().getName(),
|
||||||
MinecraftProtocol.getJavaProtocolVersion()) // thanks for also not exposing this sponge
|
GameProtocol.getJavaProtocolVersion()) // thanks for also not exposing this sponge
|
||||||
);
|
);
|
||||||
event.getResponse().getPlayers().get().getProfiles().stream()
|
event.getResponse().getPlayers().get().getProfiles().stream()
|
||||||
.map(GameProfile::getName)
|
.map(GameProfile::getName)
|
||||||
|
@ -27,17 +27,19 @@ package org.geysermc.geyser.platform.sponge;
|
|||||||
|
|
||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
import org.geysermc.common.PlatformType;
|
import org.geysermc.common.PlatformType;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
|
||||||
import org.geysermc.geyser.GeyserBootstrap;
|
import org.geysermc.geyser.GeyserBootstrap;
|
||||||
import org.geysermc.geyser.command.CommandManager;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
|
import org.geysermc.geyser.api.command.Command;
|
||||||
|
import org.geysermc.geyser.api.extension.Extension;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandManager;
|
||||||
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
||||||
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
||||||
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
||||||
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
||||||
import org.geysermc.geyser.util.FileUtils;
|
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
|
||||||
import org.geysermc.geyser.platform.sponge.command.GeyserSpongeCommandExecutor;
|
import org.geysermc.geyser.platform.sponge.command.GeyserSpongeCommandExecutor;
|
||||||
import org.geysermc.geyser.platform.sponge.command.GeyserSpongeCommandManager;
|
import org.geysermc.geyser.platform.sponge.command.GeyserSpongeCommandManager;
|
||||||
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
import org.geysermc.geyser.util.FileUtils;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.spongepowered.api.Sponge;
|
import org.spongepowered.api.Sponge;
|
||||||
import org.spongepowered.api.config.ConfigDir;
|
import org.spongepowered.api.config.ConfigDir;
|
||||||
@ -50,6 +52,7 @@ import java.io.File;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
@Plugin(id = "geyser", name = GeyserImpl.NAME + "-Sponge", version = GeyserImpl.VERSION, url = "https://geysermc.org", authors = "GeyserMC")
|
@Plugin(id = "geyser", name = GeyserImpl.NAME + "-Sponge", version = GeyserImpl.VERSION, url = "https://geysermc.org", authors = "GeyserMC")
|
||||||
@ -69,8 +72,7 @@ public class GeyserSpongePlugin implements GeyserBootstrap {
|
|||||||
|
|
||||||
private GeyserImpl geyser;
|
private GeyserImpl geyser;
|
||||||
|
|
||||||
@Override
|
public void onLoad() {
|
||||||
public void onEnable() {
|
|
||||||
GeyserLocale.init(this);
|
GeyserLocale.init(this);
|
||||||
|
|
||||||
if (!configDir.exists())
|
if (!configDir.exists())
|
||||||
@ -99,19 +101,25 @@ public class GeyserSpongePlugin implements GeyserBootstrap {
|
|||||||
|
|
||||||
// Don't change the ip if its listening on all interfaces
|
// Don't change the ip if its listening on all interfaces
|
||||||
// By default this should be 127.0.0.1 but may need to be changed in some circumstances
|
// By default this should be 127.0.0.1 but may need to be changed in some circumstances
|
||||||
if (this.geyserConfig.getRemote().getAddress().equalsIgnoreCase("auto")) {
|
if (this.geyserConfig.getRemote().address().equalsIgnoreCase("auto")) {
|
||||||
this.geyserConfig.setAutoconfiguredRemote(true);
|
this.geyserConfig.setAutoconfiguredRemote(true);
|
||||||
geyserConfig.getRemote().setPort(javaAddr.getPort());
|
geyserConfig.getRemote().setPort(javaAddr.getPort());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (geyserConfig.getBedrock().isCloneRemotePort()) {
|
if (geyserConfig.getBedrock().isCloneRemotePort()) {
|
||||||
geyserConfig.getBedrock().setPort(geyserConfig.getRemote().getPort());
|
geyserConfig.getBedrock().setPort(geyserConfig.getRemote().port());
|
||||||
}
|
}
|
||||||
|
|
||||||
this.geyserLogger = new GeyserSpongeLogger(logger, geyserConfig.isDebugMode());
|
this.geyserLogger = new GeyserSpongeLogger(logger, geyserConfig.isDebugMode());
|
||||||
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);
|
GeyserConfiguration.checkGeyserConfiguration(geyserConfig, geyserLogger);
|
||||||
this.geyser = GeyserImpl.start(PlatformType.SPONGE, this);
|
|
||||||
|
this.geyser = GeyserImpl.load(PlatformType.SPONGE, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEnable() {
|
||||||
|
GeyserImpl.start();
|
||||||
|
|
||||||
if (geyserConfig.isLegacyPingPassthrough()) {
|
if (geyserConfig.isLegacyPingPassthrough()) {
|
||||||
this.geyserSpongePingPassthrough = GeyserLegacyPingPassthrough.init(geyser);
|
this.geyserSpongePingPassthrough = GeyserLegacyPingPassthrough.init(geyser);
|
||||||
@ -120,7 +128,18 @@ public class GeyserSpongePlugin implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.geyserCommandManager = new GeyserSpongeCommandManager(Sponge.getCommandManager(), geyser);
|
this.geyserCommandManager = new GeyserSpongeCommandManager(Sponge.getCommandManager(), geyser);
|
||||||
Sponge.getCommandManager().register(this, new GeyserSpongeCommandExecutor(geyser), "geyser");
|
this.geyserCommandManager.init();
|
||||||
|
|
||||||
|
Sponge.getCommandManager().register(this, new GeyserSpongeCommandExecutor(geyser, geyserCommandManager.getCommands()), "geyser");
|
||||||
|
|
||||||
|
for (Map.Entry<Extension, Map<String, Command>> entry : this.geyserCommandManager.extensionCommands().entrySet()) {
|
||||||
|
Map<String, Command> commands = entry.getValue();
|
||||||
|
if (commands.isEmpty()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Sponge.getCommandManager().register(this, new GeyserSpongeCommandExecutor(this.geyser, commands), entry.getKey().description().id());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -139,7 +158,7 @@ public class GeyserSpongePlugin implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CommandManager getGeyserCommandManager() {
|
public GeyserCommandManager getGeyserCommandManager() {
|
||||||
return this.geyserCommandManager;
|
return this.geyserCommandManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,6 +172,11 @@ public class GeyserSpongePlugin implements GeyserBootstrap {
|
|||||||
return configDir.toPath();
|
return configDir.toPath();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Listener
|
||||||
|
public void onServerStarting() {
|
||||||
|
onLoad();
|
||||||
|
}
|
||||||
|
|
||||||
@Listener
|
@Listener
|
||||||
public void onServerStart(GameStartedServerEvent event) {
|
public void onServerStart(GameStartedServerEvent event) {
|
||||||
onEnable();
|
onEnable();
|
||||||
|
@ -26,11 +26,12 @@
|
|||||||
package org.geysermc.geyser.platform.sponge.command;
|
package org.geysermc.geyser.platform.sponge.command;
|
||||||
|
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.CommandExecutor;
|
import org.geysermc.geyser.api.command.Command;
|
||||||
import org.geysermc.geyser.command.CommandSender;
|
|
||||||
import org.geysermc.geyser.command.GeyserCommand;
|
import org.geysermc.geyser.command.GeyserCommand;
|
||||||
import org.geysermc.geyser.text.ChatColor;
|
import org.geysermc.geyser.command.GeyserCommandExecutor;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandSource;
|
||||||
import org.geysermc.geyser.session.GeyserSession;
|
import org.geysermc.geyser.session.GeyserSession;
|
||||||
|
import org.geysermc.geyser.text.ChatColor;
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
import org.spongepowered.api.command.CommandCallable;
|
import org.spongepowered.api.command.CommandCallable;
|
||||||
import org.spongepowered.api.command.CommandResult;
|
import org.spongepowered.api.command.CommandResult;
|
||||||
@ -40,27 +41,24 @@ import org.spongepowered.api.world.Location;
|
|||||||
import org.spongepowered.api.world.World;
|
import org.spongepowered.api.world.World;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.util.Arrays;
|
import java.util.*;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Optional;
|
|
||||||
|
|
||||||
public class GeyserSpongeCommandExecutor extends CommandExecutor implements CommandCallable {
|
public class GeyserSpongeCommandExecutor extends GeyserCommandExecutor implements CommandCallable {
|
||||||
|
|
||||||
public GeyserSpongeCommandExecutor(GeyserImpl geyser) {
|
public GeyserSpongeCommandExecutor(GeyserImpl geyser, Map<String, Command> commands) {
|
||||||
super(geyser);
|
super(geyser, commands);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CommandResult process(CommandSource source, String arguments) {
|
public CommandResult process(CommandSource source, String arguments) {
|
||||||
CommandSender commandSender = new SpongeCommandSender(source);
|
GeyserCommandSource commandSender = new SpongeCommandSource(source);
|
||||||
GeyserSession session = getGeyserSession(commandSender);
|
GeyserSession session = getGeyserSession(commandSender);
|
||||||
|
|
||||||
String[] args = arguments.split(" ");
|
String[] args = arguments.split(" ");
|
||||||
if (args.length > 0) {
|
if (args.length > 0) {
|
||||||
GeyserCommand command = getCommand(args[0]);
|
GeyserCommand command = getCommand(args[0]);
|
||||||
if (command != null) {
|
if (command != null) {
|
||||||
if (!source.hasPermission(command.getPermission())) {
|
if (!source.hasPermission(command.permission())) {
|
||||||
// Not ideal to use log here but we dont get a session
|
// Not ideal to use log here but we dont get a session
|
||||||
source.sendMessage(Text.of(ChatColor.RED + GeyserLocale.getLocaleStringLog("geyser.bootstrap.command.permission_fail")));
|
source.sendMessage(Text.of(ChatColor.RED + GeyserLocale.getLocaleStringLog("geyser.bootstrap.command.permission_fail")));
|
||||||
return CommandResult.success();
|
return CommandResult.success();
|
||||||
@ -80,7 +78,7 @@ public class GeyserSpongeCommandExecutor extends CommandExecutor implements Comm
|
|||||||
@Override
|
@Override
|
||||||
public List<String> getSuggestions(CommandSource source, String arguments, @Nullable Location<World> targetPosition) {
|
public List<String> getSuggestions(CommandSource source, String arguments, @Nullable Location<World> targetPosition) {
|
||||||
if (arguments.split(" ").length == 1) {
|
if (arguments.split(" ").length == 1) {
|
||||||
return tabComplete(new SpongeCommandSender(source));
|
return tabComplete(new SpongeCommandSource(source));
|
||||||
}
|
}
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
@ -26,12 +26,12 @@
|
|||||||
package org.geysermc.geyser.platform.sponge.command;
|
package org.geysermc.geyser.platform.sponge.command;
|
||||||
|
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
import org.geysermc.geyser.command.CommandManager;
|
import org.geysermc.geyser.command.GeyserCommandManager;
|
||||||
import org.spongepowered.api.Sponge;
|
import org.spongepowered.api.Sponge;
|
||||||
import org.spongepowered.api.command.CommandMapping;
|
import org.spongepowered.api.command.CommandMapping;
|
||||||
import org.spongepowered.api.text.Text;
|
import org.spongepowered.api.text.Text;
|
||||||
|
|
||||||
public class GeyserSpongeCommandManager extends CommandManager {
|
public class GeyserSpongeCommandManager extends GeyserCommandManager {
|
||||||
private final org.spongepowered.api.command.CommandManager handle;
|
private final org.spongepowered.api.command.CommandManager handle;
|
||||||
|
|
||||||
public GeyserSpongeCommandManager(org.spongepowered.api.command.CommandManager handle, GeyserImpl geyser) {
|
public GeyserSpongeCommandManager(org.spongepowered.api.command.CommandManager handle, GeyserImpl geyser) {
|
||||||
@ -41,7 +41,7 @@ public class GeyserSpongeCommandManager extends CommandManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDescription(String command) {
|
public String description(String command) {
|
||||||
return handle.get(command).map(CommandMapping::getCallable)
|
return handle.get(command).map(CommandMapping::getCallable)
|
||||||
.map(callable -> callable.getShortDescription(Sponge.getServer().getConsole()).orElse(Text.EMPTY))
|
.map(callable -> callable.getShortDescription(Sponge.getServer().getConsole()).orElse(Text.EMPTY))
|
||||||
.orElse(Text.EMPTY).toPlain();
|
.orElse(Text.EMPTY).toPlain();
|
||||||
|
@ -26,14 +26,13 @@
|
|||||||
package org.geysermc.geyser.platform.sponge.command;
|
package org.geysermc.geyser.platform.sponge.command;
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandSource;
|
||||||
import org.geysermc.geyser.command.CommandSender;
|
|
||||||
import org.spongepowered.api.command.CommandSource;
|
import org.spongepowered.api.command.CommandSource;
|
||||||
import org.spongepowered.api.command.source.ConsoleSource;
|
import org.spongepowered.api.command.source.ConsoleSource;
|
||||||
import org.spongepowered.api.text.Text;
|
import org.spongepowered.api.text.Text;
|
||||||
|
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class SpongeCommandSender implements CommandSender {
|
public class SpongeCommandSource implements GeyserCommandSource {
|
||||||
|
|
||||||
private CommandSource handle;
|
private CommandSource handle;
|
||||||
|
|
33
bootstrap/standalone/build.gradle.kts
Normale Datei
33
bootstrap/standalone/build.gradle.kts
Normale Datei
@ -0,0 +1,33 @@
|
|||||||
|
import com.github.jengelman.gradle.plugins.shadow.transformers.Log4j2PluginsCacheFileTransformer
|
||||||
|
|
||||||
|
val terminalConsoleVersion = "1.2.0"
|
||||||
|
val jlineVersion = "3.21.0"
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
api(projects.core)
|
||||||
|
|
||||||
|
implementation("net.minecrell", "terminalconsoleappender", terminalConsoleVersion) {
|
||||||
|
exclude("org.apache.logging.log4j", "log4j-core")
|
||||||
|
exclude("org.jline", "jline-reader")
|
||||||
|
exclude("org.jline", "jline-terminal")
|
||||||
|
exclude("org.jline", "jline-terminal-jna")
|
||||||
|
}
|
||||||
|
|
||||||
|
implementation("org.jline", "jline-terminal", jlineVersion)
|
||||||
|
implementation("org.jline", "jline-terminal-jna", jlineVersion)
|
||||||
|
implementation("org.jline", "jline-reader", jlineVersion)
|
||||||
|
|
||||||
|
implementation("org.apache.logging.log4j", "log4j-api", Versions.log4jVersion)
|
||||||
|
implementation("org.apache.logging.log4j", "log4j-core", Versions.log4jVersion)
|
||||||
|
implementation("org.apache.logging.log4j", "log4j-slf4j18-impl", Versions.log4jVersion)
|
||||||
|
}
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass.set("org.geysermc.geyser.platform.standalone.GeyserStandaloneBootstrap")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
||||||
|
archiveBaseName.set("Geyser-Standalone")
|
||||||
|
|
||||||
|
transform(Log4j2PluginsCacheFileTransformer())
|
||||||
|
}
|
@ -1,139 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<parent>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>bootstrap-parent</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
<artifactId>bootstrap-standalone</artifactId>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<log4j.version>2.17.1</log4j.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.geysermc</groupId>
|
|
||||||
<artifactId>core</artifactId>
|
|
||||||
<version>2.0.7-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>net.minecrell</groupId>
|
|
||||||
<artifactId>terminalconsoleappender</artifactId>
|
|
||||||
<version>1.2.0</version>
|
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
|
||||||
<artifactId>log4j-core</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.jline</groupId>
|
|
||||||
<artifactId>jline-reader</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.jline</groupId>
|
|
||||||
<artifactId>jline-terminal-jna</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.jline</groupId>
|
|
||||||
<artifactId>jline-terminal</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jline</groupId>
|
|
||||||
<artifactId>jline-terminal</artifactId>
|
|
||||||
<version>3.21.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jline</groupId>
|
|
||||||
<artifactId>jline-terminal-jna</artifactId>
|
|
||||||
<version>3.21.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jline</groupId>
|
|
||||||
<artifactId>jline-reader</artifactId>
|
|
||||||
<version>3.21.0</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
|
||||||
<artifactId>log4j-api</artifactId>
|
|
||||||
<version>${log4j.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
|
||||||
<artifactId>log4j-core</artifactId>
|
|
||||||
<version>${log4j.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
|
||||||
<artifactId>log4j-slf4j18-impl</artifactId>
|
|
||||||
<version>${log4j.version}</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
<build>
|
|
||||||
<finalName>${outputName}</finalName>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
|
||||||
<version>3.2.0</version>
|
|
||||||
<configuration>
|
|
||||||
<archive>
|
|
||||||
<manifestEntries>
|
|
||||||
<Main-Class>org.geysermc.geyser.platform.standalone.GeyserStandaloneBootstrap</Main-Class>
|
|
||||||
</manifestEntries>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<version>3.3.0</version>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.edwgiz</groupId>
|
|
||||||
<artifactId>maven-shade-plugin.log4j2-cachefile-transformer</artifactId>
|
|
||||||
<version>2.8.1</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
<configuration>
|
|
||||||
<minimizeJar>false</minimizeJar>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<filters>
|
|
||||||
<filter>
|
|
||||||
<artifact>*:*</artifact>
|
|
||||||
<excludes>
|
|
||||||
<exclude>META-INF/versions/9/module-info.class</exclude>
|
|
||||||
</excludes>
|
|
||||||
</filter>
|
|
||||||
</filters>
|
|
||||||
<transformers>
|
|
||||||
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
||||||
<mainClass>org.geysermc.geyser.platform.standalone.GeyserStandaloneBootstrap</mainClass>
|
|
||||||
<manifestEntries>
|
|
||||||
<Multi-Release>true</Multi-Release>
|
|
||||||
</manifestEntries>
|
|
||||||
</transformer>
|
|
||||||
<transformer
|
|
||||||
implementation="com.github.edwgiz.mavenShadePlugin.log4j2CacheTransformer.PluginsCacheFileTransformer">
|
|
||||||
</transformer>
|
|
||||||
</transformers>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
@ -39,18 +39,18 @@ import org.apache.logging.log4j.core.Appender;
|
|||||||
import org.apache.logging.log4j.core.Logger;
|
import org.apache.logging.log4j.core.Logger;
|
||||||
import org.apache.logging.log4j.core.appender.ConsoleAppender;
|
import org.apache.logging.log4j.core.appender.ConsoleAppender;
|
||||||
import org.geysermc.common.PlatformType;
|
import org.geysermc.common.PlatformType;
|
||||||
import org.geysermc.geyser.GeyserImpl;
|
|
||||||
import org.geysermc.geyser.GeyserBootstrap;
|
import org.geysermc.geyser.GeyserBootstrap;
|
||||||
import org.geysermc.geyser.command.CommandManager;
|
import org.geysermc.geyser.GeyserImpl;
|
||||||
|
import org.geysermc.geyser.command.GeyserCommandManager;
|
||||||
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
import org.geysermc.geyser.configuration.GeyserConfiguration;
|
||||||
import org.geysermc.geyser.configuration.GeyserJacksonConfiguration;
|
import org.geysermc.geyser.configuration.GeyserJacksonConfiguration;
|
||||||
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
import org.geysermc.geyser.dump.BootstrapDumpInfo;
|
||||||
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
import org.geysermc.geyser.ping.GeyserLegacyPingPassthrough;
|
||||||
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
import org.geysermc.geyser.ping.IGeyserPingPassthrough;
|
||||||
import org.geysermc.geyser.util.FileUtils;
|
import org.geysermc.geyser.platform.standalone.command.GeyserStandaloneCommandManager;
|
||||||
import org.geysermc.geyser.text.GeyserLocale;
|
|
||||||
import org.geysermc.geyser.platform.standalone.command.GeyserCommandManager;
|
|
||||||
import org.geysermc.geyser.platform.standalone.gui.GeyserStandaloneGUI;
|
import org.geysermc.geyser.platform.standalone.gui.GeyserStandaloneGUI;
|
||||||
|
import org.geysermc.geyser.text.GeyserLocale;
|
||||||
|
import org.geysermc.geyser.util.FileUtils;
|
||||||
import org.geysermc.geyser.util.LoopbackUtil;
|
import org.geysermc.geyser.util.LoopbackUtil;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
@ -64,7 +64,7 @@ import java.util.stream.Collectors;
|
|||||||
|
|
||||||
public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
||||||
|
|
||||||
private GeyserCommandManager geyserCommandManager;
|
private GeyserStandaloneCommandManager geyserCommandManager;
|
||||||
private GeyserStandaloneConfiguration geyserConfig;
|
private GeyserStandaloneConfiguration geyserConfig;
|
||||||
private GeyserStandaloneLogger geyserLogger;
|
private GeyserStandaloneLogger geyserLogger;
|
||||||
private IGeyserPingPassthrough geyserPingPassthrough;
|
private IGeyserPingPassthrough geyserPingPassthrough;
|
||||||
@ -180,6 +180,7 @@ public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
|||||||
logger.removeAppender(appender);
|
logger.removeAppender(appender);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (useGui && gui == null) {
|
if (useGui && gui == null) {
|
||||||
gui = new GeyserStandaloneGUI();
|
gui = new GeyserStandaloneGUI();
|
||||||
gui.redirectSystemStreams();
|
gui.redirectSystemStreams();
|
||||||
@ -197,7 +198,7 @@ public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
|||||||
|
|
||||||
handleArgsConfigOptions();
|
handleArgsConfigOptions();
|
||||||
|
|
||||||
if (this.geyserConfig.getRemote().getAddress().equalsIgnoreCase("auto")) {
|
if (this.geyserConfig.getRemote().address().equalsIgnoreCase("auto")) {
|
||||||
geyserConfig.setAutoconfiguredRemote(true); // Doesn't really need to be set but /shrug
|
geyserConfig.setAutoconfiguredRemote(true); // Doesn't really need to be set but /shrug
|
||||||
geyserConfig.getRemote().setAddress("127.0.0.1");
|
geyserConfig.getRemote().setAddress("127.0.0.1");
|
||||||
}
|
}
|
||||||
@ -216,8 +217,11 @@ public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
|||||||
// Allow libraries like Protocol to have their debug information passthrough
|
// Allow libraries like Protocol to have their debug information passthrough
|
||||||
logger.get().setLevel(geyserConfig.isDebugMode() ? Level.DEBUG : Level.INFO);
|
logger.get().setLevel(geyserConfig.isDebugMode() ? Level.DEBUG : Level.INFO);
|
||||||
|
|
||||||
geyser = GeyserImpl.start(PlatformType.STANDALONE, this);
|
geyser = GeyserImpl.load(PlatformType.STANDALONE, this);
|
||||||
geyserCommandManager = new GeyserCommandManager(geyser);
|
GeyserImpl.start();
|
||||||
|
|
||||||
|
geyserCommandManager = new GeyserStandaloneCommandManager(geyser);
|
||||||
|
geyserCommandManager.init();
|
||||||
|
|
||||||
if (gui != null) {
|
if (gui != null) {
|
||||||
gui.setupInterface(geyserLogger, geyserCommandManager);
|
gui.setupInterface(geyserLogger, geyserCommandManager);
|
||||||
@ -262,7 +266,7 @@ public class GeyserStandaloneBootstrap implements GeyserBootstrap {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CommandManager getGeyserCommandManager() {
|
public GeyserCommandManager getGeyserCommandManager() {
|
||||||
return geyserCommandManager;
|
return geyserCommandManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden Mehr anzeigen
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren