Skip to content

Commit a37561c

Browse files
committed
feat: revamp exposed storage system
remove indexed slotted storage methods
1 parent dabc5c2 commit a37561c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+793
-1807
lines changed

src/main/java/dev/galacticraft/machinelib/api/block/entity/BasicRecipeMachineBlockEntity.java

+11-12
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@
2424

2525
import dev.galacticraft.machinelib.api.machine.MachineType;
2626
import dev.galacticraft.machinelib.api.menu.RecipeMachineMenu;
27+
import dev.galacticraft.machinelib.api.storage.SlottedStorageAccess;
28+
import dev.galacticraft.machinelib.api.storage.slot.ItemResourceSlot;
2729
import net.minecraft.core.BlockPos;
2830
import net.minecraft.world.Container;
31+
import net.minecraft.world.item.Item;
2932
import net.minecraft.world.item.ItemStack;
3033
import net.minecraft.world.item.crafting.Recipe;
3134
import net.minecraft.world.item.crafting.RecipeHolder;
@@ -46,10 +49,8 @@ public abstract class BasicRecipeMachineBlockEntity<C extends Container, R exten
4649
*/
4750
protected final @NotNull C craftingInv;
4851

49-
protected final int inputSlots;
50-
protected final int inputSlotsLen;
51-
protected final int outputSlots;
52-
protected final int outputSlotsLen;
52+
protected final SlottedStorageAccess<Item, ItemResourceSlot> inputSlots;
53+
protected final SlottedStorageAccess<Item, ItemResourceSlot> outputSlots;
5354

5455
/**
5556
* Constructs a new machine block entity that processes recipes.
@@ -98,10 +99,8 @@ protected BasicRecipeMachineBlockEntity(@NotNull MachineType<? extends BasicReci
9899
@NotNull BlockPos pos, BlockState state, @NotNull RecipeType<R> recipeType, int inputSlots, int inputSlotsLen, int outputSlots, int outputSlotsLen) {
99100
super(type, pos, state, recipeType);
100101

101-
this.inputSlots = inputSlots;
102-
this.inputSlotsLen = inputSlotsLen;
103-
this.outputSlots = outputSlots;
104-
this.outputSlotsLen = outputSlotsLen;
102+
this.inputSlots = this.itemStorage().subStorage(inputSlots, inputSlotsLen);
103+
this.outputSlots = this.itemStorage().subStorage(outputSlots, outputSlotsLen);
105104

106105
this.craftingInv = this.createCraftingInv();
107106
}
@@ -128,7 +127,7 @@ protected BasicRecipeMachineBlockEntity(@NotNull MachineType<? extends BasicReci
128127
@Override
129128
protected void outputStacks(@NotNull RecipeHolder<R> recipe) {
130129
ItemStack assembled = recipe.value().assemble(this.craftingInv(), this.level.registryAccess());
131-
this.itemStorage().insertMatching(this.outputSlots, this.outputSlotsLen, assembled.getItem(), assembled.getComponentsPatch(), assembled.getCount());
130+
this.outputSlots.insertMatching(assembled.getItem(), assembled.getComponentsPatch(), assembled.getCount());
132131
}
133132

134133
/**
@@ -140,7 +139,7 @@ protected void outputStacks(@NotNull RecipeHolder<R> recipe) {
140139
@Override
141140
protected boolean canOutputStacks(@NotNull RecipeHolder<R> recipe) {
142141
ItemStack assembled = recipe.value().assemble(this.craftingInv(), this.level.registryAccess());
143-
return this.itemStorage().canInsert(this.outputSlots, this.outputSlotsLen, assembled.getItem(), assembled.getComponentsPatch(), assembled.getCount());
142+
return this.inputSlots.canInsert(assembled.getItem(), assembled.getComponentsPatch(), assembled.getCount());
144143
}
145144

146145
/**
@@ -150,8 +149,8 @@ protected boolean canOutputStacks(@NotNull RecipeHolder<R> recipe) {
150149
*/
151150
@Override
152151
protected void extractCraftingMaterials(@NotNull RecipeHolder<R> recipe) {
153-
for (int i = 0; i < this.inputSlotsLen; i++) {
154-
this.itemStorage().consumeOne(this.inputSlots + i);
152+
for (ItemResourceSlot slot : this.inputSlots) {
153+
slot.consumeOne();
155154
}
156155
}
157156
}

