mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-22 11:53:29 +01:00
also added direction selector to the other modules
This commit is contained in:
parent
3451451c4f
commit
50c44df49f
10 changed files with 132 additions and 82 deletions
|
@ -16,7 +16,7 @@ import net.minecraftforge.client.gui.widget.ExtendedButton;
|
|||
|
||||
public class DirectionSelector {
|
||||
|
||||
public Direction direction;
|
||||
private Direction direction;
|
||||
private boolean modified;
|
||||
|
||||
private final ItemStack stack;
|
||||
|
@ -35,7 +35,7 @@ public class DirectionSelector {
|
|||
@Override
|
||||
public Component getMessage() {
|
||||
var pipe = DirectionSelector.this.pipe;
|
||||
var dir = DirectionSelector.this.direction;
|
||||
var dir = DirectionSelector.this.getDirection();
|
||||
MutableComponent msg = new TranslatableComponent("dir." + PrettyPipes.ID + "." + (dir != null ? dir.getName() : "none"));
|
||||
if (dir != null) {
|
||||
var blockName = pipe.getItemHandler(dir) != null ? pipe.getLevel().getBlockState(pipe.getBlockPos().relative(dir)).getBlock().getName() : null;
|
||||
|
@ -48,7 +48,7 @@ public class DirectionSelector {
|
|||
}
|
||||
|
||||
public void onButtonPacket() {
|
||||
var dir = this.getValidDirection(this.direction != null ? this.direction : Direction.UP);
|
||||
var dir = this.getValidDirection(this.getDirection());
|
||||
if (this.direction != dir) {
|
||||
this.direction = dir;
|
||||
this.modified = true;
|
||||
|
@ -61,8 +61,9 @@ public class DirectionSelector {
|
|||
this.modified = false;
|
||||
|
||||
var tag = new CompoundTag();
|
||||
if (this.direction != null)
|
||||
tag.putString("direction", this.direction.getName());
|
||||
var dir = this.getDirection();
|
||||
if (dir != null)
|
||||
tag.putString("direction", dir.getName());
|
||||
this.stack.getOrCreateTag().put("direction_selector", tag);
|
||||
}
|
||||
|
||||
|
@ -71,11 +72,13 @@ public class DirectionSelector {
|
|||
var tag = this.stack.getTag().getCompound("direction_selector");
|
||||
this.direction = Direction.byName(tag.getString("direction"));
|
||||
}
|
||||
}
|
||||
|
||||
// default to the first direction with a container
|
||||
// don't mark as modified here because we don't want to save this automatic direction
|
||||
public Direction getDirection() {
|
||||
// default to the first direction with a container if ours is invalid or unset
|
||||
if (this.direction == null || !this.isDirectionValid(this.direction))
|
||||
this.direction = this.getValidDirection(Direction.UP);
|
||||
return this.getValidDirection(this.direction);
|
||||
return this.direction;
|
||||
}
|
||||
|
||||
private boolean isDirectionValid(Direction dir) {
|
||||
|
@ -84,10 +87,13 @@ public class DirectionSelector {
|
|||
return this.pipe.streamModules()
|
||||
.filter(p -> p.getLeft() != this.stack)
|
||||
.map(p -> p.getRight().getDirectionSelector(p.getLeft(), this.pipe))
|
||||
// don't use getDirection here because we don't want a stack overflow
|
||||
.noneMatch(p -> p != null && p.direction == dir);
|
||||
}
|
||||
|
||||
private Direction getValidDirection(Direction dir) {
|
||||
if (dir == null)
|
||||
dir = Direction.UP;
|
||||
for (var i = 0; i < 6; i++) {
|
||||
dir = Direction.from3DDataValue(dir.get3DDataValue() + 1);
|
||||
if (this.isDirectionValid(dir))
|
||||
|
|
|
@ -52,7 +52,7 @@ public class ItemFilter extends ItemStackHandler {
|
|||
List<AbstractWidget> buttons = new ArrayList<>();
|
||||
if (this.canModifyWhitelist) {
|
||||
var whitelistText = (Supplier<String>) () -> "info." + PrettyPipes.ID + "." + (this.isWhitelist ? "whitelist" : "blacklist");
|
||||
buttons.add(new Button(x - 20 * (rightAligned ? 1 : 0), y, 20, 20, new TranslatableComponent(whitelistText.get()), button -> {
|
||||
buttons.add(new Button(x - 20, y, 20, 20, new TranslatableComponent(whitelistText.get()), button -> {
|
||||
PacketButton.sendAndExecute(this.pipe.getBlockPos(), PacketButton.ButtonResult.FILTER_CHANGE, 0);
|
||||
button.setMessage(new TranslatableComponent(whitelistText.get()));
|
||||
}) {
|
||||
|
@ -63,7 +63,7 @@ public class ItemFilter extends ItemStackHandler {
|
|||
});
|
||||
}
|
||||
if (this.canPopulateFromInventories) {
|
||||
buttons.add(new Button(x + 22 * (rightAligned ? -1 : 1), y, 20, 20, new TranslatableComponent("info." + PrettyPipes.ID + ".populate"), button -> PacketButton.sendAndExecute(this.pipe.getBlockPos(), PacketButton.ButtonResult.FILTER_CHANGE, 1)) {
|
||||
buttons.add(new Button(x - 42, y, 20, 20, new TranslatableComponent("info." + PrettyPipes.ID + ".populate"), button -> PacketButton.sendAndExecute(this.pipe.getBlockPos(), PacketButton.ButtonResult.FILTER_CHANGE, 1)) {
|
||||
@Override
|
||||
public void renderToolTip(PoseStack matrix, int x, int y) {
|
||||
gui.renderTooltip(matrix, new TranslatableComponent("info." + PrettyPipes.ID + ".populate.description").withStyle(ChatFormatting.GRAY), x, y);
|
||||
|
|
|
@ -186,23 +186,31 @@ public class PipeBlockEntity extends BlockEntity implements MenuProvider, IPipeC
|
|||
}
|
||||
|
||||
public Pair<BlockPos, ItemStack> getAvailableDestination(ItemStack stack, boolean force, boolean preventOversending) {
|
||||
if (!this.canWork())
|
||||
return null;
|
||||
for (var dir : Direction.values()) {
|
||||
var handler = this.getItemHandler(dir);
|
||||
if (handler == null || !force && this.streamModules().anyMatch(m -> !m.getRight().canAcceptItem(m.getLeft(), this, stack, dir, handler)))
|
||||
continue;
|
||||
var dest = this.getAvailableDestination(dir, stack, force, preventOversending);
|
||||
if (!dest.isEmpty())
|
||||
return Pair.of(this.worldPosition.relative(dir), dest);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public ItemStack getAvailableDestination(Direction direction, ItemStack stack, boolean force, boolean preventOversending) {
|
||||
if (!this.canWork())
|
||||
return ItemStack.EMPTY;
|
||||
var handler = this.getItemHandler(direction);
|
||||
if (handler == null || !force && this.streamModules().anyMatch(m -> !m.getRight().canAcceptItem(m.getLeft(), this, stack, direction, handler)))
|
||||
return ItemStack.EMPTY;
|
||||
var remain = ItemHandlerHelper.insertItem(handler, stack, true);
|
||||
// did we insert anything?
|
||||
if (remain.getCount() == stack.getCount())
|
||||
continue;
|
||||
return ItemStack.EMPTY;
|
||||
var toInsert = stack.copy();
|
||||
toInsert.shrink(remain.getCount());
|
||||
// limit to the max amount that modules allow us to insert
|
||||
var maxAmount = this.streamModules().mapToInt(m -> m.getRight().getMaxInsertionAmount(m.getLeft(), this, stack, handler)).min().orElse(Integer.MAX_VALUE);
|
||||
if (maxAmount < toInsert.getCount())
|
||||
toInsert.setCount(maxAmount);
|
||||
var offset = this.worldPosition.relative(dir);
|
||||
var offset = this.worldPosition.relative(direction);
|
||||
if (preventOversending || maxAmount < Integer.MAX_VALUE) {
|
||||
var network = PipeNetwork.get(this.level);
|
||||
// these are the items that are currently in the pipes, going to this inventory
|
||||
|
@ -237,10 +245,7 @@ public class PipeBlockEntity extends BlockEntity implements MenuProvider, IPipeC
|
|||
}
|
||||
}
|
||||
// we return the item that can actually be inserted, NOT the remainder!
|
||||
if (!toInsert.isEmpty())
|
||||
return Pair.of(offset, toInsert);
|
||||
}
|
||||
return null;
|
||||
return toInsert;
|
||||
}
|
||||
|
||||
public int getPriority() {
|
||||
|
|
|
@ -35,10 +35,10 @@ public class ExtractionModuleItem extends ModuleItem {
|
|||
if (!tile.shouldWorkNow(this.speed) || !tile.canWork())
|
||||
return;
|
||||
var filter = this.getItemFilter(module, tile);
|
||||
var dirSelector = this.getDirectionSelector(module, tile);
|
||||
if (dirSelector.direction == null)
|
||||
var dir = this.getDirectionSelector(module, tile).getDirection();
|
||||
if (dir == null)
|
||||
return;
|
||||
var handler = tile.getItemHandler(dirSelector.direction);
|
||||
var handler = tile.getItemHandler(dir);
|
||||
if (handler == null)
|
||||
return;
|
||||
|
||||
|
@ -49,7 +49,7 @@ public class ExtractionModuleItem extends ModuleItem {
|
|||
continue;
|
||||
if (!filter.isAllowed(stack))
|
||||
continue;
|
||||
var remain = network.routeItem(tile.getBlockPos(), tile.getBlockPos().relative(dirSelector.direction), stack, this.preventOversending);
|
||||
var remain = network.routeItem(tile.getBlockPos(), tile.getBlockPos().relative(dir), stack, this.preventOversending);
|
||||
if (remain.getCount() != stack.getCount()) {
|
||||
handler.extractItem(j, stack.getCount() - remain.getCount(), false);
|
||||
return;
|
||||
|
@ -59,12 +59,12 @@ public class ExtractionModuleItem extends ModuleItem {
|
|||
|
||||
@Override
|
||||
public boolean canNetworkSee(ItemStack module, PipeBlockEntity tile, Direction direction, IItemHandler handler) {
|
||||
return direction != this.getDirectionSelector(module, tile).direction;
|
||||
return direction != this.getDirectionSelector(module, tile).getDirection();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canAcceptItem(ItemStack module, PipeBlockEntity tile, ItemStack stack, Direction direction, IItemHandler destination) {
|
||||
return direction != this.getDirectionSelector(module, tile).direction;
|
||||
return direction != this.getDirectionSelector(module, tile).getDirection();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package de.ellpeck.prettypipes.pipe.modules.insertion;
|
||||
|
||||
import de.ellpeck.prettypipes.misc.DirectionSelector;
|
||||
import de.ellpeck.prettypipes.misc.DirectionSelector.IDirectionContainer;
|
||||
import de.ellpeck.prettypipes.misc.ItemFilter;
|
||||
import de.ellpeck.prettypipes.misc.ItemFilter.IFilteredContainer;
|
||||
import de.ellpeck.prettypipes.pipe.containers.AbstractPipeContainer;
|
||||
|
@ -9,9 +11,10 @@ import net.minecraft.world.inventory.MenuType;
|
|||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
public class FilterModuleContainer extends AbstractPipeContainer<FilterModuleItem> implements IFilteredContainer {
|
||||
public class FilterModuleContainer extends AbstractPipeContainer<FilterModuleItem> implements IFilteredContainer, IDirectionContainer {
|
||||
|
||||
public ItemFilter filter;
|
||||
public DirectionSelector directionSelector;
|
||||
|
||||
public FilterModuleContainer(@Nullable MenuType<?> type, int id, Player player, BlockPos pos, int moduleIndex) {
|
||||
super(type, id, player, pos, moduleIndex);
|
||||
|
@ -26,6 +29,8 @@ public class FilterModuleContainer extends AbstractPipeContainer<FilterModuleIte
|
|||
@Override
|
||||
protected void addSlots() {
|
||||
this.filter = this.module.getItemFilter(this.moduleStack, this.tile);
|
||||
this.directionSelector = this.module.getDirectionSelector(this.moduleStack, this.tile);
|
||||
|
||||
for (var slot : this.filter.getSlots((176 - Math.min(this.module.filterSlots, 9) * 18) / 2 + 1, 17 + 32))
|
||||
this.addSlot(slot);
|
||||
}
|
||||
|
@ -34,10 +39,17 @@ public class FilterModuleContainer extends AbstractPipeContainer<FilterModuleIte
|
|||
public void removed(Player playerIn) {
|
||||
super.removed(playerIn);
|
||||
this.filter.save();
|
||||
this.directionSelector.save();
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemFilter getFilter() {
|
||||
return this.filter;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DirectionSelector getSelector() {
|
||||
return this.directionSelector;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,7 +14,9 @@ public class FilterModuleGui extends AbstractPipeGui<FilterModuleContainer> {
|
|||
@Override
|
||||
protected void init() {
|
||||
super.init();
|
||||
for (var widget : this.menu.filter.getButtons(this, this.leftPos + 7, this.topPos + 17 + 32 + 18 * Mth.ceil(this.menu.filter.getSlots() / 9F) + 2, false))
|
||||
var buttonsY = this.topPos + 17 + 32 + 18 * Mth.ceil(this.menu.filter.getSlots() / 9F) + 2;
|
||||
for (var widget : this.menu.filter.getButtons(this, this.leftPos + this.imageWidth - 7, buttonsY, true))
|
||||
this.addRenderableWidget(widget);
|
||||
this.addRenderableWidget(this.menu.directionSelector.getButton(this.leftPos + 7, buttonsY));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ import de.ellpeck.prettypipes.Registry;
|
|||
import de.ellpeck.prettypipes.items.IModule;
|
||||
import de.ellpeck.prettypipes.items.ModuleItem;
|
||||
import de.ellpeck.prettypipes.items.ModuleTier;
|
||||
import de.ellpeck.prettypipes.misc.DirectionSelector;
|
||||
import de.ellpeck.prettypipes.misc.ItemFilter;
|
||||
import de.ellpeck.prettypipes.pipe.PipeBlockEntity;
|
||||
import de.ellpeck.prettypipes.pipe.containers.AbstractPipeContainer;
|
||||
|
@ -26,8 +27,7 @@ public class FilterModuleItem extends ModuleItem {
|
|||
|
||||
@Override
|
||||
public boolean canAcceptItem(ItemStack module, PipeBlockEntity tile, ItemStack stack, Direction direction, IItemHandler destination) {
|
||||
var filter = this.getItemFilter(module, tile);
|
||||
return filter.isAllowed(stack);
|
||||
return this.getDirectionSelector(module, tile).getDirection() != direction || this.getItemFilter(module, tile).isAllowed(stack);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -51,4 +51,9 @@ public class FilterModuleItem extends ModuleItem {
|
|||
filter.canPopulateFromInventories = this.canPopulateFromInventories;
|
||||
return filter;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DirectionSelector getDirectionSelector(ItemStack module, PipeBlockEntity tile) {
|
||||
return new DirectionSelector(module, tile);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
package de.ellpeck.prettypipes.pipe.modules.retrieval;
|
||||
|
||||
import de.ellpeck.prettypipes.misc.DirectionSelector;
|
||||
import de.ellpeck.prettypipes.misc.DirectionSelector.IDirectionContainer;
|
||||
import de.ellpeck.prettypipes.misc.ItemFilter;
|
||||
import de.ellpeck.prettypipes.misc.ItemFilter.IFilteredContainer;
|
||||
import de.ellpeck.prettypipes.pipe.containers.AbstractPipeContainer;
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.inventory.MenuType;
|
||||
import net.minecraft.world.inventory.Slot;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
public class RetrievalModuleContainer extends AbstractPipeContainer<RetrievalModuleItem> implements IFilteredContainer {
|
||||
public class RetrievalModuleContainer extends AbstractPipeContainer<RetrievalModuleItem> implements IFilteredContainer, IDirectionContainer {
|
||||
|
||||
public ItemFilter filter;
|
||||
public DirectionSelector directionSelector;
|
||||
|
||||
public RetrievalModuleContainer(@Nullable MenuType<?> type, int id, Player player, BlockPos pos, int moduleIndex) {
|
||||
super(type, id, player, pos, moduleIndex);
|
||||
|
@ -21,6 +23,8 @@ public class RetrievalModuleContainer extends AbstractPipeContainer<RetrievalMod
|
|||
@Override
|
||||
protected void addSlots() {
|
||||
this.filter = this.module.getItemFilter(this.moduleStack, this.tile);
|
||||
this.directionSelector = this.module.getDirectionSelector(this.moduleStack, this.tile);
|
||||
|
||||
for (var slot : this.filter.getSlots((176 - this.module.filterSlots * 18) / 2 + 1, 17 + 32))
|
||||
this.addSlot(slot);
|
||||
}
|
||||
|
@ -29,10 +33,16 @@ public class RetrievalModuleContainer extends AbstractPipeContainer<RetrievalMod
|
|||
public void removed(Player playerIn) {
|
||||
super.removed(playerIn);
|
||||
this.filter.save();
|
||||
this.directionSelector.save();
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemFilter getFilter() {
|
||||
return this.filter;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DirectionSelector getSelector() {
|
||||
return this.directionSelector;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,8 @@ public class RetrievalModuleGui extends AbstractPipeGui<RetrievalModuleContainer
|
|||
@Override
|
||||
protected void init() {
|
||||
super.init();
|
||||
for (var widget : this.menu.filter.getButtons(this, this.leftPos + 7, this.topPos + 17 + 32 + 20, false))
|
||||
for (var widget : this.menu.filter.getButtons(this, this.leftPos + this.imageWidth - 7, this.topPos + 17 + 32 + 20, true))
|
||||
this.addRenderableWidget(widget);
|
||||
this.addRenderableWidget(this.menu.directionSelector.getButton(this.leftPos + 7, this.topPos + 17 + 32 + 20));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ import de.ellpeck.prettypipes.Registry;
|
|||
import de.ellpeck.prettypipes.items.IModule;
|
||||
import de.ellpeck.prettypipes.items.ModuleItem;
|
||||
import de.ellpeck.prettypipes.items.ModuleTier;
|
||||
import de.ellpeck.prettypipes.misc.DirectionSelector;
|
||||
import de.ellpeck.prettypipes.misc.ItemFilter;
|
||||
import de.ellpeck.prettypipes.network.PipeNetwork;
|
||||
import de.ellpeck.prettypipes.pipe.PipeBlockEntity;
|
||||
|
@ -33,8 +34,11 @@ public class RetrievalModuleItem extends ModuleItem {
|
|||
public void tick(ItemStack module, PipeBlockEntity tile) {
|
||||
if (!tile.shouldWorkNow(this.speed) || !tile.canWork())
|
||||
return;
|
||||
var network = PipeNetwork.get(tile.getLevel());
|
||||
var dir = this.getDirectionSelector(module, tile).getDirection();
|
||||
if (dir == null)
|
||||
return;
|
||||
|
||||
var network = PipeNetwork.get(tile.getLevel());
|
||||
var equalityTypes = ItemFilter.getEqualityTypes(tile);
|
||||
// loop through filters to see which items to pull
|
||||
for (var subFilter : tile.getFilters()) {
|
||||
|
@ -44,13 +48,13 @@ public class RetrievalModuleItem extends ModuleItem {
|
|||
continue;
|
||||
var copy = filtered.copy();
|
||||
copy.setCount(this.maxExtraction);
|
||||
var dest = tile.getAvailableDestination(copy, true, this.preventOversending);
|
||||
if (dest == null)
|
||||
var dest = tile.getAvailableDestination(dir, copy, true, this.preventOversending);
|
||||
if (dest.isEmpty())
|
||||
continue;
|
||||
var remain = dest.getRight().copy();
|
||||
var remain = dest.copy();
|
||||
// are we already waiting for crafting results? If so, don't request those again
|
||||
remain.shrink(network.getCurrentlyCraftingAmount(tile.getBlockPos(), copy, equalityTypes));
|
||||
if (network.requestItem(tile.getBlockPos(), dest.getLeft(), remain, equalityTypes).isEmpty())
|
||||
if (network.requestItem(tile.getBlockPos(), tile.getBlockPos().relative(dir), remain, equalityTypes).isEmpty())
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -58,12 +62,12 @@ public class RetrievalModuleItem extends ModuleItem {
|
|||
|
||||
@Override
|
||||
public boolean canNetworkSee(ItemStack module, PipeBlockEntity tile, Direction direction, IItemHandler handler) {
|
||||
return false;
|
||||
return direction != this.getDirectionSelector(module, tile).getDirection();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canAcceptItem(ItemStack module, PipeBlockEntity tile, ItemStack stack, Direction direction, IItemHandler destination) {
|
||||
return false;
|
||||
return direction != this.getDirectionSelector(module, tile).getDirection();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -88,4 +92,9 @@ public class RetrievalModuleItem extends ModuleItem {
|
|||
filter.isWhitelist = true;
|
||||
return filter;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DirectionSelector getDirectionSelector(ItemStack module, PipeBlockEntity tile) {
|
||||
return new DirectionSelector(module, tile);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue