aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api
diff options
context:
space:
mode:
authorMary <33456283+FourIsTheNumber@users.noreply.github.com>2024-09-03 11:58:14 -0400
committerGitHub <noreply@github.com>2024-09-03 15:58:14 +0000
commit5b23b1a11a0b1249f3b853c346597243f93fbe6a (patch)
tree84ac3d473906d3d9c0fe12e329ce8fcdfcbf07d5 /src/main/java/gregtech/api
parentf9f95c4466ed7ee41bcdc68d981dfeaeb589796f (diff)
downloadGT5-Unofficial-5b23b1a11a0b1249f3b853c346597243f93fbe6a.tar.gz
GT5-Unofficial-5b23b1a11a0b1249f3b853c346597243f93fbe6a.tar.bz2
GT5-Unofficial-5b23b1a11a0b1249f3b853c346597243f93fbe6a.zip
Laser Engraver fixes (#3024)
* Better renderer adder, fixes plate not appearing in NEI preview * Lower minimum casing * New casing texture --------- Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/api')
-rw-r--r--src/main/java/gregtech/api/util/LaserRenderingUtil.java102
1 files changed, 0 insertions, 102 deletions
diff --git a/src/main/java/gregtech/api/util/LaserRenderingUtil.java b/src/main/java/gregtech/api/util/LaserRenderingUtil.java
deleted file mode 100644
index e42d23bc85..0000000000
--- a/src/main/java/gregtech/api/util/LaserRenderingUtil.java
+++ /dev/null
@@ -1,102 +0,0 @@
-package gregtech.api.util;
-
-import java.util.function.Consumer;
-
-import net.minecraft.block.Block;
-import net.minecraft.entity.player.EntityPlayerMP;
-import net.minecraft.item.ItemStack;
-import net.minecraft.util.IChatComponent;
-import net.minecraft.world.World;
-
-import com.gtnewhorizon.structurelib.StructureLibAPI;
-import com.gtnewhorizon.structurelib.structure.ICustomBlockSetting;
-import com.gtnewhorizon.structurelib.structure.IItemSource;
-import com.gtnewhorizon.structurelib.structure.IStructureElement;
-import com.gtnewhorizon.structurelib.structure.StructureUtility;
-
-public class LaserRenderingUtil {
- // This code is shamelessly ripped from GTNH-Intergalactic
-
- public interface IBlockAdder<T> {
-
- /**
- * Callback on block added, needs to check if block is valid (and add it)
- *
- * @param block block attempted to add
- * @param meta meta of block attempted to add
- * @param world World of the block
- * @param x X coordinate of the block
- * @param y Y coordinate of the block
- * @param z Z coordinate of the block
- * @return is structure still valid
- */
- boolean apply(T t, Block block, int meta, World world, int x, int y, int z);
- }
-
- public static <T> IStructureElement<T> ofBlockAdder(IBlockAdder<T> iBlockAdder, Block defaultBlock,
- int defaultMeta) {
- if (iBlockAdder == null || defaultBlock == null) {
- throw new IllegalArgumentException();
- }
- if (defaultBlock instanceof ICustomBlockSetting) {
- return new IStructureElement<T>() {
-
- @Override
- public boolean check(T t, World world, int x, int y, int z) {
- Block worldBlock = world.getBlock(x, y, z);
- return iBlockAdder.apply(t, worldBlock, worldBlock.getDamageValue(world, x, y, z), world, x, y, z);
- }
-
- @Override
- public boolean placeBlock(T t, World world, int x, int y, int z, ItemStack trigger) {
- ((ICustomBlockSetting) defaultBlock).setBlock(world, x, y, z, defaultMeta);
- return true;
- }
-
- @Override
- public boolean spawnHint(T t, World world, int x, int y, int z, ItemStack trigger) {
- StructureLibAPI.hintParticle(world, x, y, z, defaultBlock, defaultMeta);
- return true;
- }
-
- @Override
- public PlaceResult survivalPlaceBlock(T t, World world, int x, int y, int z, ItemStack trigger,
- IItemSource s, EntityPlayerMP actor, Consumer<IChatComponent> chatter) {
- if (check(t, world, x, y, z)) return PlaceResult.SKIP;
- return StructureUtility
- .survivalPlaceBlock(defaultBlock, defaultMeta, world, x, y, z, s, actor, chatter);
- }
- };
- } else {
- return new IStructureElement<T>() {
-
- @Override
- public boolean check(T t, World world, int x, int y, int z) {
- Block worldBlock = world.getBlock(x, y, z);
- return iBlockAdder
- .apply(t, worldBlock, ((Block) worldBlock).getDamageValue(world, x, y, z), world, x, y, z);
- }
-
- @Override
- public boolean placeBlock(T t, World world, int x, int y, int z, ItemStack trigger) {
- world.setBlock(x, y, z, defaultBlock, defaultMeta, 2);
- return true;
- }
-
- @Override
- public boolean spawnHint(T t, World world, int x, int y, int z, ItemStack trigger) {
- StructureLibAPI.hintParticle(world, x, y, z, defaultBlock, defaultMeta);
- return true;
- }
-
- @Override
- public PlaceResult survivalPlaceBlock(T t, World world, int x, int y, int z, ItemStack trigger,
- IItemSource s, EntityPlayerMP actor, Consumer<IChatComponent> chatter) {
- if (check(t, world, x, y, z)) return IStructureElement.PlaceResult.SKIP;
- return StructureUtility
- .survivalPlaceBlock(defaultBlock, defaultMeta, world, x, y, z, s, actor, chatter);
- }
- };
- }
- }
-}