src/main/java/dev/galacticraft/machinelib/api/block/entity/MachineBlockEntity.java

+48-121
Large diffs are not rendered by default.

src/main/java/dev/galacticraft/machinelib/api/compat/transfer/ExposedSlot.java

+3-63
Original file line numberDiff line numberDiff line change
@@ -22,75 +22,15 @@
2222

2323
package dev.galacticraft.machinelib.api.compat.transfer;
2424

25-
import dev.galacticraft.machinelib.api.storage.slot.ResourceSlot;
26-
import dev.galacticraft.machinelib.api.transfer.ResourceFlow;
27-
import dev.galacticraft.machinelib.impl.compat.transfer.ExposedFluidSlotImpl;
28-
import dev.galacticraft.machinelib.impl.compat.transfer.ExposedFullFluidSlotImpl;
29-
import dev.galacticraft.machinelib.impl.compat.transfer.ExposedFullItemSlotImpl;
30-
import dev.galacticraft.machinelib.impl.compat.transfer.ExposedItemSlotImpl;
31-
import net.fabricmc.fabric.api.transfer.v1.fluid.FluidVariant;
32-
import net.fabricmc.fabric.api.transfer.v1.item.ItemVariant;
25+
import net.fabricmc.fabric.api.transfer.v1.storage.Storage;
26+
import net.fabricmc.fabric.api.transfer.v1.storage.StorageView;
3327
import net.fabricmc.fabric.api.transfer.v1.storage.TransferVariant;
34-
import net.fabricmc.fabric.api.transfer.v1.storage.base.SingleSlotStorage;
35-
import net.minecraft.world.item.Item;
36-
import net.minecraft.world.level.material.Fluid;
37-
import org.jetbrains.annotations.Contract;
38-
import org.jetbrains.annotations.NotNull;
3928

