Compare commits
7 Commits
v0.2.0-bet
...
lithium-0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68c3c6ffa2 | ||
|
|
b5684eae6d | ||
|
|
d31b15122f | ||
|
|
ca931e842b | ||
|
|
c2cf985899 | ||
|
|
d270cf06d9 | ||
|
|
09735958c0 |
18
build.gradle
18
build.gradle
@@ -18,10 +18,13 @@ def aw2at = Aw2AtTask.configureDefault(
|
||||
sourceSets.main
|
||||
)
|
||||
|
||||
sourceSets.create("lithium")
|
||||
|
||||
neoForge {
|
||||
neoFormVersion = neoform_version
|
||||
validateAccessTransformers = true
|
||||
accessTransformers.files.setFrom(aw2at.flatMap { t -> t.getOutputFile() })
|
||||
addModdingDependenciesTo sourceSets.lithium
|
||||
}
|
||||
|
||||
runConfigCommon {
|
||||
@@ -41,6 +44,13 @@ dependencies {
|
||||
|
||||
// todo: does cloth publish a platform-agnostic jar in mojang mappings?
|
||||
compileOnly "me.shedaniel.cloth:cloth-config-neoforge:${rootProject.cloth_version}"
|
||||
|
||||
lithiumCompileOnly("maven.modrinth:lithium:${rootProject.neo_lithium_version}")
|
||||
compileOnly(sourceSets.lithium.output)
|
||||
}
|
||||
|
||||
tasks.jar {
|
||||
from(sourceSets.lithium.output)
|
||||
}
|
||||
|
||||
allprojects {
|
||||
@@ -68,19 +78,19 @@ allprojects {
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url "https://repo.papermc.io/repository/maven-public/"
|
||||
url = "https://repo.papermc.io/repository/maven-public/"
|
||||
mavenContent {
|
||||
includeGroup("ca.spottedleaf")
|
||||
}
|
||||
}
|
||||
maven {
|
||||
url "https://api.modrinth.com/maven"
|
||||
url = "https://api.modrinth.com/maven"
|
||||
mavenContent {
|
||||
includeGroup("maven.modrinth")
|
||||
}
|
||||
}
|
||||
maven { url "https://maven.shedaniel.me/" }
|
||||
maven { url "https://maven.terraformersmc.com/releases/" }
|
||||
maven { url = "https://maven.shedaniel.me/" }
|
||||
maven { url = "https://maven.terraformersmc.com/releases/" }
|
||||
}
|
||||
|
||||
// make build reproducible
|
||||
|
||||
@@ -2,11 +2,17 @@ import dev.architectury.at.AccessChange;
|
||||
import dev.architectury.at.AccessTransform;
|
||||
import dev.architectury.at.AccessTransformSet;
|
||||
import dev.architectury.at.ModifierChange;
|
||||
import dev.architectury.at.io.AccessTransformFormat;
|
||||
import dev.architectury.at.io.AccessTransformFormats;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.BufferedWriter;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.StringWriter;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import javax.inject.Inject;
|
||||
import net.fabricmc.accesswidener.AccessWidenerReader;
|
||||
import net.fabricmc.accesswidener.AccessWidenerVisitor;
|
||||
@@ -66,12 +72,29 @@ public abstract class Aw2AtTask extends DefaultTask {
|
||||
final AccessTransformSet accessTransformSet = toAccessTransformSet(reader);
|
||||
Files.deleteIfExists(this.getOutputFile().get().getAsFile().toPath());
|
||||
Files.createDirectories(this.getOutputFile().get().getAsFile().toPath().getParent());
|
||||
AccessTransformFormats.FML.write(this.getOutputFile().get().getAsFile().toPath(), accessTransformSet);
|
||||
writeLF(AccessTransformFormats.FML, this.getOutputFile().get().getAsFile().toPath(), accessTransformSet);
|
||||
} catch (final IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
|
||||
private static void writeLF(final AccessTransformFormat format, final Path path, final AccessTransformSet at) throws IOException {
|
||||
final StringWriter stringWriter = new StringWriter();
|
||||
final BufferedWriter writer = new BufferedWriter(stringWriter);
|
||||
format.write(writer, at);
|
||||
writer.close();
|
||||
final List<String> lines = Arrays.stream(stringWriter.toString()
|
||||
// unify line endings
|
||||
.replace("\r\n", "\n")
|
||||
.split("\n"))
|
||||
// skip blank lines
|
||||
.filter(it -> !it.isBlank())
|
||||
// sort
|
||||
.sorted()
|
||||
.toList();
|
||||
Files.writeString(path, String.join("\n", lines));
|
||||
}
|
||||
|
||||
// Below methods are heavily based on architectury-loom Aw2At class (MIT licensed)
|
||||
/*
|
||||
MIT License
|
||||
@@ -98,8 +121,7 @@ public abstract class Aw2AtTask extends DefaultTask {
|
||||
*/
|
||||
|
||||
public static AccessTransformSet toAccessTransformSet(final BufferedReader reader) throws IOException {
|
||||
// TODO: Remove copied classes once https://github.com/architectury/at/pull/1 is released
|
||||
AccessTransformSet atSet = new at.AccessTransformSetImpl();
|
||||
AccessTransformSet atSet = AccessTransformSet.create();
|
||||
|
||||
new AccessWidenerReader(new AccessWidenerVisitor() {
|
||||
@Override
|
||||
|
||||
@@ -1,97 +0,0 @@
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2023 Architectury
|
||||
* Copyright (c) 2018 Minecrell (https://github.com/Minecrell)
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
package at;
|
||||
|
||||
import dev.architectury.at.AccessTransformSet;
|
||||
import net.fabricmc.mappingio.tree.MappingTreeView;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
|
||||
public class AccessTransformSetImpl implements AccessTransformSet {
|
||||
|
||||
private final Map<String, Class> classes = new LinkedHashMap<>();
|
||||
|
||||
@Override
|
||||
public Map<String, Class> getClasses() {
|
||||
return Collections.unmodifiableMap(this.classes);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Optional<Class> getClass(String name) {
|
||||
Objects.requireNonNull(name, "name");
|
||||
return Optional.ofNullable(this.classes.get(name.replace('.', '/')));
|
||||
}
|
||||
|
||||
@Override
|
||||
public Class getOrCreateClass(String name) {
|
||||
Objects.requireNonNull(name, "name");
|
||||
return this.classes.computeIfAbsent(name.replace('.', '/'), n -> new ClassAccessTransformSetImpl(this, n));
|
||||
}
|
||||
|
||||
@Override
|
||||
public Optional<Class> removeClass(String name) {
|
||||
Objects.requireNonNull(name, "name");
|
||||
return Optional.ofNullable(this.classes.remove(name.replace('.', '/')));
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransformSet remap(MappingTreeView mappings, String from, String to) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void merge(AccessTransformSet other) {
|
||||
other.getClasses().forEach((name, classSet) -> getOrCreateClass(name).merge(classSet));
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (!(o instanceof AccessTransformSetImpl)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
AccessTransformSetImpl that = (AccessTransformSetImpl) o;
|
||||
return this.classes.equals(that.classes);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return this.classes.hashCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "AccessTransformSet{" + classes + '}';
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,256 +0,0 @@
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2023 Architectury
|
||||
* Copyright (c) 2018 Minecrell (https://github.com/Minecrell)
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
package at;
|
||||
|
||||
import dev.architectury.at.AccessTransform;
|
||||
import dev.architectury.at.AccessTransformSet;
|
||||
import org.cadixdev.bombe.analysis.InheritanceProvider;
|
||||
import org.cadixdev.bombe.type.signature.MethodSignature;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.StringJoiner;
|
||||
|
||||
class ClassAccessTransformSetImpl implements AccessTransformSet.Class {
|
||||
|
||||
private final AccessTransformSet parent;
|
||||
private final String name;
|
||||
|
||||
private AccessTransform classTransform = AccessTransform.EMPTY;
|
||||
private AccessTransform allFields = AccessTransform.EMPTY;
|
||||
private AccessTransform allMethods = AccessTransform.EMPTY;
|
||||
|
||||
private final Map<String, AccessTransform> fields = new LinkedHashMap<>();
|
||||
private final Map<MethodSignature, AccessTransform> methods = new LinkedHashMap<>();
|
||||
|
||||
private boolean complete;
|
||||
|
||||
ClassAccessTransformSetImpl(AccessTransformSet parent, String name) {
|
||||
this.parent = parent;
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransformSet getParent() {
|
||||
return parent;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform get() {
|
||||
return this.classTransform;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform merge(AccessTransform transform) {
|
||||
return this.classTransform = this.classTransform.merge(transform);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform replace(AccessTransform transform) {
|
||||
return this.classTransform = Objects.requireNonNull(transform, "transform");
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform allFields() {
|
||||
return this.allFields;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform mergeAllFields(AccessTransform transform) {
|
||||
return this.allFields = this.allFields.merge(transform);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform replaceAllFields(AccessTransform transform) {
|
||||
return this.allFields = Objects.requireNonNull(transform, "transform");
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform allMethods() {
|
||||
return this.allMethods;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform mergeAllMethods(AccessTransform transform) {
|
||||
return this.allMethods = this.allMethods.merge(transform);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform replaceAllMethods(AccessTransform transform) {
|
||||
return this.allMethods = Objects.requireNonNull(transform, "transform");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<String, AccessTransform> getFields() {
|
||||
return Collections.unmodifiableMap(this.fields);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform getField(String name) {
|
||||
return this.fields.getOrDefault(Objects.requireNonNull(name, "name"), this.allFields);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform mergeField(String name, AccessTransform transform) {
|
||||
Objects.requireNonNull(name, "name");
|
||||
Objects.requireNonNull(transform, "transform");
|
||||
|
||||
if (transform.isEmpty()) {
|
||||
return this.fields.getOrDefault(name, AccessTransform.EMPTY);
|
||||
}
|
||||
return this.fields.merge(name, transform, AccessTransform::merge);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform replaceField(String name, AccessTransform transform) {
|
||||
Objects.requireNonNull(name, "name");
|
||||
Objects.requireNonNull(transform, "transform");
|
||||
|
||||
if (transform.isEmpty()) {
|
||||
return this.fields.remove(name);
|
||||
}
|
||||
return this.fields.put(name, transform);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Map<MethodSignature, AccessTransform> getMethods() {
|
||||
return Collections.unmodifiableMap(this.methods);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform getMethod(MethodSignature signature) {
|
||||
return this.methods.getOrDefault(Objects.requireNonNull(signature, "signature"), this.allMethods);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform mergeMethod(MethodSignature signature, AccessTransform transform) {
|
||||
Objects.requireNonNull(signature, "signature");
|
||||
Objects.requireNonNull(transform, "transform");
|
||||
|
||||
if (transform.isEmpty()) {
|
||||
return this.methods.getOrDefault(signature, AccessTransform.EMPTY);
|
||||
}
|
||||
return this.methods.merge(signature, transform, AccessTransform::merge);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccessTransform replaceMethod(MethodSignature signature, AccessTransform transform) {
|
||||
Objects.requireNonNull(signature, "signature");
|
||||
Objects.requireNonNull(transform, "transform");
|
||||
|
||||
if (transform.isEmpty()) {
|
||||
return this.methods.remove(signature);
|
||||
}
|
||||
return this.methods.put(signature, transform);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void merge(AccessTransformSet.Class other) {
|
||||
Objects.requireNonNull(other, "other");
|
||||
|
||||
merge(other.get());
|
||||
mergeAllFields(other.allFields());
|
||||
mergeAllMethods(other.allMethods());
|
||||
|
||||
other.getFields().forEach(this::mergeField);
|
||||
other.getMethods().forEach(this::mergeMethod);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isComplete() {
|
||||
return this.complete;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void complete(InheritanceProvider provider, InheritanceProvider.ClassInfo info) {
|
||||
if (this.complete) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (InheritanceProvider.ClassInfo parent : info.provideParents(provider)) {
|
||||
AccessTransformSet.Class parentAts = getParent().getOrCreateClass(parent.getName());
|
||||
parentAts.complete(provider, parent);
|
||||
|
||||
parentAts.getMethods().forEach((signature, transform) -> {
|
||||
if (info.overrides(signature, parent)) {
|
||||
mergeMethod(signature, transform);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
this.complete = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (!(o instanceof ClassAccessTransformSetImpl)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
ClassAccessTransformSetImpl that = (ClassAccessTransformSetImpl) o;
|
||||
return this.classTransform.equals(that.classTransform) &&
|
||||
this.allFields.equals(that.allFields) &&
|
||||
this.allMethods.equals(that.allMethods) &&
|
||||
this.fields.equals(that.fields) &&
|
||||
this.methods.equals(that.methods);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(this.classTransform, this.allFields, this.allMethods, this.fields, this.methods);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringJoiner joiner = new StringJoiner(", ", "AccessTransformSet.Class{", "}");
|
||||
if (!this.classTransform.isEmpty()) {
|
||||
joiner.add(this.classTransform.toString());
|
||||
}
|
||||
if (!this.allFields.isEmpty()) {
|
||||
joiner.add("allFields=" + this.allFields);
|
||||
}
|
||||
if (!this.allMethods.isEmpty()) {
|
||||
joiner.add("allMethods=" + this.allMethods);
|
||||
}
|
||||
if (!this.fields.isEmpty()) {
|
||||
joiner.add("fields=" + this.fields);
|
||||
}
|
||||
if (!this.methods.isEmpty()) {
|
||||
joiner.add("method=" + this.methods);
|
||||
}
|
||||
return joiner.toString();
|
||||
}
|
||||
}
|
||||
@@ -13,6 +13,7 @@ dependencies {
|
||||
testImplementation "net.fabricmc:fabric-loader-junit:${project.loader_version}"
|
||||
|
||||
runtimeOnly(project(":").sourceSets.main.output)
|
||||
runtimeOnly(project(":").sourceSets.lithium.output)
|
||||
shadow(project(":"))
|
||||
compileOnly(project(":"))
|
||||
|
||||
@@ -85,6 +86,7 @@ loom {
|
||||
main {
|
||||
sourceSet("main")
|
||||
sourceSet("main", project.rootProject)
|
||||
sourceSet("lithium", project.rootProject)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -42,6 +42,11 @@ public final class FabricHooks extends BaseChunkSystemHooks implements PlatformH
|
||||
return "Moonrise";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isModLoaded(final String modId) {
|
||||
return FabricLoader.getInstance().isModLoaded(modId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getLightEmission(final BlockState blockState, final BlockGetter world, final BlockPos pos) {
|
||||
return blockState.getLightEmission();
|
||||
|
||||
@@ -2,24 +2,25 @@
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
org.gradle.parallel=true
|
||||
org.gradle.caching=true
|
||||
org.gradle.configuration-cache=true
|
||||
# Fabric Properties
|
||||
# check these on https://modmuss50.me/fabric.html
|
||||
minecraft_version=1.21.4
|
||||
loader_version=0.16.9
|
||||
supported_minecraft_versions=1.21.4
|
||||
neoforge_version=21.4.33-beta
|
||||
neoforge_version=21.4.59-beta
|
||||
neoform_version=1.21.4-20241203.161809
|
||||
fabric_api_version=0.110.5+1.21.4
|
||||
fabric_api_version=0.114.3+1.21.4
|
||||
snakeyaml_version=2.3
|
||||
concurrentutil_version=0.0.2
|
||||
concurrentutil_version=0.0.3
|
||||
yamlconfig_version=1.0.2
|
||||
cloth_version=17.0.144
|
||||
modmenu_version=13.0.0-beta.1
|
||||
junit_version=5.11.3
|
||||
# version ids from modrinth
|
||||
fabric_lithium_version=t1FlWYl9
|
||||
neo_lithium_version=iDqQi66g
|
||||
fabric_lithium_version=zVOQw7YU
|
||||
neo_lithium_version=CfXh2ZF6
|
||||
# Mod Properties
|
||||
mod_version=0.2.0-beta.7
|
||||
mod_version=0.2.0-SNAPSHOT
|
||||
maven_group=ca.spottedleaf.moonrise
|
||||
archives_base_name=moonrise
|
||||
|
||||
@@ -28,6 +28,7 @@ neoForge {
|
||||
moonrise {
|
||||
sourceSet sourceSets.main
|
||||
sourceSet rootProject.sourceSets.main
|
||||
sourceSet rootProject.sourceSets.lithium
|
||||
}
|
||||
}
|
||||
runs {
|
||||
@@ -46,6 +47,7 @@ neoForge {
|
||||
|
||||
dependencies {
|
||||
runtimeOnly(project(":").sourceSets.main.output)
|
||||
runtimeOnly(project(":").sourceSets.lithium.output)
|
||||
shadow(project(":"))
|
||||
compileOnly(project(":"))
|
||||
|
||||
|
||||
@@ -28,6 +28,8 @@ import net.minecraft.world.level.chunk.status.ChunkStatusTasks;
|
||||
import net.minecraft.world.level.chunk.storage.SerializableChunkData;
|
||||
import net.minecraft.world.level.entity.EntityTypeTest;
|
||||
import net.minecraft.world.phys.AABB;
|
||||
import net.neoforged.fml.ModList;
|
||||
import net.neoforged.fml.loading.LoadingModList;
|
||||
import net.neoforged.neoforge.common.CommonHooks;
|
||||
import net.neoforged.neoforge.common.NeoForge;
|
||||
import net.neoforged.neoforge.entity.PartEntity;
|
||||
@@ -46,6 +48,15 @@ public final class NeoForgeHooks extends BaseChunkSystemHooks implements Platfor
|
||||
return "Moonrise";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isModLoaded(final String modId) {
|
||||
final ModList modList = ModList.get();
|
||||
if (modList == null) {
|
||||
return LoadingModList.get().getModFileById(modId) != null;
|
||||
}
|
||||
return modList.isLoaded(modId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getLightEmission(final BlockState blockState, final BlockGetter world, final BlockPos pos) {
|
||||
return blockState.getLightEmission(world, pos);
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
package ca.spottledleaf.moonrise.compat.lithium;
|
||||
|
||||
import net.caffeinemc.mods.lithium.common.world.chunk.ChunkStatusTracker;
|
||||
import net.minecraft.server.level.ServerLevel;
|
||||
import net.minecraft.world.level.ChunkPos;
|
||||
import net.minecraft.world.level.chunk.LevelChunk;
|
||||
|
||||
public final class LithiumHooks {
|
||||
private LithiumHooks() {}
|
||||
|
||||
public static void onChunkInaccessible(final ServerLevel serverLevel, final ChunkPos pos) {
|
||||
ChunkStatusTracker.onChunkInaccessible(serverLevel, pos);
|
||||
}
|
||||
|
||||
public static void onChunkAccessible(final ServerLevel serverLevel, final LevelChunk chunk) {
|
||||
ChunkStatusTracker.onChunkAccessible(serverLevel, chunk);
|
||||
}
|
||||
}
|
||||
@@ -31,6 +31,10 @@ public interface PlatformHooks extends ChunkSystemHooks {
|
||||
|
||||
public String getBrand();
|
||||
|
||||
public default boolean isModLoaded(final String modId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
public int getLightEmission(final BlockState blockState, final BlockGetter world, final BlockPos pos);
|
||||
|
||||
public Predicate<BlockState> maybeHasLightEmission();
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
package ca.spottedleaf.moonrise.common.util;
|
||||
|
||||
import ca.spottedleaf.concurrentutil.util.Priority;
|
||||
import ca.spottedleaf.moonrise.common.PlatformHooks;
|
||||
import ca.spottedleaf.moonrise.patches.chunk_system.level.ChunkSystemServerLevel;
|
||||
import ca.spottedleaf.moonrise.patches.chunk_system.level.chunk.ChunkSystemLevelChunk;
|
||||
import ca.spottedleaf.moonrise.patches.chunk_system.player.RegionizedPlayerChunkLoader;
|
||||
import ca.spottedleaf.moonrise.patches.chunk_system.world.ChunkSystemServerChunkCache;
|
||||
import ca.spottedleaf.moonrise.patches.chunk_tick_iteration.ChunkTickServerLevel;
|
||||
import ca.spottledleaf.moonrise.compat.lithium.LithiumHooks;
|
||||
import net.minecraft.server.level.ChunkHolder;
|
||||
import net.minecraft.server.level.FullChunkStatus;
|
||||
import net.minecraft.server.level.ServerLevel;
|
||||
@@ -19,6 +21,8 @@ import java.util.function.Consumer;
|
||||
|
||||
public abstract class BaseChunkSystemHooks implements ChunkSystemHooks {
|
||||
|
||||
private final boolean hasLithium = ((PlatformHooks)this).isModLoaded("lithium");
|
||||
|
||||
@Override
|
||||
public void scheduleChunkTask(final ServerLevel level, final int chunkX, final int chunkZ, final Runnable run) {
|
||||
scheduleChunkTask(level, chunkX, chunkZ, run, Priority.NORMAL);
|
||||
@@ -101,6 +105,9 @@ public abstract class BaseChunkSystemHooks implements ChunkSystemHooks {
|
||||
((ChunkSystemServerLevel)((ServerLevel)chunk.getLevel())).moonrise$getLoadedChunks().add(
|
||||
((ChunkSystemLevelChunk)chunk).moonrise$getChunkAndHolder()
|
||||
);
|
||||
if (this.hasLithium) {
|
||||
LithiumHooks.onChunkAccessible((ServerLevel) chunk.getLevel(), chunk);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -108,6 +115,9 @@ public abstract class BaseChunkSystemHooks implements ChunkSystemHooks {
|
||||
((ChunkSystemServerLevel)((ServerLevel)chunk.getLevel())).moonrise$getLoadedChunks().remove(
|
||||
((ChunkSystemLevelChunk)chunk).moonrise$getChunkAndHolder()
|
||||
);
|
||||
if (this.hasLithium) {
|
||||
LithiumHooks.onChunkInaccessible((ServerLevel) chunk.getLevel(), chunk.getPos());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -28,43 +28,64 @@ public class TickThread extends Thread {
|
||||
|
||||
public static void ensureTickThread(final Level world, final BlockPos pos, final String reason) {
|
||||
if (!isTickThreadFor(world, pos)) {
|
||||
LOGGER.error("Thread " + Thread.currentThread().getName() + " failed main thread check: " + reason, new Throwable());
|
||||
throw new IllegalStateException(reason);
|
||||
final String ex = "Thread " + Thread.currentThread().getName() + " failed main thread check: " +
|
||||
reason + ", world=" + WorldUtil.getWorldName(world) + ", block_pos=" + pos;
|
||||
LOGGER.error(ex, new Throwable());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static void ensureTickThread(final Level world, final BlockPos pos, final int blockRadius, final String reason) {
|
||||
if (!isTickThreadFor(world, pos, blockRadius)) {
|
||||
final String ex = "Thread " + Thread.currentThread().getName() + " failed main thread check: " +
|
||||
reason + ", world=" + WorldUtil.getWorldName(world) + ", block_pos=" + pos + ", block_radius=" + blockRadius;
|
||||
LOGGER.error(ex, new Throwable());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static void ensureTickThread(final Level world, final ChunkPos pos, final String reason) {
|
||||
if (!isTickThreadFor(world, pos)) {
|
||||
LOGGER.error("Thread " + Thread.currentThread().getName() + " failed main thread check: " + reason, new Throwable());
|
||||
throw new IllegalStateException(reason);
|
||||
final String ex = "Thread " + Thread.currentThread().getName() + " failed main thread check: " +
|
||||
reason + ", world=" + WorldUtil.getWorldName(world) + ", chunk_pos=" + pos;
|
||||
LOGGER.error(ex, new Throwable());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static void ensureTickThread(final Level world, final int chunkX, final int chunkZ, final String reason) {
|
||||
if (!isTickThreadFor(world, chunkX, chunkZ)) {
|
||||
LOGGER.error("Thread " + Thread.currentThread().getName() + " failed main thread check: " + reason, new Throwable());
|
||||
throw new IllegalStateException(reason);
|
||||
final String ex = "Thread " + Thread.currentThread().getName() + " failed main thread check: " +
|
||||
reason + ", world=" + WorldUtil.getWorldName(world) + ", chunk_pos=" + new ChunkPos(chunkX, chunkZ);
|
||||
LOGGER.error(ex, new Throwable());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static void ensureTickThread(final Entity entity, final String reason) {
|
||||
if (!isTickThreadFor(entity)) {
|
||||
LOGGER.error("Thread " + Thread.currentThread().getName() + " failed main thread check: " + reason, new Throwable());
|
||||
throw new IllegalStateException(reason);
|
||||
final String ex = "Thread " + Thread.currentThread().getName() + " failed main thread check: " +
|
||||
reason + ", entity=" + entity;
|
||||
LOGGER.error(ex, new Throwable());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static void ensureTickThread(final Level world, final AABB aabb, final String reason) {
|
||||
if (!isTickThreadFor(world, aabb)) {
|
||||
LOGGER.error("Thread " + Thread.currentThread().getName() + " failed main thread check: " + reason, new Throwable());
|
||||
throw new IllegalStateException(reason);
|
||||
final String ex = "Thread " + Thread.currentThread().getName() + " failed main thread check: " +
|
||||
reason + ", world=" + WorldUtil.getWorldName(world) + ", aabb=" + aabb;
|
||||
LOGGER.error(ex, new Throwable());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static void ensureTickThread(final Level world, final double blockX, final double blockZ, final String reason) {
|
||||
if (!isTickThreadFor(world, blockX, blockZ)) {
|
||||
LOGGER.error("Thread " + Thread.currentThread().getName() + " failed main thread check: " + reason, new Throwable());
|
||||
throw new IllegalStateException(reason);
|
||||
final String ex = "Thread " + Thread.currentThread().getName() + " failed main thread check: " +
|
||||
reason + ", world=" + WorldUtil.getWorldName(world) + ", block_pos=" + new Vec3(blockX, 0.0, blockZ);
|
||||
LOGGER.error(ex, new Throwable());
|
||||
throw new IllegalStateException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -105,6 +126,10 @@ public class TickThread extends Thread {
|
||||
return isTickThread();
|
||||
}
|
||||
|
||||
public static boolean isTickThreadFor(final Level world, final BlockPos pos, final int blockRadius) {
|
||||
return isTickThread();
|
||||
}
|
||||
|
||||
public static boolean isTickThreadFor(final Level world, final ChunkPos pos) {
|
||||
return isTickThread();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user