diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 000000000..3368622af
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,23 @@
+# Normalize as LF in the repository, OS native locally
+* text=auto
+
+*.bat text eol=crlf
+gradlew text eol=lf
+*.sh text eol=lf
+
+*.java text
+*.java diff=java
+
+# Binary files that should not be modified
+*.dat binary
+*.db binary
+*.icns binary
+*.ico binary
+*.jar binary
+*.jks binary
+*.jpg binary
+*.key binary
+*.png binary
+*.ttf binary
+*.wav binary
+JavaApplicationStub binary
\ No newline at end of file
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 000000000..67be741b9
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,52 @@
+# Making changes? https://github.com/nektos/act may help you test locally
+
+name: Build with GitHub Actions
+
+on:
+ push:
+ branches: "**"
+ tags-ignore: ["**"]
+ pull_request:
+ release:
+ types: [released]
+
+concurrency:
+ group: "${{ github.workflow }}-${{ github.event.number || github.ref }}"
+ cancel-in-progress: true
+
+env:
+ RUNTIME_VERSION: 17
+
+jobs:
+ build:
+ # Only run on PRs if the source branch is on someone else's repo
+ if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}"
+
+ runs-on: "${{ matrix.os }}"
+ strategy:
+ matrix:
+ os: [ubuntu-latest, windows-latest]
+ steps:
+ # Setup
+ - name: Check out
+ uses: actions/checkout@v3
+ - name: "Setup JDK ${{ env.RUNTIME_VERSION }}"
+ uses: actions/setup-java@v3
+ with:
+ distribution: temurin
+ java-version: "${{ env.RUNTIME_VERSION }}"
+ - name: Validate Gradle wrapper
+ uses: gradle/wrapper-validation-action@v1
+
+ # Actually build
+ - name: Build with Gradle
+ uses: gradle/gradle-build-action@v2
+ with:
+ arguments: build
+ - name: Archive test results
+ if: "${{ always() }}"
+ uses: actions/upload-artifact@v3
+ with:
+ name: "${{ runner.os }}-test-results"
+ path: |
+ build/reports/
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 7c9cf9c2a..afa901955 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,76 @@
-/build/
-/.gradle/
+# Build #
+#########
+MANIFEST.MF
+dependency-reduced-pom.xml
+
+# Compiled #
+############
+/bin
+/build
+/dist
+/lib
+/out
+/run
+/target
+*.com
+*.class
+*.dll
+*.exe
+*.o
+*.so
+
+# Databases #
+#############
+*.db
+*.sql
+*.sqlite
+
+# Packages #
+############
+*.7z
+*.dmg
+*.gz
+*.iso
+*.rar
+*.tar
+*.zip
+
+# Repository #
+##############
+.git
+
+# Logging #
+###########
+/logs
+*.log
+
+# Misc #
+########
+*.bak
+
+# System #
+##########
+.DS_Store
+ehthumbs.db
+Thumbs.db
+
+# Project #
+###########
+.classpath
+.externalToolBuilders
+/.gradle
+.idea
+.project
+.settings
+.factorypath
+/eclipse
+nbproject
+atlassian-ide-plugin.xml
+build.xml
+nb-configuration.xml
+*.iml
+*.ipr
+*.iws
+/.apt_generated/
+*.launch
+/.nb-gradle/
\ No newline at end of file
diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock
index bac82395c..242565945 100644
Binary files a/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
diff --git a/.gradle/buildOutputCleanup/cache.properties b/.gradle/buildOutputCleanup/cache.properties
index be88bb11c..6a6c5f1b1 100644
--- a/.gradle/buildOutputCleanup/cache.properties
+++ b/.gradle/buildOutputCleanup/cache.properties
@@ -1,2 +1,2 @@
-#Mon Mar 01 13:59:33 GMT 2021
-gradle.version=4.10.3
+#Thu Oct 05 19:00:05 BST 2023
+gradle.version=7.5.1
diff --git a/.gradle/buildOutputCleanup/outputFiles.bin b/.gradle/buildOutputCleanup/outputFiles.bin
index 3c420574c..5176480b3 100644
Binary files a/.gradle/buildOutputCleanup/outputFiles.bin and b/.gradle/buildOutputCleanup/outputFiles.bin differ
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index 61a9130cd..b84fc1189 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -1,6 +1,45 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/dictionaries/berna.xml b/.idea/dictionaries/berna.xml
index 658dac558..596f8ab76 100644
--- a/.idea/dictionaries/berna.xml
+++ b/.idea/dictionaries/berna.xml
@@ -8,6 +8,10 @@
movecraft
passthrough
proccessor
+ pulverizer
+ spongeapi
+ spongecommon
+ spongepowered
subcraft
teleport
vert
diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
index 42098b530..e9b829d96 100644
--- a/.idea/jarRepositories.xml
+++ b/.idea/jarRepositories.xml
@@ -21,6 +21,11 @@
+
+
+
+
+
@@ -46,11 +51,6 @@
-
-
-
-
-
@@ -61,5 +61,15 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index dda24874c..4e9cb3ac8 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,13 +1,14 @@
-
+
+
@@ -18,7 +19,7 @@
-
+
\ No newline at end of file
diff --git a/.idea/modules/movecraft.iml b/.idea/modules/movecraft.iml
index 3babd0719..40692c6d4 100644
--- a/.idea/modules/movecraft.iml
+++ b/.idea/modules/movecraft.iml
@@ -13,7 +13,6 @@
-
diff --git a/.idea/modules/movecraft.main.iml b/.idea/modules/movecraft.main.iml
index 72aa3c0b3..068954faa 100644
--- a/.idea/modules/movecraft.main.iml
+++ b/.idea/modules/movecraft.main.iml
@@ -6,13 +6,9 @@
SPONGE
MIXIN
- FORGE
- MCP
+ ADVENTURE
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/movecraft.test.iml b/.idea/modules/movecraft.test.iml
index 72aa3c0b3..ef9d59d7c 100644
--- a/.idea/modules/movecraft.test.iml
+++ b/.idea/modules/movecraft.test.iml
@@ -5,14 +5,9 @@
SPONGE
- MIXIN
- FORGE
- MCP
+ ADVENTURE
-
-
-
\ No newline at end of file
diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml
deleted file mode 100644
index 797acea53..000000000
--- a/.idea/runConfigurations.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 94a25f7f4..35eb1ddfb 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index a5f6df6dc..85be4f4af 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -15,7 +15,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -38,23 +63,7 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -70,49 +79,56 @@
+
+
+
+
+
+
+
+ {
+ "associatedIndex": 0
+}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
@@ -140,6 +156,7 @@
true
true
false
+ false
@@ -161,6 +178,7 @@
true
true
false
+ false
@@ -182,6 +200,7 @@
true
true
false
+ false
@@ -240,6 +259,15 @@
+
+
+
+
+
+
+
+
+
1630004325334
@@ -263,6 +291,17 @@
+
+
+
+
+
@@ -270,6 +309,10 @@
+
+
+
+
diff --git a/build.gradle b/build.gradle
deleted file mode 100644
index 033f3745e..000000000
--- a/build.gradle
+++ /dev/null
@@ -1,66 +0,0 @@
-buildscript {
- repositories {
- maven {
- name = 'forge'
- url = 'https://files.minecraftforge.net/maven'
- }
- maven {
- name = 'sponge'
- url = 'https://repo.spongepowered.org/repository/maven-public/'
- }
- }
-
- dependencies {
- classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
- classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
- }
-}
-
-plugins {
- id 'org.spongepowered.plugin' version '0.9.0'
- id 'maven-publish'
-}
-
-apply plugin: 'net.minecraftforge.gradle.forge'
-apply plugin: 'org.spongepowered.mixin'
-
-sourceSets {
- main {
- ext.refMap = "mixins.movecraft.refmap.json"
- }
-}
-
-group 'io.github.pulverizer'
-
-dependencies {
- testCompile group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.7.0'
- testCompile group: 'org.mockito', name: 'mockito-core', version: '3.+'
- compile 'org.spongepowered:spongeapi:7.4.0-SNAPSHOT'
- compile 'org.spongepowered:spongecommon:1.12.2-7.3.1-SNAPSHOT:dev'
- compile 'org.spongepowered:mixin:0.8.2'
-}
-
-minecraft {
- version = '1.12.2-14.23.5.2847'
- mappings = 'stable_39'
- makeObfSourceJar = false
-}
-
-jar {
- manifest{
- attributes(
- 'FMLAT': 'META-INF/movecraft_at.cfg',
- 'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
- 'MixinConfigs': 'mixins.movecraft.json',
- 'FMLCorePluginContainsFMLMod': 'true'
- )
- }
-}
-
-publishing {
- publications {
- movecraft(MavenPublication) {
- from components.java
- }
- }
-}
\ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 000000000..715132ae8
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,156 @@
+import org.spongepowered.gradle.plugin.config.PluginLoaders
+import org.spongepowered.plugin.metadata.model.PluginDependency
+
+repositories {
+ gradlePluginPortal()
+ mavenCentral()
+}
+
+plugins {
+ val spongeGradleVersion = "2.2.0"
+
+ `java-library`
+ id("com.github.johnrengelman.shadow") version "7.0.0"
+ id("org.spongepowered.gradle.plugin") version spongeGradleVersion
+ id("org.spongepowered.gradle.ore") version spongeGradleVersion // for Ore publishing
+
+ // my plugins
+ `maven-publish`
+
+ //id("org.spongepowered.mixin")
+}
+
+dependencies {
+ testCompileOnly(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.0")
+ testCompileOnly(group = "org.mockito", name = "mockito-core", version = "3.+")
+ compileOnly("org.spongepowered:spongeapi:8.2.0")
+ compileOnly("org.spongepowered:spongecommon:1.16.5-8.2.0")
+ compileOnly("org.spongepowered:mixin:0.8.4")
+}
+
+allprojects {
+ group = "io.github.pulverizer"
+ version = "0.5-SNAPSHOT"
+
+ sponge {
+ apiVersion("8.2.0")
+ license("GPL-3.0")
+ loader {
+ name(PluginLoaders.JAVA_PLAIN)
+ version("1.0")
+ }
+ plugin("movecraft") {
+ displayName("Movecraft for Sponge")
+ entrypoint("io.github.pulverizer.movecraft.Movecraft")
+ description("Making vehicles out of blocks")
+ links {
+ homepage("https://ore.spongepowered.org/BernardisGood/Movecraft-for-Sponge")
+ source("https://github.com/Pulverizer/Movecraft-for-Sponge")
+ issues("https://github.com/Pulverizer/Movecraft-for-Sponge/issues")
+ }
+ contributor("BernardisGood") {
+ description("Lead Developer")
+ }
+ dependency("spongeapi") {
+ loadOrder(PluginDependency.LoadOrder.AFTER)
+ optional(false)
+ }
+ }
+ }
+
+ val javaTarget = 17
+ java {
+ sourceCompatibility = JavaVersion.toVersion(javaTarget)
+ targetCompatibility = JavaVersion.toVersion(javaTarget)
+ if (JavaVersion.current() < JavaVersion.toVersion(javaTarget)) {
+ toolchain.languageVersion.set(JavaLanguageVersion.of(javaTarget))
+ }
+ }
+
+ tasks.withType(JavaCompile::class).configureEach {
+ options.apply {
+ encoding = "utf-8" // Consistent source file encoding
+ release.set(javaTarget)
+ }
+ }
+
+ // Make sure all tasks which produce archives (jar, sources jar, javadoc jar, etc) produce more consistent output
+ tasks.withType(AbstractArchiveTask::class).configureEach {
+ isReproducibleFileOrder = true
+ isPreserveFileTimestamps = false
+ }
+
+ // Optional: configure publication to Ore
+ // Publish using the publishToOre task
+ // An API token is needed for this, by default read from the ORE_TOKEN environment variable
+ oreDeployment {
+ // The default publication here is automatically configured by SpongeGradle
+ // using the first-created plugin"s ID as the project ID
+ // A version body is optional, to provide additional information about the release
+ /*
+ defaultPublication {
+ // Read the version body from the file whose path is provided to the changelog gradle property
+ versionBody.set(providers.gradleProperty("changelog").map { file(it).readText(Charsets.UTF_8) }.orElse(""))
+ }*/
+ }
+
+ configurations {
+ val provided by configurations.creating
+ val shade by configurations.creating
+
+ provided.extendsFrom(shade)
+ implementation.extendsFrom(provided)
+ }
+
+ tasks.jar {
+ setClassifier("base")
+ manifest{
+ attributes["FMLAT"] = "META-INF/movecraft_at.cfg"
+ attributes["TweakClass"] = "org.spongepowered.asm.launch.MixinTweaker"
+ attributes["MixinConfigs"] = "mixins.movecraft.json"
+ attributes["FMLCorePluginContainsFMLMod"] = "true"
+ }
+ }
+
+ publishing {
+ publications {
+ register("movecraft", MavenPublication::class) {
+ from(components["java"])
+ }
+ }
+ }
+}
+
+subprojects {
+
+ shadowJar {
+ setClassifier("shadow")
+ configurations = [project.configurations.shade]
+
+ dependencies {
+ include project(":")
+ }
+
+ manifest {
+ attributes["MixinConfigs"] = "mixins.movecraft.json"
+ }
+ }
+
+ dependencies {
+ provided project(path: ":", configuration: "provided")
+ shade project(path = ":", transitive = false)
+ shade project(path = ":", configuration = "shade")
+ }
+}
+
+minecraft {
+ version = "1.16.5"
+ accessWideners(file("src/main/resources/movecraft.accesswidener"))
+}
+
+/*
+sourceSets {
+ main {
+ ext.refMap = "mixins.movecraft.refmap.json"
+ }
+}*/
\ No newline at end of file
diff --git a/gradle/forge/build.gradle b/gradle/forge/build.gradle
new file mode 100644
index 000000000..983d5ad5c
--- /dev/null
+++ b/gradle/forge/build.gradle
@@ -0,0 +1,67 @@
+/*
+ * Copyright (c) 2018-2022 Hugo Dupanloup (Yeregorix)
+ *
+ * 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.
+ */
+plugins {
+ id "net.smoofyuniverse.loom" version "0.12.0-SNAPSHOT"
+}
+
+archivesBaseName = 'Movecraft-forge'
+
+loom {
+ silentMojangMappingsLicense()
+ accessWidenerPath = file('../src/main/resources/movecraft.accesswidener')
+
+ forge {
+ convertAccessWideners = true
+ }
+
+ mixin {
+ useLegacyMixinAp = false
+ }
+}
+
+configurations {
+ spongeforge
+}
+
+dependencies {
+ minecraft 'com.mojang:minecraft:1.16.5'
+ forge 'net.minecraftforge:forge:1.16.5-36.2.5'
+ mappings loom.officialMojangMappings()
+
+ spongeforge 'org.spongepowered:spongeforge:1.16.5-36.2.5-8.2.0:universal'
+}
+
+remapJar {
+ inputFile.set shadowJar.archiveFile
+ dependsOn shadowJar
+}
+
+build.dependsOn remapJar
+
+task setupServer(type: Copy) {
+ into 'run/mods'
+
+ from configurations.spongeforge
+ rename('spongeforge-(.*).jar', 'spongeforge.jar')
+
+ from remapJar
+}
\ No newline at end of file
diff --git a/gradle/forge/gradle.properties b/gradle/forge/gradle.properties
new file mode 100644
index 000000000..32f842a63
--- /dev/null
+++ b/gradle/forge/gradle.properties
@@ -0,0 +1 @@
+loom.platform=forge
\ No newline at end of file
diff --git a/gradle/vanilla/build.gradle b/gradle/vanilla/build.gradle
new file mode 100644
index 000000000..fb48f8a8f
--- /dev/null
+++ b/gradle/vanilla/build.gradle
@@ -0,0 +1,51 @@
+/*
+ * Copyright (c) 2018-2022 Hugo Dupanloup (Yeregorix)
+ *
+ * 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.
+ */
+archivesBaseName = 'Movecraft-vanilla'
+
+configurations {
+ spongevanilla
+}
+
+dependencies {
+ spongevanilla 'org.spongepowered:spongevanilla:1.16.5-8.2.0:universal'
+}
+
+shadowJar {
+ classifier ''
+
+ manifest {
+ attributes('Access-Widener': 'movecraft.accesswidener')
+ }
+}
+
+build.dependsOn shadowJar
+
+task setupServer(type: Copy) {
+ into 'run'
+
+ from configurations.spongevanilla
+ rename('spongevanilla-(.*).jar', 'spongevanilla.jar')
+
+ into('mods') {
+ from shadowJar
+ }
+}
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index b69c8d408..ff909aee7 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
diff --git a/gradlew b/gradlew
index cccdd3d51..ab2855b44 100644
--- a/gradlew
+++ b/gradlew
@@ -1,78 +1,129 @@
-#!/usr/bin/env sh
+#!/bin/sh
+
+#
+# Copyright © 2015-2021 the original authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
##############################################################################
-##
-## Gradle start up script for UN*X
-##
+#
+# Gradle start up script for POSIX generated by Gradle.
+#
+# Important for running:
+#
+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+# noncompliant, but you have some other compliant shell such as ksh or
+# bash, then to run this script, type that shell name before the whole
+# command line, like:
+#
+# ksh Gradle
+#
+# Busybox and similar reduced shells will NOT work, because this script
+# requires all of these POSIX shell features:
+# * functions;
+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+# * compound commands having a testable exit status, especially «case»;
+# * various built-in commands including «command», «set», and «ulimit».
+#
+# Important for patching:
+#
+# (2) This script targets any POSIX shell, so it avoids extensions provided
+# by Bash, Ksh, etc; in particular arrays are avoided.
+#
+# The "traditional" practice of packing multiple parameters into a
+# space-separated string is a well documented source of bugs and security
+# problems, so this is (mostly) avoided, by progressively accumulating
+# options in "$@", and eventually passing that to Java.
+#
+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+# see the in-line comments for details.
+#
+# There are tweaks for specific operating systems such as AIX, CygWin,
+# Darwin, MinGW, and NonStop.
+#
+# (3) This script is generated from the Groovy template
+# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# within the Gradle project.
+#
+# You can find Gradle at https://github.com/gradle/gradle/.
+#
##############################################################################
# Attempt to set APP_HOME
+
# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
+ [ -h "$app_path" ]
+do
+ ls=$( ls -ld "$app_path" )
+ link=${ls#*' -> '}
+ case $link in #(
+ /*) app_path=$link ;; #(
+ *) app_path=$APP_HOME$link ;;
+ esac
done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
+
+APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
+APP_BASE_NAME=${0##*/}
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS=""
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
+MAX_FD=maximum
warn () {
echo "$*"
-}
+} >&2
die () {
echo
echo "$*"
echo
exit 1
-}
+} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
+case "$( uname )" in #(
+ CYGWIN* ) cygwin=true ;; #(
+ Darwin* ) darwin=true ;; #(
+ MSYS* | MINGW* ) msys=true ;; #(
+ NONSTOP* ) nonstop=true ;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
+ JAVACMD=$JAVA_HOME/jre/sh/java
else
- JAVACMD="$JAVA_HOME/bin/java"
+ JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
@@ -81,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
- JAVACMD="java"
+ JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
@@ -89,84 +140,101 @@ location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+ case $MAX_FD in #(
+ max*)
+ MAX_FD=$( ulimit -H -n ) ||
+ warn "Could not query maximum file descriptor limit"
+ esac
+ case $MAX_FD in #(
+ '' | soft) :;; #(
+ *)
+ ulimit -n "$MAX_FD" ||
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
+ esac
fi
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
+# Collect all arguments for the java command, stacking in reverse order:
+# * args from the command line
+# * the main class name
+# * -classpath
+# * -D...appname settings
+# * --module-path (only if needed)
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if "$cygwin" || "$msys" ; then
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
+
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
+ for arg do
+ if
+ case $arg in #(
+ -*) false ;; # don't mess with options #(
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
+ [ -e "$t" ] ;; #(
+ *) false ;;
+ esac
+ then
+ arg=$( cygpath --path --ignore --mixed "$arg" )
fi
- i=$((i+1))
+ # Roll the args list around exactly as many times as the number of
+ # args, so each arg winds up back in the position where it started, but
+ # possibly modified.
+ #
+ # NB: a `for` loop captures its iteration list before it begins, so
+ # changing the positional parameters here affects neither the number of
+ # iterations, nor the values presented in `arg`.
+ shift # remove old arg
+ set -- "$@" "$arg" # push replacement arg
done
- case $i in
- (0) set -- ;;
- (1) set -- "$args0" ;;
- (2) set -- "$args0" "$args1" ;;
- (3) set -- "$args0" "$args1" "$args2" ;;
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
fi
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=$(save "$@")
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
-if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
- cd "$(dirname "$0")"
+# Collect all arguments for the java command;
+# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
+# shell script including quotes and variable substitutions, so put them in
+# double quotes to make sure that they get re-expanded; and
+# * put everything else in single quotes, so that it's not re-expanded.
+
+set -- \
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
+ -classpath "$CLASSPATH" \
+ org.gradle.wrapper.GradleWrapperMain \
+ "$@"
+
+# Stop when "xargs" is not available.
+if ! command -v xargs >/dev/null 2>&1
+then
+ die "xargs is not available"
fi
-exec "$JAVACMD" "$@"
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+# set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
+
+eval "set -- $(
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+ xargs -n1 |
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+ tr '\n' ' '
+ )" '"$@"'
+
+exec "$JAVACMD" "$@"
\ No newline at end of file
diff --git a/gradlew.bat b/gradlew.bat
index f9553162f..89d1d9133 100644
--- a/gradlew.bat
+++ b/gradlew.bat
@@ -1,4 +1,20 @@
-@if "%DEBUG%" == "" @echo off
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@@ -9,19 +25,22 @@
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
+if "%DIRNAME%"=="" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS=
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto init
+if %ERRORLEVEL% equ 0 goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -35,7 +54,7 @@ goto fail
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-if exist "%JAVA_EXE%" goto init
+if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
@@ -45,40 +64,28 @@ echo location of your Java installation.
goto fail
-:init
-@rem Get command-line arguments, handling Windows variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
+if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
+set EXIT_CODE=%ERRORLEVEL%
+if %EXIT_CODE% equ 0 set EXIT_CODE=1
+if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
+exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
-:omega
+:omega
\ No newline at end of file
diff --git a/settings.gradle b/settings.gradle
index af6e1a7be..1728c8aeb 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,2 +1,34 @@
+/*
+ * Copyright (c) 2018-2022 Hugo Dupanloup (Yeregorix)
+ *
+ * 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.
+ */
+pluginManagement {
+ repositories {
+ maven { url "https://repo.spongepowered.org/repository/maven-public" }
+ maven { url "https://maven.architectury.dev/" }
+ maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
+ gradlePluginPortal()
+ }
+}
+
rootProject.name = 'movecraft'
+//include ':gradle:vanilla'
+//include ':gradle:forge'
\ No newline at end of file
diff --git a/src/main/java/io/github/pulverizer/movecraft/Movecraft.java b/src/main/java/io/github/pulverizer/movecraft/Movecraft.java
index c0d172ee0..6d2ae09fc 100644
--- a/src/main/java/io/github/pulverizer/movecraft/Movecraft.java
+++ b/src/main/java/io/github/pulverizer/movecraft/Movecraft.java
@@ -27,7 +27,7 @@
import org.spongepowered.api.event.Order;
import org.spongepowered.api.event.game.state.GamePreInitializationEvent;
import org.spongepowered.api.event.game.state.GameStartedServerEvent;
-import org.spongepowered.api.plugin.Plugin;
+import org.spongepowered.plugin.builtin.jvm.Plugin;
import org.spongepowered.api.scheduler.Task;
import org.spongepowered.api.service.sql.SqlService;
@@ -35,13 +35,7 @@
import java.sql.Connection;
import java.sql.SQLException;
-@Plugin(
- id = "movecraft",
- name = "Movecraft for Sponge",
- description = "Allows players to create moving things out of blocks. Airships, Turrets, Submarines, Etc.",
- version = "0.4.1",
- url = "https://github.com/Pulverizer/Movecraft-for-Sponge",
- authors = {"BernardisGood", "https://github.com/Pulverizer/Movecraft-for-Sponge/graphs/contributors"})
+@Plugin("movecraft")
public class Movecraft {