4029
/**
4130
* Represents a slot exposed to adjacent blocks or items.
4231
*
4332
* @param <Resource> The type of resource stored in the slot.
4433
* @param <Variant> The type of variant for the resource that can be stored in the slot.
4534
*/
46-
public interface ExposedSlot<Resource, Variant extends TransferVariant<Resource>> extends ExposedStorage<Resource, Variant>, SingleSlotStorage<Variant> {
47-
/**
48-
* Creates an exposed item slot.
49-
*
50-
* @param slot The backing resource slot.
51-
* @param flow The flow restrictions on the slot.
52-
* @return An exposed item slot.
53-
*/
54-
@Contract("_, _ -> new")
55-
static @NotNull ExposedSlot<Item, ItemVariant> createItem(@NotNull ResourceSlot<Item> slot, @NotNull ResourceFlow flow) {
56-
if (flow == ResourceFlow.BOTH) return createFullItem(slot);
57-
return new ExposedItemSlotImpl(slot, flow.canFlowIn(ResourceFlow.INPUT), flow.canFlowIn(ResourceFlow.OUTPUT));
58-
}
59-
60-
/**
61-
* Creates an exposed fluid slot.
62-
*
63-
* @param slot The backing resource slot.
64-
* @param flow The flow restrictions on the slot.
65-
* @return An exposed fluid slot.
66-
*/
67-
@Contract("_, _ -> new")
68-
static @NotNull ExposedSlot<Fluid, FluidVariant> createFluid(@NotNull ResourceSlot<Fluid> slot, @NotNull ResourceFlow flow) {
69-
if (flow == ResourceFlow.BOTH) return createFullFluid(slot);
70-
return new ExposedFluidSlotImpl(slot, flow.canFlowIn(ResourceFlow.INPUT), flow.canFlowIn(ResourceFlow.OUTPUT));
71-
}
72-
73-
/**
74-
* Creates a fully exposed item slot.
75-
* This slot has no additional I/O restrictions.
76-
*
77-
* @param slot The backing resource slot.
78-
* @return A fully exposed item slot.
79-
*/
80-
@Contract("_ -> new")
81-
static @NotNull ExposedSlot<Item, ItemVariant> createFullItem(@NotNull ResourceSlot<Item> slot) {
82-
return new ExposedFullItemSlotImpl(slot);
83-
}
84-
85-
/**
86-
* Creates a fully exposed fluid slot.
87-
* This slot has no additional I/O restrictions.
88-
*
89-
* @param slot The backing resource slot.
90-
* @return A fully exposed fluid slot.
91-
*/
92-
@Contract("_ -> new")
93-
static @NotNull ExposedSlot<Fluid, FluidVariant> createFullFluid(@NotNull ResourceSlot<Fluid> slot) {
94-
return new ExposedFullFluidSlotImpl(slot);
95-
}
35+
public interface ExposedSlot<Resource, Variant extends TransferVariant<Resource>> extends Storage<Variant>, StorageView<Variant> {
9636
}

src/main/java/dev/galacticraft/machinelib/api/compat/transfer/ExposedStorage.java

-49
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,8 @@
2323
package dev.galacticraft.machinelib.api.compat.transfer;
2424

2525
import dev.galacticraft.machinelib.api.storage.ResourceStorage;
26-
import dev.galacticraft.machinelib.api.storage.slot.ResourceSlot;
27-
import dev.galacticraft.machinelib.api.transfer.ResourceFlow;
28-
import dev.galacticraft.machinelib.impl.compat.transfer.ExposedStorageImpl;
29-
import net.fabricmc.fabric.api.transfer.v1.fluid.FluidVariant;
30-
import net.fabricmc.fabric.api.transfer.v1.item.ItemVariant;
3126
import net.fabricmc.fabric.api.transfer.v1.storage.Storage;
3227
import net.fabricmc.fabric.api.transfer.v1.storage.TransferVariant;
33-
import net.minecraft.world.item.Item;
34-
import net.minecraft.world.level.material.Fluid;
35-
import org.jetbrains.annotations.Contract;
36-
import org.jetbrains.annotations.Nullable;
3728

3829
/**
3930
* Represents a resource storage exposed to adjacent blocks or items.
@@ -43,44 +34,4 @@
4334
* @param <Variant> the type of variant associated with the resource
4435
*/
4536
public interface ExposedStorage<Resource, Variant extends TransferVariant<Resource>> extends Storage<Variant> {
46-
/**
47-
* Creates an exposed item storage.
48-
*
49-
* @param storage the backing resource storage
50-
* @param flow the flow restrictions on the storage
51-
* @return an exposed item storage
52-
*/
53-
@Contract("_, _ -> new")
54-
static @Nullable ExposedStorage<Item, ItemVariant> createItem(ResourceStorage<Item, ? extends ResourceSlot<Item>> storage, ResourceFlow flow) {
55-
if (storage.size() == 0) return null;
56-
57-
ResourceSlot<Item>[] rawSlots = storage.getSlots();
58-
ExposedSlot<Item, ItemVariant>[] slots = new ExposedSlot[rawSlots.length];
59-
for (int i = 0; i < rawSlots.length; i++) {
60-
slots[i] = ExposedSlot.createItem(rawSlots[i], flow);
61-
}
62-
return new ExposedStorageImpl<>(storage, slots);
63-
}
64-
65-
/**
66-
* Creates an exposed fluid storage.
67-
*
68-
* @param storage the backing resource storage
69-
* @param flow the flow restrictions on the storage
70-
* @return an exposed fluid storage
71-
*/
72-
@Contract("_, _ -> new")
73-
static @Nullable ExposedStorage<Fluid, FluidVariant> createFluid(ResourceStorage<Fluid, ? extends ResourceSlot<Fluid>> storage, ResourceFlow flow) {
74-
if (storage.size() == 0) return null;
75-
76-
ResourceSlot<Fluid>[] rawSlots = storage.getSlots();
77-
ExposedSlot<Fluid, FluidVariant>[] slots = new ExposedSlot[rawSlots.length];
78-
for (int i = 0; i < rawSlots.length; i++) {
79-
slots[i] = ExposedSlot.createFluid(rawSlots[i], flow);
80-
}
81-
return new ExposedStorageImpl<>(storage, slots);
82-
}
83-
84-
@Override
85-
long getVersion();
8637
}

src/main/java/dev/galacticraft/machinelib/api/gametest/MachineGameTest.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ protected MachineGameTest(MachineType<Machine, ?> type) {
101101
public TestFunction createChargeFromEnergyItemTest(int slot, Item energyProvider) {
102102
return this.createTest("chargeFromItem", STRUCTURE_3x3, 2, 1, helper -> {
103103
Machine machine = this.createMachine(helper);
104-
machine.itemStorage().getSlot(slot).set(energyProvider, 1);
104+
machine.itemStorage().slot(slot).set(energyProvider, 1);
105105
helper.runAfterDelay(1, () -> {
106106
if (machine.energyStorage().isEmpty()) {
107107
helper.fail("Machine did not charge from the stack!", machine.getBlockPos());
@@ -117,7 +117,7 @@ public TestFunction createDrainToEnergyItemTest(int slot, Item energyConsumer) {
117117
Machine machine = this.createMachine(helper);
118118

119119
machine.energyStorage().setEnergy(machine.energyStorage().getCapacity());
120-
machine.itemStorage().getSlot(slot).set(energyConsumer, 1);
120+
machine.itemStorage().slot(slot).set(energyConsumer, 1);
121121

122122
helper.runAfterDelay(1, () -> {
123123
if (machine.energyStorage().isFull()) {
@@ -132,9 +132,9 @@ public TestFunction createDrainToEnergyItemTest(int slot, Item energyConsumer) {
132132
public TestFunction createTakeFromFluidItemTest(int slot, Item fluidProvider, int tank) {
133133
return this.createTest("takeFluidFromItem", STRUCTURE_3x3, 2, 1, helper -> {
134134
Machine machine = this.createMachine(helper);
135-
machine.itemStorage().getSlot(slot).set(fluidProvider, 1);
135+
machine.itemStorage().slot(slot).set(fluidProvider, 1);
136136
helper.runAfterDelay(1, () -> {
137-
if (machine.fluidStorage().getSlot(tank).isEmpty()) {
137+
if (machine.fluidStorage().slot(tank).isEmpty()) {
138138
helper.fail("Machine did not take fluid from the stack!", machine.getBlockPos());
139139
} else {
140140
helper.succeed();
@@ -147,8 +147,8 @@ public TestFunction createDrainFluidIntoItemTest(int slot, Fluid fluid, int tank
147147
return this.createTest("drainFluidIntoItem", STRUCTURE_3x3, 2, 1, helper -> {
148148
Machine machine = this.createMachine(helper);
149149

150-
machine.fluidStorage().getSlot(tank).set(fluid, FluidConstants.BUCKET);
151-
machine.itemStorage().getSlot(slot).set(Items.BUCKET, 1);
150+
machine.fluidStorage().slot(tank).set(fluid, FluidConstants.BUCKET);
151+
machine.itemStorage().slot(slot).set(Items.BUCKET, 1);
152152

153153
helper.runAfterDelay(1, () -> {
154154
if (machine.energyStorage().isFull()) {

src/main/java/dev/galacticraft/machinelib/api/gametest/RecipeGameTest.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,15 @@ protected RecipeGameTest(@NotNull MachineType<Machine, ?> type, List<IngredientS
7373
}
7474

7575
protected boolean anyRecipeCrafted(@NotNull MachineItemStorage storage) {
76-
return !storage.isEmpty(this.outputSlotsStart, this.outputSlotsLength);
76+
for (int i = 0; i < this.outputSlotsLength; i++) {
77+
if (!storage.slot(this.outputSlotsStart + i).isEmpty()) return true;
78+
}
79+
return false;
7780
}
7881

7982
protected void fillOutputSlots(@NotNull MachineItemStorage storage) {
8083
for (int i = 0; i < this.outputSlotsLength; i++) {
81-
storage.getSlot(this.outputSlotsStart + i).set(Items.BARRIER, 1);
84+
storage.slot(this.outputSlotsStart + i).set(Items.BARRIER, 1);
8285
}
8386
}
8487

src/main/java/dev/galacticraft/machinelib/api/misc/Modifiable.java

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
public interface Modifiable {
2929
/**
3030
* {@return the number of times this object has been modified}
31+
* Note that the number may decrease should a transaction be aborted. This could cause numbers to be reused.
3132
*/
3233
long getModifications();
3334
}

src/main/java/dev/galacticraft/machinelib/api/storage/MachineFluidStorage.java

+7
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@
2222

2323
package dev.galacticraft.machinelib.api.storage;
2424

25+
import dev.galacticraft.machinelib.api.compat.transfer.ExposedStorage;
2526
import dev.galacticraft.machinelib.api.storage.slot.FluidResourceSlot;
27+
import dev.galacticraft.machinelib.api.transfer.ResourceFlow;
2628
import dev.galacticraft.machinelib.impl.storage.MachineFluidStorageImpl;
29+
import net.fabricmc.fabric.api.transfer.v1.fluid.FluidVariant;
2730
import net.minecraft.world.level.material.Fluid;
2831
import org.jetbrains.annotations.Contract;
2932
import org.jetbrains.annotations.NotNull;
33+
import org.jetbrains.annotations.Nullable;
3034

3135
import java.util.function.Supplier;
3236

@@ -51,6 +55,9 @@ public interface MachineFluidStorage extends ResourceStorage<Fluid, FluidResourc
5155
};
5256
}
5357

58+
@Override
59+
@Nullable ExposedStorage<Fluid, FluidVariant> createExposedStorage(@NotNull ResourceFlow flow);
60+
5461
@Contract(pure = true)
5562
static @NotNull MachineFluidStorage empty() {
5663
return MachineFluidStorageImpl.EMPTY;

src/main/java/dev/galacticraft/machinelib/api/storage/MachineItemStorage.java

+6
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@
2222

2323
package dev.galacticraft.machinelib.api.storage;
2424

25+
import dev.galacticraft.machinelib.api.compat.transfer.ExposedStorage;
2526
import dev.galacticraft.machinelib.api.storage.slot.ItemResourceSlot;
2627
import dev.galacticraft.machinelib.api.transfer.InputType;
28+
import dev.galacticraft.machinelib.api.transfer.ResourceFlow;
2729
import dev.galacticraft.machinelib.impl.storage.MachineItemStorageImpl;
30+
import net.fabricmc.fabric.api.transfer.v1.item.ItemVariant;
2831
import net.minecraft.core.component.DataComponentPatch;
2932
import net.minecraft.world.Container;
3033
import net.minecraft.world.item.Item;
@@ -67,6 +70,9 @@ public interface MachineItemStorage extends ResourceStorage<Item, ItemResourceSl
6770
return MachineItemStorageImpl.EMPTY;
6871
}
6972

73+
@Override
74+
@Nullable ExposedStorage<Item, ItemVariant> createExposedStorage(@NotNull ResourceFlow flow);
75+
7076
// ITEM EXTENSIONS
7177

7278
boolean consumeOne(@NotNull Item resource);

src/main/java/dev/galacticraft/machinelib/api/storage/ResourceStorage.java

+4-9
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,17 @@
2222

2323
package dev.galacticraft.machinelib.api.storage;
2424

25+
import dev.galacticraft.machinelib.api.compat.transfer.ExposedStorage;
2526
import dev.galacticraft.machinelib.api.misc.DeltaPacketSerializable;
2627
import dev.galacticraft.machinelib.api.misc.MutableModifiable;
2728
import dev.galacticraft.machinelib.api.misc.PacketSerializable;
2829
import dev.galacticraft.machinelib.api.misc.Serializable;
2930
import dev.galacticraft.machinelib.api.storage.slot.ResourceSlot;
31+
import dev.galacticraft.machinelib.api.transfer.ResourceFlow;
3032
import net.minecraft.nbt.ListTag;
3133
import net.minecraft.network.RegistryFriendlyByteBuf;
3234
import org.jetbrains.annotations.NotNull;
35+
import org.jetbrains.annotations.Nullable;
3336

3437
/**
3538
* A storage that can store multiple of multiple instances of one type of resource (e.g., 10 sticks and 3 snowballs).
@@ -45,13 +48,5 @@ public interface ResourceStorage<Resource, Slot extends ResourceSlot<Resource>>
4548
*/
4649
void setListener(Runnable listener);
4750

48-
/**
49-
* {@return the slots in this storage}
50-
*/
51-
Slot[] getSlots();
52-
53-
/**
54-
* {@return the slot at the given index}
55-
*/
56-
@NotNull Slot getSlot(int slot);
51+
@Nullable ExposedStorage<Resource, ?> createExposedStorage(@NotNull ResourceFlow flow);
5752
}

0 commit comments

Comments
 (0)