From 20517d4c32eb0e1920dc32993123e442a9851903 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Mon, 19 Aug 2019 19:51:05 +0100 Subject: [PATCH] Wire Mill --- .../machine/tier1/WireMillBlockEntity.java | 62 ++++++++++++++++ src/main/java/techreborn/client/EGui.java | 1 + .../java/techreborn/client/GuiHandler.java | 2 + .../techreborn/client/gui/GuiWireMill.java | 68 ++++++++++++++++++ src/main/java/techreborn/init/ModRecipes.java | 1 + .../java/techreborn/init/TRBlockEntities.java | 1 + src/main/java/techreborn/init/TRContent.java | 1 + .../techreborn/blockstates/wire_mill.json | 12 ++++ .../assets/techreborn/lang/en_us.json | 2 +- .../machines/tier1_machines/wire_mill.json | 8 +++ .../machines/tier1_machines/wire_mill_on.json | 8 +++ .../techreborn/models/item/wire_mill.json | 3 + .../tier1_machines/wiremill_front_off.png | Bin 0 -> 842 bytes .../tier1_machines/wiremill_front_on.png | Bin 0 -> 1048 bytes .../wiremill_front_on.png.mcmeta | 5 ++ .../recipes/wire_mill/copper_cable.json | 16 +++++ .../recipes/wire_mill/gold_cable.json | 16 +++++ .../recipes/wire_mill/hv_cable.json | 16 +++++ .../recipes/wire_mill/tin_cable.json | 16 +++++ 19 files changed, 237 insertions(+), 1 deletion(-) create mode 100644 src/main/java/techreborn/blockentity/machine/tier1/WireMillBlockEntity.java create mode 100644 src/main/java/techreborn/client/gui/GuiWireMill.java create mode 100644 src/main/resources/assets/techreborn/blockstates/wire_mill.json create mode 100644 src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill.json create mode 100644 src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill_on.json create mode 100644 src/main/resources/assets/techreborn/models/item/wire_mill.json create mode 100644 src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/wiremill_front_off.png create mode 100644 src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/wiremill_front_on.png create mode 100644 src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/wiremill_front_on.png.mcmeta create mode 100644 src/main/resources/data/techreborn/recipes/wire_mill/copper_cable.json create mode 100644 src/main/resources/data/techreborn/recipes/wire_mill/gold_cable.json create mode 100644 src/main/resources/data/techreborn/recipes/wire_mill/hv_cable.json create mode 100644 src/main/resources/data/techreborn/recipes/wire_mill/tin_cable.json diff --git a/src/main/java/techreborn/blockentity/machine/tier1/WireMillBlockEntity.java b/src/main/java/techreborn/blockentity/machine/tier1/WireMillBlockEntity.java new file mode 100644 index 000000000..0a205a11e --- /dev/null +++ b/src/main/java/techreborn/blockentity/machine/tier1/WireMillBlockEntity.java @@ -0,0 +1,62 @@ +/* + * This file is part of TechReborn, licensed under the MIT License (MIT). + * + * Copyright (c) 2018 TechReborn + * + * 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 techreborn.blockentity.machine.tier1; + +import net.minecraft.entity.player.PlayerEntity; +import reborncore.client.containerBuilder.IContainerProvider; +import reborncore.client.containerBuilder.builder.BuiltContainer; +import reborncore.client.containerBuilder.builder.ContainerBuilder; +import reborncore.common.recipes.RecipeCrafter; +import reborncore.common.util.RebornInventory; +import techreborn.blockentity.GenericMachineBlockEntity; +import techreborn.config.TechRebornConfig; +import techreborn.init.ModRecipes; +import techreborn.init.TRBlockEntities; +import techreborn.init.TRContent; + +public class WireMillBlockEntity extends GenericMachineBlockEntity implements IContainerProvider { + + public WireMillBlockEntity() { + super(TRBlockEntities.WIRE_MILL, "WireMill", 32, 1000, TRContent.Machine.WIRE_MILL.block, 2); + final int[] inputs = new int[] { 0 }; + final int[] outputs = new int[] { 1 }; + this.inventory = new RebornInventory<>(3, "WireMillBlockEntity", 64, this); + this.crafter = new RecipeCrafter(ModRecipes.WIRE_MILL, this, 1, 1, this.inventory, inputs, outputs); + } + + // IContainerProvider + @Override + public BuiltContainer createContainer(int syncID, final PlayerEntity player) { + return new ContainerBuilder("wiremill").player(player.inventory).inventory().hotbar() + .addInventory().blockEntity(this) + .slot(0, 55, 45) + .outputSlot(1, 101, 45) + .energySlot(2, 8, 72) + .syncEnergyValue() + .syncCrafterValue() + .addInventory() + .create(this, syncID); + } +} diff --git a/src/main/java/techreborn/client/EGui.java b/src/main/java/techreborn/client/EGui.java index 536c6f2d3..2beae7f3c 100644 --- a/src/main/java/techreborn/client/EGui.java +++ b/src/main/java/techreborn/client/EGui.java @@ -79,6 +79,7 @@ public enum EGui implements IMachineGuiHandler { THERMAL_GENERATOR(true), VACUUM_FREEZER(true), SOLID_CANNING_MACHINE(true), + WIRE_MILL(true), FLUID_REPLICATOR(true); private final boolean containerBuilder; diff --git a/src/main/java/techreborn/client/GuiHandler.java b/src/main/java/techreborn/client/GuiHandler.java index 6b2658a14..b8d1a75bd 100644 --- a/src/main/java/techreborn/client/GuiHandler.java +++ b/src/main/java/techreborn/client/GuiHandler.java @@ -164,6 +164,8 @@ public class GuiHandler { return new GuiFluidReplicator(syncID, player, (FluidReplicatorBlockEntity) blockEntity); case SOLID_CANNING_MACHINE: return new GuiSolidCanningMachine(syncID, player, (SoildCanningMachineBlockEntity) blockEntity); + case WIRE_MILL: + return new GuiWireMill(syncID, player, (WireMillBlockEntity) blockEntity); default: break; diff --git a/src/main/java/techreborn/client/gui/GuiWireMill.java b/src/main/java/techreborn/client/gui/GuiWireMill.java new file mode 100644 index 000000000..b6b268fe2 --- /dev/null +++ b/src/main/java/techreborn/client/gui/GuiWireMill.java @@ -0,0 +1,68 @@ +/* + * This file is part of TechReborn, licensed under the MIT License (MIT). + * + * Copyright (c) 2018 TechReborn + * + * 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 techreborn.client.gui; + +import net.minecraft.entity.player.PlayerEntity; +import reborncore.client.containerBuilder.builder.BuiltContainer; +import reborncore.client.gui.builder.GuiBase; +import reborncore.client.gui.guibuilder.GuiBuilder; +import techreborn.blockentity.machine.tier1.AssemblingMachineBlockEntity; +import techreborn.blockentity.machine.tier1.WireMillBlockEntity; + +public class GuiWireMill extends GuiBase { + + WireMillBlockEntity blockEntity; + + public GuiWireMill(int syncID, final PlayerEntity player, final WireMillBlockEntity blockEntity) { + super(player, blockEntity, blockEntity.createContainer(syncID, player)); + this.blockEntity = blockEntity; + } + + @Override + protected void drawBackground(final float partialTicks, final int mouseX, final int mouseY) { + super.drawBackground(partialTicks, mouseX, mouseY); + final Layer layer = Layer.BACKGROUND; + + // Battery slot + drawSlot(8, 72, layer); + + // Input slots + drawSlot(55, 45, layer); + drawSlot(101, 45, layer); + + drawOutputSlot(101, 45, layer); + + builder.drawJEIButton(this, 158, 5, layer); + } + + @Override + protected void drawForeground(final int mouseX, final int mouseY) { + super.drawForeground(mouseX, mouseY); + final Layer layer = Layer.FOREGROUND; + + builder.drawProgressBar(this, blockEntity.getProgressScaled(100), 100, 76, 48, mouseX, mouseY, GuiBuilder.ProgressDirection.RIGHT, layer); + builder.drawMultiEnergyBar(this, 9, 19, (int) blockEntity.getEnergy(), (int) blockEntity.getMaxPower(), mouseX, mouseY, 0, layer); + } +} diff --git a/src/main/java/techreborn/init/ModRecipes.java b/src/main/java/techreborn/init/ModRecipes.java index b8ead5bf6..8cf1be46d 100644 --- a/src/main/java/techreborn/init/ModRecipes.java +++ b/src/main/java/techreborn/init/ModRecipes.java @@ -52,4 +52,5 @@ public class ModRecipes { public static final RebornRecipeType FUSION_REACTOR = RecipeManager.newRecipeType(FusionReactorRecipe.class, new Identifier("techreborn:fusion_reactor")); public static final RebornRecipeType ROLLING_MACHINE = RecipeManager.newRecipeType(RollingMachineRecipe.class, new Identifier("techreborn:rolling_machine")); public static final RebornRecipeType SOLID_CANNING_MACHINE = RecipeManager.newRecipeType(RebornRecipe.class, new Identifier("techreborn:solid_canning_machine")); + public static final RebornRecipeType WIRE_MILL = RecipeManager.newRecipeType(RebornRecipe.class, new Identifier("techreborn:wire_mill")); } diff --git a/src/main/java/techreborn/init/TRBlockEntities.java b/src/main/java/techreborn/init/TRBlockEntities.java index 97848007f..a626f1c7b 100644 --- a/src/main/java/techreborn/init/TRBlockEntities.java +++ b/src/main/java/techreborn/init/TRBlockEntities.java @@ -127,6 +127,7 @@ public class TRBlockEntities { public static final BlockEntityType ALARM = register(AlarmBlockEntity.class, "alarm", TRContent.Machine.ALARM); public static final BlockEntityType FLUID_REPLICATOR = register(FluidReplicatorBlockEntity.class, "fluid_replicator", TRContent.Machine.FLUID_REPLICATOR); public static final BlockEntityType SOLID_CANNING_MACHINE = register(SoildCanningMachineBlockEntity.class, "solid_canning_machine", TRContent.Machine.SOLID_CANNING_MACHINE); + public static final BlockEntityType WIRE_MILL = register(WireMillBlockEntity.class, "wire_mill", TRContent.Machine.WIRE_MILL); public static BlockEntityType register(Class tClass, String name, ItemConvertible... items) { return register(tClass, name, Arrays.stream(items).map(itemConvertible -> Block.getBlockFromItem(itemConvertible.asItem())).toArray(Block[]::new)); diff --git a/src/main/java/techreborn/init/TRContent.java b/src/main/java/techreborn/init/TRContent.java index b8a47956d..3f8f2d055 100644 --- a/src/main/java/techreborn/init/TRContent.java +++ b/src/main/java/techreborn/init/TRContent.java @@ -399,6 +399,7 @@ public class TRContent { SCRAPBOXINATOR(new GenericMachineBlock(EGui.SCRAPBOXINATOR, ScrapboxinatorBlockEntity::new)), VACUUM_FREEZER(new GenericMachineBlock(EGui.VACUUM_FREEZER, VacuumFreezerBlockEntity::new)), SOLID_CANNING_MACHINE(new GenericMachineBlock(EGui.SOLID_CANNING_MACHINE, SoildCanningMachineBlockEntity::new)), + WIRE_MILL(new GenericMachineBlock(EGui.WIRE_MILL, WireMillBlockEntity::new)), DIESEL_GENERATOR(new GenericMachineBlock(EGui.DIESEL_GENERATOR, DieselGeneratorBlockEntity::new)), DRAGON_EGG_SYPHON(new GenericMachineBlock(null, DragonEggSyphonBlockEntity::new)), diff --git a/src/main/resources/assets/techreborn/blockstates/wire_mill.json b/src/main/resources/assets/techreborn/blockstates/wire_mill.json new file mode 100644 index 000000000..17943e8ea --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/wire_mill.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/wire_mill" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/wire_mill", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/wire_mill", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/wire_mill", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/wire_mill_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/wire_mill_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/wire_mill_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/wire_mill_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/lang/en_us.json b/src/main/resources/assets/techreborn/lang/en_us.json index 9659e8bc0..a8d22ccb7 100644 --- a/src/main/resources/assets/techreborn/lang/en_us.json +++ b/src/main/resources/assets/techreborn/lang/en_us.json @@ -79,7 +79,7 @@ "block.techreborn.alarm": "Alarm", "block.techreborn.farm": "Farm", "block.techreborn.solid_canning_machine": "Solid Canning Machine", - + "block.techreborn.wire_mill": "Wire Mill", "_comment1": "Blocks", "block.techreborn.rubber_log": "Rubber Wood", diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill.json new file mode 100644 index 000000000..88466a4d0 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/wiremill_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill_on.json new file mode 100644 index 000000000..708855392 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/wire_mill_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/wiremill_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/item/wire_mill.json b/src/main/resources/assets/techreborn/models/item/wire_mill.json new file mode 100644 index 000000000..0352f9a85 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/wire_mill.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/wire_mill" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/wiremill_front_off.png b/src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/wiremill_front_off.png new file mode 100644 index 0000000000000000000000000000000000000000..844ff2e94684a224b707ce921503a35d19ea72f8 GIT binary patch literal 842 zcmV-Q1GW5#P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0^dnQK~y+TJyTmt zRZ$TB*4}IHW9Rr(kP+gg+g}h733^k)pHL4{h*6YvOa%?iOL9aql6(p3smCD22m(P9 z(}RUnc+8VX^ipJom$UDCHM8tEuvoKZX3hHMn^|J<%U2c0F?>Hj7>1BilJ3I~14vWC zaa}+N2moFXA_xMcN=tQ27)B5apH|h`igN7j?ID>=QW$iQW!pN)wk#;6bfSO~NNK|J zJS0;oyj@s^c=z$MDnEV<%elP1Tog_cMG+Vs??nm89uU%t7tZ6=%p433C@Cq?&et!V zW9NGwM~x6=2?77t50sbMP}@Hb*ZVhYu7^kW z@1eavgNdPDq-h@?yhmk)NF)*vxBG@wb!7z+WgzfF94Sq~bsg&U!OU}8E&5OeYMT%W z5&b}JrJayi%dJ7Q4~!^}ewr6}+Q|$DKCw;kIjOPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!2kdb!2!6DYwZ941FcC!K~z{r?N{Gx zTtyWA=H9t?x4RL+)kbZosjadvz9xha1m6-u$e$o6qM#yeYEw%KX$=~yRA1Cbee%(e zh9rUzNDONdqSRm6%37j`qHSDl_Q#!j=ic$0u{XpAHF-?k1H;UnIdkTmZ_a#sRxE%0 ztx1vuVHiPc4Jjp!LxehlbS0WW00;pAKt&o+6d~W%W_7fVAxdAan}-f}pjN9Pm&=hF ztdi&ZR>}7~7-OuVhzv;SLMeq@K97$}YY?A&{*~!CSioAjVmGJ4M&dXId&hk$n&u<& zbnvl9F*UykhZVBftX-V_;C{jrNQ{`0J18X!BvJzihWpKe`OpbrFyk5Dpwc zAM7g2{QNwYmX@%wv0=YEJ3H-|dlp_>SXi*$F<#tD#eh+4Ji*>9E-qquc^Lx(1K8Z$ zv>VIiGG=CG?8)40Xa6?-ag<~0V>zXh&R0h-jD zK!w<eYpIt_I_zdWupY?Iu3W)7UEhu0{xZ%j8<%bRl3jwE52M*qitL3W@FOI)% z6oI26MIgo&;fOXlu1Dxot`mqVXu>69;Vom7eH=IGdbr*B;QpMneDJ`X2W;CFAMn#n z-@s1cIbQouKA4=Gv`>~_V4+a3o0%7wBlg4xrBVsAv$L3*nzEbs%m;&mgXrq&vd@^= zi6!;&U-@8oco@ZEahnHIJa~>Vn46nx@j;6ZZ2s>9KH%2;`TM`s2fOA2{{2g3XMMo^ zp6i3u*gmZfSaxzkt3GJ)!9M2$edDL?{|dXV5B^F1Z}mYcDJQh*gWH%7Jp2h{zN_=> Se#apI0000