9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-23 17:09:19 +00:00

added MEG & BM support

This commit is contained in:
XiaoMoMi
2025-04-01 03:42:17 +08:00
parent 61762e314d
commit 8ecc78b28a
21 changed files with 240 additions and 123 deletions

View File

@@ -7,6 +7,7 @@ repositories {
maven("https://repo.rapture.pw/repository/maven-releases/") // slime world maven("https://repo.rapture.pw/repository/maven-releases/") // slime world
maven("https://repo.infernalsuite.com/repository/maven-snapshots/") // slime world maven("https://repo.infernalsuite.com/repository/maven-snapshots/") // slime world
maven("https://repo.momirealms.net/releases/") maven("https://repo.momirealms.net/releases/")
maven("https://mvn.lumine.io/repository/maven-public/") // model engine
} }
dependencies { dependencies {
@@ -23,6 +24,10 @@ dependencies {
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.19") compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.19")
// SlimeWorld // SlimeWorld
compileOnly("com.infernalsuite.asp:api:4.0.0-SNAPSHOT") compileOnly("com.infernalsuite.asp:api:4.0.0-SNAPSHOT")
// ModelEngine
compileOnly("com.ticxo.modelengine:ModelEngine:R4.0.8")
// BetterModels
compileOnly("io.github.toxicity188:BetterModel:1.4.2")
} }
java { java {

View File

@@ -0,0 +1,22 @@
package net.momirealms.craftengine.bukkit.compatibility.bettermodel;
import net.momirealms.craftengine.core.entity.Entity;
import net.momirealms.craftengine.core.entity.furniture.AbstractExternalModel;
public class BetterModelModel extends AbstractExternalModel {
public BetterModelModel(String id) {
super(id);
}
@Override
public String plugin() {
return "BetterModel";
}
@Override
public void bindModel(Entity entity) {
org.bukkit.entity.Entity bukkitEntity = (org.bukkit.entity.Entity) entity.literalObject();
BetterModelUtils.bindModel(bukkitEntity, id());
}
}

View File

@@ -0,0 +1,16 @@
package net.momirealms.craftengine.bukkit.compatibility.bettermodel;
import kr.toxicity.model.api.BetterModel;
import kr.toxicity.model.api.data.renderer.BlueprintRenderer;
import org.bukkit.entity.Entity;
public class BetterModelUtils {
public static void bindModel(Entity base, String id) {
BlueprintRenderer renderer = BetterModel.inst().modelManager().renderer(id);
if (renderer == null) {
throw new NullPointerException("Could not find BetterModel blueprint " + id);
}
renderer.create(base);
}
}

View File

@@ -0,0 +1,22 @@
package net.momirealms.craftengine.bukkit.compatibility.modelengine;
import net.momirealms.craftengine.core.entity.Entity;
import net.momirealms.craftengine.core.entity.furniture.AbstractExternalModel;
public class ModelEngineModel extends AbstractExternalModel {
public ModelEngineModel(String id) {
super(id);
}
@Override
public String plugin() {
return "ModelEngine";
}
@Override
public void bindModel(Entity entity) {
org.bukkit.entity.Entity bukkitEntity = (org.bukkit.entity.Entity) entity.literalObject();
ModelEngineUtils.bindModel(bukkitEntity, id());
}
}

View File

@@ -0,0 +1,15 @@
package net.momirealms.craftengine.bukkit.compatibility.modelengine;
import com.ticxo.modelengine.api.ModelEngineAPI;
import com.ticxo.modelengine.api.model.ActiveModel;
import com.ticxo.modelengine.api.model.ModeledEntity;
import org.bukkit.entity.Entity;
public class ModelEngineUtils {
public static void bindModel(Entity base, String id) {
ModeledEntity modeledEntity = ModelEngineAPI.createModeledEntity(base);
ActiveModel activeModel = ModelEngineAPI.createActiveModel(id);
modeledEntity.addModel(activeModel, true);
}
}

View File

@@ -140,9 +140,6 @@ furniture:
- "xxx:invalid_furniture" - "xxx:invalid_furniture"
# Whether to hide the entity containing metadata # Whether to hide the entity containing metadata
hide-base-entity: true hide-base-entity: true
# Removed collision box entity texture
removed-collision-box-entity-texture-1_20_2: true
removed-collision-box-entity-texture-1_20: false
image: image:
# Prevent players from using images set in minecraft:default font # Prevent players from using images set in minecraft:default font

View File

@@ -0,0 +1,65 @@
package net.momirealms.craftengine.bukkit.entity;
import net.momirealms.craftengine.bukkit.world.BukkitWorld;
import net.momirealms.craftengine.core.entity.Entity;
import net.momirealms.craftengine.core.util.Direction;
import net.momirealms.craftengine.core.world.World;
import java.lang.ref.WeakReference;
public class BukkitEntity extends Entity {
private final WeakReference<org.bukkit.entity.Entity> entity;
public BukkitEntity(org.bukkit.entity.Entity entity) {
this.entity = new WeakReference<>(entity);
}
@Override
public double x() {
return literalObject().getLocation().getX();
}
@Override
public double y() {
return literalObject().getLocation().getY();
}
@Override
public double z() {
return literalObject().getLocation().getZ();
}
@Override
public void tick() {
}
@Override
public int entityID() {
return literalObject().getEntityId();
}
@Override
public float getXRot() {
return literalObject().getLocation().getYaw();
}
@Override
public float getYRot() {
return literalObject().getLocation().getPitch();
}
@Override
public World level() {
return new BukkitWorld(literalObject().getWorld());
}
@Override
public Direction getDirection() {
return Direction.NORTH;
}
@Override
public org.bukkit.entity.Entity literalObject() {
return this.entity.get();
}
}

View File

@@ -1,5 +1,7 @@
package net.momirealms.craftengine.bukkit.entity.furniture; package net.momirealms.craftengine.bukkit.entity.furniture;
import net.momirealms.craftengine.bukkit.compatibility.bettermodel.BetterModelModel;
import net.momirealms.craftengine.bukkit.compatibility.modelengine.ModelEngineModel;
import net.momirealms.craftengine.bukkit.entity.furniture.hitbox.InteractionHitBox; import net.momirealms.craftengine.bukkit.entity.furniture.hitbox.InteractionHitBox;
import net.momirealms.craftengine.bukkit.nms.FastNMS; import net.momirealms.craftengine.bukkit.nms.FastNMS;
import net.momirealms.craftengine.bukkit.plugin.BukkitCraftEngine; import net.momirealms.craftengine.bukkit.plugin.BukkitCraftEngine;
@@ -39,7 +41,7 @@ public class BukkitFurnitureManager implements FurnitureManager {
private final Map<Key, CustomFurniture> byId = new HashMap<>(); private final Map<Key, CustomFurniture> byId = new HashMap<>();
private final Map<Integer, LoadedFurniture> furnitureByBaseEntityId = new ConcurrentHashMap<>(256, 0.5f); private final Map<Integer, LoadedFurniture> furnitureByBaseEntityId = new ConcurrentHashMap<>(256, 0.5f);
private final Map<Integer, LoadedFurniture> furnitureByInteractionEntityId = new ConcurrentHashMap<>(512, 0.5f); private final Map<Integer, LoadedFurniture> furnitureByEntityId = new ConcurrentHashMap<>(512, 0.5f);
// Event listeners // Event listeners
private final Listener dismountListener; private final Listener dismountListener;
private final FurnitureEventListener furnitureEventListener; private final FurnitureEventListener furnitureEventListener;
@@ -150,6 +152,16 @@ public class BukkitFurnitureManager implements FurnitureManager {
} }
} }
// external model providers
Optional<ExternalModel> externalModel;
if (placementArguments.containsKey("model-engine")) {
externalModel = Optional.of(new ModelEngineModel(placementArguments.get("model-engine").toString()));
} else if (placementArguments.containsKey("better-model")) {
externalModel = Optional.of(new BetterModelModel(placementArguments.get("better-model").toString()));
} else {
externalModel = Optional.empty();
}
// add hitboxes // add hitboxes
List<Map<String, Object>> hitboxConfigs = (List<Map<String, Object>>) placementArguments.getOrDefault("hitboxes", List.of()); List<Map<String, Object>> hitboxConfigs = (List<Map<String, Object>>) placementArguments.getOrDefault("hitboxes", List.of());
List<HitBox> hitboxes = new ArrayList<>(); List<HitBox> hitboxes = new ArrayList<>();
@@ -158,7 +170,7 @@ public class BukkitFurnitureManager implements FurnitureManager {
hitboxes.add(hitBox); hitboxes.add(hitBox);
hitBox.optionCollider().ifPresent(colliders::add); hitBox.optionCollider().ifPresent(colliders::add);
} }
if (hitboxes.isEmpty()) { if (hitboxes.isEmpty() && externalModel.isEmpty()) {
hitboxes.add(InteractionHitBox.DEFAULT); hitboxes.add(InteractionHitBox.DEFAULT);
} }
@@ -176,7 +188,8 @@ public class BukkitFurnitureManager implements FurnitureManager {
hitboxes.toArray(new HitBox[0]), hitboxes.toArray(new HitBox[0]),
colliders.toArray(new Collider[0]), colliders.toArray(new Collider[0]),
rotationRule, rotationRule,
alignmentRule alignmentRule,
externalModel
)); ));
} else { } else {
placements.put(anchorType, new CustomFurniture.Placement( placements.put(anchorType, new CustomFurniture.Placement(
@@ -184,7 +197,8 @@ public class BukkitFurnitureManager implements FurnitureManager {
hitboxes.toArray(new HitBox[0]), hitboxes.toArray(new HitBox[0]),
colliders.toArray(new Collider[0]), colliders.toArray(new Collider[0]),
RotationRule.ANY, RotationRule.ANY,
AlignmentRule.CENTER AlignmentRule.CENTER,
externalModel
)); ));
} }
} }
@@ -252,8 +266,8 @@ public class BukkitFurnitureManager implements FurnitureManager {
} }
@Nullable @Nullable
public LoadedFurniture getLoadedFurnitureByInteractionEntityId(int entityId) { public LoadedFurniture getLoadedFurnitureByEntityId(int entityId) {
return this.furnitureByInteractionEntityId.get(entityId); return this.furnitureByEntityId.get(entityId);
} }
protected void handleBaseFurnitureUnload(Entity entity) { protected void handleBaseFurnitureUnload(Entity entity) {
@@ -261,8 +275,8 @@ public class BukkitFurnitureManager implements FurnitureManager {
LoadedFurniture furniture = this.furnitureByBaseEntityId.remove(id); LoadedFurniture furniture = this.furnitureByBaseEntityId.remove(id);
if (furniture != null) { if (furniture != null) {
furniture.destroySeats(); furniture.destroySeats();
for (int sub : furniture.hitBoxEntityIds()) { for (int sub : furniture.entityIds()) {
this.furnitureByInteractionEntityId.remove(sub); this.furnitureByEntityId.remove(sub);
} }
} }
} }
@@ -284,7 +298,7 @@ public class BukkitFurnitureManager implements FurnitureManager {
} }
LoadedFurniture furniture = addNewFurniture(display, customFurniture, getAnchorType(entity, customFurniture)); LoadedFurniture furniture = addNewFurniture(display, customFurniture, getAnchorType(entity, customFurniture));
for (Player player : display.getTrackedPlayers()) { for (Player player : display.getTrackedPlayers()) {
this.plugin.adapt(player).furnitureView().computeIfAbsent(furniture.baseEntityId(), k -> new ArrayList<>()).addAll(furniture.subEntityIds()); this.plugin.adapt(player).furnitureView().computeIfAbsent(furniture.baseEntityId(), k -> new ArrayList<>()).addAll(furniture.fakeEntityIds());
this.plugin.networkManager().sendPacket(player, furniture.spawnPacket(player)); this.plugin.networkManager().sendPacket(player, furniture.spawnPacket(player));
} }
} }
@@ -331,8 +345,8 @@ public class BukkitFurnitureManager implements FurnitureManager {
private synchronized LoadedFurniture addNewFurniture(ItemDisplay display, CustomFurniture furniture, AnchorType anchorType) { private synchronized LoadedFurniture addNewFurniture(ItemDisplay display, CustomFurniture furniture, AnchorType anchorType) {
LoadedFurniture loadedFurniture = new LoadedFurniture(display, furniture, anchorType); LoadedFurniture loadedFurniture = new LoadedFurniture(display, furniture, anchorType);
this.furnitureByBaseEntityId.put(loadedFurniture.baseEntityId(), loadedFurniture); this.furnitureByBaseEntityId.put(loadedFurniture.baseEntityId(), loadedFurniture);
for (int entityId : loadedFurniture.hitBoxEntityIds()) { for (int entityId : loadedFurniture.entityIds()) {
this.furnitureByInteractionEntityId.put(entityId, loadedFurniture); this.furnitureByEntityId.put(entityId, loadedFurniture);
} }
return loadedFurniture; return loadedFurniture;
} }

View File

@@ -1,5 +1,6 @@
package net.momirealms.craftengine.bukkit.entity.furniture; package net.momirealms.craftengine.bukkit.entity.furniture;
import net.momirealms.craftengine.bukkit.entity.BukkitEntity;
import net.momirealms.craftengine.bukkit.nms.CollisionEntity; import net.momirealms.craftengine.bukkit.nms.CollisionEntity;
import net.momirealms.craftengine.bukkit.nms.FastNMS; import net.momirealms.craftengine.bukkit.nms.FastNMS;
import net.momirealms.craftengine.bukkit.util.EntityUtils; import net.momirealms.craftengine.bukkit.util.EntityUtils;
@@ -36,9 +37,10 @@ public class LoadedFurniture {
private final CollisionEntity[] collisionEntities; private final CollisionEntity[] collisionEntities;
// cache // cache
private final List<Integer> fakeEntityIds; private final List<Integer> fakeEntityIds;
private final List<Integer> hitBoxEntityIds; private final List<Integer> entityIds;
private final Map<Integer, HitBox> hitBoxes; private final Map<Integer, HitBox> hitBoxes;
private final boolean minimized; private final boolean minimized;
private final boolean hasExternalModel;
// seats // seats
private final Set<Vector3f> occupiedSeats = Collections.synchronizedSet(new HashSet<>()); private final Set<Vector3f> occupiedSeats = Collections.synchronizedSet(new HashSet<>());
private final Vector<Entity> seats = new Vector<>(); private final Vector<Entity> seats = new Vector<>();
@@ -58,8 +60,22 @@ public class LoadedFurniture {
this.hitBoxes = new HashMap<>(); this.hitBoxes = new HashMap<>();
this.minimized = furniture.settings().minimized(); this.minimized = furniture.settings().minimized();
List<Integer> fakeEntityIds = new ArrayList<>(); List<Integer> fakeEntityIds = new ArrayList<>();
List<Integer> hitBoxEntityIds = new ArrayList<>(); List<Integer> mainEntityIds = new ArrayList<>();
mainEntityIds.add(this.baseEntityId);
CustomFurniture.Placement placement = furniture.getPlacement(anchorType); CustomFurniture.Placement placement = furniture.getPlacement(anchorType);
// bind external furniture
Optional<ExternalModel> optionalExternal = placement.externalModel();
if (optionalExternal.isPresent()) {
try {
optionalExternal.get().bindModel(new BukkitEntity(baseEntity));
} catch (Exception e) {
CraftEngine.instance().logger().warn("Failed to load external model for furniture " + id, e);
}
hasExternalModel = true;
} else {
hasExternalModel = false;
}
double yawInRadius = Math.toRadians(180 - this.location.getYaw()); double yawInRadius = Math.toRadians(180 - this.location.getYaw());
Quaternionf conjugated = QuaternionUtils.toQuaternionf(0, yawInRadius, 0).conjugate(); Quaternionf conjugated = QuaternionUtils.toQuaternionf(0, yawInRadius, 0).conjugate();
@@ -83,7 +99,7 @@ public class LoadedFurniture {
int[] ids = hitBox.acquireEntityIds(Reflections.instance$Entity$ENTITY_COUNTER::incrementAndGet); int[] ids = hitBox.acquireEntityIds(Reflections.instance$Entity$ENTITY_COUNTER::incrementAndGet);
for (int entityId : ids) { for (int entityId : ids) {
fakeEntityIds.add(entityId); fakeEntityIds.add(entityId);
hitBoxEntityIds.add(entityId); mainEntityIds.add(entityId);
hitBox.addSpawnPackets(ids, x, y, z, yaw, conjugated, (packet, canBeMinimized) -> { hitBox.addSpawnPackets(ids, x, y, z, yaw, conjugated, (packet, canBeMinimized) -> {
packets.add(packet); packets.add(packet);
if (this.minimized && !canBeMinimized) { if (this.minimized && !canBeMinimized) {
@@ -102,7 +118,7 @@ public class LoadedFurniture {
CraftEngine.instance().logger().warn("Failed to init spawn packets for furniture " + id, e); CraftEngine.instance().logger().warn("Failed to init spawn packets for furniture " + id, e);
} }
this.fakeEntityIds = fakeEntityIds; this.fakeEntityIds = fakeEntityIds;
this.hitBoxEntityIds = hitBoxEntityIds; this.entityIds = mainEntityIds;
int colliderSize = placement.colliders().length; int colliderSize = placement.colliders().length;
this.collisionEntities = new CollisionEntity[colliderSize]; this.collisionEntities = new CollisionEntity[colliderSize];
if (colliderSize != 0) { if (colliderSize != 0) {
@@ -215,12 +231,12 @@ public class LoadedFurniture {
} }
@NotNull @NotNull
public List<Integer> hitBoxEntityIds() { public List<Integer> entityIds() {
return Collections.unmodifiableList(this.hitBoxEntityIds); return Collections.unmodifiableList(this.entityIds);
} }
@NotNull @NotNull
public List<Integer> subEntityIds() { public List<Integer> fakeEntityIds() {
return Collections.unmodifiableList(this.fakeEntityIds); return Collections.unmodifiableList(this.fakeEntityIds);
} }
@@ -239,6 +255,10 @@ public class LoadedFurniture {
return this.furniture; return this.furniture;
} }
public boolean hasExternalModel() {
return hasExternalModel;
}
public void spawnSeatEntityForPlayer(org.bukkit.entity.Player player, Seat seat) { public void spawnSeatEntityForPlayer(org.bukkit.entity.Player player, Seat seat) {
Location location = this.calculateSeatLocation(seat); Location location = this.calculateSeatLocation(seat);
Entity seatEntity = seat.limitPlayerRotation() ? Entity seatEntity = seat.limitPlayerRotation() ?

View File

@@ -8,7 +8,6 @@ import org.joml.Vector3f;
import java.util.Map; import java.util.Map;
import java.util.function.BiConsumer; import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Supplier; import java.util.function.Supplier;
public class HappyGhastHitBox extends AbstractHitBox { public class HappyGhastHitBox extends AbstractHitBox {

View File

@@ -13,7 +13,6 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.UUID; import java.util.UUID;
import java.util.function.BiConsumer; import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Supplier; import java.util.function.Supplier;
public class InteractionHitBox extends AbstractHitBox { public class InteractionHitBox extends AbstractHitBox {

View File

@@ -3,7 +3,6 @@ package net.momirealms.craftengine.bukkit.entity.furniture.hitbox;
import net.momirealms.craftengine.bukkit.entity.data.InteractionEntityData; import net.momirealms.craftengine.bukkit.entity.data.InteractionEntityData;
import net.momirealms.craftengine.bukkit.entity.data.ShulkerData; import net.momirealms.craftengine.bukkit.entity.data.ShulkerData;
import net.momirealms.craftengine.bukkit.nms.FastNMS; import net.momirealms.craftengine.bukkit.nms.FastNMS;
import net.momirealms.craftengine.bukkit.util.DirectionUtils;
import net.momirealms.craftengine.bukkit.util.Reflections; import net.momirealms.craftengine.bukkit.util.Reflections;
import net.momirealms.craftengine.core.entity.furniture.*; import net.momirealms.craftengine.core.entity.furniture.*;
import net.momirealms.craftengine.core.util.Direction; import net.momirealms.craftengine.core.util.Direction;

View File

@@ -557,7 +557,7 @@ public class PacketConsumers {
public static final TriConsumer<NetWorkUser, NMSPacketEvent, Object> PICK_ITEM_FROM_ENTITY = (user, event, packet) -> { public static final TriConsumer<NetWorkUser, NMSPacketEvent, Object> PICK_ITEM_FROM_ENTITY = (user, event, packet) -> {
try { try {
int entityId = (int) Reflections.field$ServerboundPickItemFromEntityPacket$id.get(packet); int entityId = (int) Reflections.field$ServerboundPickItemFromEntityPacket$id.get(packet);
LoadedFurniture furniture = BukkitFurnitureManager.instance().getLoadedFurnitureByInteractionEntityId(entityId); LoadedFurniture furniture = BukkitFurnitureManager.instance().getLoadedFurnitureByEntityId(entityId);
if (furniture == null) return; if (furniture == null) return;
Player player = (Player) user.platformPlayer(); Player player = (Player) user.platformPlayer();
if (player == null) return; if (player == null) return;
@@ -618,9 +618,9 @@ public class PacketConsumers {
int entityId = (int) Reflections.field$ClientboundAddEntityPacket$entityId.get(packet); int entityId = (int) Reflections.field$ClientboundAddEntityPacket$entityId.get(packet);
LoadedFurniture furniture = BukkitFurnitureManager.instance().getLoadedFurnitureByBaseEntityId(entityId); LoadedFurniture furniture = BukkitFurnitureManager.instance().getLoadedFurnitureByBaseEntityId(entityId);
if (furniture != null) { if (furniture != null) {
user.furnitureView().computeIfAbsent(furniture.baseEntityId(), k -> new ArrayList<>()).addAll(furniture.subEntityIds()); user.furnitureView().computeIfAbsent(furniture.baseEntityId(), k -> new ArrayList<>()).addAll(furniture.fakeEntityIds());
user.sendPacket(furniture.spawnPacket((Player) user.platformPlayer()), false); user.sendPacket(furniture.spawnPacket((Player) user.platformPlayer()), false);
if (ConfigManager.hideBaseEntity()) { if (ConfigManager.hideBaseEntity() && !furniture.hasExternalModel()) {
event.setCancelled(true); event.setCancelled(true);
} }
} }
@@ -675,7 +675,7 @@ public class PacketConsumers {
Object action = Reflections.field$ServerboundInteractPacket$action.get(packet); Object action = Reflections.field$ServerboundInteractPacket$action.get(packet);
Object actionType = Reflections.method$ServerboundInteractPacket$Action$getType.invoke(action); Object actionType = Reflections.method$ServerboundInteractPacket$Action$getType.invoke(action);
if (actionType == null) return; if (actionType == null) return;
LoadedFurniture furniture = BukkitFurnitureManager.instance().getLoadedFurnitureByInteractionEntityId(entityId); LoadedFurniture furniture = BukkitFurnitureManager.instance().getLoadedFurnitureByEntityId(entityId);
if (furniture == null) return; if (furniture == null) return;
Location location = furniture.baseEntity().getLocation(); Location location = furniture.baseEntity().getLocation();
BukkitServerPlayer serverPlayer = (BukkitServerPlayer) user; BukkitServerPlayer serverPlayer = (BukkitServerPlayer) user;

View File

@@ -596,6 +596,11 @@ public class BukkitServerPlayer extends Player {
return playerRef.get(); return playerRef.get();
} }
@Override
public org.bukkit.entity.Player literalObject() {
return platformPlayer();
}
@Override @Override
public Map<Integer, List<Integer>> furnitureView() { public Map<Integer, List<Integer>> furnitureView() {
return this.furnitureView; return this.furnitureView;

View File

@@ -22,4 +22,6 @@ public abstract class Entity {
public abstract World level(); public abstract World level();
public abstract Direction getDirection(); public abstract Direction getDirection();
public abstract Object literalObject();
} }

View File

@@ -0,0 +1,13 @@
package net.momirealms.craftengine.core.entity.furniture;
public abstract class AbstractExternalModel implements ExternalModel {
protected final String id;
public AbstractExternalModel(String id) {
this.id = id;
}
public String id() {
return id;
}
}

View File

@@ -6,6 +6,7 @@ import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
import java.util.EnumMap; import java.util.EnumMap;
import java.util.Optional;
public class CustomFurniture { public class CustomFurniture {
private final Key id; private final Key id;
@@ -55,7 +56,11 @@ public class CustomFurniture {
return placements.get(anchorType); return placements.get(anchorType);
} }
public record Placement(FurnitureElement[] elements, HitBox[] hitBoxes, Collider[] colliders, public record Placement(FurnitureElement[] elements,
RotationRule rotationRule, AlignmentRule alignmentRule) { HitBox[] hitBoxes,
Collider[] colliders,
RotationRule rotationRule,
AlignmentRule alignmentRule,
Optional<ExternalModel> externalModel) {
} }
} }

View File

@@ -0,0 +1,12 @@
package net.momirealms.craftengine.core.entity.furniture;
import net.momirealms.craftengine.core.entity.Entity;
public interface ExternalModel {
String plugin();
String id();
void bindModel(Entity entity);
}

View File

@@ -6,7 +6,6 @@ import org.joml.Vector3f;
import java.util.Optional; import java.util.Optional;
import java.util.function.BiConsumer; import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Supplier; import java.util.function.Supplier;
public interface HitBox { public interface HitBox {

View File

@@ -27,9 +27,6 @@ import org.jetbrains.annotations.NotNull;
import org.yaml.snakeyaml.LoaderOptions; import org.yaml.snakeyaml.LoaderOptions;
import org.yaml.snakeyaml.Yaml; import org.yaml.snakeyaml.Yaml;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*; import java.io.*;
import java.lang.reflect.Constructor; import java.lang.reflect.Constructor;
import java.lang.reflect.Method; import java.lang.reflect.Method;
@@ -38,7 +35,6 @@ import java.nio.file.*;
import java.nio.file.attribute.BasicFileAttributes; import java.nio.file.attribute.BasicFileAttributes;
import java.security.MessageDigest; import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException; import java.security.NoSuchAlgorithmException;
import java.util.List;
import java.util.*; import java.util.*;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import java.util.function.BiConsumer; import java.util.function.BiConsumer;
@@ -499,7 +495,6 @@ public abstract class AbstractPackManager implements PackManager {
this.generateCustomSounds(generatedPackPath); this.generateCustomSounds(generatedPackPath);
this.generateClientLang(generatedPackPath); this.generateClientLang(generatedPackPath);
this.generateEquipments(generatedPackPath); this.generateEquipments(generatedPackPath);
this.generateShulker(generatedPackPath);
Path zipFile = resourcePackPath(); Path zipFile = resourcePackPath();
try { try {
@@ -530,81 +525,6 @@ public abstract class AbstractPackManager implements PackManager {
} }
} }
private void generateShulker(Path generatedPackPath) {
try {
if (ConfigManager.removedCollisionBoxEntityTextureLegacy()) {
File shulkerFile = generatedPackPath.resolve("assets/minecraft/textures/entity/shulker/shulker.png").toFile();
shulkerFile.getParentFile().mkdirs();
if (!shulkerFile.exists()) {
try (OutputStream out = new FileOutputStream(shulkerFile)) {
out.write(SHULKER_PNG.get(0));
}
} else {
this.modifyShulker(shulkerFile, shulkerFile);
}
}
if (ConfigManager.removedCollisionBoxEntityTexture()) {
File overlaysFile = generatedPackPath.resolve("1_20_2_ce/assets/minecraft/textures/entity/shulker/shulker.png").toFile();
overlaysFile.getParentFile().mkdirs();
File shulkerFile = generatedPackPath.resolve("assets/minecraft/textures/entity/shulker/shulker.png").toFile();
File packMetaFile = generatedPackPath.resolve("pack.mcmeta").toFile();
boolean modifyPackMetaFile = false;
if (!shulkerFile.exists() && packMetaFile.exists()) {
try (OutputStream out = new FileOutputStream(overlaysFile)) {
out.write(SHULKER_PNG.get(0));
}
modifyPackMetaFile = true;
} else if (packMetaFile.exists()) {
this.modifyShulker(shulkerFile, overlaysFile);
modifyPackMetaFile = true;
}
if (modifyPackMetaFile) {
JsonObject packMcmeta = GsonHelper.readJsonFile(packMetaFile.toPath()).getAsJsonObject();
JsonArray entries = packMcmeta.getAsJsonObject("overlays").getAsJsonArray("entries");
JsonObject entrie = new JsonObject();
JsonObject formats = new JsonObject();
formats.addProperty("min_inclusive", 16);
formats.addProperty("max_inclusive", 34);
entrie.add("formats", formats);
entrie.addProperty("directory", "1_20_2_ce");
entries.add(entrie);
GsonHelper.writeJsonFile(packMcmeta, packMetaFile.toPath());
}
}
} catch (IOException e) {
this.plugin.logger().warn("Error creating shulker.png", e);
}
}
private void modifyShulker(File shulkerFile, File saveFile) throws IOException {
BufferedImage originalImage = ImageIO.read(shulkerFile);
BufferedImage argbImage;
if (originalImage.getType() == BufferedImage.TYPE_INT_ARGB) {
argbImage = originalImage;
} else {
argbImage = new BufferedImage(
originalImage.getWidth(),
originalImage.getHeight(),
BufferedImage.TYPE_INT_ARGB
);
Graphics2D g = argbImage.createGraphics();
g.drawImage(originalImage, 0, 0, null);
g.dispose();
}
int startX = 0;
int startY = argbImage.getHeight() - 12;
int width = 24;
int heightRegion = 12;
for (int y = startY; y < startY + heightRegion; y++) {
for (int x = startX; x < startX + width; x++) {
int pixel = argbImage.getRGB(x, y);
int transparentPixel = pixel & 0x00FFFFFF;
argbImage.setRGB(x, y, transparentPixel);
}
}
ImageIO.write(argbImage, "PNG", saveFile);
}
private void generateEquipments(Path generatedPackPath) { private void generateEquipments(Path generatedPackPath) {
for (EquipmentGeneration generator : this.plugin.itemManager().equipmentsToGenerate()) { for (EquipmentGeneration generator : this.plugin.itemManager().equipmentsToGenerate()) {
EquipmentData equipmentData = generator.modernData(); EquipmentData equipmentData = generator.modernData();

View File

@@ -104,8 +104,6 @@ public class ConfigManager implements Reloadable {
protected boolean furniture$remove_invalid_furniture_on_chunk_load$enable; protected boolean furniture$remove_invalid_furniture_on_chunk_load$enable;
protected Set<String> furniture$remove_invalid_furniture_on_chunk_load$list; protected Set<String> furniture$remove_invalid_furniture_on_chunk_load$list;
protected boolean furniture$hide_base_entity; protected boolean furniture$hide_base_entity;
protected boolean furniture$removed_collision_box_entity_texture_1_20_2;
protected boolean furniture$removed_collision_box_entity_texture_1_20;
protected boolean block$sound_system$enable; protected boolean block$sound_system$enable;
protected boolean recipe$enable; protected boolean recipe$enable;
@@ -262,8 +260,6 @@ public class ConfigManager implements Reloadable {
furniture$remove_invalid_furniture_on_chunk_load$enable = config.getBoolean("furniture.remove-invalid-furniture-on-chunk-load.enable", false); furniture$remove_invalid_furniture_on_chunk_load$enable = config.getBoolean("furniture.remove-invalid-furniture-on-chunk-load.enable", false);
furniture$remove_invalid_furniture_on_chunk_load$list = new HashSet<>(config.getStringList("furniture.remove-invalid-furniture-on-chunk-load.list")); furniture$remove_invalid_furniture_on_chunk_load$list = new HashSet<>(config.getStringList("furniture.remove-invalid-furniture-on-chunk-load.list"));
furniture$hide_base_entity = config.getBoolean("furniture.hide-base-entity", true); furniture$hide_base_entity = config.getBoolean("furniture.hide-base-entity", true);
furniture$removed_collision_box_entity_texture_1_20_2 = config.getBoolean("furniture.removed-collision-box-entity-texture-1_20_2", true);
furniture$removed_collision_box_entity_texture_1_20 = config.getBoolean("furniture.removed-collision-box-entity-texture-1_20", false);
// block // block
block$sound_system$enable = config.getBoolean("block.sound-system.enable", true); block$sound_system$enable = config.getBoolean("block.sound-system.enable", true);
@@ -557,14 +553,6 @@ public class ConfigManager implements Reloadable {
return instance().furniture$hide_base_entity; return instance().furniture$hide_base_entity;
} }
public static boolean removedCollisionBoxEntityTexture() {
return instance().furniture$removed_collision_box_entity_texture_1_20_2;
}
public static boolean removedCollisionBoxEntityTextureLegacy() {
return instance().furniture$removed_collision_box_entity_texture_1_20;
}
public YamlDocument loadOrCreateYamlData(String fileName) { public YamlDocument loadOrCreateYamlData(String fileName) {
File file = new File(this.plugin.dataFolderFile(), fileName); File file = new File(this.plugin.dataFolderFile(), fileName);
if (!file.exists()) { if (!file.exists()) {