Compare commits
32 Commits
9470264d5e
...
main
Author | SHA1 | Date | |
---|---|---|---|
1e38561f5e
|
|||
0c7094f01d
|
|||
fc5b5470b8
|
|||
f87a0c6c14
|
|||
d8c4773424
|
|||
5a45506bd9
|
|||
a0f12ed4b1
|
|||
00fef620d5
|
|||
fb52a6580f
|
|||
c1648f1e13 | |||
92838e6c50 | |||
998a6b7b04 | |||
|
61428a1c9c | ||
|
31a7fc9d03 | ||
4be669f41f
|
|||
f1dd6b9c3c | |||
af56360fad | |||
7cea6fbf83 | |||
9956589189 | |||
51ce3a9774 | |||
2c40d3ae3f | |||
f63a5a36d7 | |||
b2247125b2 | |||
5439e477e0 | |||
06bfdf2053 | |||
fc33aee9a5 | |||
42f37ea5df | |||
6bdacc88fa | |||
e016690fcb | |||
887f0fbf9d | |||
6cd7c83bb5 | |||
773cb102e3 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id 'fabric-loom' version '1.6-SNAPSHOT'
|
||||
id 'fabric-loom' version '1.11-SNAPSHOT'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
|
@@ -3,19 +3,19 @@ org.gradle.jvmargs=-Xmx1G
|
||||
# Fabric Properties
|
||||
# check these on https://modmuss50.me/fabric.html
|
||||
|
||||
minecraft_version=1.21
|
||||
yarn_mappings=1.21+build.7
|
||||
loader_version=0.15.11
|
||||
minecraft_version=1.21.8
|
||||
yarn_mappings=1.21.8+build.1
|
||||
loader_version=0.16.14
|
||||
|
||||
# Fabric API
|
||||
fabric_version=0.100.4+1.21
|
||||
fabric_version=0.129.0+1.21.8
|
||||
|
||||
# Mod Properties
|
||||
mod_version=3.0.6
|
||||
mod_version=3.3.7
|
||||
maven_group=systems.brn
|
||||
archives_base_name=Server_storage
|
||||
archives_base_name=Serverstorage
|
||||
|
||||
# Dependencies
|
||||
polymer_version=0.9.2+1.21
|
||||
server_translations_api_version=2.3.1+1.21-pre2
|
||||
servergui_version=1.6.0+1.21
|
||||
polymer_version=0.13.7+1.21.8
|
||||
server_translations_api_version=2.5.1+1.21.5
|
||||
servergui_version=1.10.2+1.21.8
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
@@ -1,100 +0,0 @@
|
||||
package systems.brn.server_storage;
|
||||
|
||||
import eu.pb4.polymer.resourcepack.api.PolymerResourcePackUtils;
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
import net.fabricmc.fabric.api.gamerule.v1.GameRuleFactory;
|
||||
import net.fabricmc.fabric.api.gamerule.v1.GameRuleRegistry;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroups;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.world.GameRules;
|
||||
import systems.brn.server_storage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.server_storage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.blocks.BusConnectorBlock;
|
||||
import systems.brn.server_storage.blocks.HardDriveContainerBlock;
|
||||
import systems.brn.server_storage.blocks.InventoryInterfaceBlock;
|
||||
import systems.brn.server_storage.blocks.StorageInterfaceBlock;
|
||||
import systems.brn.server_storage.items.HardDriveItem;
|
||||
import systems.brn.server_storage.items.SimpleBlockItem;
|
||||
import systems.brn.server_storage.items.SimpleItem;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
public class ServerStorage implements ModInitializer {
|
||||
public static final List<String> moduleList = Arrays.asList("bus", "configuration", "container", "display", "drive", "filtering", "inventory", "pagination", "pcb", "transport");
|
||||
public static final List<String> tiers = Arrays.asList("iron", "golden", "diamond", "netherite");
|
||||
|
||||
public static final String MOD_ID = "serverstorage";
|
||||
|
||||
public static final String BUS_CONNECTOR_MODEL_ID = "bus_connector";
|
||||
public static BusConnectorBlock BUS_CONNECTOR_BLOCK;
|
||||
|
||||
public static final String HARD_DRIVE_CONTAINER_BLOCK_MODEL_ID = "drive_container";
|
||||
public static BlockEntityType<HardDriveContainerBlockEntity> HARD_DRIVE_CONTAINER_BLOCK_ENTITY;
|
||||
public static HardDriveContainerBlock HARD_DRIVE_CONTAINER_BLOCK;
|
||||
|
||||
public static final String STORAGE_MODEL_ID = "storage";
|
||||
public static StorageInterfaceBlock STORAGE_INTERFACE_BLOCK;
|
||||
public static BlockEntityType<StorageInterfaceBlockEntity> STORAGE_INTERFACE_BLOCK_ENTITY;
|
||||
|
||||
public static final String INVENTORY_INTERFACE_BLOCK_MODEL_ID = "inventory_interface";
|
||||
public static InventoryInterfaceBlock INVENTORY_INTERFACE_BLOCK;
|
||||
public static BlockEntityType<InventoryInterfaceBlockEntity> INVENTORY_INTERFACE_BLOCK_ENTITY;
|
||||
|
||||
|
||||
public static Item DRIVE_CASING;
|
||||
public static Item CPU;
|
||||
public static Item CPU_SUBSTRATE;
|
||||
public static Item DRIVE_CONTROLLER;
|
||||
public static Item PCB;
|
||||
public static Item PCB_SUBSTRATE;
|
||||
public static List<Item> MODULES;
|
||||
public static List<Item> PLATTERS;
|
||||
public static List<Item> DRIVES;
|
||||
public static List<Item> HEADS;
|
||||
|
||||
|
||||
public static Identifier id(String path) {
|
||||
return Identifier.of(MOD_ID, path);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onInitialize()
|
||||
{
|
||||
StorageInterfaceBlock.register();
|
||||
SimpleBlockItem.register(STORAGE_INTERFACE_BLOCK);
|
||||
|
||||
HardDriveContainerBlock.register();
|
||||
SimpleBlockItem.register(HARD_DRIVE_CONTAINER_BLOCK);
|
||||
|
||||
BusConnectorBlock.register();
|
||||
SimpleBlockItem.register(BUS_CONNECTOR_BLOCK);
|
||||
|
||||
InventoryInterfaceBlock.register();
|
||||
SimpleBlockItem.register(INVENTORY_INTERFACE_BLOCK);
|
||||
|
||||
PCB = SimpleItem.register("pcb", ItemGroups.INGREDIENTS);
|
||||
PCB_SUBSTRATE = SimpleItem.register("pcb_substrate", ItemGroups.INGREDIENTS);
|
||||
CPU = SimpleItem.register("cpu", ItemGroups.INGREDIENTS);
|
||||
CPU_SUBSTRATE = SimpleItem.register("cpu_substrate", ItemGroups.INGREDIENTS);
|
||||
DRIVE_CONTROLLER = SimpleItem.register("drive_controller", ItemGroups.INGREDIENTS);
|
||||
DRIVE_CASING = SimpleItem.register("drive_casing", ItemGroups.INGREDIENTS);
|
||||
|
||||
MODULES = SimpleItem.register("module", moduleList, false, ItemGroups.INGREDIENTS);
|
||||
|
||||
HEADS = SimpleItem.register("head", tiers, ItemGroups.INGREDIENTS);
|
||||
PLATTERS = SimpleItem.register("platter", tiers, ItemGroups.INGREDIENTS);
|
||||
|
||||
DRIVES = HardDriveItem.register(tiers);
|
||||
|
||||
|
||||
|
||||
PolymerResourcePackUtils.addModAssets(MOD_ID);
|
||||
PolymerResourcePackUtils.markAsRequired();
|
||||
|
||||
|
||||
}
|
||||
}
|
@@ -1,74 +0,0 @@
|
||||
package systems.brn.server_storage.blockentities;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.registry.RegistryWrapper;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import systems.brn.server_storage.lib.StorageNetwork;
|
||||
import systems.brn.server_storage.screens.CraftingScreen;
|
||||
import systems.brn.server_storage.screens.StorageScreen;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.STORAGE_INTERFACE_BLOCK_ENTITY;
|
||||
|
||||
public class StorageInterfaceBlockEntity extends BlockEntity {
|
||||
|
||||
public Boolean sortAlphabetically = false;
|
||||
public String searchString = "";
|
||||
public int page = 0;
|
||||
public StorageNetwork network;
|
||||
|
||||
public final ArrayList<StorageScreen> openStorageScreens = new ArrayList<>();
|
||||
public final ArrayList<CraftingScreen> openCraftingScreens = new ArrayList<>();
|
||||
|
||||
public StorageInterfaceBlockEntity(BlockPos pos, BlockState state) {
|
||||
super(STORAGE_INTERFACE_BLOCK_ENTITY, pos, state);
|
||||
}
|
||||
|
||||
public void reindexDrives() {
|
||||
if (this.network != null) {
|
||||
this.network.searchString = searchString;
|
||||
this.network.sortAlphabetically = sortAlphabetically;
|
||||
this.network.reindexNetwork();
|
||||
} else {
|
||||
this.network = new StorageNetwork(world, this.pos, sortAlphabetically, searchString);
|
||||
}
|
||||
}
|
||||
|
||||
public void refreshTerminals() {
|
||||
reindexDrives();
|
||||
this.network.updateDisplays();
|
||||
}
|
||||
|
||||
public void updateDisplays() {
|
||||
for (StorageScreen screen : openStorageScreens) {
|
||||
screen.updateDisplay();
|
||||
}
|
||||
for (CraftingScreen screen : openCraftingScreens) {
|
||||
screen.updateDisplay();
|
||||
}
|
||||
}
|
||||
|
||||
// Serialize the BlockEntity
|
||||
@Override
|
||||
public void writeNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup wrapperLookup) {
|
||||
// Save the current value of the number to the nbt
|
||||
nbt.putInt("page", page);
|
||||
nbt.putBoolean("sortAlphabetically", sortAlphabetically);
|
||||
nbt.putString("searchString", searchString);
|
||||
|
||||
super.writeNbt(nbt, wrapperLookup);
|
||||
}
|
||||
|
||||
// Deserialize the BlockEntity
|
||||
@Override
|
||||
public void readNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup wrapperLookup) {
|
||||
super.readNbt(nbt, wrapperLookup);
|
||||
|
||||
page = nbt.getInt("page");
|
||||
sortAlphabetically = nbt.getBoolean("sortAlphabetically");
|
||||
searchString = nbt.getString("searchString");
|
||||
}
|
||||
}
|
@@ -1,15 +0,0 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.recipe.CraftingRecipe;
|
||||
import net.minecraft.recipe.RecipeEntry;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
public class MyCraftingRecipe {
|
||||
HashMap<ItemStack, Integer> inputs = new HashMap<>();
|
||||
HashMap<ItemStack, Integer> outputs = new HashMap<>();
|
||||
MyCraftingRecipe(RecipeEntry<CraftingRecipe> recipeEntry) {
|
||||
recipeEntry.value().getIngredients();
|
||||
}
|
||||
}
|
@@ -1,206 +0,0 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.TreeMap;
|
||||
|
||||
public class StorageOperations {
|
||||
// Modify getSimpleInventory to include item metadata and sort conditionally
|
||||
public static TreeMap<ItemStack, Integer> sortAndFilterMap(Map<ItemStack, Integer> itemStackMap, boolean sortAlphabetically, String query) {
|
||||
TreeMap<ItemStack, Integer> sortedMap = getItemStackIntegerTreeMap(itemStackMap, sortAlphabetically);
|
||||
|
||||
if (query == null || query.isEmpty() || query.equals("*")) {
|
||||
sortedMap.putAll(itemStackMap);
|
||||
} else {
|
||||
Map<ItemStack, Integer> filteredMap = new HashMap<>();
|
||||
for (Map.Entry<ItemStack, Integer> entry : itemStackMap.entrySet()) {
|
||||
if (filterItem(entry.getKey().getItem(), query)){
|
||||
filteredMap.put(entry.getKey(), entry.getValue());
|
||||
}
|
||||
}
|
||||
sortedMap.putAll(filteredMap);
|
||||
}
|
||||
return sortedMap;
|
||||
}
|
||||
|
||||
public static boolean filterItem(Item item, String query){
|
||||
if (item != null) {
|
||||
String itemName = String.valueOf(item);
|
||||
return itemName == null || itemName.contains(query);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private static @NotNull TreeMap<ItemStack, Integer> getItemStackIntegerTreeMap(Map<ItemStack, Integer> itemStackMap, boolean sortAlphabetically) {
|
||||
TreeMap<ItemStack, Integer> sortedMap;
|
||||
|
||||
if (sortAlphabetically) {
|
||||
// Sort alphabetically by item name
|
||||
sortedMap = new TreeMap<>((o1, o2) -> {
|
||||
String name1 = String.valueOf(o1.getItem());
|
||||
String name2 = String.valueOf(o2.getItem());
|
||||
return name1.compareToIgnoreCase(name2);
|
||||
});
|
||||
} else {
|
||||
// Sort by count in descending order
|
||||
sortedMap = new TreeMap<>((o1, o2) -> {
|
||||
int count1 = itemStackMap.get(o1);
|
||||
int count2 = itemStackMap.get(o2);
|
||||
int countCompare = Integer.compare(count2, count1);
|
||||
// If counts are equal, compare items alphabetically by name
|
||||
return countCompare == 0 ? String.valueOf(o1.getItem()).compareToIgnoreCase(String.valueOf(o2.getItem())) : countCompare;
|
||||
});
|
||||
}
|
||||
return sortedMap;
|
||||
}
|
||||
|
||||
public static int canInsertToStack(ItemStack stack1, ItemStack stack2, int maxInsert) {
|
||||
if (stack1.isEmpty() || ItemStack.areItemsEqual(stack1, stack2)) {
|
||||
int remainingSpace = stack1.isEmpty() ? stack2.getMaxCount() : stack1.getMaxCount() - stack1.getCount();
|
||||
maxInsert += remainingSpace;
|
||||
// If the maximum insertion count is greater than or equal to the item count, return the item count
|
||||
if (maxInsert >= stack2.getCount()) {
|
||||
return stack2.getCount();
|
||||
}
|
||||
}
|
||||
return maxInsert;
|
||||
}
|
||||
|
||||
public static int canInsertItemIntoInventory(Inventory inventory, ItemStack itemStack) {
|
||||
// Get the player's inventory
|
||||
int maxInsert = 0;
|
||||
|
||||
if (inventory instanceof PlayerInventory playerInventory) {
|
||||
// Iterate through the slots in the player's inventory
|
||||
for (int i = 0; i < playerInventory.main.size(); i++) {
|
||||
ItemStack slotStack = playerInventory.main.get(i);
|
||||
maxInsert = canInsertToStack(slotStack, itemStack, maxInsert);
|
||||
}
|
||||
} else {
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
maxInsert = canInsertToStack(slotStack, itemStack, maxInsert);
|
||||
}
|
||||
}
|
||||
|
||||
return maxInsert; // Return the maximum insertion count
|
||||
}
|
||||
|
||||
public static ItemStack insertStackIntoInventory(Inventory inventory, ItemStack stack) {
|
||||
// First, try to merge with existing stacks
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (canCombine(slotStack, stack)) {
|
||||
int transferAmount = Math.min(stack.getCount(), slotStack.getMaxCount() - slotStack.getCount());
|
||||
if (transferAmount > 0) {
|
||||
slotStack.increment(transferAmount);
|
||||
stack.decrement(transferAmount);
|
||||
inventory.markDirty();
|
||||
if (stack.isEmpty()) {
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Next, try to find an empty slot
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (slotStack.isEmpty()) {
|
||||
inventory.setStack(i, stack.copy());
|
||||
stack.setCount(0);
|
||||
inventory.markDirty();
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
}
|
||||
|
||||
return stack;
|
||||
}
|
||||
|
||||
public static void removeFromInventory(Inventory inventory, ItemStack stackToRemove, int remainingToRemove) {
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (canCombine(slotStack, stackToRemove)) {
|
||||
int removeAmount = Math.min(slotStack.getCount(), remainingToRemove);
|
||||
slotStack.decrement(removeAmount);
|
||||
remainingToRemove -= removeAmount;
|
||||
inventory.markDirty();
|
||||
|
||||
if (slotStack.isEmpty()) {
|
||||
inventory.setStack(i, ItemStack.EMPTY);
|
||||
}
|
||||
|
||||
if (remainingToRemove <= 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static int howMuchFits(ItemStack stack, Inventory inventory){
|
||||
int out = 0;
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (slotStack.isEmpty()) {
|
||||
out += stack.getMaxCount();
|
||||
continue;
|
||||
}
|
||||
if (canCombine(slotStack, stack)) {
|
||||
int remaining = slotStack.getMaxCount() - slotStack.getCount();
|
||||
out += remaining;
|
||||
}
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
public static int canRemoveRemainingCount(ItemStack stackToRemove, Map<ItemStack, Integer> itemsMap) {
|
||||
int remainingToRemove = stackToRemove.getCount();
|
||||
|
||||
for (Map.Entry<ItemStack, Integer> entry : itemsMap.entrySet()) {
|
||||
ItemStack slotStack = entry.getKey();
|
||||
if (canCombine(slotStack, stackToRemove)) {
|
||||
// If the slot contains the same item type
|
||||
if (entry.getValue() >= remainingToRemove) {
|
||||
// If the count in the slot is sufficient to remove the requested amount
|
||||
return 0;
|
||||
} else {
|
||||
// If the count in the slot is not sufficient, update remainingToRemove
|
||||
remainingToRemove -= slotStack.getCount();
|
||||
}
|
||||
}
|
||||
}
|
||||
// If no matching stack with sufficient count is found, return false
|
||||
return remainingToRemove;
|
||||
}
|
||||
|
||||
public static boolean canCombine(ItemStack stack1, ItemStack stack2) {
|
||||
return !stack1.isEmpty() && stack1.getItem() == stack2.getItem() && ItemStack.areItemsAndComponentsEqual(stack1, stack2);
|
||||
}
|
||||
|
||||
public static void addInventoryToMap(Inventory inventory, Map<ItemStack, Integer> itemStackMap) {
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack stack = inventory.getStack(i);
|
||||
if (!stack.isEmpty()) {
|
||||
addToMap(itemStackMap, stack);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static void addToMap(Map<ItemStack, Integer> itemStackMap, ItemStack stack) {
|
||||
for (Map.Entry<ItemStack, Integer> entry : itemStackMap.entrySet()) {
|
||||
ItemStack existingStack = entry.getKey();
|
||||
if (ItemStack.areItemsAndComponentsEqual(stack, existingStack)) {
|
||||
int newCount = entry.getValue() + stack.getCount();
|
||||
entry.setValue(newCount);
|
||||
return;
|
||||
}
|
||||
}
|
||||
itemStackMap.put(stack.copy(), stack.getCount());
|
||||
}
|
||||
}
|
@@ -1,215 +0,0 @@
|
||||
package systems.brn.server_storage.screens;
|
||||
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.recipe.CraftingRecipe;
|
||||
import net.minecraft.recipe.Ingredient;
|
||||
import net.minecraft.recipe.RecipeEntry;
|
||||
import net.minecraft.text.Text;
|
||||
import systems.brn.server_storage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.lib.CraftingEntry;
|
||||
import systems.brn.server_storage.lib.PagedGui;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
|
||||
import static systems.brn.server_storage.lib.StorageOperations.*;
|
||||
import static systems.brn.server_storage.lib.Util.getCraftableRecipes;
|
||||
|
||||
public class CraftingScreen extends PagedGui {
|
||||
private final StorageScreen storageScreen;
|
||||
private ArrayList<CraftingEntry> craftingEntries;
|
||||
private final StorageInterfaceBlockEntity blockEntity;
|
||||
private ArrayList<DisplayElement> recipesList;
|
||||
|
||||
public CraftingScreen(StorageScreen storageScreen) {
|
||||
super(storageScreen.getPlayer(), null);
|
||||
this.storageScreen = storageScreen;
|
||||
this.blockEntity = storageScreen.blockEntity;
|
||||
this.setTitle(Text.translatable("container.crafting"));
|
||||
this.updateDisplay();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDisplay() {
|
||||
blockEntity.reindexDrives(); // Use justReindexDrives to avoid looping
|
||||
Map<ItemStack, Integer> itemStackMap = new HashMap<>();
|
||||
addInventoryToMap(storageScreen.getPlayer().getInventory(), itemStackMap);
|
||||
itemStackMap.putAll(blockEntity.network.itemStackMap);
|
||||
Map<ItemStack, Integer> items = sortAndFilterMap(itemStackMap, false, null);
|
||||
this.craftingEntries = getCraftableRecipes(items, Objects.requireNonNull(player.getServer()));
|
||||
this.recipesList = getAvailableRecipes();
|
||||
super.updateDisplay();
|
||||
}
|
||||
|
||||
private ArrayList<DisplayElement> getAvailableRecipes() {
|
||||
ArrayList<DisplayElement> recipes = new ArrayList<>();
|
||||
|
||||
for (CraftingEntry craftingEntry : craftingEntries) {
|
||||
ItemStack stackWithCount = craftingEntry.outputStacks.get(0).copy();
|
||||
if (stackWithCount.getCount() > stackWithCount.getMaxCount()) {
|
||||
stackWithCount.setCount(stackWithCount.getMaxCount());
|
||||
}
|
||||
recipes.add(
|
||||
DisplayElement.of(new GuiElementBuilder(stackWithCount)
|
||||
.setCallback((i, clickType, slotActionType) -> {
|
||||
playClickSound(player);
|
||||
RecipeEntry<CraftingRecipe> recipeEntry = craftingEntry.recipeEntry;
|
||||
|
||||
// Crafting logic based on click type
|
||||
if (clickType.isLeft) { // put into player inventory
|
||||
if (clickType.shift) { // craft all
|
||||
craftAll(player, recipeEntry, true);
|
||||
} else { // craft one
|
||||
craftOne(player, recipeEntry, true);
|
||||
}
|
||||
} else if (clickType.isRight) { // put back into storage
|
||||
if (clickType.shift) { // craft all
|
||||
craftAll(player, recipeEntry, false);
|
||||
} else { // craft one
|
||||
craftOne(player, recipeEntry, false);
|
||||
}
|
||||
}
|
||||
updateDisplay();
|
||||
})
|
||||
)
|
||||
);
|
||||
}
|
||||
return recipes;
|
||||
}
|
||||
|
||||
private void craftAll(PlayerEntity player, RecipeEntry<CraftingRecipe> recipeEntry, boolean toPlayerInventory) {
|
||||
while (canCraft(recipeEntry)) {
|
||||
if (craftOne(player, recipeEntry, toPlayerInventory)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private boolean canCraft(RecipeEntry<CraftingRecipe> recipeEntry) {
|
||||
blockEntity.reindexDrives();
|
||||
for (Ingredient ingredient : recipeEntry.value().getIngredients()) {
|
||||
if (findMatchingStack(ingredient) == null) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean craftOne(PlayerEntity player, RecipeEntry<CraftingRecipe> recipeEntry, boolean toPlayerInventory) {
|
||||
ArrayList<ItemStack> stacksToRemove = new ArrayList<>();
|
||||
|
||||
// Check and remove ingredients for one crafting operation
|
||||
for (Ingredient ingredient : recipeEntry.value().getIngredients()) {
|
||||
ItemStack stackToRemove = findMatchingStack(ingredient);
|
||||
if (stackToRemove == null) {
|
||||
return false; // Unable to find required ingredient
|
||||
}
|
||||
stacksToRemove.add(stackToRemove);
|
||||
}
|
||||
|
||||
// Remove ingredients from inventory and network
|
||||
for (ItemStack stack : stacksToRemove) {
|
||||
removeItems(stack);
|
||||
}
|
||||
|
||||
// Add crafted item to the appropriate inventory
|
||||
ItemStack outputStack = recipeEntry.value().getResult(storageScreen.getPlayer().getRegistryManager()).copy();
|
||||
|
||||
if (toPlayerInventory) {
|
||||
PlayerInventory playerInventory = player.getInventory();
|
||||
ItemStack insertStack = outputStack.copy();
|
||||
if (canInsertItemIntoInventory(playerInventory, insertStack) == insertStack.getCount()) {
|
||||
playerInventory.insertStack(insertStack);
|
||||
} else {
|
||||
return true; // Inventory full or unable to insert all items
|
||||
}
|
||||
} else {
|
||||
ItemStack insertStack = outputStack.copy();
|
||||
if (this.blockEntity.network.canAddItemStack(insertStack)) {
|
||||
this.blockEntity.network.putItemStackRemainder(insertStack);
|
||||
} else {
|
||||
return true; // Storage full or unable to insert all items
|
||||
}
|
||||
}
|
||||
|
||||
return false; // Crafted one item successfully
|
||||
}
|
||||
|
||||
private ItemStack findMatchingStack(Ingredient ingredient) {
|
||||
// Check player's inventory first
|
||||
PlayerInventory playerInventory = storageScreen.getPlayer().getInventory();
|
||||
for (int i = 0; i < playerInventory.size(); i++) {
|
||||
ItemStack playerStack = playerInventory.getStack(i);
|
||||
if (ingredient.test(playerStack)) {
|
||||
ItemStack stackToRemove = playerStack.copy();
|
||||
for (ItemStack matchingStack : ingredient.getMatchingStacks()){
|
||||
if (matchingStack.getItem() == stackToRemove.getItem()) {
|
||||
stackToRemove.setCount(matchingStack.getCount()); // Set count to ingredient requirement
|
||||
break;
|
||||
}
|
||||
}
|
||||
return stackToRemove;
|
||||
}
|
||||
}
|
||||
|
||||
// Check storage network
|
||||
for (ItemStack stack : ingredient.getMatchingStacks()) {
|
||||
if (this.blockEntity.network.canRemove(stack)) {
|
||||
ItemStack stackToRemove = stack.copy();
|
||||
stackToRemove.setCount(ingredient.getMatchingStacks()[0].getCount()); // Set count to ingredient requirement
|
||||
return stackToRemove;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private void removeItems(ItemStack stack) {
|
||||
ItemStack removedFromStorage = this.blockEntity.network.removeItemStack(stack);
|
||||
ItemStack fromPlayer = stack.copy();
|
||||
fromPlayer.setCount(stack.getCount() - removedFromStorage.getCount());
|
||||
if (fromPlayer.getCount() > 0) {
|
||||
Inventory playerInventory = player.getInventory();
|
||||
for (int i = 0; i < playerInventory.size(); i++) {
|
||||
if (ItemStack.areItemsEqual(playerInventory.getStack(i), fromPlayer)) {
|
||||
playerInventory.removeStack(i, fromPlayer.getCount());
|
||||
break; // Only remove one stack per crafting iteration
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean open() {
|
||||
page = blockEntity.page;
|
||||
this.blockEntity.openCraftingScreens.add(this);
|
||||
blockEntity.updateDisplays();
|
||||
return super.open();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose() {
|
||||
super.onClose();
|
||||
this.blockEntity.openCraftingScreens.remove(this);
|
||||
storageScreen.open();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return Math.ceilDivExact(recipesList.size(), 9 * 6);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
if (id >= 0 && id < recipesList.size()) {
|
||||
return recipesList.get(id);
|
||||
} else {
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,246 +0,0 @@
|
||||
package systems.brn.server_storage.screens;
|
||||
|
||||
import eu.pb4.sgui.api.ClickType;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import eu.pb4.sgui.api.elements.GuiElementInterface;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.screen.slot.SlotActionType;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.server_storage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.lib.PagedGui;
|
||||
|
||||
import static systems.brn.server_storage.lib.StorageOperations.*;
|
||||
import static systems.brn.server_storage.lib.Util.addCountToLore;
|
||||
import static systems.brn.server_storage.lib.Util.removeCountFromLore;
|
||||
|
||||
public class StorageScreen extends PagedGui {
|
||||
private final ServerPlayerEntity player;
|
||||
public final StorageInterfaceBlockEntity blockEntity;
|
||||
|
||||
public StorageScreen(ServerPlayerEntity player, BlockPos pos, @Nullable Runnable closeCallback) {
|
||||
super(player, closeCallback);
|
||||
this.player = player;
|
||||
this.setLockPlayerInventory(false);
|
||||
this.blockEntity = (StorageInterfaceBlockEntity) player.getWorld().getBlockEntity(pos);
|
||||
assert blockEntity != null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean open() {
|
||||
page = blockEntity.page;
|
||||
this.blockEntity.openStorageScreens.add(this);
|
||||
blockEntity.updateDisplays();
|
||||
return super.open();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDisplay() {
|
||||
blockEntity.reindexDrives();
|
||||
String title = blockEntity.network.driveUsedSlots +
|
||||
"u/" +
|
||||
blockEntity.network.driveTotalSlots +
|
||||
"t(" +
|
||||
blockEntity.network.driveFreeSlots +
|
||||
"f)" +
|
||||
"[" +
|
||||
blockEntity.network.driveContainerCount +
|
||||
"c]" +
|
||||
"[" +
|
||||
blockEntity.network.drivesCount +
|
||||
"d]";
|
||||
|
||||
setTitle(Text.of(title));
|
||||
super.updateDisplay();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return Math.ceilDivExact(blockEntity.network.filteredItemStackMap.size(), 9 * 6);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
if (blockEntity.network.filteredItemStackMap.size() > id) {
|
||||
ItemStack itemStackKey = (ItemStack) blockEntity.network.filteredItemStackMap.keySet().toArray()[id];
|
||||
ItemStack aestheticStack = itemStackKey.copy();
|
||||
int count = blockEntity.network.filteredItemStackMap.get(itemStackKey);
|
||||
aestheticStack.setCount(Math.min(aestheticStack.getMaxCount(), count));
|
||||
ItemStack newStack = addCountToLore(count, aestheticStack, null);
|
||||
GuiElementBuilder guiElement = new GuiElementBuilder(newStack);
|
||||
return DisplayElement.of(guiElement);
|
||||
}
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onClick(int index, ClickType type, SlotActionType action, GuiElementInterface element) {
|
||||
GuiElementInterface clickedElement = getSlot(index);
|
||||
ItemStack cursorStack = getPlayer().currentScreenHandler.getCursorStack();
|
||||
if (clickedElement != null && cursorStack.isEmpty()) {
|
||||
ItemStack clickedItem = clickedElement.getItemStack();
|
||||
ItemStack noLoreStack = removeCountFromLore(clickedItem);
|
||||
noLoreStack = blockEntity.network.findSimilarStack(noLoreStack);
|
||||
if (type.isRight) {
|
||||
if (!type.shift) {
|
||||
noLoreStack.setCount(Math.min(noLoreStack.getMaxCount(), noLoreStack.getCount() / 2)); //half stack
|
||||
} else {
|
||||
for (int i = 0; i < player.getInventory().main.size(); i++) {
|
||||
ItemStack stack = player.getInventory().main.get(i);
|
||||
if (ItemStack.areItemsAndComponentsEqual(stack, noLoreStack)) {
|
||||
insertItem(stack, 0, getVirtualSize(), false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} else if (type.isLeft) {
|
||||
if (noLoreStack.getCount() > noLoreStack.getMaxCount() && !type.shift) {
|
||||
noLoreStack.setCount(noLoreStack.getMaxCount()); // if not shift, get one stack
|
||||
}
|
||||
}
|
||||
if (!(type.isRight && type.shift)) {
|
||||
PlayerInventory playerInventory = player.getInventory();
|
||||
int insertCount = canInsertItemIntoInventory(playerInventory, noLoreStack);
|
||||
ItemStack insertingStack = noLoreStack.copy();
|
||||
insertingStack.setCount(insertCount);
|
||||
blockEntity.refreshTerminals();
|
||||
if (blockEntity.network.canRemove(noLoreStack) && insertCount > 0) {
|
||||
playerInventory.insertStack(insertingStack.copy());
|
||||
blockEntity.network.removeItemStack(insertingStack);
|
||||
blockEntity.refreshTerminals();
|
||||
}
|
||||
}
|
||||
} else if (!cursorStack.isEmpty()) {
|
||||
insertItem(cursorStack);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void insertItem(ItemStack stack) {
|
||||
int canPutIn = stack.getCount() - blockEntity.network.putItemStackRemainder(stack);
|
||||
if (canPutIn > 0) {
|
||||
removeFromInventory(player.getInventory(), stack, canPutIn);
|
||||
blockEntity.refreshTerminals();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean insertItem(ItemStack stack, int startIndex, int endIndex, boolean fromLast) {
|
||||
blockEntity.refreshTerminals();
|
||||
insertItem(stack);
|
||||
return super.insertItem(stack, startIndex, endIndex, fromLast);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement search() {
|
||||
String searchString = blockEntity.searchString;
|
||||
if (searchString == null || searchString.isEmpty() || searchString.equals("*")) {
|
||||
searchString = "Filter not set";
|
||||
}
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.literal(searchString).formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_QUESTION_MARK)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(getPlayer());
|
||||
if (y.isRight) {
|
||||
doSearch("");
|
||||
} else if (y.isLeft) {
|
||||
SearchScreen searchScreen = new SearchScreen(this, "");
|
||||
searchScreen.open();
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement settings() {
|
||||
SettingsScreen settingsScreen = new SettingsScreen(this);
|
||||
return settingsScreen.getItem();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement sorting() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable(this.blockEntity.sortAlphabetically ? "A->Z" : "9->1").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(this.blockEntity.sortAlphabetically ? GUI_A : GUI_1)
|
||||
.setCallback((x, y, z) -> {
|
||||
this.blockEntity.sortAlphabetically ^= true;
|
||||
playClickSound(getPlayer());
|
||||
this.blockEntity.refreshTerminals();
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected DisplayElement storeAll() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("gui.all").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_STORE_ALL)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(player);
|
||||
for (int i = 0; i < player.getInventory().main.size(); i++) {
|
||||
ItemStack stack = player.getInventory().main.get(i);
|
||||
insertItem(stack, 0, getVirtualSize(), false);
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement crafting() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("container.crafting").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_CRAFTING)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(player);
|
||||
CraftingScreen craftingScreen = new CraftingScreen(this);
|
||||
playClickSound(getPlayer());
|
||||
craftingScreen.open();
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
public void doSearch(String query) {
|
||||
this.blockEntity.searchString = query;
|
||||
this.blockEntity.refreshTerminals();
|
||||
this.page = 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement refresh() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setSkullOwner(GUI_REFRESH)
|
||||
.setName(Text.translatable("selectServer.refresh").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(player);
|
||||
this.page = 0;
|
||||
this.blockEntity.searchString = "";
|
||||
this.blockEntity.refreshTerminals();
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose() {
|
||||
this.blockEntity.page = page;
|
||||
this.blockEntity.markDirty();
|
||||
this.blockEntity.openStorageScreens.remove(this);
|
||||
super.onClose();
|
||||
}
|
||||
}
|
127
src/main/java/systems/brn/serverstorage/ServerStorage.java
Normal file
127
src/main/java/systems/brn/serverstorage/ServerStorage.java
Normal file
@@ -0,0 +1,127 @@
|
||||
package systems.brn.serverstorage;
|
||||
|
||||
import eu.pb4.polymer.resourcepack.api.PolymerResourcePackUtils;
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
import net.fabricmc.fabric.api.event.player.UseItemCallback;
|
||||
import net.fabricmc.fabric.api.gamerule.v1.GameRuleFactory;
|
||||
import net.fabricmc.fabric.api.gamerule.v1.GameRuleRegistry;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroups;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.world.GameRules;
|
||||
import systems.brn.serverstorage.blockentities.*;
|
||||
import systems.brn.serverstorage.blocks.*;
|
||||
import systems.brn.serverstorage.items.HardDriveItem;
|
||||
import systems.brn.serverstorage.items.SimpleBlockItem;
|
||||
import systems.brn.serverstorage.items.SimpleItem;
|
||||
import systems.brn.serverstorage.items.WirelessTerminalItem;
|
||||
import systems.brn.serverstorage.lib.Antenna;
|
||||
import systems.brn.serverstorage.lib.EventHandler;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
public class ServerStorage implements ModInitializer {
|
||||
public static final List<String> moduleList = Arrays.asList("bus", "configuration", "container", "display", "drive", "filtering", "inventory", "pagination", "pcb", "transport", "antenna", "radio", "antenna_connector", "modem", "netherite_upgrade");
|
||||
public static final List<String> tiers = Arrays.asList("iron", "golden", "diamond", "netherite");
|
||||
public static final List<String> tiersAntenna = Arrays.asList("iron", "golden", "diamond", "netherite", "ender");
|
||||
public static final List<String> tiersDrive = Arrays.asList("iron", "golden", "diamond", "netherite", "creative");
|
||||
public static final List<String> materialList = Arrays.asList("pcb", "pcb_substrate", "cpu", "cpu_substrate", "drive_controller", "drive_casing");
|
||||
|
||||
public static final String MOD_ID = "serverstorage";
|
||||
|
||||
public static final String WIRELESS_TERMINAL_ID = "wireless_terminal";
|
||||
|
||||
public static final String DISPLAY_BLOCK_MODEL_ID = "display_block";
|
||||
public static DisplayBlock DISPLAY_BLOCK;
|
||||
public static BlockEntityType<DisplayBlockEntity> DISPLAY_BLOCK_ENTITY;
|
||||
|
||||
public static final String BUS_CONNECTOR_MODEL_ID = "bus_connector";
|
||||
public static BusConnectorBlock BUS_CONNECTOR_BLOCK;
|
||||
|
||||
public static final String HARD_DRIVE_CONTAINER_BLOCK_MODEL_ID = "drive_container";
|
||||
public static BlockEntityType<HardDriveContainerBlockEntity> HARD_DRIVE_CONTAINER_BLOCK_ENTITY;
|
||||
public static HardDriveContainerBlock HARD_DRIVE_CONTAINER_BLOCK;
|
||||
|
||||
public static final String RADIO_INTERFACE_BLOCK_MODEL_ID = "radio_interface";
|
||||
public static BlockEntityType<RadioInterfaceBlockEntity> RADIO_INTERFACE_BLOCK_ENTITY;
|
||||
public static RadioInterfaceBlock RADIO_INTERFACE_BLOCK;
|
||||
|
||||
public static final String STORAGE_MODEL_ID = "storage";
|
||||
public static StorageInterfaceBlock STORAGE_INTERFACE_BLOCK;
|
||||
public static BlockEntityType<StorageInterfaceBlockEntity> STORAGE_INTERFACE_BLOCK_ENTITY;
|
||||
|
||||
public static final String INVENTORY_INTERFACE_BLOCK_MODEL_ID = "inventory_interface";
|
||||
public static InventoryInterfaceBlock INVENTORY_INTERFACE_BLOCK;
|
||||
public static BlockEntityType<InventoryInterfaceBlockEntity> INVENTORY_INTERFACE_BLOCK_ENTITY;
|
||||
|
||||
public static final GameRules.Key<GameRules.BooleanRule> ServerStorage_Crafting_Enable =
|
||||
GameRuleRegistry.register("serverstorage_crafting_module", GameRules.Category.MISC, GameRuleFactory.createBooleanRule(true));
|
||||
|
||||
public static final GameRules.Key<GameRules.BooleanRule> ServerStorage_Terminal_Enable =
|
||||
GameRuleRegistry.register("serverstorage_terminal_module", GameRules.Category.MISC, GameRuleFactory.createBooleanRule(true));
|
||||
|
||||
public static final GameRules.Key<GameRules.BooleanRule> ServerStorage_Interface_Enable =
|
||||
GameRuleRegistry.register("serverstorage_interface_module", GameRules.Category.MISC, GameRuleFactory.createBooleanRule(true));
|
||||
|
||||
|
||||
public static List<Item> MATERIALS;
|
||||
public static List<Item> MODULES;
|
||||
public static List<Item> PLATTERS;
|
||||
public static List<Item> DRIVES;
|
||||
public static List<Item> HEADS;
|
||||
public static List<Item> ANTENNA_LIST = new ArrayList<>();
|
||||
public static final HashMap<Item, Integer> ANTENNA_RANGES = new HashMap<>();
|
||||
|
||||
public static Item WIRELESS_TERMINAL;
|
||||
|
||||
|
||||
public static Identifier id(String path) {
|
||||
return Identifier.of(MOD_ID, path);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
StorageInterfaceBlock.register();
|
||||
SimpleBlockItem.register(STORAGE_INTERFACE_BLOCK);
|
||||
|
||||
HardDriveContainerBlock.register();
|
||||
SimpleBlockItem.register(HARD_DRIVE_CONTAINER_BLOCK);
|
||||
|
||||
BusConnectorBlock.register();
|
||||
SimpleBlockItem.register(BUS_CONNECTOR_BLOCK);
|
||||
|
||||
InventoryInterfaceBlock.register();
|
||||
SimpleBlockItem.register(INVENTORY_INTERFACE_BLOCK);
|
||||
|
||||
RadioInterfaceBlock.register();
|
||||
SimpleBlockItem.register(RADIO_INTERFACE_BLOCK);
|
||||
|
||||
DisplayBlock.register();
|
||||
SimpleBlockItem.register(DISPLAY_BLOCK);
|
||||
|
||||
MATERIALS = SimpleItem.register("material", materialList, false, ItemGroups.INGREDIENTS);
|
||||
MODULES = SimpleItem.register("module", moduleList, false, ItemGroups.INGREDIENTS);
|
||||
|
||||
HEADS = SimpleItem.register("head", tiers, ItemGroups.INGREDIENTS);
|
||||
PLATTERS = SimpleItem.register("platter", tiers, ItemGroups.INGREDIENTS);
|
||||
|
||||
DRIVES = HardDriveItem.register(tiersDrive);
|
||||
|
||||
ANTENNA_LIST = Antenna.register(tiersAntenna);
|
||||
|
||||
WIRELESS_TERMINAL = WirelessTerminalItem.register();
|
||||
|
||||
|
||||
UseItemCallback.EVENT.register(EventHandler::onItemUse);
|
||||
|
||||
systems.brn.serverstorage.lib.ItemGroups.register();
|
||||
PolymerResourcePackUtils.addModAssets(MOD_ID);
|
||||
PolymerResourcePackUtils.markAsRequired();
|
||||
|
||||
|
||||
}
|
||||
}
|
@@ -0,0 +1,143 @@
|
||||
package systems.brn.serverstorage.blockentities;
|
||||
|
||||
import eu.pb4.polymer.virtualentity.api.ElementHolder;
|
||||
import eu.pb4.polymer.virtualentity.api.attachment.ChunkAttachment;
|
||||
import eu.pb4.polymer.virtualentity.api.elements.ItemDisplayElement;
|
||||
import eu.pb4.polymer.virtualentity.api.elements.TextDisplayElement;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.registry.RegistryWrapper;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.storage.ReadView;
|
||||
import net.minecraft.storage.WriteView;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Vec3d;
|
||||
import net.minecraft.world.World;
|
||||
import org.joml.Vector3f;
|
||||
import systems.brn.serverstorage.lib.SortMode;
|
||||
import systems.brn.serverstorage.lib.StorageNetwork;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.DISPLAY_BLOCK_ENTITY;
|
||||
import static systems.brn.serverstorage.blocks.DisplayBlock.FACING;
|
||||
|
||||
public class DisplayBlockEntity extends BlockEntity {
|
||||
public ItemStack targetItem;
|
||||
public int itemCount;
|
||||
public StorageNetwork network;
|
||||
|
||||
private final ElementHolder holder = new ElementHolder();
|
||||
public final ItemDisplayElement itemElement = new ItemDisplayElement();
|
||||
public final TextDisplayElement textDisplayElement = new TextDisplayElement();
|
||||
|
||||
private boolean attached = false;
|
||||
|
||||
public void reindexDrives() {
|
||||
if (this.network != null) {
|
||||
this.network.searchString = "*";
|
||||
this.network.reindexNetwork();
|
||||
} else {
|
||||
this.network = new StorageNetwork(world, this.pos, SortMode.NUMERICALLY_REVERSE, "*", false);
|
||||
}
|
||||
}
|
||||
|
||||
public DisplayBlockEntity(BlockPos pos, BlockState state) {
|
||||
super(DISPLAY_BLOCK_ENTITY, pos, state);
|
||||
targetItem = ItemStack.EMPTY;
|
||||
itemCount = 1;
|
||||
itemElement.setItem(targetItem);
|
||||
textDisplayElement.setText(Text.of(String.valueOf(itemCount)));
|
||||
// You can offset to make it float in front of the block
|
||||
Vector3f vec = new Vector3f(0.5f, 0.5f, 0.5f); // mutable
|
||||
|
||||
// Get the block's facing direction as a Vec3d
|
||||
Vec3d facingVec = state.get(FACING).getDoubleVector(); // Example: NORTH = (0, 0, -1)
|
||||
|
||||
// Calculate outward offset for the item
|
||||
Vec3d itemOffset = facingVec.multiply(0.5);
|
||||
itemElement.setOffset(itemOffset);
|
||||
|
||||
// Define global "up"
|
||||
Vec3d up = new Vec3d(0, 1, 0);
|
||||
|
||||
// Compute perpendicular "down" relative to the block face
|
||||
Vec3d down = facingVec.crossProduct(up).normalize().multiply(0.3);
|
||||
|
||||
// Final text offset: outward from face + downward relative to face
|
||||
Vec3d textOffset = facingVec.normalize().multiply(0.5).add(down);
|
||||
textDisplayElement.setOffset(textOffset.add(0,0.25,0));
|
||||
|
||||
switch (state.get(FACING)) {
|
||||
case NORTH -> textDisplayElement.setRotation(0, 180);
|
||||
case SOUTH -> textDisplayElement.setRotation(0, 0);
|
||||
case WEST -> textDisplayElement.setRotation(0, 90);
|
||||
case EAST -> textDisplayElement.setRotation(0, 270);
|
||||
case UP -> textDisplayElement.setRotation(-90, 0); // text points down
|
||||
case DOWN -> textDisplayElement.setRotation(90, 0); // text points up
|
||||
}
|
||||
|
||||
// assign to const interface
|
||||
itemElement.setScale(vec); // Optional
|
||||
holder.addElement(itemElement);
|
||||
holder.addElement(textDisplayElement);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void readData(ReadView view) {
|
||||
super.readData(view);
|
||||
this.targetItem = ItemStack.EMPTY;
|
||||
this.itemCount = 0;
|
||||
view.read("TargetItem", ItemStack.CODEC).ifPresent(itemStack -> this.targetItem = itemStack.copy());
|
||||
this.itemCount = view.getInt("TargetItemCount", 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NbtCompound toInitialChunkDataNbt(RegistryWrapper.WrapperLookup registries) {
|
||||
return createNbt(registries);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void markRemoved() {
|
||||
textDisplayElement.setText(Text.of(""));
|
||||
itemElement.setItem(Items.AIR.getDefaultStack());
|
||||
super.markRemoved();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void writeData(WriteView view) {
|
||||
super.writeData(view);
|
||||
|
||||
view.putInt("TargetItemCount", itemCount);
|
||||
view.putNullable("TargetItem", ItemStack.CODEC, targetItem.copy());
|
||||
}
|
||||
|
||||
public static <T extends BlockEntity> void tick(World world, BlockPos blockPos, BlockState blockState, T t) {
|
||||
if (t instanceof DisplayBlockEntity displayBlockEntity) {
|
||||
if (!world.isClient()) {
|
||||
if (displayBlockEntity.network == null) {
|
||||
displayBlockEntity.reindexDrives();
|
||||
displayBlockEntity.itemCount = 0;
|
||||
for(Map.Entry<ItemStack, Integer> entry : displayBlockEntity.network.itemStackMap.entrySet()) {
|
||||
ItemStack key = entry.getKey();
|
||||
Integer value = entry.getValue();
|
||||
if (ItemStack.areItemsAndComponentsEqual(key, displayBlockEntity.targetItem)) {
|
||||
displayBlockEntity.itemCount = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
displayBlockEntity.itemElement.setItem(displayBlockEntity.targetItem);
|
||||
displayBlockEntity.textDisplayElement.setText(Text.of(String.valueOf(displayBlockEntity.itemCount)));
|
||||
}
|
||||
if (!displayBlockEntity.attached) {
|
||||
displayBlockEntity.attached = true;
|
||||
ChunkAttachment.ofTicking(displayBlockEntity.holder, (ServerWorld) world, blockPos.toCenterPos());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,24 +1,24 @@
|
||||
package systems.brn.server_storage.blockentities;
|
||||
package systems.brn.serverstorage.blockentities;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.LootableContainerBlockEntity;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.inventory.Inventories;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.registry.RegistryWrapper;
|
||||
import net.minecraft.screen.ScreenHandler;
|
||||
import net.minecraft.storage.ReadView;
|
||||
import net.minecraft.storage.WriteView;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.collection.DefaultedList;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import systems.brn.server_storage.items.HardDrive;
|
||||
import systems.brn.server_storage.lib.StorageNetwork;
|
||||
import systems.brn.server_storage.screenhandlers.DriveContainerScreenHandler;
|
||||
import systems.brn.serverstorage.items.HardDrive;
|
||||
import systems.brn.serverstorage.lib.StorageNetwork;
|
||||
import systems.brn.serverstorage.screenhandlers.DriveContainerScreenHandler;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.DRIVES;
|
||||
import static systems.brn.server_storage.ServerStorage.HARD_DRIVE_CONTAINER_BLOCK_ENTITY;
|
||||
import static systems.brn.serverstorage.ServerStorage.DRIVES;
|
||||
import static systems.brn.serverstorage.ServerStorage.HARD_DRIVE_CONTAINER_BLOCK_ENTITY;
|
||||
|
||||
public class HardDriveContainerBlockEntity extends LootableContainerBlockEntity {
|
||||
public DefaultedList<ItemStack> inventory;
|
||||
@@ -61,19 +61,19 @@ public class HardDriveContainerBlockEntity extends LootableContainerBlockEntity
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void readNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup registryLookup) {
|
||||
super.readNbt(nbt, registryLookup);
|
||||
protected void readData(ReadView view) {
|
||||
super.readData(view);
|
||||
this.inventory = DefaultedList.ofSize(this.size(), ItemStack.EMPTY);
|
||||
if (!this.readLootTable(nbt)) {
|
||||
Inventories.readNbt(nbt, this.inventory, registryLookup);
|
||||
if (!this.readLootTable(view)) {
|
||||
Inventories.readData(view, this.inventory);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void writeNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup registryLookup) {
|
||||
super.writeNbt(nbt, registryLookup);
|
||||
if (!this.writeLootTable(nbt)) {
|
||||
Inventories.writeNbt(nbt, this.inventory, registryLookup);
|
||||
protected void writeData(WriteView view) {
|
||||
super.writeData(view);
|
||||
if (!this.writeLootTable(view)) {
|
||||
Inventories.writeData(view, this.inventory);
|
||||
}
|
||||
}
|
||||
|
@@ -1,26 +1,29 @@
|
||||
package systems.brn.server_storage.blockentities;
|
||||
package systems.brn.serverstorage.blockentities;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.registry.RegistryWrapper;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.storage.ReadView;
|
||||
import net.minecraft.storage.WriteView;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import systems.brn.server_storage.lib.ConnectionType;
|
||||
import systems.brn.server_storage.lib.StorageNetwork;
|
||||
import systems.brn.server_storage.screens.SettingsScreen;
|
||||
import systems.brn.serverstorage.lib.ConnectionType;
|
||||
import systems.brn.serverstorage.lib.SortMode;
|
||||
import systems.brn.serverstorage.lib.StorageNetwork;
|
||||
import systems.brn.serverstorage.screens.SettingsScreen;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.INVENTORY_INTERFACE_BLOCK_ENTITY;
|
||||
import static systems.brn.server_storage.blocks.ConnectedBlock.getPropertyForDirection;
|
||||
import static systems.brn.server_storage.lib.StorageOperations.*;
|
||||
import static systems.brn.serverstorage.ServerStorage.INVENTORY_INTERFACE_BLOCK_ENTITY;
|
||||
import static systems.brn.serverstorage.ServerStorage.ServerStorage_Interface_Enable;
|
||||
import static systems.brn.serverstorage.blocks.ConnectedBlock.getPropertyForDirection;
|
||||
import static systems.brn.serverstorage.lib.StorageOperations.*;
|
||||
|
||||
public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
|
||||
@@ -45,7 +48,7 @@ public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
this.network.searchString = query;
|
||||
this.network.reindexNetwork();
|
||||
} else {
|
||||
this.network = new StorageNetwork(world, this.pos, false, query);
|
||||
this.network = new StorageNetwork(world, this.pos, SortMode.NUMERICALLY_REVERSE, query, false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -56,29 +59,29 @@ public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
}
|
||||
|
||||
public void nextDirection() {
|
||||
int newId = (direction.getId() + 1) % 6;
|
||||
direction = Direction.byId(newId);
|
||||
int newId = (direction.getIndex() + 1) % 6;
|
||||
direction = Direction.byIndex(newId);
|
||||
}
|
||||
|
||||
// Serialize the BlockEntity
|
||||
@Override
|
||||
public void writeNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup wrapperLookup) {
|
||||
public void writeData(WriteView view) {
|
||||
// Save the current value of the number to the nbt
|
||||
nbt.putBoolean("isOutput", isOutput);
|
||||
nbt.putInt("direction", direction.getId());
|
||||
nbt.putInt("tickCounter", tickCounter);
|
||||
nbt.putString("query", query);
|
||||
super.writeNbt(nbt, wrapperLookup);
|
||||
view.putBoolean("isOutput", isOutput);
|
||||
view.putInt("direction", direction.getIndex());
|
||||
view.putInt("tickCounter", tickCounter);
|
||||
view.putString("query", query);
|
||||
super.writeData(view);
|
||||
}
|
||||
|
||||
// Deserialize the BlockEntity
|
||||
@Override
|
||||
public void readNbt(NbtCompound nbt, RegistryWrapper.WrapperLookup wrapperLookup) {
|
||||
super.readNbt(nbt, wrapperLookup);
|
||||
isOutput = nbt.getBoolean("isOutput");
|
||||
direction = Direction.byId(nbt.getInt("direction"));
|
||||
tickCounter = nbt.getInt("tickCounter");
|
||||
query = nbt.getString("query");
|
||||
public void readData(ReadView view) {
|
||||
super.readData(view);
|
||||
isOutput = view.getBoolean("isOutput", false);
|
||||
direction = Direction.byIndex(view.getInt("direction", Direction.NORTH.getIndex()));
|
||||
tickCounter = view.getInt("tickCounter", 0);
|
||||
query = view.getString("query", "");
|
||||
}
|
||||
|
||||
private static int processIncomingInternal(ItemStack stack, int count, InventoryInterfaceBlockEntity blockEntity, Inventory targetedBlockEntityInventory) {
|
||||
@@ -93,7 +96,7 @@ public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
ItemStack cappedStack = insertedStack.copy();
|
||||
cappedStack.setCount(Math.min(insertedStack.getMaxCount(), remainingToInsert));
|
||||
|
||||
ItemStack remaining = insertStackIntoInventory(targetedBlockEntityInventory, cappedStack.copy());
|
||||
ItemStack remaining = insertStackIntoInventory(targetedBlockEntityInventory, cappedStack.copy(), false);
|
||||
if (!remaining.isEmpty()) {
|
||||
ItemStack reverseStack = stack.copy();
|
||||
reverseStack.setCount(remaining.getCount() + remainingToInsert);
|
||||
@@ -106,7 +109,7 @@ public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
}
|
||||
|
||||
public int processIncoming(ItemStack stack, int count) {
|
||||
if (world != null && isOutput && filterItem(stack.getItem(), query)) {
|
||||
if (world != null && ((ServerWorld) world).getGameRules().getBoolean(ServerStorage_Interface_Enable) && isOutput && filterItem(stack.getItem(), query)) {
|
||||
BlockPos targetedPos = pos.offset(direction);
|
||||
BlockEntity targetedBlockEntity = world.getBlockEntity(targetedPos);
|
||||
EnumProperty<ConnectionType> connectionType = getPropertyForDirection(direction);
|
||||
@@ -122,7 +125,10 @@ public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
return count;
|
||||
}
|
||||
|
||||
public static <T extends BlockEntity> void tick(World world, BlockPos blockPos, BlockState state, T t) {
|
||||
public static <T extends BlockEntity> void tick(World world, BlockPos blockPos, BlockState ignoredState, T ignoredt) {
|
||||
if (!((ServerWorld) world).getGameRules().getBoolean(ServerStorage_Interface_Enable)) {
|
||||
return;
|
||||
}
|
||||
InventoryInterfaceBlockEntity blockEntity = (InventoryInterfaceBlockEntity) world.getBlockEntity(blockPos);
|
||||
if (blockEntity != null) {
|
||||
if (blockEntity.tickCounter == 0) {
|
||||
@@ -145,7 +151,7 @@ public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
} else {
|
||||
Map<ItemStack, Integer> targetedBlockInventoryMap = new HashMap<>();
|
||||
addInventoryToMap(targetedBlockEntityInventory, targetedBlockInventoryMap);
|
||||
targetedBlockInventoryMap = sortAndFilterMap(targetedBlockInventoryMap, false, blockEntity.query);
|
||||
targetedBlockInventoryMap = sortAndFilterMap(targetedBlockInventoryMap, SortMode.NUMERICALLY_REVERSE, blockEntity.query, false);
|
||||
for (Map.Entry<ItemStack, Integer> entry : targetedBlockInventoryMap.entrySet()) {
|
||||
ItemStack stack = entry.getKey();
|
||||
int count = entry.getValue();
|
||||
@@ -153,12 +159,12 @@ public class InventoryInterfaceBlockEntity extends BlockEntity {
|
||||
insertingStack.setCount(count);
|
||||
if (count > 0) {
|
||||
int canPutInside = count - blockEntity.network.putItemStackRemainder(insertingStack.copy());
|
||||
blockEntity.network.updateDisplays();
|
||||
if (canPutInside > 0) {
|
||||
removeFromInventory(targetedBlockEntityInventory, insertingStack.copy(), canPutInside);
|
||||
}
|
||||
}
|
||||
}
|
||||
blockEntity.network.updateDisplays();
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,124 @@
|
||||
package systems.brn.serverstorage.blockentities;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.LootableContainerBlockEntity;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.inventory.Inventories;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.screen.ScreenHandler;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.storage.ReadView;
|
||||
import net.minecraft.storage.WriteView;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.collection.DefaultedList;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import systems.brn.serverstorage.lib.Session;
|
||||
import systems.brn.serverstorage.screenhandlers.RadioInterfaceScreenHandler;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.ANTENNA_RANGES;
|
||||
import static systems.brn.serverstorage.ServerStorage.RADIO_INTERFACE_BLOCK_ENTITY;
|
||||
import static systems.brn.serverstorage.lib.Session.SESSION_LIST_CODEC;
|
||||
|
||||
public class RadioInterfaceBlockEntity extends LootableContainerBlockEntity {
|
||||
public DefaultedList<ItemStack> inventory;
|
||||
public int antennaRange = 0;
|
||||
public final ArrayList<Session> sessions = new ArrayList<>();
|
||||
public static final int INVENTORY_SIZE = 1;
|
||||
|
||||
public RadioInterfaceBlockEntity(BlockPos pos, BlockState state) {
|
||||
super(RADIO_INTERFACE_BLOCK_ENTITY, pos, state);
|
||||
this.inventory = DefaultedList.ofSize(INVENTORY_SIZE, ItemStack.EMPTY);
|
||||
updateAntenna();
|
||||
}
|
||||
|
||||
public boolean isSessionAuthorized(UUID sessionKey, UUID playerUUID) {
|
||||
for (Session session : sessions) {
|
||||
if (session.sessionKey().equals(sessionKey) && session.playerUUID().equals(playerUUID)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void authorizeSession(UUID sessionKey, ServerPlayerEntity player) {
|
||||
if (!isSessionAuthorized(sessionKey, player.getUuid())) {
|
||||
sessions.add(new Session(sessionKey, player.getUuid()));
|
||||
markDirty();
|
||||
}
|
||||
}
|
||||
|
||||
public void deAuthorizeSession(UUID sessionKey, UUID playerUUID) {
|
||||
for (Session session : sessions) {
|
||||
if (session.sessionKey().equals(sessionKey) && session.playerUUID().equals(playerUUID)) {
|
||||
sessions.remove(session);
|
||||
markDirty();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void updateAntenna() {
|
||||
ItemStack stack = inventory.getFirst();
|
||||
if (!stack.isEmpty()) {
|
||||
Item antennaItem = stack.getItem();
|
||||
antennaRange = ANTENNA_RANGES.getOrDefault(antennaItem, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Text getContainerName() {
|
||||
return Text.translatable("block.serverstorage.radio_interface");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DefaultedList<ItemStack> getHeldStacks() {
|
||||
return inventory;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setHeldStacks(DefaultedList<ItemStack> inventory) {
|
||||
this.inventory = inventory;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ScreenHandler createScreenHandler(int syncId, PlayerInventory playerInventory) {
|
||||
return new RadioInterfaceScreenHandler(syncId, playerInventory, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int size() {
|
||||
return INVENTORY_SIZE;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void readData(ReadView view) {
|
||||
super.readData(view);
|
||||
this.inventory = DefaultedList.ofSize(this.size(), ItemStack.EMPTY);
|
||||
this.antennaRange = view.getInt("AntennaRange", 0);
|
||||
if (!this.readLootTable(view)) {
|
||||
Inventories.readData(view, this.inventory);
|
||||
}
|
||||
updateAntenna();
|
||||
// Deserialize sessions list
|
||||
this.sessions.clear();
|
||||
|
||||
Optional<List<Session>> sessionsTmp = view.read("Sessions", SESSION_LIST_CODEC);
|
||||
sessionsTmp.ifPresent(this.sessions::addAll);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void writeData(WriteView view) {
|
||||
super.writeData(view);
|
||||
view.putInt("AntennaRange", antennaRange);
|
||||
if (!this.writeLootTable(view)) {
|
||||
Inventories.writeData(view, this.inventory);
|
||||
}
|
||||
view.put("Sessions", SESSION_LIST_CODEC, sessions);
|
||||
}
|
||||
}
|
@@ -0,0 +1,85 @@
|
||||
package systems.brn.serverstorage.blockentities;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.storage.ReadView;
|
||||
import net.minecraft.storage.WriteView;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import systems.brn.serverstorage.lib.SortMode;
|
||||
import systems.brn.serverstorage.lib.StorageNetwork;
|
||||
import systems.brn.serverstorage.screens.CraftingScreen;
|
||||
import systems.brn.serverstorage.screens.StorageScreen;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.STORAGE_INTERFACE_BLOCK_ENTITY;
|
||||
|
||||
public class StorageInterfaceBlockEntity extends BlockEntity {
|
||||
|
||||
public SortMode sortAlphabetically = SortMode.NUMERICALLY_REVERSE;
|
||||
public String searchString = "";
|
||||
public Boolean groupSimilar = false;
|
||||
public int page = 0;
|
||||
public StorageNetwork network;
|
||||
|
||||
public final ArrayList<StorageScreen> openStorageScreens = new ArrayList<>();
|
||||
public final ArrayList<CraftingScreen> openCraftingScreens = new ArrayList<>();
|
||||
|
||||
public StorageInterfaceBlockEntity(BlockPos pos, BlockState state) {
|
||||
super(STORAGE_INTERFACE_BLOCK_ENTITY, pos, state);
|
||||
}
|
||||
|
||||
public void reindexDrives() {
|
||||
if (this.network != null) {
|
||||
this.network.searchString = searchString;
|
||||
this.network.sortMode = sortAlphabetically;
|
||||
this.network.groupSimilar = groupSimilar;
|
||||
this.network.reindexNetwork();
|
||||
} else {
|
||||
this.network = new StorageNetwork(world, this.pos, sortAlphabetically, searchString, groupSimilar);
|
||||
}
|
||||
}
|
||||
|
||||
public void enforceNetwork() {
|
||||
if (this.network == null) {
|
||||
this.network = new StorageNetwork(world, this.pos, sortAlphabetically, searchString, groupSimilar);
|
||||
}
|
||||
}
|
||||
|
||||
public void refreshTerminals() {
|
||||
reindexDrives();
|
||||
this.network.updateDisplays();
|
||||
}
|
||||
|
||||
public void updateDisplays() {
|
||||
for (StorageScreen screen : openStorageScreens) {
|
||||
screen.updateDisplay();
|
||||
}
|
||||
for (CraftingScreen screen : openCraftingScreens) {
|
||||
screen.updateDisplay();
|
||||
}
|
||||
}
|
||||
|
||||
// Serialize the BlockEntity
|
||||
@Override
|
||||
public void writeData(WriteView view) {
|
||||
// Save the current value of the number to the nbt
|
||||
view.putInt("page", page);
|
||||
view.putInt("sortAlphabetically", sortAlphabetically.getId());
|
||||
view.putString("searchString", searchString);
|
||||
view.putBoolean("groupSimilar", groupSimilar);
|
||||
|
||||
super.writeData(view);
|
||||
}
|
||||
|
||||
// Deserialize the BlockEntity
|
||||
@Override
|
||||
public void readData(ReadView view) {
|
||||
super.readData(view);
|
||||
|
||||
page = view.getInt("page", 0);
|
||||
sortAlphabetically = SortMode.fromId(view.getInt("sortAlphabetically", SortMode.NUMERICALLY_REVERSE.getId()));
|
||||
searchString = view.getString("searchString", "");
|
||||
groupSimilar = view.getBoolean("groupSimilar", false);
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.blocks;
|
||||
package systems.brn.serverstorage.blocks;
|
||||
|
||||
import eu.pb4.polymer.blocks.api.BlockModelType;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockModel;
|
||||
@@ -7,9 +7,12 @@ import eu.pb4.polymer.blocks.api.PolymerTexturedBlock;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.util.Identifier;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.*;
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
|
||||
public class BusConnectorBlock extends ConnectedBlock implements PolymerTexturedBlock {
|
||||
final Identifier identifier;
|
||||
@@ -27,14 +30,14 @@ public class BusConnectorBlock extends ConnectedBlock implements PolymerTextured
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPolymerBlockState(BlockState state) {
|
||||
public BlockState getPolymerBlockState(BlockState state, PacketContext packetContext) {
|
||||
return this.polymerBlockState;
|
||||
}
|
||||
|
||||
public static void register() {
|
||||
var modId = id(BUS_CONNECTOR_MODEL_ID);
|
||||
BUS_CONNECTOR_BLOCK = Registry.register(Registries.BLOCK, modId,
|
||||
new BusConnectorBlock(AbstractBlock.Settings.copy(Blocks.WHITE_WOOL), modId));
|
||||
new BusConnectorBlock(AbstractBlock.Settings.copy(Blocks.WHITE_WOOL).registryKey(RegistryKey.of(RegistryKeys.BLOCK, modId)), modId));
|
||||
BUS_CONNECTOR_BLOCK.setDefaultState();
|
||||
}
|
||||
}
|
@@ -1,5 +1,8 @@
|
||||
package systems.brn.server_storage.blocks;
|
||||
package systems.brn.serverstorage.blocks;
|
||||
|
||||
import eu.pb4.polymer.blocks.api.BlockModelType;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockModel;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockResourceUtils;
|
||||
import eu.pb4.polymer.core.api.block.SimplePolymerBlock;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockState;
|
||||
@@ -9,10 +12,14 @@ import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import systems.brn.server_storage.lib.ConnectionType;
|
||||
import net.minecraft.world.block.WireOrientation;
|
||||
import systems.brn.serverstorage.lib.ConnectionType;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
public class ConnectedBlock extends SimplePolymerBlock {
|
||||
|
||||
@@ -23,6 +30,39 @@ public class ConnectedBlock extends SimplePolymerBlock {
|
||||
public static final EnumProperty<ConnectionType> UP = EnumProperty.of("up", ConnectionType.class);
|
||||
public static final EnumProperty<ConnectionType> DOWN = EnumProperty.of("down", ConnectionType.class);
|
||||
|
||||
// Function to get Y-axis rotation for North, South, East, and West directions
|
||||
public static int getRotationFromDirection(Direction direction) {
|
||||
if (direction == Direction.EAST) {
|
||||
return 90;
|
||||
} else if (direction == Direction.SOUTH) {
|
||||
return 180;
|
||||
} else if (direction == Direction.WEST) {
|
||||
return 270;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Function to get X-axis rotation for Up and Down directions
|
||||
public static int getXRotationFromDirection(Direction direction) {
|
||||
if (direction == Direction.UP) {
|
||||
return 270;
|
||||
} else if (direction == Direction.DOWN) {
|
||||
return 90;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public static HashMap<Direction, BlockState> generateRotations(Identifier identifier) {
|
||||
Identifier modelIdentifier = identifier.withPath("block/" + identifier.getPath());
|
||||
HashMap<Direction, BlockState> rotations = new HashMap<>();
|
||||
for (Direction direction : Direction.values()) {
|
||||
rotations.put(direction, PolymerBlockResourceUtils.requestBlock(BlockModelType.FULL_BLOCK, PolymerBlockModel.of(modelIdentifier, getXRotationFromDirection(direction), getRotationFromDirection(direction))));
|
||||
}
|
||||
return rotations;
|
||||
}
|
||||
|
||||
public void setDefaultState() {
|
||||
setDefaultState(getStateManager().getDefaultState()
|
||||
.with(NORTH, ConnectionType.NONE)
|
||||
@@ -53,9 +93,9 @@ public class ConnectedBlock extends SimplePolymerBlock {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void neighborUpdate(BlockState state, World world, BlockPos pos, Block block, BlockPos fromPos, boolean notify) {
|
||||
public void neighborUpdate(BlockState state, World world, BlockPos pos, Block block, WireOrientation wireOrientation, boolean notify) {
|
||||
updateBlockState(world, pos, state);
|
||||
super.neighborUpdate(state, world, pos, block, fromPos, notify);
|
||||
super.neighborUpdate(state, world, pos, block, wireOrientation, notify);
|
||||
}
|
||||
|
||||
private BlockState updateState(BlockState state, World world, BlockPos pos) {
|
||||
@@ -66,9 +106,9 @@ public class ConnectedBlock extends SimplePolymerBlock {
|
||||
BlockEntity blockEntity = world.getBlockEntity(neighborPos);
|
||||
boolean isConnectedToInventory = blockEntity instanceof Inventory;
|
||||
ConnectionType connectionType = ConnectionType.NONE;
|
||||
if (isConnectedToBus){
|
||||
if (isConnectedToBus) {
|
||||
connectionType = ConnectionType.BUS;
|
||||
} else if (isConnectedToInventory){
|
||||
} else if (isConnectedToInventory) {
|
||||
connectionType = ConnectionType.INVENTORY;
|
||||
}
|
||||
|
221
src/main/java/systems/brn/serverstorage/blocks/DisplayBlock.java
Normal file
221
src/main/java/systems/brn/serverstorage/blocks/DisplayBlock.java
Normal file
@@ -0,0 +1,221 @@
|
||||
package systems.brn.serverstorage.blocks;
|
||||
|
||||
import eu.pb4.polymer.blocks.api.PolymerTexturedBlock;
|
||||
import eu.pb4.polymer.core.api.block.PolymerBlockUtils;
|
||||
import net.fabricmc.fabric.api.event.player.AttackBlockCallback;
|
||||
import net.fabricmc.fabric.api.event.player.UseBlockCallback;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.hit.BlockHitResult;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.serverstorage.blockentities.DisplayBlockEntity;
|
||||
import systems.brn.serverstorage.screens.DisplayBlockMangementScreen;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
import static systems.brn.serverstorage.lib.StorageOperations.*;
|
||||
|
||||
|
||||
public class DisplayBlock extends ConnectedBlock implements PolymerTexturedBlock, BlockEntityProvider {
|
||||
final Identifier identifier;
|
||||
public static final EnumProperty<Direction> FACING = FacingBlock.FACING;
|
||||
private final HashMap<Direction, BlockState> rotations;
|
||||
|
||||
public DisplayBlock(Settings settings, Identifier identifier) {
|
||||
super(settings, Blocks.NOTE_BLOCK);
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH));
|
||||
this.rotations = generateRotations(identifier);
|
||||
this.identifier = identifier;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext ctx) {
|
||||
return this.getDefaultState().with(FACING, ctx.getPlayerLookDirection().getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
|
||||
super.appendProperties(builder);
|
||||
builder.add(FACING);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPolymerBlockState(BlockState state, PacketContext packetContext) {
|
||||
Direction direction = state.get(FACING);
|
||||
return rotations.get(direction);
|
||||
}
|
||||
|
||||
public static void register() {
|
||||
var modId = id(DISPLAY_BLOCK_MODEL_ID);
|
||||
DISPLAY_BLOCK = Registry.register(Registries.BLOCK, modId,
|
||||
new DisplayBlock(Settings.copy(Blocks.WHITE_WOOL).registryKey(RegistryKey.of(RegistryKeys.BLOCK, modId)), modId));
|
||||
UseBlockCallback.EVENT.register(DisplayBlock::onUse);
|
||||
DISPLAY_BLOCK.setDefaultState();
|
||||
|
||||
DISPLAY_BLOCK_ENTITY = Registry.register(
|
||||
Registries.BLOCK_ENTITY_TYPE,
|
||||
modId,
|
||||
FabricBlockEntityTypeBuilder.create(DisplayBlockEntity::new, DISPLAY_BLOCK).build(null)
|
||||
);
|
||||
|
||||
DISPLAY_BLOCK_ENTITY.addSupportedBlock(DISPLAY_BLOCK);
|
||||
AttackBlockCallback.EVENT.register(DisplayBlock::onAttack);
|
||||
PolymerBlockUtils.registerBlockEntity(DISPLAY_BLOCK_ENTITY);
|
||||
}
|
||||
|
||||
private static ActionResult onAttack(PlayerEntity player, World world, Hand hand, BlockPos pos, Direction direction) {
|
||||
BlockEntity storageBlockEntity = world.getBlockEntity(pos);
|
||||
if (storageBlockEntity instanceof DisplayBlockEntity displayBlockEntity) {
|
||||
displayBlockEntity.reindexDrives();
|
||||
int maxFit = howMuchFits(displayBlockEntity.targetItem, player.getInventory());
|
||||
int finalCount = Math.min(player.isSneaking() ? displayBlockEntity.targetItem.getMaxCount() : 1, maxFit);
|
||||
ItemStack insertedStack = displayBlockEntity.targetItem.copy();
|
||||
insertedStack.setCount(finalCount);
|
||||
|
||||
displayBlockEntity.itemCount = 0;
|
||||
for (Map.Entry<ItemStack, Integer> entry : displayBlockEntity.network.itemStackMap.entrySet()) {
|
||||
ItemStack key = entry.getKey();
|
||||
Integer value = entry.getValue();
|
||||
if (ItemStack.areItemsAndComponentsEqual(key, displayBlockEntity.targetItem)) {
|
||||
displayBlockEntity.itemCount = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
finalCount -= displayBlockEntity.network.removeItemStack(insertedStack).getCount();
|
||||
displayBlockEntity.network.updateDisplays();
|
||||
|
||||
displayBlockEntity.itemCount -= finalCount;
|
||||
|
||||
displayBlockEntity.itemElement.setItem(displayBlockEntity.targetItem);
|
||||
displayBlockEntity.textDisplayElement.setText(Text.of(String.valueOf(displayBlockEntity.itemCount)));
|
||||
|
||||
int remainingToInsert = finalCount;
|
||||
for (int i = 0; i < Math.ceilDivExact(finalCount, displayBlockEntity.targetItem.getMaxCount()); i++) {
|
||||
ItemStack cappedStack = insertedStack.copy();
|
||||
cappedStack.setCount(Math.min(insertedStack.getMaxCount(), remainingToInsert));
|
||||
|
||||
ItemStack remaining = insertStackIntoInventory(player.getInventory(), cappedStack.copy(), true);
|
||||
if (!remaining.isEmpty()) {
|
||||
ItemStack reverseStack = displayBlockEntity.targetItem.copy();
|
||||
reverseStack.setCount(remaining.getCount() + remainingToInsert);
|
||||
displayBlockEntity.network.putItemStackRemainder(reverseStack);
|
||||
break;
|
||||
}
|
||||
remainingToInsert -= cappedStack.getCount();
|
||||
}
|
||||
displayBlockEntity.itemCount += remainingToInsert;
|
||||
displayBlockEntity.itemElement.setItem(displayBlockEntity.targetItem);
|
||||
displayBlockEntity.textDisplayElement.setText(Text.of(String.valueOf(displayBlockEntity.itemCount)));
|
||||
}
|
||||
return ActionResult.PASS;
|
||||
}
|
||||
|
||||
private static ActionResult onUse(PlayerEntity plr, World world, Hand hand, BlockHitResult hitResult) {
|
||||
BlockPos pos = hitResult.getBlockPos();
|
||||
BlockState state = world.getBlockState(pos);
|
||||
Block block = state.getBlock();
|
||||
|
||||
if (block instanceof DisplayBlock) {
|
||||
if (!world.isClient && !plr.isSpectator() && plr instanceof ServerPlayerEntity player && hand == Hand.MAIN_HAND) {
|
||||
BlockEntity storageBlockEntity = world.getBlockEntity(pos);
|
||||
if (storageBlockEntity instanceof DisplayBlockEntity displayBlockEntity) {
|
||||
displayBlockEntity.reindexDrives();
|
||||
displayBlockEntity.itemCount = 0;
|
||||
for (Map.Entry<ItemStack, Integer> entry : displayBlockEntity.network.itemStackMap.entrySet()) {
|
||||
ItemStack key = entry.getKey();
|
||||
Integer value = entry.getValue();
|
||||
if (ItemStack.areItemsAndComponentsEqual(key, displayBlockEntity.targetItem)) {
|
||||
displayBlockEntity.itemCount = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
ItemStack stack = player.getStackInHand(hand);
|
||||
if (stack.isEmpty() && !player.isSneaking()) {
|
||||
DisplayBlockMangementScreen displayBlockMangementScreen = new DisplayBlockMangementScreen(player, displayBlockEntity);
|
||||
displayBlockMangementScreen.updateDisplay();
|
||||
displayBlockMangementScreen.open();
|
||||
} else {
|
||||
ItemStack stack1;
|
||||
boolean wasEmpty = false;
|
||||
if (!stack.isEmpty()) {
|
||||
stack1 = stack.copy();
|
||||
} else {
|
||||
stack1 = displayBlockEntity.targetItem.copy();
|
||||
wasEmpty = true;
|
||||
}
|
||||
int canPutInTemp = 0;
|
||||
if (wasEmpty) {
|
||||
for (int i = 9; i < 45; i++) {
|
||||
ItemStack stack2 = player.getInventory().getStack(i);
|
||||
if (!ItemStack.areItemsAndComponentsEqual(stack1, stack2)) {
|
||||
continue;
|
||||
}
|
||||
stack1.setCount(player.isSneaking() ? (stack1.getCount() == 0 ? stack1.getMaxCount() : stack1.getCount()) : 1);
|
||||
int canPutIn = stack1.getCount() - displayBlockEntity.network.putItemStackRemainder(stack1);
|
||||
if (canPutIn > 0) {
|
||||
removeFromInventory(player.getInventory(), stack2, canPutIn);
|
||||
}
|
||||
canPutInTemp += canPutIn;
|
||||
}
|
||||
} else {
|
||||
if (ItemStack.areItemsAndComponentsEqual(stack1, stack)) {
|
||||
stack1.setCount(player.isSneaking() ? (stack1.getCount() == 0 ? stack1.getMaxCount() : stack1.getCount()) : 1);
|
||||
int canPutIn = stack1.getCount() - displayBlockEntity.network.putItemStackRemainder(stack1);
|
||||
if (canPutIn > 0) {
|
||||
removeFromInventory(player.getInventory(), stack, canPutIn);
|
||||
}
|
||||
canPutInTemp += canPutIn;
|
||||
}
|
||||
}
|
||||
displayBlockEntity.itemElement.setItem(displayBlockEntity.targetItem);
|
||||
displayBlockEntity.itemCount += canPutInTemp;
|
||||
displayBlockEntity.textDisplayElement.setText(Text.of(String.valueOf(displayBlockEntity.itemCount)));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
return ActionResult.SUCCESS;
|
||||
}
|
||||
return ActionResult.PASS;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public BlockEntity createBlockEntity(BlockPos pos, BlockState state) {
|
||||
return new DisplayBlockEntity(pos, state);
|
||||
}
|
||||
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public <T extends BlockEntity> BlockEntityTicker<T> getTicker(World world, BlockState state, BlockEntityType<T> type) {
|
||||
// Make sure to check world.isClient if you only want to tick only on serverside.
|
||||
return world instanceof ServerWorld && type == DISPLAY_BLOCK_ENTITY ? DisplayBlockEntity::tick : null;
|
||||
}
|
||||
}
|
@@ -1,20 +1,20 @@
|
||||
package systems.brn.server_storage.blocks;
|
||||
package systems.brn.serverstorage.blocks;
|
||||
|
||||
import eu.pb4.polymer.blocks.api.BlockModelType;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockModel;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockResourceUtils;
|
||||
import eu.pb4.polymer.blocks.api.PolymerTexturedBlock;
|
||||
import eu.pb4.polymer.core.api.block.PolymerBlockUtils;
|
||||
import net.fabricmc.fabric.api.event.player.UseBlockCallback;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.DirectionProperty;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.util.Identifier;
|
||||
@@ -24,27 +24,31 @@ import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.server_storage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.server_storage.lib.StorageNetwork;
|
||||
import systems.brn.serverstorage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.serverstorage.lib.SortMode;
|
||||
import systems.brn.serverstorage.lib.StorageNetwork;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.*;
|
||||
import java.util.HashMap;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
|
||||
public class HardDriveContainerBlock extends ConnectedBlock implements PolymerTexturedBlock, BlockEntityProvider {
|
||||
|
||||
final Identifier identifier;
|
||||
public static final DirectionProperty FACING = FacingBlock.FACING;
|
||||
private final BlockState polymerBlockState;
|
||||
public static final EnumProperty<Direction> FACING = FacingBlock.FACING;
|
||||
private final HashMap<Direction, BlockState> rotations;
|
||||
|
||||
public HardDriveContainerBlock(AbstractBlock.Settings settings, Identifier identifier) {
|
||||
super(settings, Blocks.NOTE_BLOCK);
|
||||
this.identifier = identifier;
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH));
|
||||
this.polymerBlockState = PolymerBlockResourceUtils.requestBlock(BlockModelType.FULL_BLOCK, PolymerBlockModel.of(identifier.withPath("block/" + identifier.getPath())));
|
||||
this.rotations = generateRotations(identifier);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext ctx) {
|
||||
return this.getDefaultState().with(FACING, ctx.getHorizontalPlayerFacing().getOpposite());
|
||||
return this.getDefaultState().with(FACING, ctx.getPlayerLookDirection().getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -54,14 +58,15 @@ public class HardDriveContainerBlock extends ConnectedBlock implements PolymerTe
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPolymerBlockState(BlockState state) {
|
||||
return this.polymerBlockState;
|
||||
public BlockState getPolymerBlockState(BlockState state, PacketContext context) {
|
||||
Direction direction = state.get(FACING);
|
||||
return rotations.get(direction);
|
||||
}
|
||||
|
||||
public static void register() {
|
||||
var modId = id(HARD_DRIVE_CONTAINER_BLOCK_MODEL_ID);
|
||||
HARD_DRIVE_CONTAINER_BLOCK = Registry.register(Registries.BLOCK, modId,
|
||||
new HardDriveContainerBlock(Settings.copy(Blocks.WHITE_WOOL), modId));
|
||||
new HardDriveContainerBlock(Settings.copy(Blocks.WHITE_WOOL).registryKey(RegistryKey.of(RegistryKeys.BLOCK, modId)), modId));
|
||||
UseBlockCallback.EVENT.register(HardDriveContainerBlock::onUse);
|
||||
|
||||
HARD_DRIVE_CONTAINER_BLOCK.setDefaultState();
|
||||
@@ -69,7 +74,7 @@ public class HardDriveContainerBlock extends ConnectedBlock implements PolymerTe
|
||||
HARD_DRIVE_CONTAINER_BLOCK_ENTITY = Registry.register(
|
||||
Registries.BLOCK_ENTITY_TYPE,
|
||||
modId,
|
||||
BlockEntityType.Builder.create(HardDriveContainerBlockEntity::new, HARD_DRIVE_CONTAINER_BLOCK).build(null)
|
||||
FabricBlockEntityTypeBuilder.create(HardDriveContainerBlockEntity::new, HARD_DRIVE_CONTAINER_BLOCK).build(null)
|
||||
);
|
||||
PolymerBlockUtils.registerBlockEntity(HARD_DRIVE_CONTAINER_BLOCK_ENTITY);
|
||||
}
|
||||
@@ -85,7 +90,7 @@ public class HardDriveContainerBlock extends ConnectedBlock implements PolymerTe
|
||||
BlockEntity storageBlockEntity = world.getBlockEntity(pos);
|
||||
if (storageBlockEntity instanceof HardDriveContainerBlockEntity driveContainerBlockEntity) {
|
||||
if (driveContainerBlockEntity.network == null){
|
||||
driveContainerBlockEntity.network = new StorageNetwork(world, pos, false, "");
|
||||
driveContainerBlockEntity.network = new StorageNetwork(world, pos, SortMode.NUMERICALLY_REVERSE, "", false);
|
||||
}
|
||||
player.openHandledScreen(driveContainerBlockEntity);
|
||||
}
|
||||
@@ -106,8 +111,8 @@ public class HardDriveContainerBlock extends ConnectedBlock implements PolymerTe
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStateReplaced(BlockState state, World world, BlockPos pos, BlockState newState, boolean moved) {
|
||||
ItemScatterer.onStateReplaced(state, newState, world, pos);
|
||||
super.onStateReplaced(state, world, pos, newState, moved);
|
||||
protected void onStateReplaced(BlockState state, ServerWorld world, BlockPos pos, boolean moved) {
|
||||
ItemScatterer.onStateReplaced(state, world, pos);
|
||||
super.onStateReplaced(state, world, pos, moved);
|
||||
}
|
||||
}
|
@@ -1,12 +1,10 @@
|
||||
package systems.brn.server_storage.blocks;
|
||||
package systems.brn.serverstorage.blocks;
|
||||
|
||||
import eu.pb4.polymer.blocks.api.BlockModelType;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockModel;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockResourceUtils;
|
||||
import eu.pb4.polymer.blocks.api.PolymerTexturedBlock;
|
||||
import eu.pb4.polymer.core.api.block.PolymerBlockUtils;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import net.fabricmc.fabric.api.event.player.UseBlockCallback;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.block.entity.BlockEntityTicker;
|
||||
@@ -16,10 +14,12 @@ import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.DirectionProperty;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Formatting;
|
||||
@@ -30,29 +30,32 @@ import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.server_storage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.lib.PagedGui;
|
||||
import systems.brn.server_storage.screens.SearchScreen;
|
||||
import systems.brn.server_storage.screens.SettingsScreen;
|
||||
import systems.brn.serverstorage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.PagedGui;
|
||||
import systems.brn.serverstorage.screens.SearchScreen;
|
||||
import systems.brn.serverstorage.screens.SettingsScreen;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.*;
|
||||
import static systems.brn.server_storage.lib.PagedGui.*;
|
||||
import java.util.HashMap;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
import static systems.brn.serverstorage.lib.PagedGui.*;
|
||||
|
||||
public class InventoryInterfaceBlock extends ConnectedBlock implements PolymerTexturedBlock, BlockEntityProvider {
|
||||
final Identifier identifier;
|
||||
public static final DirectionProperty FACING = FacingBlock.FACING;
|
||||
private final BlockState polymerBlockState;
|
||||
public static final EnumProperty<Direction> FACING = FacingBlock.FACING;
|
||||
private final HashMap<Direction, BlockState> rotations;
|
||||
|
||||
public InventoryInterfaceBlock(Settings settings, Identifier identifier) {
|
||||
super(settings, Blocks.NOTE_BLOCK);
|
||||
this.identifier = identifier;
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH));
|
||||
this.polymerBlockState = PolymerBlockResourceUtils.requestBlock(BlockModelType.FULL_BLOCK, PolymerBlockModel.of(identifier.withPath("block/" + identifier.getPath())));
|
||||
this.rotations = generateRotations(identifier);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext ctx) {
|
||||
return this.getDefaultState().with(FACING, ctx.getHorizontalPlayerFacing().getOpposite());
|
||||
return this.getDefaultState().with(FACING, ctx.getPlayerLookDirection().getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -62,21 +65,23 @@ public class InventoryInterfaceBlock extends ConnectedBlock implements PolymerTe
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPolymerBlockState(BlockState state) {
|
||||
return this.polymerBlockState;
|
||||
public BlockState getPolymerBlockState(BlockState state, PacketContext packetContext) {
|
||||
Direction direction = state.get(FACING);
|
||||
return rotations.get(direction);
|
||||
}
|
||||
|
||||
public static void register() {
|
||||
var modId = id(INVENTORY_INTERFACE_BLOCK_MODEL_ID);
|
||||
INVENTORY_INTERFACE_BLOCK = Registry.register(Registries.BLOCK, modId,
|
||||
new InventoryInterfaceBlock(Settings.copy(Blocks.WHITE_WOOL), modId));
|
||||
new InventoryInterfaceBlock(Settings.copy(Blocks.WHITE_WOOL).registryKey(RegistryKey.of(RegistryKeys.BLOCK, modId)), modId));
|
||||
UseBlockCallback.EVENT.register(InventoryInterfaceBlock::onUse);
|
||||
INVENTORY_INTERFACE_BLOCK.setDefaultState();
|
||||
INVENTORY_INTERFACE_BLOCK_ENTITY = Registry.register(
|
||||
Registries.BLOCK_ENTITY_TYPE,
|
||||
modId,
|
||||
BlockEntityType.Builder.create(InventoryInterfaceBlockEntity::new, INVENTORY_INTERFACE_BLOCK).build(null)
|
||||
FabricBlockEntityTypeBuilder.create(InventoryInterfaceBlockEntity::new, INVENTORY_INTERFACE_BLOCK).build(null)
|
||||
);
|
||||
INVENTORY_INTERFACE_BLOCK_ENTITY.addSupportedBlock(INVENTORY_INTERFACE_BLOCK);
|
||||
PolymerBlockUtils.registerBlockEntity(INVENTORY_INTERFACE_BLOCK_ENTITY);
|
||||
}
|
||||
|
||||
@@ -150,6 +155,10 @@ public class InventoryInterfaceBlock extends ConnectedBlock implements PolymerTe
|
||||
Block block = state.getBlock();
|
||||
|
||||
if (block instanceof InventoryInterfaceBlock) {
|
||||
if (!((ServerWorld) world).getGameRules().getBoolean(ServerStorage_Interface_Enable)) {
|
||||
playerEntity.sendMessage(Text.translatable("message.serverstorage.block_disabled"), true);
|
||||
return ActionResult.PASS;
|
||||
}
|
||||
BlockEntity tempBlockEntity = world.getBlockEntity(pos);
|
||||
if (tempBlockEntity instanceof InventoryInterfaceBlockEntity blockEntity) {
|
||||
if (!world.isClient && !playerEntity.isSpectator()) {
|
@@ -0,0 +1,156 @@
|
||||
package systems.brn.serverstorage.blocks;
|
||||
|
||||
import eu.pb4.polymer.blocks.api.PolymerTexturedBlock;
|
||||
import eu.pb4.polymer.core.api.block.PolymerBlockUtils;
|
||||
import net.fabricmc.fabric.api.event.player.UseBlockCallback;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.ItemScatterer;
|
||||
import net.minecraft.util.hit.BlockHitResult;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.serverstorage.blockentities.RadioInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.items.WirelessTerminalItem;
|
||||
import systems.brn.serverstorage.lib.SessionStorageClass;
|
||||
import systems.brn.serverstorage.lib.WirelessTerminalComponents;
|
||||
import systems.brn.serverstorage.screens.RadioBlockPlayerMangementScreen;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
import static systems.brn.serverstorage.lib.Util.removePosition;
|
||||
|
||||
public class RadioInterfaceBlock extends ConnectedBlock implements PolymerTexturedBlock, BlockEntityProvider {
|
||||
final Identifier identifier;
|
||||
public static final EnumProperty<Direction> FACING = FacingBlock.FACING;
|
||||
private final HashMap<Direction, BlockState> rotations;
|
||||
|
||||
public RadioInterfaceBlock(Settings settings, Identifier identifier) {
|
||||
super(settings, Blocks.NOTE_BLOCK);
|
||||
this.identifier = identifier;
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH));
|
||||
this.rotations = generateRotations(identifier);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext ctx) {
|
||||
return this.getDefaultState().with(FACING, ctx.getPlayerLookDirection().getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> builder) {
|
||||
super.appendProperties(builder);
|
||||
builder.add(FACING);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPolymerBlockState(BlockState state, PacketContext packetContext) {
|
||||
Direction direction = state.get(FACING);
|
||||
return rotations.get(direction);
|
||||
}
|
||||
|
||||
public static void register() {
|
||||
var modId = id(RADIO_INTERFACE_BLOCK_MODEL_ID);
|
||||
RADIO_INTERFACE_BLOCK = Registry.register(Registries.BLOCK, modId,
|
||||
new RadioInterfaceBlock(Settings.copy(Blocks.WHITE_WOOL).registryKey(RegistryKey.of(RegistryKeys.BLOCK, modId)), modId));
|
||||
UseBlockCallback.EVENT.register(RadioInterfaceBlock::onUse);
|
||||
|
||||
RADIO_INTERFACE_BLOCK.setDefaultState();
|
||||
|
||||
RADIO_INTERFACE_BLOCK_ENTITY = Registry.register(
|
||||
Registries.BLOCK_ENTITY_TYPE,
|
||||
modId,
|
||||
FabricBlockEntityTypeBuilder.create(RadioInterfaceBlockEntity::new, RADIO_INTERFACE_BLOCK).build(null)
|
||||
);
|
||||
RADIO_INTERFACE_BLOCK_ENTITY.addSupportedBlock(RADIO_INTERFACE_BLOCK);
|
||||
PolymerBlockUtils.registerBlockEntity(RADIO_INTERFACE_BLOCK_ENTITY);
|
||||
}
|
||||
|
||||
private static ActionResult onUse(PlayerEntity plr, World world, Hand hand, BlockHitResult hitResult) {
|
||||
BlockPos pos = hitResult.getBlockPos();
|
||||
BlockState state = world.getBlockState(pos);
|
||||
Block block = state.getBlock();
|
||||
|
||||
if (block instanceof RadioInterfaceBlock) {
|
||||
if (!world.isClient && !plr.isSpectator() && plr instanceof ServerPlayerEntity player && hand == Hand.MAIN_HAND) {
|
||||
BlockEntity storageBlockEntity = world.getBlockEntity(pos);
|
||||
if (storageBlockEntity instanceof RadioInterfaceBlockEntity radioInterfaceBlockEntity) {
|
||||
if (!player.isSneaking()) {
|
||||
RadioBlockPlayerMangementScreen radioBlockPlayerMangementScreen = new RadioBlockPlayerMangementScreen(player, radioInterfaceBlockEntity);
|
||||
radioBlockPlayerMangementScreen.updateDisplay();
|
||||
radioBlockPlayerMangementScreen.open();
|
||||
} else {
|
||||
ItemStack stack = player.getStackInHand(hand);
|
||||
Item item = stack.getItem();
|
||||
if (item == WIRELESS_TERMINAL) {
|
||||
WirelessTerminalItem.ensureUUID(stack, player.getServer());
|
||||
UUID wirelessTerminalSession = stack.getOrDefault(WirelessTerminalComponents.SESSION_KEY, null);
|
||||
List<SessionStorageClass> wirelessTerminalSessions = new ArrayList<>(stack.getOrDefault(WirelessTerminalComponents.SESSIONS, new ArrayList<>()));
|
||||
if (wirelessTerminalSession != null) {
|
||||
if (radioInterfaceBlockEntity.isSessionAuthorized(wirelessTerminalSession, player.getUuid())) {
|
||||
radioInterfaceBlockEntity.deAuthorizeSession(wirelessTerminalSession, player.getUuid());
|
||||
removePosition(pos, stack);
|
||||
} else {
|
||||
radioInterfaceBlockEntity.authorizeSession(wirelessTerminalSession, player);
|
||||
SessionStorageClass sessionStorageClass = null;
|
||||
for (SessionStorageClass sessionStorageClassLoop : wirelessTerminalSessions) {
|
||||
if (sessionStorageClassLoop.getTerminalPos().equals(pos)) {
|
||||
sessionStorageClass = sessionStorageClassLoop;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (sessionStorageClass == null || !sessionStorageClass.getPlayerUUID().equals(player.getUuid())) {
|
||||
sessionStorageClass = new SessionStorageClass(player.getUuid(), player.getWorld(), pos);
|
||||
wirelessTerminalSessions.add(sessionStorageClass);
|
||||
}
|
||||
stack.set(WirelessTerminalComponents.SESSIONS, wirelessTerminalSessions);
|
||||
}
|
||||
}
|
||||
WirelessTerminalItem.updateLore(stack, player.getServer());
|
||||
player.setStackInHand(hand, stack);
|
||||
} else {
|
||||
player.openHandledScreen(radioInterfaceBlockEntity);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return ActionResult.SUCCESS;
|
||||
}
|
||||
return ActionResult.PASS;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public BlockEntity createBlockEntity(BlockPos pos, BlockState state) {
|
||||
return new RadioInterfaceBlockEntity(pos, state);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStateReplaced(BlockState state, ServerWorld world, BlockPos pos, boolean moved) {
|
||||
ItemScatterer.onStateReplaced(state, world, pos);
|
||||
super.onStateReplaced(state, world, pos, moved);
|
||||
}
|
||||
}
|
@@ -1,14 +1,11 @@
|
||||
package systems.brn.server_storage.blocks;
|
||||
package systems.brn.serverstorage.blocks;
|
||||
|
||||
import eu.pb4.polymer.blocks.api.BlockModelType;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockModel;
|
||||
import eu.pb4.polymer.blocks.api.PolymerBlockResourceUtils;
|
||||
import eu.pb4.polymer.blocks.api.PolymerTexturedBlock;
|
||||
import eu.pb4.polymer.core.api.block.PolymerBlockUtils;
|
||||
import net.fabricmc.fabric.api.event.player.UseBlockCallback;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.component.DataComponentTypes;
|
||||
import net.minecraft.component.type.WrittenBookContentComponent;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
@@ -17,9 +14,12 @@ import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.DirectionProperty;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.text.RawFilteredPair;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.ActionResult;
|
||||
@@ -30,29 +30,31 @@ import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.server_storage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.screens.StorageScreen;
|
||||
import systems.brn.serverstorage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.screens.StorageScreen;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.*;
|
||||
import static systems.brn.server_storage.lib.Util.generateBookContent;
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
import static systems.brn.serverstorage.lib.Util.generateBookContent;
|
||||
|
||||
public class StorageInterfaceBlock extends ConnectedBlock implements PolymerTexturedBlock, BlockEntityProvider {
|
||||
final Identifier identifier;
|
||||
public static final DirectionProperty FACING = FacingBlock.FACING;
|
||||
private final BlockState polymerBlockState;
|
||||
public static final EnumProperty<Direction> FACING = FacingBlock.FACING;
|
||||
private final HashMap<Direction, BlockState> rotations;
|
||||
|
||||
public StorageInterfaceBlock(Settings settings, Identifier identifier) {
|
||||
super(settings, Blocks.NOTE_BLOCK);
|
||||
this.identifier = identifier;
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(FACING, Direction.NORTH));
|
||||
this.polymerBlockState = PolymerBlockResourceUtils.requestBlock(BlockModelType.FULL_BLOCK, PolymerBlockModel.of(identifier.withPath("block/" + identifier.getPath())));
|
||||
this.rotations = generateRotations(identifier);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext ctx) {
|
||||
return this.getDefaultState().with(FACING, ctx.getHorizontalPlayerFacing().getOpposite());
|
||||
return this.getDefaultState().with(FACING, ctx.getPlayerLookDirection().getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -62,21 +64,23 @@ public class StorageInterfaceBlock extends ConnectedBlock implements PolymerText
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPolymerBlockState(BlockState state) {
|
||||
return this.polymerBlockState;
|
||||
public BlockState getPolymerBlockState(BlockState state, PacketContext packetContext) {
|
||||
Direction direction = state.get(FACING);
|
||||
return rotations.get(direction);
|
||||
}
|
||||
|
||||
public static void register() {
|
||||
var modId = id(STORAGE_MODEL_ID);
|
||||
STORAGE_INTERFACE_BLOCK = Registry.register(Registries.BLOCK, modId,
|
||||
new StorageInterfaceBlock(AbstractBlock.Settings.copy(Blocks.WHITE_WOOL), modId));
|
||||
new StorageInterfaceBlock(AbstractBlock.Settings.copy(Blocks.WHITE_WOOL).registryKey(RegistryKey.of(RegistryKeys.BLOCK, modId)), modId));
|
||||
UseBlockCallback.EVENT.register(StorageInterfaceBlock::onUse);
|
||||
STORAGE_INTERFACE_BLOCK.setDefaultState();
|
||||
STORAGE_INTERFACE_BLOCK_ENTITY = Registry.register(
|
||||
Registries.BLOCK_ENTITY_TYPE,
|
||||
modId,
|
||||
BlockEntityType.Builder.create(StorageInterfaceBlockEntity::new, STORAGE_INTERFACE_BLOCK).build(null)
|
||||
FabricBlockEntityTypeBuilder.create(StorageInterfaceBlockEntity::new, STORAGE_INTERFACE_BLOCK).build(null)
|
||||
);
|
||||
STORAGE_INTERFACE_BLOCK_ENTITY.addSupportedBlock(STORAGE_INTERFACE_BLOCK);
|
||||
PolymerBlockUtils.registerBlockEntity(STORAGE_INTERFACE_BLOCK_ENTITY);
|
||||
}
|
||||
|
||||
@@ -86,6 +90,10 @@ public class StorageInterfaceBlock extends ConnectedBlock implements PolymerText
|
||||
Block block = state.getBlock();
|
||||
|
||||
if (block instanceof StorageInterfaceBlock) {
|
||||
if (!((ServerWorld) world).getGameRules().getBoolean(ServerStorage_Terminal_Enable)){
|
||||
player.sendMessage(Text.translatable("message.serverstorage.block_disabled"), true);
|
||||
return ActionResult.PASS;
|
||||
}
|
||||
if (!world.isClient && !player.isSpectator()) {
|
||||
if (!player.isSneaking()) {
|
||||
StorageScreen storageScreen = new StorageScreen((ServerPlayerEntity) player, pos, null);
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.items;
|
||||
package systems.brn.serverstorage.items;
|
||||
|
||||
import net.minecraft.component.DataComponentTypes;
|
||||
import net.minecraft.component.type.LoreComponent;
|
||||
@@ -7,12 +7,12 @@ import net.minecraft.item.Items;
|
||||
import net.minecraft.text.Style;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import systems.brn.server_storage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.serverstorage.blockentities.HardDriveContainerBlockEntity;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import static systems.brn.server_storage.lib.DriveComponents.*;
|
||||
import static systems.brn.server_storage.lib.StorageOperations.canCombine;
|
||||
import static systems.brn.serverstorage.lib.DriveComponents.*;
|
||||
import static systems.brn.serverstorage.lib.StorageOperations.canCombine;
|
||||
|
||||
public class HardDrive {
|
||||
private ItemStack driveStack;
|
||||
@@ -34,29 +34,33 @@ public class HardDrive {
|
||||
|
||||
public void setMaxItems() {
|
||||
String itemName = driveStack.getItem().getRegistryEntry().registryKey().getValue().getPath();
|
||||
|
||||
switch (itemName) {
|
||||
case "iron_drive":
|
||||
tier = 0;
|
||||
maxItems = 4096;
|
||||
break;
|
||||
case "golden_drive":
|
||||
tier = 1;
|
||||
maxItems = 8192;
|
||||
break;
|
||||
case "diamond_drive":
|
||||
tier = 2;
|
||||
maxItems = 32768;
|
||||
break;
|
||||
case "netherite_drive":
|
||||
tier = 3;
|
||||
maxItems = 131072;
|
||||
break;
|
||||
case "creative_drive":
|
||||
tier = 4;
|
||||
maxItems = Integer.MAX_VALUE;
|
||||
break;
|
||||
default:
|
||||
tier = -1;
|
||||
maxItems = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
maxItems = 0;
|
||||
|
||||
if (tier >= 0) {
|
||||
maxItems = (int) Math.pow(2, tier + 8);
|
||||
}
|
||||
}
|
||||
|
||||
public void updateData() {
|
||||
@@ -98,7 +102,6 @@ public class HardDrive {
|
||||
public ItemStack getCommitedStack() {
|
||||
ItemStack tempDriveStack = driveStack.copy();
|
||||
driveStack = ensureUUID(tempDriveStack);
|
||||
loadComponents();
|
||||
updateData();
|
||||
saveComponents();
|
||||
return driveStack;
|
||||
@@ -133,6 +136,7 @@ public class HardDrive {
|
||||
} else {
|
||||
entry.setValue(countInDrive - outCount);
|
||||
outCount -= countInDrive;
|
||||
outCount = Math.max(outCount, 0);
|
||||
}
|
||||
break;
|
||||
}
|
@@ -1,18 +1,20 @@
|
||||
package systems.brn.server_storage.items;
|
||||
package systems.brn.serverstorage.items;
|
||||
|
||||
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroups;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.util.Identifier;
|
||||
import systems.brn.server_storage.lib.DriveComponents;
|
||||
import systems.brn.serverstorage.lib.DriveComponents;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.id;
|
||||
import static systems.brn.serverstorage.ServerStorage.id;
|
||||
|
||||
public class HardDriveItem extends SimpleItem {
|
||||
public HardDriveItem(Settings settings, Identifier identifier) {
|
||||
@@ -25,7 +27,7 @@ public class HardDriveItem extends SimpleItem {
|
||||
Identifier identifier = id(tier + "_drive");
|
||||
Item item = Registry.register(Registries.ITEM, identifier, new SimpleItem(new Settings()
|
||||
.maxCount(1)
|
||||
.component(DriveComponents.ITEMSTACK_MAP, new HashMap<>())
|
||||
.component(DriveComponents.ITEMSTACK_MAP, new HashMap<>()).registryKey(RegistryKey.of(RegistryKeys.ITEM, identifier))
|
||||
, identifier));
|
||||
ItemGroupEvents.modifyEntriesEvent(ItemGroups.FUNCTIONAL).register(content -> content.add(item));
|
||||
items.add(item);
|
@@ -1,9 +1,7 @@
|
||||
package systems.brn.server_storage.items;
|
||||
package systems.brn.serverstorage.items;
|
||||
|
||||
import eu.pb4.polymer.core.api.item.PolymerBlockItem;
|
||||
import eu.pb4.polymer.core.api.item.PolymerItem;
|
||||
import eu.pb4.polymer.resourcepack.api.PolymerModelData;
|
||||
import eu.pb4.polymer.resourcepack.api.PolymerResourcePackUtils;
|
||||
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.item.Item;
|
||||
@@ -12,33 +10,34 @@ import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.util.Identifier;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.id;
|
||||
import static systems.brn.serverstorage.ServerStorage.id;
|
||||
|
||||
public class SimpleBlockItem extends PolymerBlockItem implements PolymerItem {
|
||||
private final PolymerModelData polymerModel;
|
||||
private final Identifier polymerModel;
|
||||
|
||||
public SimpleBlockItem(Item.Settings settings, Block block, Identifier identifier) {
|
||||
super(block, settings, Items.BARRIER);
|
||||
this.polymerModel = PolymerResourcePackUtils.requestModel(Items.BARRIER, identifier.withPath("item/" + identifier.getPath()));
|
||||
this.polymerModel = identifier;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Item getPolymerItem(ItemStack itemStack, @Nullable ServerPlayerEntity player) {
|
||||
return this.polymerModel.item();
|
||||
public Identifier getPolymerItemModel(ItemStack stack, PacketContext context) {
|
||||
return this.polymerModel;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getPolymerCustomModelData(ItemStack itemStack, @Nullable ServerPlayerEntity player) {
|
||||
return this.polymerModel.value();
|
||||
public Item getPolymerItem(ItemStack itemStack, PacketContext player) {
|
||||
return Items.BARRIER;
|
||||
}
|
||||
|
||||
public static void register(Block block) {
|
||||
Identifier identifier = id(block.getRegistryEntry().registryKey().getValue().getPath());
|
||||
Item item = Registry.register(Registries.ITEM, identifier, new SimpleBlockItem(new Item.Settings(), block, identifier));
|
||||
Item item = Registry.register(Registries.ITEM, identifier, new SimpleBlockItem(new Item.Settings().registryKey(RegistryKey.of(RegistryKeys.ITEM, identifier)), block, identifier));
|
||||
ItemGroupEvents.modifyEntriesEvent(ItemGroups.FUNCTIONAL).register(content -> content.add(item));
|
||||
}
|
||||
}
|
@@ -1,39 +1,40 @@
|
||||
package systems.brn.server_storage.items;
|
||||
package systems.brn.serverstorage.items;
|
||||
|
||||
import eu.pb4.polymer.core.api.item.PolymerItem;
|
||||
import eu.pb4.polymer.core.api.item.SimplePolymerItem;
|
||||
import eu.pb4.polymer.resourcepack.api.PolymerModelData;
|
||||
import eu.pb4.polymer.resourcepack.api.PolymerResourcePackUtils;
|
||||
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
|
||||
import net.minecraft.item.*;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroup;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.util.Identifier;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import xyz.nucleoid.packettweaker.PacketContext;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.id;
|
||||
import static systems.brn.serverstorage.ServerStorage.id;
|
||||
|
||||
public class SimpleItem extends SimplePolymerItem implements PolymerItem {
|
||||
private final PolymerModelData polymerModel;
|
||||
private final Identifier polymerModel;
|
||||
|
||||
public SimpleItem(Settings settings, Identifier identifier) {
|
||||
super(settings, Items.BARRIER);
|
||||
this.polymerModel = PolymerResourcePackUtils.requestModel(Items.BARRIER, identifier.withPath("item/" + identifier.getPath()));
|
||||
super(settings, Items.STICK);
|
||||
this.polymerModel = identifier;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Item getPolymerItem(ItemStack itemStack, @Nullable ServerPlayerEntity player) {
|
||||
return this.polymerModel.item();
|
||||
public Identifier getPolymerItemModel(ItemStack stack, PacketContext context) {
|
||||
return this.polymerModel;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getPolymerCustomModelData(ItemStack itemStack, @Nullable ServerPlayerEntity player) {
|
||||
return this.polymerModel.value();
|
||||
public Item getPolymerItem(ItemStack itemStack, PacketContext player) {
|
||||
return Items.STICK;
|
||||
}
|
||||
|
||||
public static Item register(String name, RegistryKey<ItemGroup> group){
|
||||
@@ -42,7 +43,7 @@ public class SimpleItem extends SimplePolymerItem implements PolymerItem {
|
||||
|
||||
public static Item register(String name, int maxCount, RegistryKey<ItemGroup> group) {
|
||||
Identifier identifier = id(name);
|
||||
Item item = Registry.register(Registries.ITEM, identifier, new SimpleItem(new Settings().maxCount(maxCount), identifier));
|
||||
Item item = Registry.register(Registries.ITEM, identifier, new SimpleItem(new Settings().maxCount(maxCount).registryKey(RegistryKey.of(RegistryKeys.ITEM, identifier)), identifier));
|
||||
ItemGroupEvents.modifyEntriesEvent(group).register(content -> content.add(item));
|
||||
return item;
|
||||
}
|
@@ -0,0 +1,255 @@
|
||||
package systems.brn.serverstorage.items;
|
||||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
|
||||
import net.minecraft.component.DataComponentTypes;
|
||||
import net.minecraft.component.type.LoreComponent;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroups;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.sound.SoundCategory;
|
||||
import net.minecraft.sound.SoundEvents;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Vec3d;
|
||||
import systems.brn.serverstorage.blockentities.RadioInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.*;
|
||||
import systems.brn.serverstorage.screens.StorageScreen;
|
||||
import systems.brn.serverstorage.screens.WirelessTerminalSelectorScreen;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
|
||||
public class WirelessTerminalItem extends SimpleItem {
|
||||
public WirelessTerminalItem(Settings settings, Identifier identifier) {
|
||||
super(settings, identifier);
|
||||
}
|
||||
|
||||
public static Item register() {
|
||||
Identifier identifier = id(WIRELESS_TERMINAL_ID);
|
||||
Item item = Registry.register(Registries.ITEM, identifier, new SimpleItem(
|
||||
new Settings()
|
||||
.maxCount(1)
|
||||
.component(WirelessTerminalComponents.SESSION_KEY, null)
|
||||
.component(WirelessTerminalComponents.SESSIONS, new ArrayList<>())
|
||||
.component(WirelessTerminalComponents.SELECTED_POSITION, -1)
|
||||
.component(WirelessTerminalComponents.SORT_MODE, SortMode.NUMERICALLY_REVERSE)
|
||||
.component(WirelessTerminalComponents.GROUP_SIMILAR, false)
|
||||
.component(WirelessTerminalComponents.QUERY_STRING, "")
|
||||
.component(WirelessTerminalComponents.PAGE, 0)
|
||||
.registryKey(RegistryKey.of(RegistryKeys.ITEM, identifier))
|
||||
, identifier));
|
||||
ItemGroupEvents.modifyEntriesEvent(ItemGroups.FUNCTIONAL).register(content -> content.add(item));
|
||||
return item;
|
||||
}
|
||||
|
||||
public static RadioInterfaceBlockEntity getRadioInterface(BlockPos pos, ServerWorld world) {
|
||||
if (world.getBlockState(pos).getBlock() == RADIO_INTERFACE_BLOCK && world.getBlockEntity(pos) instanceof RadioInterfaceBlockEntity radioInterfaceBlockEntity) {
|
||||
return radioInterfaceBlockEntity;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public static RadioDistance getDistance(ServerPlayerEntity player, RadioInterfaceBlockEntity radioInterfaceBlockEntity) {
|
||||
Vec3d playerTempPos = player.getPos();
|
||||
BlockPos playerPos = player.getBlockPos();
|
||||
BlockPos pos = radioInterfaceBlockEntity.getPos();
|
||||
ServerWorld playerWorld = player.getWorld();
|
||||
ServerWorld terminalWorld = playerWorld;
|
||||
int finalDistance = 0;
|
||||
int actualDistance = 0;
|
||||
if (radioInterfaceBlockEntity.getWorld() instanceof ServerWorld terminalWorldTemp) {
|
||||
terminalWorld = terminalWorldTemp;
|
||||
if (playerWorld.getRegistryKey() != terminalWorld.getRegistryKey()) {
|
||||
int playerWorldScale = (int) playerWorld.getDimension().coordinateScale();
|
||||
int terminalWorldScale = (int) terminalWorld.getDimension().coordinateScale();
|
||||
playerTempPos = new Vec3d(playerTempPos.getX() * playerWorldScale, playerTempPos.getY(), playerTempPos.getZ() * terminalWorldScale);
|
||||
playerTempPos = new Vec3d(playerTempPos.getX() / terminalWorldScale, playerTempPos.getY(), playerTempPos.getZ() / terminalWorldScale);
|
||||
}
|
||||
playerPos = BlockPos.ofFloored(playerTempPos);
|
||||
finalDistance = Math.max(radioInterfaceBlockEntity.antennaRange, 1);
|
||||
actualDistance = (int) Math.sqrt(playerPos.getSquaredDistance(pos));
|
||||
}
|
||||
return new RadioDistance(radioInterfaceBlockEntity, finalDistance, actualDistance, playerPos, pos, playerWorld, terminalWorld);
|
||||
}
|
||||
|
||||
public static boolean openTerminal(BlockPos pos, ServerPlayerEntity player, ItemStack stack, ServerWorld world) {
|
||||
|
||||
ServerWorld playerWorld = player.getWorld();
|
||||
String playerWorldName = playerWorld.getRegistryKey().getValue().toString();
|
||||
String terminalWorldName = world.getRegistryKey().getValue().toString();
|
||||
if (stack.getItem() == WIRELESS_TERMINAL) {
|
||||
RadioInterfaceBlockEntity radioInterfaceBlockEntity = WirelessTerminalItem.getRadioInterface(pos, world);
|
||||
if (radioInterfaceBlockEntity != null) {
|
||||
RadioDistance radioDistance = getDistance(player, radioInterfaceBlockEntity);
|
||||
if (radioInterfaceBlockEntity.antennaRange < 0 || (radioInterfaceBlockEntity.antennaRange > 0 && radioDistance.actualDistance() <= radioDistance.finalDistance())) {
|
||||
player.sendMessage(Text.translatable("gui.serverstorage.radio_connected", pos.toShortString(), terminalWorldName, radioDistance.playerPos().toShortString(), playerWorldName, radioDistance.actualDistance(), radioDistance.finalDistance()), true);
|
||||
UUID wirelessTerminalSession = stack.getOrDefault(WirelessTerminalComponents.SESSION_KEY, null);
|
||||
if (radioInterfaceBlockEntity.isSessionAuthorized(wirelessTerminalSession, player.getUuid())) {
|
||||
SortMode sortMode = stack.getOrDefault(WirelessTerminalComponents.SORT_MODE, SortMode.NUMERICALLY_REVERSE);
|
||||
boolean groupSimilar = stack.getOrDefault(WirelessTerminalComponents.GROUP_SIMILAR, false);
|
||||
String searchQuery = stack.getOrDefault(WirelessTerminalComponents.QUERY_STRING, "");
|
||||
StorageNetwork storageNetwork = new StorageNetwork(world, pos, sortMode, searchQuery, groupSimilar);
|
||||
StorageScreen storageScreen = new StorageScreen(player, stack, storageNetwork, radioInterfaceBlockEntity);
|
||||
storageScreen.updateDisplay();
|
||||
storageScreen.open();
|
||||
} else {
|
||||
player.sendMessage(Text.translatable("gui.serverstorage.radio_unauthorized", pos.toShortString(), terminalWorldName), true);
|
||||
player.playSoundToPlayer(SoundEvents.BLOCK_NOTE_BLOCK_BASS.value(), SoundCategory.PLAYERS, 1f, 1f);
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
player.sendMessage(Text.translatable("gui.serverstorage.radio_out_of_range", pos.toShortString(), terminalWorldName, radioDistance.playerPos().toShortString(), playerWorldName, radioDistance.actualDistance(), radioDistance.finalDistance()), true);
|
||||
player.playSoundToPlayer(SoundEvents.BLOCK_NOTE_BLOCK_COW_BELL.value(), SoundCategory.PLAYERS, 1f, 1f);
|
||||
}
|
||||
return true;
|
||||
} else {
|
||||
player.sendMessage(Text.translatable("gui.serverstorage.radio_not_found", pos.toShortString(), terminalWorldName, player.getBlockPos().toShortString(), playerWorldName), true);
|
||||
player.playSoundToPlayer(SoundEvents.BLOCK_NOTE_BLOCK_SNARE.value(), SoundCategory.PLAYERS, 1f, 1f);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private static void setSelectedPosition(ItemStack stack, List<SessionStorageClass> sessions) {
|
||||
int selectedIndex = stack.getOrDefault(WirelessTerminalComponents.SELECTED_POSITION, -1);
|
||||
if (selectedIndex >= sessions.size()) {
|
||||
selectedIndex = sessions.size() - 1;
|
||||
}
|
||||
stack.set(WirelessTerminalComponents.SELECTED_POSITION, selectedIndex);
|
||||
}
|
||||
|
||||
public static void removePosition(BlockPos pos, ItemStack stack) {
|
||||
List<SessionStorageClass> sessions = Util.removePosition(pos, stack);
|
||||
setSelectedPosition(stack, sessions);
|
||||
}
|
||||
|
||||
public static void ensureUUID(ItemStack stack, MinecraftServer server) {
|
||||
UUID wirelessTerminalSession = stack.getOrDefault(WirelessTerminalComponents.SESSION_KEY, null);
|
||||
if (wirelessTerminalSession == null) {
|
||||
stack.set(WirelessTerminalComponents.SESSION_KEY, UUID.randomUUID());
|
||||
updateLore(stack, server);
|
||||
}
|
||||
}
|
||||
|
||||
public static void updateLore(ItemStack stack, MinecraftServer server) {
|
||||
UUID wirelessTerminalSessionKey = stack.getOrDefault(WirelessTerminalComponents.SESSION_KEY, null);
|
||||
List<SessionStorageClass> sessions = new ArrayList<>(stack.getOrDefault(WirelessTerminalComponents.SESSIONS, new ArrayList<>()));
|
||||
int selectedPositionIndex = stack.getOrDefault(WirelessTerminalComponents.SELECTED_POSITION, -1);
|
||||
Text radioPlacedAt = Text.translatable("gui.serverstorage.radio_position_error");
|
||||
Text ownedBy = Text.translatable("gui.serverstorage.player_management_session_owner_error");
|
||||
if (selectedPositionIndex >= 0 && !sessions.isEmpty()) {
|
||||
SessionStorageClass session = sessions.get(selectedPositionIndex);
|
||||
BlockPos pos = session.getTerminalPos();
|
||||
radioPlacedAt = Text.translatable("gui.serverstorage.radio_position", pos.toShortString(), session.getWorldKey().getValue().getPath());
|
||||
GameProfile owner = session.getPlayerProfile(server);
|
||||
String ownerName = owner != null ? owner.getName() : "No one";
|
||||
ownedBy = Text.translatable("gui.serverstorage.player_management_session_owner", ownerName);
|
||||
}
|
||||
int page = stack.getOrDefault(WirelessTerminalComponents.PAGE, 0);
|
||||
SortMode sortMode = stack.getOrDefault(WirelessTerminalComponents.SORT_MODE, SortMode.NUMERICALLY_REVERSE);
|
||||
boolean groupSimilar = stack.getOrDefault(WirelessTerminalComponents.GROUP_SIMILAR, false);
|
||||
String searchQuery = stack.getOrDefault(WirelessTerminalComponents.QUERY_STRING, "*");
|
||||
if (selectedPositionIndex < 0 && !sessions.isEmpty()) {
|
||||
selectedPositionIndex = sessions.size() - 1;
|
||||
stack.set(WirelessTerminalComponents.SELECTED_POSITION, selectedPositionIndex);
|
||||
}
|
||||
stack.set(DataComponentTypes.LORE, new LoreComponent(List.of(
|
||||
Text.translatable("gui.serverstorage.player_management_session_key", wirelessTerminalSessionKey == null ? "Missing UUID" : wirelessTerminalSessionKey.toString()),
|
||||
Text.translatable("gui.serverstorage.wireless_terminal_link_count", sessions.size()),
|
||||
ownedBy,
|
||||
Text.translatable("gui.serverstorage.wireless_terminal_link_index", selectedPositionIndex),
|
||||
Text.translatable("gui.serverstorage.wireless_terminal_page", page),
|
||||
Text.translatable("gui.serverstorage.wireless_terminal_search_query", searchQuery),
|
||||
sortMode.getSortingText(),
|
||||
Text.translatable(groupSimilar ? "gui.serverstorage.group_similar" : "gui.serverstorage.dont_group_similar"),
|
||||
radioPlacedAt
|
||||
)));
|
||||
}
|
||||
|
||||
public static boolean stackMatches(ItemStack stack, ItemStack stack2) {
|
||||
UUID stack1UUID = stack.getOrDefault(WirelessTerminalComponents.SESSION_KEY, null);
|
||||
UUID stack2UUID = stack2.getOrDefault(WirelessTerminalComponents.SESSION_KEY, null);
|
||||
return stack.getItem() == WIRELESS_TERMINAL && stack2.getItem() == WIRELESS_TERMINAL && stack1UUID != null && stack1UUID.equals(stack2UUID);
|
||||
}
|
||||
|
||||
public static void saveStack(ItemStack changedStack, ItemStack originalStack, ServerPlayerEntity player) {
|
||||
ItemStack stackInMainHand = player.getMainHandStack();
|
||||
ItemStack stackInOffHand = player.getOffHandStack();
|
||||
if (stackMatches(originalStack, stackInMainHand)) {
|
||||
player.setStackInHand(Hand.MAIN_HAND, changedStack);
|
||||
} else if (stackMatches(originalStack, stackInOffHand)) {
|
||||
player.setStackInHand(Hand.OFF_HAND, changedStack);
|
||||
} else {
|
||||
PlayerInventory playerInventory = player.getInventory();
|
||||
for (int i = 0; i < playerInventory.size(); i++) {
|
||||
ItemStack stackInSlot = playerInventory.getStack(i);
|
||||
if (stackMatches(stackInSlot, stackInMainHand)) {
|
||||
playerInventory.setStack(i, changedStack);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static boolean useItem(ServerWorld world, ServerPlayerEntity playerEntity, ItemStack stack) {
|
||||
MinecraftServer server = world.getServer();
|
||||
ensureUUID(stack, server);
|
||||
updateLore(stack, server);
|
||||
if (!playerEntity.isSneaking()) {
|
||||
List<SessionStorageClass> wirelessTerminalPositions = new ArrayList<>(stack.getOrDefault(WirelessTerminalComponents.SESSIONS, new ArrayList<>()));
|
||||
int selectedPosition = stack.getOrDefault(WirelessTerminalComponents.SELECTED_POSITION, -1);
|
||||
|
||||
if (selectedPosition < 0 && !wirelessTerminalPositions.isEmpty()) {
|
||||
selectedPosition = wirelessTerminalPositions.size() - 1;
|
||||
stack.set(WirelessTerminalComponents.SELECTED_POSITION, selectedPosition);
|
||||
saveStack(stack, stack, playerEntity);
|
||||
}
|
||||
|
||||
if (wirelessTerminalPositions.isEmpty()) {
|
||||
stack.remove(WirelessTerminalComponents.SELECTED_POSITION);
|
||||
saveStack(stack, stack, playerEntity);
|
||||
selectedPosition = -1;
|
||||
}
|
||||
|
||||
if (selectedPosition < 0) {
|
||||
WirelessTerminalSelectorScreen wirelessTerminalSelectorScreen = new WirelessTerminalSelectorScreen(playerEntity, null);
|
||||
wirelessTerminalSelectorScreen.open();
|
||||
return false;
|
||||
}
|
||||
|
||||
SessionStorageClass sessionStorageClass = wirelessTerminalPositions.get(selectedPosition);
|
||||
BlockPos selectedPos = sessionStorageClass.getTerminalPos();
|
||||
|
||||
if (sessionStorageClass.getPlayerUUID().equals(playerEntity.getUuid()) && sessionStorageClass.getWorld(server).getBlockEntity(selectedPos) instanceof RadioInterfaceBlockEntity) {
|
||||
boolean success = openTerminal(selectedPos, playerEntity, stack, sessionStorageClass.getWorld(server));
|
||||
if (!success) {
|
||||
removePosition(selectedPos, stack);
|
||||
saveStack(stack, stack, playerEntity);
|
||||
}
|
||||
return true;
|
||||
} else {
|
||||
removePosition(selectedPos, stack);
|
||||
saveStack(stack, stack, playerEntity);
|
||||
playerEntity.playSoundToPlayer(SoundEvents.BLOCK_NOTE_BLOCK_BASS.value(), SoundCategory.PLAYERS, 1f, 1f);
|
||||
WirelessTerminalSelectorScreen wirelessTerminalSelectorScreen = new WirelessTerminalSelectorScreen(playerEntity, null);
|
||||
wirelessTerminalSelectorScreen.open();
|
||||
}
|
||||
} else {
|
||||
WirelessTerminalSelectorScreen wirelessTerminalSelectorScreen = new WirelessTerminalSelectorScreen(playerEntity, null);
|
||||
wirelessTerminalSelectorScreen.open();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
53
src/main/java/systems/brn/serverstorage/lib/Antenna.java
Normal file
53
src/main/java/systems/brn/serverstorage/lib/Antenna.java
Normal file
@@ -0,0 +1,53 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
|
||||
import net.minecraft.component.DataComponentTypes;
|
||||
import net.minecraft.component.type.LoreComponent;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroups;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.registry.RegistryKeys;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Identifier;
|
||||
import systems.brn.serverstorage.items.SimpleItem;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.ANTENNA_RANGES;
|
||||
import static systems.brn.serverstorage.ServerStorage.id;
|
||||
|
||||
public class Antenna extends SimpleItem {
|
||||
public final int range;
|
||||
|
||||
public Antenna(Settings settings, Identifier identifier, int range) {
|
||||
super(settings.component(DataComponentTypes.LORE,
|
||||
new LoreComponent(List.of(
|
||||
Text.translatable("gui.serverstorage.antenna_range", range)
|
||||
))), identifier);
|
||||
this.range = range;
|
||||
}
|
||||
|
||||
public static List<Item> register(List<String> tiers) {
|
||||
ArrayList<Item> items = new ArrayList<>();
|
||||
int range = 150;
|
||||
for (String tier : tiers) {
|
||||
Identifier identifier = id(tier + "_antenna");
|
||||
Item item = Registry.register(Registries.ITEM, identifier, new Antenna(new Settings()
|
||||
.maxCount(1).registryKey(RegistryKey.of(RegistryKeys.ITEM, identifier))
|
||||
, identifier, range));
|
||||
ItemGroupEvents.modifyEntriesEvent(ItemGroups.FUNCTIONAL).register(content -> content.add(item));
|
||||
items.add(item);
|
||||
if (Objects.equals(tier, "ender")) {
|
||||
ANTENNA_RANGES.put(item, Integer.MAX_VALUE);
|
||||
} else {
|
||||
ANTENNA_RANGES.put(item, range);
|
||||
}
|
||||
range *= 3;
|
||||
}
|
||||
return items;
|
||||
}
|
||||
}
|
24
src/main/java/systems/brn/serverstorage/lib/AntennaSlot.java
Normal file
24
src/main/java/systems/brn/serverstorage/lib/AntennaSlot.java
Normal file
@@ -0,0 +1,24 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.screen.slot.Slot;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.ANTENNA_LIST;
|
||||
|
||||
public class AntennaSlot extends Slot {
|
||||
public AntennaSlot(Inventory inventory, int index, int x, int y) {
|
||||
super(inventory, index, x, y);
|
||||
}
|
||||
|
||||
public static boolean isAntenna(Item item) {
|
||||
return ANTENNA_LIST.contains(item);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canInsert(ItemStack stack) {
|
||||
return isAntenna(stack.getItem());
|
||||
}
|
||||
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.util.StringIdentifiable;
|
||||
|
@@ -1,6 +1,5 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.recipe.CraftingRecipe;
|
||||
import net.minecraft.recipe.RecipeEntry;
|
||||
@@ -9,29 +8,36 @@ import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import static systems.brn.server_storage.lib.Util.addCountToLore;
|
||||
import static systems.brn.serverstorage.lib.Util.addCountToLore;
|
||||
|
||||
public class CraftingEntry {
|
||||
public final ArrayList<ItemStack> outputStacks;
|
||||
public final RecipeEntry<CraftingRecipe> recipeEntry;
|
||||
public final ArrayList<MyCraftingRecipe> myCraftingRecipeEntries;
|
||||
public final ArrayList<RecipeEntry<CraftingRecipe>> myCraftingRecipeEntries;
|
||||
public final int totalMax;
|
||||
public final int eachCraft;
|
||||
public final int maxCrafts;
|
||||
|
||||
public CraftingEntry(ItemStack itemStack, RecipeEntry<CraftingRecipe> recipeEntry, HashMap<ItemStack, Integer> inputs, Integer maxCount) {
|
||||
maxCrafts = maxCount;
|
||||
eachCraft = itemStack.getCount();
|
||||
totalMax = eachCraft * maxCrafts;
|
||||
ArrayList<ItemStack> tempOutputStacks = new ArrayList<>();
|
||||
ItemStack outputStack = itemStack.copy();
|
||||
outputStack.setCount(maxCount);
|
||||
outputStack = addCountToLore(itemStack.getCount() * maxCount, outputStack, "Total max: ");
|
||||
outputStack = addCountToLore(itemStack.getCount(), outputStack, "Each craft: ");
|
||||
outputStack = addCountToLore(maxCount, outputStack, "Max crafts: ");
|
||||
outputStack = addCountToLore(totalMax, outputStack, "Total max: ");
|
||||
outputStack = addCountToLore(eachCraft, outputStack, "Each craft: ");
|
||||
outputStack = addCountToLore(maxCrafts, outputStack, "Max crafts: ");
|
||||
tempOutputStacks.add(outputStack);
|
||||
for (Map.Entry<ItemStack, Integer> entry : inputs.entrySet()) {
|
||||
ItemStack stackIn = entry.getKey();
|
||||
Integer count = entry.getValue();
|
||||
if (count > 0 && stackIn.isEmpty() && stackIn.getItem().hasRecipeRemainder()) {
|
||||
Item remainderItem = stackIn.getItem().getRecipeRemainder();
|
||||
if (remainderItem != null) {
|
||||
ItemStack remainderStack = new ItemStack(stackIn.getItem().getRecipeRemainder(), count);
|
||||
tempOutputStacks.add(remainderStack);
|
||||
if (count > 0 && stackIn.isEmpty() && stackIn.getItem().getRecipeRemainder() != null) {
|
||||
ItemStack remainderStack = stackIn.getItem().getRecipeRemainder();
|
||||
if (!remainderStack.isEmpty()) {
|
||||
ItemStack remainderStackNew = remainderStack.copy();
|
||||
remainderStackNew.setCount(count);
|
||||
tempOutputStacks.add(remainderStackNew);
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import com.mojang.serialization.Codec;
|
||||
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
@@ -0,0 +1,31 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.world.World;
|
||||
import systems.brn.serverstorage.items.WirelessTerminalItem;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.WIRELESS_TERMINAL;
|
||||
|
||||
public class EventHandler {
|
||||
public static ActionResult onItemUse(PlayerEntity playerEntity, World worldTemp, Hand hand) {
|
||||
ItemStack itemStack = playerEntity.getStackInHand(hand);
|
||||
Item item = itemStack.getItem();
|
||||
if (!worldTemp.isClient) {
|
||||
if (playerEntity instanceof ServerPlayerEntity player) {
|
||||
if (worldTemp instanceof ServerWorld world) {
|
||||
if (item == WIRELESS_TERMINAL) {
|
||||
return WirelessTerminalItem.useItem(world, player, itemStack) ? ActionResult.SUCCESS : ActionResult.PASS;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return ActionResult.PASS;
|
||||
}
|
||||
}
|
@@ -0,0 +1,78 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import net.minecraft.util.UserCache;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
|
||||
//inspired by: https://github.com/Patbox/get-off-my-lawn-reserved/blob/1.21/src/main/java/draylar/goml/ui/GenericPlayerListGui.java
|
||||
public class GenericPlayerListGui extends PagedGui {
|
||||
public final List<UUID> uuids = new ArrayList<>();
|
||||
|
||||
public GenericPlayerListGui(ServerPlayerEntity player, @Nullable Runnable onClose) {
|
||||
super(player, onClose);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return (this.getEntryCount()) / PAGE_SIZE;
|
||||
}
|
||||
|
||||
protected int getEntryCount() {
|
||||
return this.uuids.size();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
return getPlayerElement(id);
|
||||
}
|
||||
|
||||
protected DisplayElement getPlayerElement(int id) {
|
||||
if (this.uuids.size() > id) {
|
||||
return getPlayerElement(this.uuids.get(id));
|
||||
}
|
||||
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
|
||||
protected DisplayElement getPlayerElement(UUID uuid) {
|
||||
MinecraftServer srv = this.player.getServer();
|
||||
if (srv == null) {
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
UserCache userCache = srv.getUserCache();
|
||||
GameProfile gameProfile = null;
|
||||
Optional<GameProfile> gameProfileTemp;
|
||||
boolean exists = false;
|
||||
|
||||
if (userCache != null) {
|
||||
gameProfileTemp = userCache.getByUuid(uuid);
|
||||
exists = gameProfileTemp.isPresent();
|
||||
gameProfile = exists ? gameProfileTemp.get() : null;
|
||||
}
|
||||
|
||||
|
||||
var builder = new GuiElementBuilder(exists ? Items.PLAYER_HEAD : Items.SKELETON_SKULL)
|
||||
.setName(Text.literal(exists ? gameProfile.getName() : "<" + uuid.toString() + ">")
|
||||
.formatted(Formatting.WHITE)
|
||||
);
|
||||
|
||||
if (exists) {
|
||||
builder.setSkullOwner(gameProfile, null);
|
||||
} else {
|
||||
builder.setSkullOwner(PagedGui.GUI_QUESTION_MARK);
|
||||
}
|
||||
|
||||
return DisplayElement.of(builder);
|
||||
}
|
||||
}
|
@@ -1,11 +1,11 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.screen.slot.Slot;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.DRIVES;
|
||||
import static systems.brn.serverstorage.ServerStorage.DRIVES;
|
||||
|
||||
public class HardDriveSlot extends Slot {
|
||||
public HardDriveSlot(Inventory inventory, int index, int x, int y) {
|
63
src/main/java/systems/brn/serverstorage/lib/ItemGroups.java
Normal file
63
src/main/java/systems/brn/serverstorage/lib/ItemGroups.java
Normal file
@@ -0,0 +1,63 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
import eu.pb4.polymer.core.api.item.PolymerItemGroupUtils;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemGroup;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.text.Text;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.*;
|
||||
|
||||
public class ItemGroups {
|
||||
public static final ItemGroup BLOCKS_GROUP = PolymerItemGroupUtils.builder()
|
||||
.icon(() -> new ItemStack(STORAGE_INTERFACE_BLOCK))
|
||||
.displayName(Text.translatable("serverstorage.groups.blocks"))
|
||||
.entries(((context, entries) -> {
|
||||
entries.add(STORAGE_INTERFACE_BLOCK);
|
||||
entries.add(HARD_DRIVE_CONTAINER_BLOCK);
|
||||
entries.add(BUS_CONNECTOR_BLOCK);
|
||||
entries.add(INVENTORY_INTERFACE_BLOCK);
|
||||
entries.add(RADIO_INTERFACE_BLOCK);
|
||||
entries.add(DISPLAY_BLOCK);
|
||||
}))
|
||||
.build();
|
||||
|
||||
public static final ItemGroup MATERIALS_GROUP = PolymerItemGroupUtils.builder()
|
||||
.icon(() -> new ItemStack(MODULES.getFirst()))
|
||||
.displayName(Text.translatable("serverstorage.groups.materials"))
|
||||
.entries(((context, entries) -> {
|
||||
for (Item module : MODULES) {
|
||||
entries.add(module);
|
||||
}
|
||||
for (Item material : MATERIALS) {
|
||||
entries.add(material);
|
||||
}
|
||||
int partLength = HEADS.size();
|
||||
if (partLength == PLATTERS.size()) {
|
||||
for (int i = 0; i < PLATTERS.size(); i++) {
|
||||
entries.add(PLATTERS.get(i));
|
||||
entries.add(HEADS.get(i));
|
||||
}
|
||||
}
|
||||
for (Item antenna : ANTENNA_LIST) {
|
||||
entries.add(antenna);
|
||||
}
|
||||
entries.add(WIRELESS_TERMINAL);
|
||||
}))
|
||||
.build();
|
||||
|
||||
public static final ItemGroup DRIVES_GROUP = PolymerItemGroupUtils.builder()
|
||||
.icon(() -> new ItemStack(DRIVES.getFirst()))
|
||||
.displayName(Text.translatable("serverstorage.groups.drives"))
|
||||
.entries(((context, entries) -> {
|
||||
for (Item drive : DRIVES) {
|
||||
entries.add(drive);
|
||||
}
|
||||
}))
|
||||
.build();
|
||||
|
||||
public static void register() {
|
||||
PolymerItemGroupUtils.registerPolymerItemGroup(id("blocks"), BLOCKS_GROUP);
|
||||
PolymerItemGroupUtils.registerPolymerItemGroup(id("drives"), DRIVES_GROUP);
|
||||
PolymerItemGroupUtils.registerPolymerItemGroup(id("materials"), MATERIALS_GROUP);
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import eu.pb4.sgui.api.elements.GuiElement;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
@@ -28,14 +28,21 @@ public abstract class PagedGui extends SimpleGui {
|
||||
public static final String GUI_NEXT_PAGE_BLOCKED = "ewogICJ0aW1lc3RhbXAiIDogMTY0MDYxNjExMDQ4OCwKICAicHJvZmlsZUlkIiA6ICIxZjEyNTNhYTVkYTQ0ZjU5YWU1YWI1NmFhZjRlNTYxNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJOb3RNaUt5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzdlNTc3MjBhNDg3OGM4YmNhYjBlOWM5YzQ3ZDllNTUxMjhjY2Q3N2JhMzQ0NWE1NGE5MWUzZTFlMWEyNzM1NmUiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==";
|
||||
public static final String GUI_QUESTION_MARK = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmM4ZWExZjUxZjI1M2ZmNTE0MmNhMTFhZTQ1MTkzYTRhZDhjM2FiNWU5YzZlZWM4YmE3YTRmY2I3YmFjNDAifX19";
|
||||
public static final String GUI_REFRESH = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDc1ZDNkYjAzZGMyMWU1NjNiMDM0MTk3ZGE0MzViNzllY2ZlZjRiOGUyZWNkYjczMGUzNzBjMzE2NjI5ZDM2ZiJ9fX0=";
|
||||
|
||||
public static final String GUI_A = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGU0MTc0ODEyMTYyNmYyMmFlMTZhNGM2NjRjNzMwMWE5ZjhlYTU5MWJmNGQyOTg4ODk1NzY4MmE5ZmRhZiJ9fX0=";
|
||||
public static final String GUI_1 = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2E1MTZmYmFlMTYwNThmMjUxYWVmOWE2OGQzMDc4NTQ5ZjQ4ZjZkNWI2ODNmMTljZjVhMTc0NTIxN2Q3MmNjIn19fQ==";
|
||||
public static final String GUI_Z = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzBkNDRmZWUwMzAzZjZkMzdmYWNhN2U5YzMxNTMwOTU1NmZhM2RmMzc5YmRkNTgyMzE3YWEzNjhhYTg0M2UifX19";
|
||||
public static final String GUI_9 = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDZhYmM2MWRjYWVmYmQ1MmQ5Njg5YzA2OTdjMjRjN2VjNGJjMWFmYjU2YjhiMzc1NWU2MTU0YjI0YTVkOGJhIn19fQ==";
|
||||
|
||||
public static final String GUI_A_B = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTdkZDM0OTI0ZDJiNmEyMTNhNWVkNDZhZTU3ODNmOTUzNzNhOWVmNWNlNWM4OGY5ZDczNjcwNTk4M2I5NyJ9fX0=";
|
||||
public static final String GUI_1_B = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDJhNmYwZTg0ZGFlZmM4YjIxYWE5OTQxNWIxNmVkNWZkYWE2ZDhkYzBjM2NkNTkxZjQ5Y2E4MzJiNTc1In19fQ==";
|
||||
public static final String GUI_Z_B = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzk5MmM3NTNiZjljNjI1ODUzY2UyYTBiN2IxNzRiODlhNmVjMjZiYjVjM2NjYjQ3M2I2YTIwMTI0OTYzMTIifX19";
|
||||
public static final String GUI_9_B = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWY3YWEwZDk3OTgzY2Q2N2RmYjY3YjdkOWQ5YzY0MWJjOWFhMzRkOTY2MzJmMzcyZDI2ZmVlMTlmNzFmOGI3In19fQ==";
|
||||
|
||||
|
||||
public static final String GUI_STORE_ALL = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWFkNmM4MWY4OTlhNzg1ZWNmMjZiZTFkYzQ4ZWFlMmJjZmU3NzdhODYyMzkwZjU3ODVlOTViZDgzYmQxNGQifX19";
|
||||
public static final String GUI_CONTAINERS = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2EzYzhjNmQzYWFhOTYzNjNkNGJlZjI1NzhmMTAyNDc4MWVhMTRlOWQ4NWE5ZGNmYzA5MzU4NDdhNmZiNWM4ZCJ9fX0=";
|
||||
public static final String GUI_SETTINGS = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTRkNDliYWU5NWM3OTBjM2IxZmY1YjJmMDEwNTJhNzE0ZDYxODU0ODFkNWIxYzg1OTMwYjNmOTlkMjMyMTY3NCJ9fX0=";
|
||||
public static final String GUI_CRAFTING = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWQyYzBjZWRmYzMyZTNiZWVlOTU1Y2FiZDY2ZmQ0ZDc2NWVlZGEzYWRjYzg0YmM0NTFjOWZkYmVjZjNjYjdjMiJ9fX0=";
|
||||
public static final String GUI_AUTOSUCK_OFF = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGViODFlZjg5MDIzNzk2NTBiYTc5ZjQ1NzIzZDZiOWM4ODgzODhhMDBmYzRlMTkyZjM0NTRmZTE5Mzg4MmVlMSJ9fX0=";
|
||||
public static final String GUI_AUTOSUCK_ON = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMThjNDQzYWRhNmUzOWZjYTgzN2EwMzgzYjBhNWUzZTU1NDc3M2I5NjYwYzQ4NzNmNTkxMDMyZGJlOWFkY2RmOCJ9fX0=";
|
||||
|
||||
public static final String GUI_SIDE_NORTH = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGEyMjFlNGY5NmJlZTYyNjE3NTIzOTZhMzI2NWZmYTRkZWRmOGZmNDgzOWFiZDE0ZjQ5ZWRlZTFlNTMwOTIifX19";
|
||||
public static final String GUI_SIDE_SOUTH = "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDcxMDEzODQxNjUyODg4OTgxNTU0OGI0NjIzZDI4ZDg2YmJiYWU1NjE5ZDY5Y2Q5ZGJjNWFkNmI0Mzc0NCJ9fX0=";
|
||||
@@ -64,8 +71,12 @@ public abstract class PagedGui extends SimpleGui {
|
||||
}
|
||||
}
|
||||
|
||||
protected void nextPage() {
|
||||
this.page = Math.min(this.getPageAmount() - 1, this.page + 1);
|
||||
protected void nextPage(boolean allTheWay) {
|
||||
if (allTheWay) {
|
||||
this.page = this.getPageAmount() - 1;
|
||||
} else {
|
||||
this.page = Math.min(this.getPageAmount() - 1, this.page + 1);
|
||||
}
|
||||
this.updateDisplay();
|
||||
}
|
||||
|
||||
@@ -73,8 +84,12 @@ public abstract class PagedGui extends SimpleGui {
|
||||
return this.getPageAmount() > this.page + 1;
|
||||
}
|
||||
|
||||
protected void previousPage() {
|
||||
this.page = Math.max(0, this.page - 1);
|
||||
protected void previousPage(boolean allTheWay) {
|
||||
if (allTheWay) {
|
||||
this.page = 0;
|
||||
} else {
|
||||
this.page = Math.max(0, this.page - 1);
|
||||
}
|
||||
this.updateDisplay();
|
||||
}
|
||||
|
||||
@@ -114,10 +129,6 @@ public abstract class PagedGui extends SimpleGui {
|
||||
}
|
||||
}
|
||||
|
||||
protected int getPage() {
|
||||
return this.page;
|
||||
}
|
||||
|
||||
protected abstract int getPageAmount();
|
||||
|
||||
protected abstract DisplayElement getElement(int id);
|
||||
@@ -153,19 +164,19 @@ public abstract class PagedGui extends SimpleGui {
|
||||
return DisplayElement.filler();
|
||||
}
|
||||
|
||||
protected DisplayElement search(){
|
||||
protected DisplayElement search() {
|
||||
return DisplayElement.filler();
|
||||
}
|
||||
|
||||
protected DisplayElement sorting(){
|
||||
protected DisplayElement sorting() {
|
||||
return DisplayElement.filler();
|
||||
}
|
||||
|
||||
protected DisplayElement storeAll(){
|
||||
protected DisplayElement storeAll() {
|
||||
return DisplayElement.filler();
|
||||
}
|
||||
|
||||
protected DisplayElement settings(){
|
||||
protected DisplayElement settings() {
|
||||
return DisplayElement.filler();
|
||||
}
|
||||
|
||||
@@ -194,18 +205,18 @@ public abstract class PagedGui extends SimpleGui {
|
||||
if (gui.canNextPage()) {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("createWorld.customize.custom.next").formatted(Formatting.WHITE))
|
||||
.setName(Text.translatable("spectatorMenu.next_page").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_NEXT_PAGE)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(gui.player);
|
||||
gui.nextPage();
|
||||
gui.nextPage(y.shift);
|
||||
})
|
||||
);
|
||||
} else {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("createWorld.customize.custom.next").formatted(Formatting.DARK_GRAY))
|
||||
.setName(Text.translatable("spectatorMenu.next_page").formatted(Formatting.DARK_GRAY))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_NEXT_PAGE_BLOCKED)
|
||||
);
|
||||
@@ -216,18 +227,18 @@ public abstract class PagedGui extends SimpleGui {
|
||||
if (gui.canPreviousPage()) {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("createWorld.customize.custom.prev").formatted(Formatting.WHITE))
|
||||
.setName(Text.translatable("spectatorMenu.previous_page").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_PREVIOUS_PAGE)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(gui.player);
|
||||
gui.previousPage();
|
||||
gui.previousPage(y.shift);
|
||||
})
|
||||
);
|
||||
} else {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("createWorld.customize.custom.prev").formatted(Formatting.DARK_GRAY))
|
||||
.setName(Text.translatable("spectatorMenu.previous_page").formatted(Formatting.DARK_GRAY))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_PREVIOUS_PAGE_BLOCKED)
|
||||
);
|
@@ -0,0 +1,16 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import systems.brn.serverstorage.blockentities.RadioInterfaceBlockEntity;
|
||||
|
||||
public record RadioDistance(
|
||||
RadioInterfaceBlockEntity radioInterfaceBlockEntity,
|
||||
int finalDistance,
|
||||
int actualDistance,
|
||||
BlockPos playerPos,
|
||||
BlockPos terminalPos,
|
||||
ServerWorld playerWorld,
|
||||
ServerWorld terminalWorld
|
||||
) {
|
||||
}
|
@@ -0,0 +1,5 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
public interface Searchable {
|
||||
public void doSearch(String searchText);
|
||||
}
|
43
src/main/java/systems/brn/serverstorage/lib/Session.java
Normal file
43
src/main/java/systems/brn/serverstorage/lib/Session.java
Normal file
@@ -0,0 +1,43 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import com.mojang.serialization.Codec;
|
||||
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.util.Uuids;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
|
||||
import static systems.brn.serverstorage.lib.Util.getUUID;
|
||||
import static systems.brn.serverstorage.lib.Util.putUUID;
|
||||
|
||||
public record Session(UUID sessionKey, UUID playerUUID) {
|
||||
|
||||
// Serialize to NBT
|
||||
public NbtCompound toNbt() {
|
||||
NbtCompound nbt = new NbtCompound();
|
||||
putUUID(nbt, "SessionKey", this.sessionKey);
|
||||
putUUID(nbt, "PlayerUUID", this.playerUUID);
|
||||
return nbt;
|
||||
}
|
||||
|
||||
// Deserialize from NBT
|
||||
public static Session fromNbt(NbtCompound nbt) {
|
||||
Optional<UUID> sessionKey = getUUID(nbt, "SessionKey");
|
||||
Optional<UUID> playerUUID = getUUID(nbt, "PlayerUUID");
|
||||
if (sessionKey.isPresent() && playerUUID.isPresent()) {
|
||||
return new Session(sessionKey.get(), playerUUID.get());
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public static final Codec<Session> SESSION_CODEC = RecordCodecBuilder.create(instance -> instance.group(
|
||||
Uuids.CODEC.fieldOf("SessionKey").forGetter(Session::sessionKey),
|
||||
Uuids.CODEC.fieldOf("PlayerUUID").forGetter(Session::playerUUID)
|
||||
).apply(instance, Session::new));
|
||||
|
||||
public static final Codec<List<Session>> SESSION_LIST_CODEC = SESSION_CODEC.listOf();
|
||||
|
||||
|
||||
}
|
@@ -0,0 +1,50 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import static systems.brn.serverstorage.lib.Util.getGameProfile;
|
||||
|
||||
public class SessionStorageClass {
|
||||
private final BlockPos terminalPos;
|
||||
private final UUID playerUUID;
|
||||
private final RegistryKey<World> worldKey;
|
||||
|
||||
public SessionStorageClass(UUID playerUUID, ServerWorld world, BlockPos terminalPos) {
|
||||
this.playerUUID = playerUUID;
|
||||
this.worldKey = world.getRegistryKey();
|
||||
this.terminalPos = terminalPos;
|
||||
}
|
||||
|
||||
public SessionStorageClass(UUID playerUUID, RegistryKey<World> worldKey, BlockPos terminalPos) {
|
||||
this.playerUUID = playerUUID;
|
||||
this.worldKey = worldKey;
|
||||
this.terminalPos = terminalPos;
|
||||
}
|
||||
|
||||
public BlockPos getTerminalPos() {
|
||||
return terminalPos;
|
||||
}
|
||||
|
||||
public UUID getPlayerUUID() {
|
||||
return playerUUID;
|
||||
}
|
||||
|
||||
public GameProfile getPlayerProfile(MinecraftServer server) {
|
||||
return getGameProfile(playerUUID, server);
|
||||
}
|
||||
|
||||
public RegistryKey<World> getWorldKey() {
|
||||
return worldKey;
|
||||
}
|
||||
|
||||
public ServerWorld getWorld(MinecraftServer server) {
|
||||
return server.getWorld(this.worldKey);
|
||||
}
|
||||
}
|
65
src/main/java/systems/brn/serverstorage/lib/SortMode.java
Normal file
65
src/main/java/systems/brn/serverstorage/lib/SortMode.java
Normal file
@@ -0,0 +1,65 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.text.MutableText;
|
||||
import net.minecraft.text.Text;
|
||||
|
||||
import static systems.brn.serverstorage.lib.PagedGui.*;
|
||||
|
||||
public enum SortMode {
|
||||
ALPHABETICALLY(0),
|
||||
ALPHABETICALLY_REVERSE(1),
|
||||
NUMERICALLY(2),
|
||||
NUMERICALLY_REVERSE(3);
|
||||
|
||||
private final int id;
|
||||
|
||||
SortMode(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public static SortMode fromId(int id) {
|
||||
for (SortMode mode : values()) {
|
||||
if (mode.getId() == id) {
|
||||
return mode;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException("Unknown SortMode id: " + id);
|
||||
}
|
||||
|
||||
public SortMode nextSort() {
|
||||
int nextOrdinal = (this.ordinal() + 1) % SortMode.values().length;
|
||||
return SortMode.values()[nextOrdinal];
|
||||
}
|
||||
|
||||
public MutableText getSortingText() {
|
||||
return switch (this) {
|
||||
case ALPHABETICALLY -> Text.translatable("gui.serverstorage.sorting_alphabetically");
|
||||
case ALPHABETICALLY_REVERSE -> Text.translatable("gui.serverstorage.sorting_alphabetically_reversed");
|
||||
case NUMERICALLY -> Text.translatable("gui.serverstorage.sorting_numerically");
|
||||
case NUMERICALLY_REVERSE -> Text.translatable("gui.serverstorage.sorting_numerically_reversed");
|
||||
};
|
||||
}
|
||||
|
||||
public String getSortingIcon(boolean groupSimilar) {
|
||||
if (groupSimilar) {
|
||||
return switch (this) {
|
||||
case ALPHABETICALLY -> GUI_A_B;
|
||||
case ALPHABETICALLY_REVERSE -> GUI_Z_B;
|
||||
case NUMERICALLY -> GUI_1_B;
|
||||
case NUMERICALLY_REVERSE -> GUI_9_B;
|
||||
};
|
||||
}
|
||||
return switch (this) {
|
||||
case ALPHABETICALLY -> GUI_A;
|
||||
case ALPHABETICALLY_REVERSE -> GUI_Z;
|
||||
case NUMERICALLY -> GUI_1;
|
||||
case NUMERICALLY_REVERSE -> GUI_9;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockState;
|
||||
@@ -7,21 +7,20 @@ import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.World;
|
||||
import systems.brn.server_storage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.server_storage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.blocks.BusConnectorBlock;
|
||||
import systems.brn.server_storage.blocks.HardDriveContainerBlock;
|
||||
import systems.brn.server_storage.blocks.InventoryInterfaceBlock;
|
||||
import systems.brn.server_storage.blocks.StorageInterfaceBlock;
|
||||
import systems.brn.server_storage.items.HardDrive;
|
||||
import systems.brn.serverstorage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.serverstorage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.blocks.BusConnectorBlock;
|
||||
import systems.brn.serverstorage.blocks.HardDriveContainerBlock;
|
||||
import systems.brn.serverstorage.blocks.InventoryInterfaceBlock;
|
||||
import systems.brn.serverstorage.blocks.StorageInterfaceBlock;
|
||||
import systems.brn.serverstorage.items.HardDrive;
|
||||
|
||||
import java.security.KeyStore;
|
||||
import java.util.*;
|
||||
|
||||
import static systems.brn.server_storage.ServerStorage.DRIVES;
|
||||
import static systems.brn.server_storage.blocks.BusConnectorBlock.*;
|
||||
import static systems.brn.server_storage.lib.StorageOperations.*;
|
||||
import static systems.brn.serverstorage.ServerStorage.DRIVES;
|
||||
import static systems.brn.serverstorage.blocks.BusConnectorBlock.*;
|
||||
import static systems.brn.serverstorage.lib.StorageOperations.*;
|
||||
|
||||
public class StorageNetwork {
|
||||
public List<HardDriveContainerBlockEntity> driveContainers;
|
||||
@@ -33,8 +32,9 @@ public class StorageNetwork {
|
||||
|
||||
public final World world;
|
||||
public final BlockPos startPos;
|
||||
public boolean sortAlphabetically = false;
|
||||
public String searchString = "";
|
||||
public SortMode sortMode;
|
||||
public boolean groupSimilar;
|
||||
public String searchString;
|
||||
|
||||
public int driveContainerCount;
|
||||
public int drivesCount;
|
||||
@@ -42,11 +42,12 @@ public class StorageNetwork {
|
||||
public int driveUsedSlots;
|
||||
public int driveFreeSlots;
|
||||
|
||||
public StorageNetwork(World world, BlockPos startPos, boolean sortAlphabetically, String searchString) {
|
||||
public StorageNetwork(World world, BlockPos startPos, SortMode sortMode, String searchString, boolean groupSimilar) {
|
||||
this.world = world;
|
||||
this.startPos = startPos;
|
||||
this.sortAlphabetically = sortAlphabetically;
|
||||
this.sortMode = sortMode;
|
||||
this.searchString = searchString;
|
||||
this.groupSimilar = groupSimilar;
|
||||
reindexNetwork();
|
||||
}
|
||||
|
||||
@@ -66,7 +67,7 @@ public class StorageNetwork {
|
||||
|
||||
countStuff();
|
||||
|
||||
filteredItemStackMap = getCombinedMap(sortAlphabetically, searchString);
|
||||
filteredItemStackMap = getCombinedMap(sortMode, searchString, groupSimilar);
|
||||
}
|
||||
|
||||
private void countStuff() {
|
||||
@@ -164,12 +165,12 @@ public class StorageNetwork {
|
||||
}
|
||||
|
||||
// Modify getCombinedInventoryFromChests to include item metadata and combine stacks
|
||||
private TreeMap<ItemStack, Integer> getCombinedMap(boolean sortAlphabetically, String query) {
|
||||
private TreeMap<ItemStack, Integer> getCombinedMap(SortMode sortAlphabetically, String query, boolean groupSimilar) {
|
||||
itemStackMap = new HashMap<>();
|
||||
for (HardDrive drive : drives) {
|
||||
itemStackMap = drive.addToMap(itemStackMap);
|
||||
}
|
||||
return sortAndFilterMap(itemStackMap, sortAlphabetically, query);
|
||||
return sortAndFilterMap(itemStackMap, sortAlphabetically, query, groupSimilar);
|
||||
}
|
||||
|
||||
|
||||
@@ -211,13 +212,15 @@ public class StorageNetwork {
|
||||
ItemStack outStack = stackToRemove.copy();
|
||||
|
||||
for (HardDrive drive : drives) {
|
||||
ItemStack removedStack = drive.removeStackFromInventoryRemains(outStack);
|
||||
if (removedStack.getCount() <= 0) {
|
||||
break;
|
||||
outStack = drive.removeStackFromInventoryRemains(outStack);
|
||||
if (outStack.getCount() <= 0) {
|
||||
// If all items are removed, return an empty stack
|
||||
return ItemStack.EMPTY; // Assuming ItemStack.EMPTY represents an empty stack
|
||||
}
|
||||
}
|
||||
|
||||
// If we still have remaining items, return false
|
||||
// Return the remaining stack if some items could not be removed
|
||||
return outStack;
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,353 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
public class StorageOperations {
|
||||
// Modify getSimpleInventory to include item metadata and sort conditionally
|
||||
public static TreeMap<ItemStack, Integer> sortAndFilterMap(Map<ItemStack, Integer> itemStackMap, SortMode sortAlphabetically, String query, boolean groupSimilar) {
|
||||
TreeMap<ItemStack, Integer> sortedMap = getItemStackIntegerTreeMap(itemStackMap, sortAlphabetically, groupSimilar);
|
||||
|
||||
if (query == null || query.isEmpty() || query.equals("*")) {
|
||||
sortedMap.putAll(itemStackMap);
|
||||
} else {
|
||||
Map<ItemStack, Integer> filteredMap = new HashMap<>();
|
||||
for (Map.Entry<ItemStack, Integer> entry : itemStackMap.entrySet()) {
|
||||
if (filterItem(entry.getKey().getItem(), query)) {
|
||||
ItemStack stack = entry.getKey();
|
||||
stack.setCount(Math.min(entry.getValue(), stack.getMaxCount()));
|
||||
filteredMap.put(stack, entry.getValue());
|
||||
}
|
||||
}
|
||||
sortedMap.putAll(filteredMap);
|
||||
}
|
||||
return sortedMap;
|
||||
}
|
||||
|
||||
public static TreeSet<CraftingEntry> sortAndFilterEntries(ArrayList<CraftingEntry> craftingEntries, SortMode sortAlphabetically, String query) {
|
||||
TreeSet<CraftingEntry> sortedSet = getTreeSetCraftingEntries(sortAlphabetically);
|
||||
|
||||
if (query == null || query.isEmpty() || query.equals("*")) {
|
||||
sortedSet.addAll(craftingEntries);
|
||||
} else {
|
||||
ArrayList<CraftingEntry> filteredSet = new ArrayList<>();
|
||||
for (CraftingEntry entry : craftingEntries) {
|
||||
if (!entry.outputStacks.isEmpty() && filterItem(entry.outputStacks.getFirst().getItem(), query)) {
|
||||
filteredSet.add(entry);
|
||||
}
|
||||
}
|
||||
sortedSet.addAll(filteredSet);
|
||||
}
|
||||
return sortedSet;
|
||||
}
|
||||
|
||||
public static boolean filterItem(Item item, String query) {
|
||||
if (item != null) {
|
||||
String itemName = String.valueOf(item);
|
||||
return itemName == null || itemName.contains(query);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private static @NotNull TreeMap<ItemStack, Integer> getItemStackIntegerTreeMap(Map<ItemStack, Integer> itemStackMap, SortMode sortMode, boolean groupSimilar) {
|
||||
TreeMap<ItemStack, Integer> sortedMap;
|
||||
|
||||
switch (sortMode) {
|
||||
case ALPHABETICALLY:
|
||||
// Sort alphabetically by item name
|
||||
sortedMap = new TreeMap<>((o1, o2) -> sortAlpha(groupSimilar, o1, o2));
|
||||
break;
|
||||
|
||||
case ALPHABETICALLY_REVERSE:
|
||||
// Sort alphabetically by item name in reverse order
|
||||
sortedMap = new TreeMap<>((o1, o2) -> sortAlpha(groupSimilar, o2, o1)); // Reverse comparison
|
||||
break;
|
||||
|
||||
case NUMERICALLY:
|
||||
// Sort by count in descending order
|
||||
sortedMap = new TreeMap<>((o1, o2) -> {
|
||||
int count1 = itemStackMap.get(o1);
|
||||
int count2 = itemStackMap.get(o2);
|
||||
int countCompare = Integer.compare(count2, count1);
|
||||
// If counts are equal, compare items alphabetically by name
|
||||
if (countCompare != 0) {
|
||||
return countCompare;
|
||||
}
|
||||
return sortAlpha(groupSimilar, o1, o2);
|
||||
});
|
||||
break;
|
||||
|
||||
case NUMERICALLY_REVERSE:
|
||||
// Sort by count in ascending order
|
||||
sortedMap = new TreeMap<>((o1, o2) -> {
|
||||
int count1 = itemStackMap.get(o1);
|
||||
int count2 = itemStackMap.get(o2);
|
||||
int countCompare = Integer.compare(count1, count2); // Reverse comparison
|
||||
// If counts are equal, compare items alphabetically by name
|
||||
if (countCompare != 0) {
|
||||
return countCompare;
|
||||
}
|
||||
return sortAlpha(groupSimilar, o1, o2);
|
||||
});
|
||||
break;
|
||||
|
||||
default:
|
||||
throw new IllegalArgumentException("Invalid sort mode: " + sortMode);
|
||||
}
|
||||
|
||||
// Populate the sorted map with entries from the original map
|
||||
sortedMap.putAll(itemStackMap);
|
||||
|
||||
return sortedMap;
|
||||
}
|
||||
|
||||
|
||||
private static int sortAlpha(boolean groupSimilar, ItemStack o1, ItemStack o2) {
|
||||
String name1, name2;
|
||||
if (groupSimilar) {
|
||||
name1 = String.valueOf(o1.getItem());
|
||||
name2 = String.valueOf(o2.getItem());
|
||||
} else {
|
||||
name1 = o1.getItem() + o1.getComponents().toString();
|
||||
name2 = o2.getItem() + o2.getComponents().toString();
|
||||
}
|
||||
return name1.compareToIgnoreCase(name2);
|
||||
}
|
||||
|
||||
private static @NotNull TreeSet<CraftingEntry> getTreeSetCraftingEntries(SortMode sortMode) {
|
||||
TreeSet<CraftingEntry> sortedSet;
|
||||
|
||||
switch (sortMode) {
|
||||
case ALPHABETICALLY:
|
||||
// Sort alphabetically by item name
|
||||
sortedSet = new TreeSet<>((o1, o2) -> {
|
||||
if (o1.outputStacks.isEmpty()) {
|
||||
return 1;
|
||||
} else if (o2.outputStacks.isEmpty()) {
|
||||
return -1;
|
||||
}
|
||||
String name1 = String.valueOf(o1.outputStacks.getFirst().getItem());
|
||||
String name2 = String.valueOf(o2.outputStacks.getFirst().getItem());
|
||||
return name1.compareToIgnoreCase(name2);
|
||||
});
|
||||
break;
|
||||
|
||||
case ALPHABETICALLY_REVERSE:
|
||||
// Sort alphabetically by item name in reverse order
|
||||
sortedSet = new TreeSet<>((o1, o2) -> {
|
||||
if (o1.outputStacks.isEmpty()) {
|
||||
return 1;
|
||||
} else if (o2.outputStacks.isEmpty()) {
|
||||
return -1;
|
||||
}
|
||||
String name1 = String.valueOf(o1.outputStacks.getFirst().getItem());
|
||||
String name2 = String.valueOf(o2.outputStacks.getFirst().getItem());
|
||||
return name2.compareToIgnoreCase(name1); // Reverse comparison
|
||||
});
|
||||
break;
|
||||
|
||||
case NUMERICALLY:
|
||||
// Sort by count in descending order
|
||||
sortedSet = new TreeSet<>((o1, o2) -> {
|
||||
if (o1.outputStacks.isEmpty()) {
|
||||
return 1;
|
||||
} else if (o2.outputStacks.isEmpty()) {
|
||||
return -1;
|
||||
}
|
||||
int count1 = o1.totalMax;
|
||||
int count2 = o2.totalMax;
|
||||
int countCompare = Integer.compare(count2, count1);
|
||||
// If counts are equal, compare items alphabetically by name
|
||||
if (countCompare == 0) {
|
||||
String name1 = String.valueOf(o1.outputStacks.getFirst().getItem());
|
||||
String name2 = String.valueOf(o2.outputStacks.getFirst().getItem());
|
||||
return name1.compareToIgnoreCase(name2);
|
||||
}
|
||||
return countCompare;
|
||||
});
|
||||
break;
|
||||
|
||||
case NUMERICALLY_REVERSE:
|
||||
// Sort by count in ascending order
|
||||
sortedSet = new TreeSet<>((o1, o2) -> {
|
||||
if (o1.outputStacks.isEmpty()) {
|
||||
return 1;
|
||||
} else if (o2.outputStacks.isEmpty()) {
|
||||
return -1;
|
||||
}
|
||||
int count1 = o1.totalMax;
|
||||
int count2 = o2.totalMax;
|
||||
int countCompare = Integer.compare(count1, count2); // Reverse comparison
|
||||
// If counts are equal, compare items alphabetically by name
|
||||
if (countCompare == 0) {
|
||||
String name1 = String.valueOf(o1.outputStacks.getFirst().getItem());
|
||||
String name2 = String.valueOf(o2.outputStacks.getFirst().getItem());
|
||||
return name1.compareToIgnoreCase(name2);
|
||||
}
|
||||
return countCompare;
|
||||
});
|
||||
break;
|
||||
|
||||
default:
|
||||
throw new IllegalArgumentException("Invalid sort mode: " + sortMode);
|
||||
}
|
||||
|
||||
return sortedSet;
|
||||
}
|
||||
|
||||
|
||||
public static int canInsertToStack(ItemStack stack1, ItemStack stack2, int maxInsert) {
|
||||
if (stack1.isEmpty() || ItemStack.areItemsEqual(stack1, stack2)) {
|
||||
int remainingSpace = stack1.isEmpty() ? stack2.getMaxCount() : stack1.getMaxCount() - stack1.getCount();
|
||||
maxInsert += remainingSpace;
|
||||
// If the maximum insertion count is greater than or equal to the item count, return the item count
|
||||
if (maxInsert >= stack2.getCount()) {
|
||||
return stack2.getCount();
|
||||
}
|
||||
}
|
||||
return maxInsert;
|
||||
}
|
||||
|
||||
public static int canInsertItemIntoInventory(Inventory inventory, ItemStack itemStack) {
|
||||
// Get the player's inventory
|
||||
int maxInsert = 0;
|
||||
|
||||
if (inventory instanceof PlayerInventory playerInventory) {
|
||||
// Iterate through the slots in the player's inventory
|
||||
for (int i = 0; i < playerInventory.getMainStacks().size(); i++) {
|
||||
ItemStack slotStack = playerInventory.getMainStacks().get(i);
|
||||
maxInsert = canInsertToStack(slotStack, itemStack, maxInsert);
|
||||
}
|
||||
} else {
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
maxInsert = canInsertToStack(slotStack, itemStack, maxInsert);
|
||||
}
|
||||
}
|
||||
|
||||
return maxInsert; // Return the maximum insertion count
|
||||
}
|
||||
|
||||
public static ItemStack insertStackIntoInventory(Inventory inventory, ItemStack stack, boolean mainOnly) {
|
||||
int startSlot = 0;
|
||||
int endSlot = inventory.size();
|
||||
if (mainOnly) {
|
||||
startSlot = 9;
|
||||
endSlot = 45;
|
||||
}
|
||||
// First, try to merge with existing stacks
|
||||
for (int i = startSlot; i < endSlot; i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (canCombine(slotStack, stack)) {
|
||||
int transferAmount = Math.min(stack.getCount(), slotStack.getMaxCount() - slotStack.getCount());
|
||||
if (transferAmount > 0) {
|
||||
slotStack.increment(transferAmount);
|
||||
stack.decrement(transferAmount);
|
||||
inventory.markDirty();
|
||||
if (stack.isEmpty()) {
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Next, try to find an empty slot
|
||||
for (int i = startSlot; i < endSlot; i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (slotStack.isEmpty()) {
|
||||
inventory.setStack(i, stack.copy());
|
||||
stack.setCount(0);
|
||||
inventory.markDirty();
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
}
|
||||
|
||||
return stack;
|
||||
}
|
||||
|
||||
public static void removeFromInventory(Inventory inventory, ItemStack stackToRemove, int remainingToRemove) {
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (canCombine(slotStack, stackToRemove)) {
|
||||
int removeAmount = Math.min(slotStack.getCount(), remainingToRemove);
|
||||
slotStack.decrement(removeAmount);
|
||||
remainingToRemove -= removeAmount;
|
||||
inventory.markDirty();
|
||||
|
||||
if (slotStack.isEmpty()) {
|
||||
inventory.setStack(i, ItemStack.EMPTY);
|
||||
}
|
||||
|
||||
if (remainingToRemove <= 0) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static int howMuchFits(ItemStack stack, Inventory inventory) {
|
||||
int out = 0;
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack slotStack = inventory.getStack(i);
|
||||
if (slotStack.isEmpty()) {
|
||||
out += stack.getMaxCount();
|
||||
continue;
|
||||
}
|
||||
if (canCombine(slotStack, stack)) {
|
||||
int remaining = slotStack.getMaxCount() - slotStack.getCount();
|
||||
out += remaining;
|
||||
}
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
public static int canRemoveRemainingCount(ItemStack stackToRemove, Map<ItemStack, Integer> itemsMap) {
|
||||
int remainingToRemove = stackToRemove.getCount();
|
||||
|
||||
for (Map.Entry<ItemStack, Integer> entry : itemsMap.entrySet()) {
|
||||
ItemStack slotStack = entry.getKey();
|
||||
if (canCombine(slotStack, stackToRemove)) {
|
||||
// If the slot contains the same item type
|
||||
if (entry.getValue() >= remainingToRemove) {
|
||||
// If the count in the slot is sufficient to remove the requested amount
|
||||
return 0;
|
||||
} else {
|
||||
// If the count in the slot is not sufficient, update remainingToRemove
|
||||
remainingToRemove -= slotStack.getCount();
|
||||
}
|
||||
}
|
||||
}
|
||||
// If no matching stack with sufficient count is found, return false
|
||||
return remainingToRemove;
|
||||
}
|
||||
|
||||
public static boolean canCombine(ItemStack stack1, ItemStack stack2) {
|
||||
return !stack1.isEmpty() && stack1.getItem() == stack2.getItem() && ItemStack.areItemsAndComponentsEqual(stack1, stack2);
|
||||
}
|
||||
|
||||
public static void addInventoryToMap(Inventory inventory, Map<ItemStack, Integer> itemStackMap) {
|
||||
for (int i = 0; i < inventory.size(); i++) {
|
||||
ItemStack stack = inventory.getStack(i);
|
||||
if (!stack.isEmpty()) {
|
||||
addToMap(itemStackMap, stack);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static void addToMap(Map<ItemStack, Integer> itemStackMap, ItemStack stack) {
|
||||
for (Map.Entry<ItemStack, Integer> entry : itemStackMap.entrySet()) {
|
||||
ItemStack existingStack = entry.getKey();
|
||||
if (ItemStack.areItemsAndComponentsEqual(stack, existingStack)) {
|
||||
int newCount = entry.getValue() + stack.getCount();
|
||||
entry.setValue(newCount);
|
||||
return;
|
||||
}
|
||||
}
|
||||
itemStackMap.put(stack.copy(), stack.getCount());
|
||||
}
|
||||
}
|
@@ -1,21 +1,28 @@
|
||||
package systems.brn.server_storage.lib;
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import net.minecraft.component.DataComponentTypes;
|
||||
import net.minecraft.component.type.LoreComponent;
|
||||
import net.minecraft.component.type.TooltipDisplayComponent;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.recipe.*;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.recipe.CraftingRecipe;
|
||||
import net.minecraft.recipe.Ingredient;
|
||||
import net.minecraft.recipe.RecipeEntry;
|
||||
import net.minecraft.recipe.ServerRecipeManager;
|
||||
import net.minecraft.recipe.input.CraftingRecipeInput;
|
||||
import net.minecraft.registry.entry.RegistryEntry;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.text.RawFilteredPair;
|
||||
import net.minecraft.text.Style;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import net.minecraft.util.UserCache;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public class Util {
|
||||
@@ -87,6 +94,31 @@ public class Util {
|
||||
}
|
||||
}
|
||||
|
||||
public static GameProfile getGameProfile(UUID playerUUID, MinecraftServer server) {
|
||||
UserCache userCache = server.getUserCache();
|
||||
GameProfile gameProfile = null;
|
||||
Optional<GameProfile> gameProfileTemp;
|
||||
|
||||
if (userCache != null) {
|
||||
gameProfileTemp = userCache.getByUuid(playerUUID);
|
||||
boolean exists = gameProfileTemp.isPresent();
|
||||
gameProfile = exists ? gameProfileTemp.get() : null;
|
||||
}
|
||||
return gameProfile;
|
||||
}
|
||||
|
||||
public static List<SessionStorageClass> removePosition(BlockPos pos, ItemStack stack) {
|
||||
List<SessionStorageClass> sessions = new ArrayList<>(stack.getOrDefault(WirelessTerminalComponents.SESSIONS, new ArrayList<>()));
|
||||
for (SessionStorageClass session : sessions) {
|
||||
if (session.getTerminalPos().equals(pos)) {
|
||||
sessions.remove(session);
|
||||
break;
|
||||
}
|
||||
}
|
||||
stack.set(WirelessTerminalComponents.SESSIONS, sessions);
|
||||
return sessions;
|
||||
}
|
||||
|
||||
public static ItemStack removeCountFromLore(ItemStack stack) {
|
||||
LoreComponent oldLore = stack.get(DataComponentTypes.LORE);
|
||||
|
||||
@@ -98,7 +130,9 @@ public class Util {
|
||||
|
||||
LoreComponent newLore = new LoreComponent(filteredLines);
|
||||
|
||||
|
||||
newStack.set(DataComponentTypes.LORE, newLore);
|
||||
newStack.set(DataComponentTypes.TOOLTIP_DISPLAY, TooltipDisplayComponent.DEFAULT);
|
||||
return newStack;
|
||||
} else {
|
||||
return stack;
|
||||
@@ -106,40 +140,42 @@ public class Util {
|
||||
}
|
||||
|
||||
public static ArrayList<CraftingEntry> getCraftableRecipes(Map<ItemStack, Integer> itemStackMap, MinecraftServer server) {
|
||||
RecipeManager recipeManager = server.getRecipeManager();
|
||||
List<RecipeEntry<CraftingRecipe>> allRecipes = recipeManager.listAllOfType(RecipeType.CRAFTING);
|
||||
ServerRecipeManager recipeManager = server.getRecipeManager();
|
||||
List<RecipeEntry<?>> allRecipes = (List<RecipeEntry<?>>) recipeManager.values();
|
||||
|
||||
ArrayList<CraftingEntry> craftingEntries = new ArrayList<>();
|
||||
|
||||
for (RecipeEntry<CraftingRecipe> recipe : allRecipes) {
|
||||
for (RecipeEntry<?> recipex : allRecipes) {
|
||||
if (!(recipex.value() instanceof CraftingRecipe)) {
|
||||
continue;
|
||||
}
|
||||
RecipeEntry<CraftingRecipe> recipe = (RecipeEntry<CraftingRecipe>) recipex;
|
||||
int maxAmount = Integer.MAX_VALUE;
|
||||
boolean canMake = true;
|
||||
HashMap<ItemStack, Integer> finalInputs = new HashMap<>();
|
||||
Map<Item, Integer> ingredientCounts = new HashMap<>();
|
||||
|
||||
// Count the occurrences of each ingredient in the recipe
|
||||
for (Ingredient ingredient : recipe.value().getIngredients()) {
|
||||
for (ItemStack stack : ingredient.getMatchingStacks()) {
|
||||
if (stack.isEmpty()) continue;
|
||||
ingredientCounts.put(stack.getItem(), ingredientCounts.getOrDefault(stack.getItem(), 0) + 1);
|
||||
for (Ingredient ingredient : recipe.value().getIngredientPlacement().getIngredients()) {
|
||||
for (RegistryEntry<Item> item : ingredient.getMatchingItems().toList()) {
|
||||
ingredientCounts.put(item.value(), ingredientCounts.getOrDefault(item.value(), 0) + 1);
|
||||
}
|
||||
}
|
||||
|
||||
boolean usesAnyIngredient = false;
|
||||
|
||||
for (Ingredient ingredient : recipe.value().getIngredients()) {
|
||||
for (Ingredient ingredient : recipe.value().getIngredientPlacement().getIngredients()) {
|
||||
int totalAvailable = 0;
|
||||
HashMap<ItemStack, Integer> inputsTemp = new HashMap<>();
|
||||
|
||||
for (ItemStack stack : ingredient.getMatchingStacks()) {
|
||||
if (stack.isEmpty()) continue;
|
||||
for (RegistryEntry<Item> item : ingredient.getMatchingItems().toList()) {
|
||||
for (Map.Entry<ItemStack, Integer> entry : itemStackMap.entrySet()) {
|
||||
ItemStack inventoryStack = entry.getKey();
|
||||
int inventoryCount = entry.getValue();
|
||||
|
||||
if (ItemStack.areItemsEqual(stack, inventoryStack)) {
|
||||
if (item.value() == inventoryStack.getItem()) {
|
||||
totalAvailable += inventoryCount;
|
||||
inputsTemp.put(stack, inventoryCount);
|
||||
inputsTemp.put(item.value().getDefaultStack(), inventoryCount);
|
||||
usesAnyIngredient = true;
|
||||
}
|
||||
}
|
||||
@@ -149,10 +185,13 @@ public class Util {
|
||||
canMake = false;
|
||||
break;
|
||||
}
|
||||
|
||||
int requiredCount = ingredient.getMatchingStacks()[0].getCount();
|
||||
int occurrences = ingredientCounts.get(ingredient.getMatchingStacks()[0].getItem());
|
||||
maxAmount = Math.min(maxAmount, totalAvailable / (requiredCount * occurrences));
|
||||
// int occurrences = ingredientCounts.getOrDefault(ingredient.getMatchingItems().getFirst(),0);
|
||||
// if (occurrences == 0) {
|
||||
// canMake = false;
|
||||
// break;
|
||||
// }
|
||||
// maxAmount = Math.min(maxAmount, totalAvailable / occurrences);
|
||||
maxAmount = Math.min(maxAmount, totalAvailable);
|
||||
|
||||
for (Map.Entry<ItemStack, Integer> entry : inputsTemp.entrySet()) {
|
||||
ItemStack stackIn = entry.getKey();
|
||||
@@ -162,11 +201,44 @@ public class Util {
|
||||
}
|
||||
|
||||
if (canMake && maxAmount > 0 && usesAnyIngredient) {
|
||||
ItemStack outputItem = recipe.value().getResult(server.getRegistryManager()).copy();
|
||||
List<ItemStack> stacks = finalInputs.keySet().stream().toList();
|
||||
CraftingRecipeInput input = CraftingRecipeInput.create(stacks.size(), 1, stacks);
|
||||
ItemStack outputItem = recipe.value().craft(input, server.getRegistryManager()).copy();
|
||||
CraftingEntry finalEntry = new CraftingEntry(outputItem, recipe, finalInputs, maxAmount);
|
||||
craftingEntries.add(finalEntry);
|
||||
}
|
||||
}
|
||||
return craftingEntries;
|
||||
}
|
||||
|
||||
public static void putUUID(NbtCompound nbtCompound, String name, UUID uuid) {
|
||||
Objects.requireNonNull(uuid, "UUID cannot be null");
|
||||
ByteBuffer buffer = ByteBuffer.allocate(16);
|
||||
buffer.putLong(uuid.getMostSignificantBits());
|
||||
buffer.putLong(uuid.getLeastSignificantBits());
|
||||
nbtCompound.putByteArray(name, buffer.array());
|
||||
}
|
||||
|
||||
public static Optional<UUID> getUUID(NbtCompound nbtCompound, String name) {
|
||||
Optional<byte[]> bytesOpt = nbtCompound.getByteArray(name);
|
||||
if (bytesOpt.isPresent()) {
|
||||
byte[] bytes = bytesOpt.get();
|
||||
if (bytes.length == 16) {
|
||||
ByteBuffer buffer = ByteBuffer.wrap(bytes);
|
||||
long mostSigBits = buffer.getLong();
|
||||
long leastSigBits = buffer.getLong();
|
||||
return Optional.of(new UUID(mostSigBits, leastSigBits));
|
||||
}
|
||||
} else {
|
||||
Optional<int[]> intsOpt = nbtCompound.getIntArray(name);
|
||||
if (intsOpt.isPresent() && intsOpt.get().length == 4) {
|
||||
int[] ints = intsOpt.get();
|
||||
long mostSigBits = ((long) ints[0] << 32) | (ints[1] & 0xFFFFFFFFL);
|
||||
long leastSigBits = ((long) ints[2] << 32) | (ints[3] & 0xFFFFFFFFL);
|
||||
return Optional.of(new UUID(mostSigBits, leastSigBits));
|
||||
}
|
||||
}
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,76 @@
|
||||
package systems.brn.serverstorage.lib;
|
||||
|
||||
import com.mojang.serialization.Codec;
|
||||
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
||||
import eu.pb4.polymer.core.api.other.PolymerComponent;
|
||||
import net.minecraft.component.ComponentType;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.Registry;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import java.util.function.UnaryOperator;
|
||||
|
||||
import static systems.brn.serverstorage.lib.DriveComponents.UUID_CODEC;
|
||||
|
||||
|
||||
public class WirelessTerminalComponents {
|
||||
|
||||
public static final Codec<SessionStorageClass> SESSION_CODEC = RecordCodecBuilder.create(instance -> instance.group(
|
||||
UUID_CODEC.fieldOf("playerUUID").forGetter(SessionStorageClass::getPlayerUUID),
|
||||
ServerWorld.CODEC.fieldOf("worldKey").forGetter(SessionStorageClass::getWorldKey),
|
||||
BlockPos.CODEC.fieldOf("terminalPos").forGetter(SessionStorageClass::getTerminalPos)
|
||||
).apply(instance, SessionStorageClass::new));
|
||||
|
||||
public static final Codec<List<SessionStorageClass>> SESSIONS_CODEC = Codec.list(SESSION_CODEC);
|
||||
|
||||
|
||||
public static final ComponentType<UUID> SESSION_KEY = register(
|
||||
"session_key",
|
||||
builder -> builder.codec(UUID_CODEC) // No packetCodec needed for this example
|
||||
);
|
||||
|
||||
public static final ComponentType<List<SessionStorageClass>> SESSIONS = register(
|
||||
"sessions",
|
||||
builder -> builder.codec(SESSIONS_CODEC) // No packetCodec needed for this example
|
||||
);
|
||||
|
||||
public static final ComponentType<Integer> SELECTED_POSITION = register(
|
||||
"selected_position",
|
||||
builder -> builder.codec(Codec.INT) // No packetCodec needed for this example
|
||||
);
|
||||
|
||||
public static final ComponentType<Integer> PAGE = register(
|
||||
"page",
|
||||
builder -> builder.codec(Codec.INT) // No packetCodec needed for this example
|
||||
);
|
||||
|
||||
|
||||
public static final ComponentType<SortMode> SORT_MODE = register(
|
||||
"sort_mode",
|
||||
builder -> builder.codec(Codec.INT.xmap(SortMode::fromId, SortMode::getId)) // No packetCodec needed for this example
|
||||
);
|
||||
|
||||
public static final ComponentType<Boolean> GROUP_SIMILAR = register(
|
||||
"group_similar",
|
||||
builder -> builder.codec(Codec.BOOL) // No packetCodec needed for this example
|
||||
);
|
||||
|
||||
public static final ComponentType<String> QUERY_STRING = register(
|
||||
"query_string",
|
||||
builder -> builder.codec(Codec.STRING) // No packetCodec needed for this example
|
||||
);
|
||||
|
||||
|
||||
private static <T> ComponentType<T> register(String id, UnaryOperator<ComponentType.Builder<T>> builderOperator) {
|
||||
ComponentType<T> componentType = Registry.register(
|
||||
Registries.DATA_COMPONENT_TYPE,
|
||||
id,
|
||||
builderOperator.apply(ComponentType.builder()).build()
|
||||
);
|
||||
PolymerComponent.registerDataComponent(componentType);
|
||||
return componentType;
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.screenhandlers;
|
||||
package systems.brn.serverstorage.screenhandlers;
|
||||
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
@@ -7,8 +7,8 @@ import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.screen.ScreenHandler;
|
||||
import net.minecraft.screen.ScreenHandlerType;
|
||||
import net.minecraft.screen.slot.Slot;
|
||||
import systems.brn.server_storage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.server_storage.lib.StorageNetwork;
|
||||
import systems.brn.serverstorage.blockentities.HardDriveContainerBlockEntity;
|
||||
import systems.brn.serverstorage.lib.HardDriveSlot;
|
||||
|
||||
public class DriveContainerScreenHandler extends ScreenHandler {
|
||||
private final Inventory inventory;
|
||||
@@ -25,7 +25,7 @@ public class DriveContainerScreenHandler extends ScreenHandler {
|
||||
|
||||
int j;
|
||||
for (j = 0; j < 5; ++j) {
|
||||
this.addSlot(new Slot(inventory, j, 44 + j * 18, 20));
|
||||
this.addSlot(new HardDriveSlot(inventory, j, 44 + j * 18, 20));
|
||||
}
|
||||
|
||||
for (j = 0; j < 3; ++j) {
|
@@ -0,0 +1,85 @@
|
||||
package systems.brn.serverstorage.screenhandlers;
|
||||
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.screen.ScreenHandler;
|
||||
import net.minecraft.screen.ScreenHandlerType;
|
||||
import net.minecraft.screen.slot.Slot;
|
||||
import systems.brn.serverstorage.blockentities.RadioInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.AntennaSlot;
|
||||
|
||||
public class RadioInterfaceScreenHandler extends ScreenHandler {
|
||||
private final Inventory inventory;
|
||||
private final RadioInterfaceBlockEntity blockEntity;
|
||||
|
||||
public RadioInterfaceScreenHandler(int syncId, PlayerInventory playerInventory, RadioInterfaceBlockEntity blockEntity) {
|
||||
super(ScreenHandlerType.BEACON, syncId);
|
||||
this.blockEntity = blockEntity;
|
||||
checkSize(blockEntity, RadioInterfaceBlockEntity.INVENTORY_SIZE);
|
||||
this.inventory = blockEntity;
|
||||
inventory.onOpen(playerInventory.player);
|
||||
|
||||
int j;
|
||||
this.addSlot(new AntennaSlot(inventory, 0, 44, 20));
|
||||
|
||||
for (j = 0; j < 3; ++j) {
|
||||
for (int k = 0; k < 9; ++k) {
|
||||
this.addSlot(new Slot(playerInventory, k + j * 9 + 9, 8 + k * 18, j * 18 + 51));
|
||||
}
|
||||
}
|
||||
|
||||
for (j = 0; j < 9; ++j) {
|
||||
this.addSlot(new Slot(playerInventory, j, 8 + j * 18, 109));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canUse(PlayerEntity player) {
|
||||
return this.inventory.canPlayerUse(player);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public ItemStack quickMove(PlayerEntity player, int slot) {
|
||||
return quickMoveHelper(player, slot);
|
||||
}
|
||||
|
||||
public ItemStack quickMoveHelper(PlayerEntity player, int slot) {
|
||||
ItemStack itemStack = ItemStack.EMPTY;
|
||||
Slot slot2 = this.slots.get(slot);
|
||||
if (slot2.hasStack()) {
|
||||
ItemStack itemStack2 = slot2.getStack();
|
||||
itemStack = itemStack2.copy();
|
||||
if (slot < this.inventory.size()) {
|
||||
if (!this.insertItem(itemStack2, this.inventory.size(), this.slots.size(), true)) {
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
} else if (!this.insertItem(itemStack2, 0, this.inventory.size(), false)) {
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
|
||||
if (itemStack2.isEmpty()) {
|
||||
slot2.setStack(ItemStack.EMPTY);
|
||||
} else {
|
||||
slot2.markDirty();
|
||||
}
|
||||
|
||||
if (itemStack2.getCount() == itemStack.getCount()) {
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
|
||||
slot2.onTakeItem(player, itemStack2);
|
||||
}
|
||||
|
||||
return itemStack;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClosed(PlayerEntity player) {
|
||||
super.onClosed(player);
|
||||
this.inventory.onClose(player);
|
||||
this.blockEntity.updateAntenna();
|
||||
}
|
||||
}
|
@@ -0,0 +1,340 @@
|
||||
package systems.brn.serverstorage.screens;
|
||||
|
||||
import eu.pb4.sgui.api.ClickType;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.recipe.CraftingRecipe;
|
||||
import net.minecraft.recipe.Ingredient;
|
||||
import net.minecraft.recipe.RecipeEntry;
|
||||
import net.minecraft.recipe.input.CraftingRecipeInput;
|
||||
import net.minecraft.registry.entry.RegistryEntry;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import systems.brn.serverstorage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.*;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import static systems.brn.serverstorage.lib.StorageOperations.*;
|
||||
import static systems.brn.serverstorage.lib.Util.getCraftableRecipes;
|
||||
|
||||
public class CraftingScreen extends PagedGui implements Searchable {
|
||||
private final StorageScreen storageScreen;
|
||||
private ArrayList<CraftingEntry> craftingEntries;
|
||||
private final StorageInterfaceBlockEntity blockEntity;
|
||||
private ArrayList<DisplayElement> recipesList;
|
||||
public String searchQuery;
|
||||
|
||||
public CraftingScreen(StorageScreen storageScreen) {
|
||||
super(storageScreen.getPlayer(), null);
|
||||
this.storageScreen = storageScreen;
|
||||
this.blockEntity = storageScreen.blockEntity;
|
||||
this.setTitle(Text.translatable("container.crafting"));
|
||||
this.updateDisplay();
|
||||
}
|
||||
|
||||
public void reindexDrives() {
|
||||
if (blockEntity == null) {
|
||||
storageScreen.getNetwork().reindexNetwork();
|
||||
} else {
|
||||
blockEntity.reindexDrives();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDisplay() {
|
||||
|
||||
Map<ItemStack, Integer> itemStackMap = new HashMap<>();
|
||||
addInventoryToMap(storageScreen.getPlayer().getInventory(), itemStackMap);
|
||||
itemStackMap.putAll(storageScreen.getNetwork().itemStackMap);
|
||||
Map<ItemStack, Integer> items = sortAndFilterMap(itemStackMap, SortMode.NUMERICALLY_REVERSE, null, getGroupSimilar());
|
||||
this.craftingEntries = getCraftableRecipes(items, Objects.requireNonNull(player.getServer()));
|
||||
this.recipesList = getAvailableRecipes();
|
||||
super.updateDisplay();
|
||||
}
|
||||
|
||||
private ArrayList<DisplayElement> getAvailableRecipes() {
|
||||
ArrayList<DisplayElement> recipes = new ArrayList<>();
|
||||
TreeSet<CraftingEntry> filteredCraftingEntries = sortAndFilterEntries(craftingEntries, getSorting(), getQueryString());
|
||||
for (CraftingEntry craftingEntry : filteredCraftingEntries) {
|
||||
ItemStack stackWithCount = craftingEntry.outputStacks.getFirst().copy();
|
||||
if (stackWithCount.getCount() > stackWithCount.getMaxCount()) {
|
||||
stackWithCount.setCount(stackWithCount.getMaxCount());
|
||||
}
|
||||
if (stackWithCount.getItem() != null && filterItem(stackWithCount.getItem(), getQueryString())) {
|
||||
recipes.add(
|
||||
DisplayElement.of(new GuiElementBuilder(stackWithCount)
|
||||
.setCallback((i, clickType, slotActionType) -> {
|
||||
if (storageScreen.checkDistance()) {
|
||||
playClickSound(player);
|
||||
RecipeEntry<CraftingRecipe> recipeEntry = craftingEntry.recipeEntry;
|
||||
|
||||
// Crafting logic based on click type
|
||||
if (clickType.isLeft) { // put into player inventory
|
||||
if (clickType.shift) { // craft all
|
||||
craftAll(player, recipeEntry, true);
|
||||
} else { // craft one
|
||||
craftOne(player, recipeEntry, true);
|
||||
}
|
||||
} else if (clickType.isRight) { // put back into storage
|
||||
if (clickType.shift) { // craft all
|
||||
craftAll(player, recipeEntry, false);
|
||||
} else { // craft one
|
||||
craftOne(player, recipeEntry, false);
|
||||
}
|
||||
}
|
||||
updateDisplay();
|
||||
}
|
||||
})
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
return recipes;
|
||||
}
|
||||
|
||||
private void craftAll(PlayerEntity player, RecipeEntry<CraftingRecipe> recipeEntry, boolean toPlayerInventory) {
|
||||
while (canCraft(recipeEntry)) {
|
||||
if (craftOne(player, recipeEntry, toPlayerInventory)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private boolean canCraft(RecipeEntry<CraftingRecipe> recipeEntry) {
|
||||
reindexDrives();
|
||||
for (Ingredient ingredient : recipeEntry.value().getIngredientPlacement().getIngredients()) {
|
||||
if (findMatchingStack(ingredient) == null) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean craftOne(PlayerEntity player, RecipeEntry<CraftingRecipe> recipeEntry, boolean toPlayerInventory) {
|
||||
this.storageScreen.refreshTerminals();
|
||||
ArrayList<ItemStack> stacksToRemove = new ArrayList<>();
|
||||
|
||||
// Check and remove ingredients for one crafting operation
|
||||
for (Ingredient ingredient : recipeEntry.value().getIngredientPlacement().getIngredients()) {
|
||||
ItemStack stackToRemove = findMatchingStack(ingredient);
|
||||
if (stackToRemove == null) {
|
||||
return false; // Unable to find required ingredient
|
||||
}
|
||||
stacksToRemove.add(stackToRemove);
|
||||
}
|
||||
|
||||
// Remove ingredients from inventory and network
|
||||
for (ItemStack stack : stacksToRemove) {
|
||||
removeItems(stack);
|
||||
}
|
||||
|
||||
// Add crafted item to the appropriate inventory
|
||||
ItemStack outputStack = recipeEntry.value().craft(CraftingRecipeInput.create(stacksToRemove.size(), 1, stacksToRemove), storageScreen.getPlayer().getRegistryManager()).copy();
|
||||
|
||||
if (toPlayerInventory) {
|
||||
PlayerInventory playerInventory = player.getInventory();
|
||||
ItemStack insertStack = outputStack.copy();
|
||||
if (canInsertItemIntoInventory(playerInventory, insertStack) == insertStack.getCount()) {
|
||||
playerInventory.insertStack(insertStack);
|
||||
} else {
|
||||
return true; // Inventory full or unable to insert all items
|
||||
}
|
||||
} else {
|
||||
ItemStack insertStack = outputStack.copy();
|
||||
if (this.storageScreen.getNetwork().canAddItemStack(insertStack)) {
|
||||
this.storageScreen.getNetwork().putItemStackRemainder(insertStack);
|
||||
} else {
|
||||
return true; // Storage full or unable to insert all items
|
||||
}
|
||||
}
|
||||
|
||||
return false; // Crafted one item successfully
|
||||
}
|
||||
|
||||
private ItemStack findMatchingStack(Ingredient ingredient) {
|
||||
// Check player's inventory first
|
||||
PlayerInventory playerInventory = storageScreen.getPlayer().getInventory();
|
||||
for (int i = 0; i < playerInventory.size(); i++) {
|
||||
ItemStack playerStack = playerInventory.getStack(i);
|
||||
if (ingredient.test(playerStack)) {
|
||||
ItemStack stackToRemove = playerStack.copy();
|
||||
for (RegistryEntry<Item> matchingItemx : ingredient.getMatchingItems().toList()) {
|
||||
Item matchingItem = matchingItemx.value();
|
||||
if (matchingItem == stackToRemove.getItem()) {
|
||||
stackToRemove.setCount(1); // Set count to ingredient requirement
|
||||
break;
|
||||
}
|
||||
}
|
||||
return stackToRemove;
|
||||
}
|
||||
}
|
||||
|
||||
// Check storage network
|
||||
for (RegistryEntry<Item> itemx : ingredient.getMatchingItems().toList()) {
|
||||
Item item = itemx.value();
|
||||
if (this.storageScreen.getNetwork().canRemove(item.getDefaultStack())) {
|
||||
ItemStack stackToRemove = item.getDefaultStack();
|
||||
stackToRemove.setCount(1); // Set count to ingredient requirement
|
||||
return stackToRemove;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private void removeItems(ItemStack stack) {
|
||||
ItemStack removedFromStorage = this.storageScreen.getNetwork().removeItemStack(stack);
|
||||
if (removedFromStorage.getCount() > 0) {
|
||||
Inventory playerInventory = player.getInventory();
|
||||
for (int i = 0; i < playerInventory.size(); i++) {
|
||||
if (ItemStack.areItemsEqual(playerInventory.getStack(i), removedFromStorage)) {
|
||||
playerInventory.removeStack(i, removedFromStorage.getCount());
|
||||
break; // Only remove one stack per crafting iteration
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public String getQueryString() {
|
||||
if (blockEntity == null) {
|
||||
return storageScreen.itemStack.getOrDefault(WirelessTerminalComponents.QUERY_STRING, "");
|
||||
} else {
|
||||
return blockEntity.searchString == null ? "*" : blockEntity.searchString;
|
||||
}
|
||||
}
|
||||
|
||||
public void setQueryString(String queryString) {
|
||||
if (blockEntity == null) {
|
||||
storageScreen.itemStack.set(WirelessTerminalComponents.QUERY_STRING, queryString);
|
||||
} else {
|
||||
blockEntity.searchString = queryString;
|
||||
}
|
||||
}
|
||||
|
||||
public SortMode getSorting() {
|
||||
if (blockEntity == null) {
|
||||
return storageScreen.itemStack.getOrDefault(WirelessTerminalComponents.SORT_MODE, SortMode.NUMERICALLY_REVERSE);
|
||||
} else {
|
||||
return blockEntity.sortAlphabetically;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSorting(SortMode sorting) {
|
||||
if (blockEntity == null) {
|
||||
storageScreen.itemStack.set(WirelessTerminalComponents.SORT_MODE, sorting);
|
||||
} else {
|
||||
blockEntity.sortAlphabetically = sorting;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public boolean getGroupSimilar() {
|
||||
if (blockEntity == null) {
|
||||
return storageScreen.itemStack.getOrDefault(WirelessTerminalComponents.GROUP_SIMILAR, false);
|
||||
} else {
|
||||
return blockEntity.groupSimilar;
|
||||
}
|
||||
}
|
||||
|
||||
public void setGroupSimilar(boolean groupSimilar) {
|
||||
if (blockEntity == null) {
|
||||
storageScreen.itemStack.set(WirelessTerminalComponents.GROUP_SIMILAR, groupSimilar);
|
||||
} else {
|
||||
blockEntity.groupSimilar = groupSimilar;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement sorting() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(getSorting().getSortingText().formatted(Formatting.WHITE))
|
||||
.setLore(List.of(Text.translatable(getGroupSimilar() ? "gui.serverstorage.group_similar" : "gui.serverstorage.dont_group_similar").formatted(Formatting.DARK_PURPLE)))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(getSorting().getSortingIcon(getGroupSimilar()))
|
||||
.setCallback((x, clickType, z) -> {
|
||||
playClickSound(getPlayer());
|
||||
if (storageScreen.checkDistance()) {
|
||||
if (clickType == ClickType.MOUSE_LEFT) {
|
||||
setSorting(getSorting().nextSort());
|
||||
} else if (clickType == ClickType.MOUSE_RIGHT) {
|
||||
setGroupSimilar(!getGroupSimilar());
|
||||
}
|
||||
updateDisplay();
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean open() {
|
||||
if (this.blockEntity != null) {
|
||||
this.blockEntity.openCraftingScreens.add(this);
|
||||
blockEntity.updateDisplays();
|
||||
} else {
|
||||
updateDisplay();
|
||||
}
|
||||
return super.open();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose() {
|
||||
super.onClose();
|
||||
if (this.blockEntity != null) {
|
||||
this.blockEntity.openCraftingScreens.remove(this);
|
||||
this.blockEntity.refreshTerminals();
|
||||
}
|
||||
storageScreen.open();
|
||||
storageScreen.updateDisplay();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return Math.ceilDivExact(recipesList.size(), PAGE_SIZE);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
if (id >= 0 && id < recipesList.size()) {
|
||||
return recipesList.get(id);
|
||||
} else {
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void doSearch(String searchText) {
|
||||
setQueryString(searchText);
|
||||
this.updateDisplay();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement search() {
|
||||
String searchString = getQueryString();
|
||||
if (searchString == null || searchString.isEmpty() || searchString.equals("*")) {
|
||||
searchString = "Filter not set";
|
||||
}
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.literal(searchString).formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_QUESTION_MARK)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(getPlayer());
|
||||
if (storageScreen.checkDistance()) {
|
||||
if (y.isRight) {
|
||||
doSearch("");
|
||||
} else if (y.isLeft) {
|
||||
SearchScreen searchScreen = new SearchScreen(this, "");
|
||||
searchScreen.open();
|
||||
}
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
@@ -0,0 +1,54 @@
|
||||
package systems.brn.serverstorage.screens;
|
||||
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.text.Text;
|
||||
import systems.brn.serverstorage.blockentities.DisplayBlockEntity;
|
||||
import systems.brn.serverstorage.lib.PagedGui;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public class DisplayBlockMangementScreen extends PagedGui {
|
||||
public final DisplayBlockEntity displayBlockEntity;
|
||||
|
||||
public DisplayBlockMangementScreen(ServerPlayerEntity player, DisplayBlockEntity displayBlockEntity) {
|
||||
super(player, null);
|
||||
this.displayBlockEntity = displayBlockEntity;
|
||||
this.setTitle(Text.translatable("gui.serverstorage.display_block_title"));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
var builder = new GuiElementBuilder(displayBlockEntity.targetItem.getCount() > 0 ? displayBlockEntity.targetItem.getItem() : Items.AIR)
|
||||
.setName(displayBlockEntity.targetItem.getItemName())
|
||||
.setCallback((clickIndex, clickType, slotActionType) -> {
|
||||
displayBlockEntity.targetItem = getPlayer().currentScreenHandler.getCursorStack().copy();
|
||||
|
||||
displayBlockEntity.reindexDrives();
|
||||
|
||||
displayBlockEntity.itemCount = 0;
|
||||
for(Map.Entry<ItemStack, Integer> entry : displayBlockEntity.network.itemStackMap.entrySet()) {
|
||||
ItemStack key = entry.getKey();
|
||||
Integer value = entry.getValue();
|
||||
if (ItemStack.areItemsAndComponentsEqual(key, displayBlockEntity.targetItem)) {
|
||||
displayBlockEntity.itemCount = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
displayBlockEntity.itemElement.setItem(displayBlockEntity.targetItem.copy());
|
||||
displayBlockEntity.textDisplayElement.setText(Text.of(String.valueOf(displayBlockEntity.itemCount)));
|
||||
displayBlockEntity.markDirty();
|
||||
playClickSound(getPlayer());
|
||||
updateDisplay();
|
||||
});
|
||||
|
||||
return DisplayElement.of(builder);
|
||||
}
|
||||
}
|
@@ -0,0 +1,67 @@
|
||||
package systems.brn.serverstorage.screens;
|
||||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import systems.brn.serverstorage.blockentities.RadioInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.PagedGui;
|
||||
import systems.brn.serverstorage.lib.Session;
|
||||
|
||||
import static systems.brn.serverstorage.lib.Util.getGameProfile;
|
||||
|
||||
public class RadioBlockPlayerMangementScreen extends PagedGui {
|
||||
public final RadioInterfaceBlockEntity radioInterfaceBlockEntity;
|
||||
|
||||
public RadioBlockPlayerMangementScreen(ServerPlayerEntity player, RadioInterfaceBlockEntity radioInterfaceBlockEntity) {
|
||||
super(player, null);
|
||||
this.radioInterfaceBlockEntity = radioInterfaceBlockEntity;
|
||||
this.setTitle(Text.translatable("gui.serverstorage.player_management"));
|
||||
}
|
||||
|
||||
protected DisplayElement getSessionElement(Session session, int index) {
|
||||
|
||||
GameProfile gameProfile = null;
|
||||
if (player != null && player.getServer() != null) {
|
||||
gameProfile = getGameProfile(session.playerUUID(), player.getServer());
|
||||
}
|
||||
|
||||
var builder = new GuiElementBuilder(gameProfile != null ? Items.PLAYER_HEAD : Items.SKELETON_SKULL)
|
||||
.setName(Text.translatable("gui.serverstorage.player_management_session", index))
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.player_management_session_owner",
|
||||
gameProfile != null ? gameProfile.getName() : "<" + session.playerUUID().toString() + ">")
|
||||
.formatted(Formatting.WHITE)
|
||||
)
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.player_management_session_key", session.sessionKey().toString()))
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.player_management_session_click_deauthorize"))
|
||||
.setCallback((clickIndex, clickType, slotActionType) -> {
|
||||
playClickSound(getPlayer());
|
||||
radioInterfaceBlockEntity.deAuthorizeSession(session.sessionKey(), session.playerUUID());
|
||||
updateDisplay();
|
||||
});
|
||||
|
||||
if (gameProfile != null) {
|
||||
builder.setSkullOwner(gameProfile, null);
|
||||
} else {
|
||||
builder.setSkullOwner(PagedGui.GUI_QUESTION_MARK);
|
||||
}
|
||||
|
||||
return DisplayElement.of(builder);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return radioInterfaceBlockEntity.sessions.size() / PAGE_SIZE;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
if (id < radioInterfaceBlockEntity.sessions.size()) {
|
||||
Session session = radioInterfaceBlockEntity.sessions.get(id);
|
||||
return getSessionElement(session, id);
|
||||
}
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
}
|
@@ -1,8 +1,9 @@
|
||||
package systems.brn.server_storage.screens;
|
||||
package systems.brn.serverstorage.screens;
|
||||
|
||||
import eu.pb4.sgui.api.gui.AnvilInputGui;
|
||||
import eu.pb4.sgui.api.gui.SimpleGui;
|
||||
import systems.brn.server_storage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.Searchable;
|
||||
|
||||
public class SearchScreen extends AnvilInputGui {
|
||||
|
||||
@@ -20,10 +21,11 @@ public class SearchScreen extends AnvilInputGui {
|
||||
super.onClose();
|
||||
parentScreen.open();
|
||||
String query = this.getInput();
|
||||
if (parentScreen instanceof StorageScreen storageScreen) {
|
||||
storageScreen.doSearch(query);
|
||||
} else if (parentScreen instanceof SettingsScreen settingsScreen && settingsScreen.blockEntity instanceof InventoryInterfaceBlockEntity inventoryInterfaceBlockEntity) {
|
||||
inventoryInterfaceBlockEntity.doSearch(query);
|
||||
if (parentScreen instanceof Searchable searchable) {
|
||||
searchable.doSearch(query);
|
||||
if (parentScreen instanceof SettingsScreen settingsScreen && settingsScreen.blockEntity instanceof InventoryInterfaceBlockEntity inventoryInterfaceBlockEntity) {
|
||||
inventoryInterfaceBlockEntity.doSearch(query);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
package systems.brn.server_storage.screens;
|
||||
package systems.brn.serverstorage.screens;
|
||||
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import eu.pb4.sgui.api.gui.SimpleGui;
|
||||
@@ -8,12 +8,13 @@ import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.server_storage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.server_storage.lib.PagedGui;
|
||||
import systems.brn.serverstorage.blockentities.InventoryInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.PagedGui;
|
||||
import systems.brn.serverstorage.lib.Searchable;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class SettingsScreen extends PagedGui {
|
||||
public class SettingsScreen extends PagedGui implements Searchable {
|
||||
|
||||
private final SimpleGui parentScreen;
|
||||
|
||||
@@ -33,12 +34,12 @@ public class SettingsScreen extends PagedGui {
|
||||
this.updateDisplay();
|
||||
}
|
||||
|
||||
public SettingsScreen(StorageScreen parentScreen) {
|
||||
this(parentScreen, parentScreen.getPlayer(), parentScreen.blockEntity);
|
||||
public void doSearch(String query) {
|
||||
|
||||
}
|
||||
|
||||
public SettingsScreen(SimpleGui parentScreen, BlockEntity blockEntity) {
|
||||
this(parentScreen, parentScreen.getPlayer(), blockEntity);
|
||||
public SettingsScreen(StorageScreen parentScreen) {
|
||||
this(parentScreen, parentScreen.getPlayer(), parentScreen.blockEntity);
|
||||
}
|
||||
|
||||
public SettingsScreen(ServerPlayerEntity player, BlockEntity blockEntity) {
|
||||
@@ -62,7 +63,7 @@ public class SettingsScreen extends PagedGui {
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return Math.ceilDivExact(settingsList.size(), 9 * 6);
|
||||
return Math.ceilDivExact(settingsList.size(), PAGE_SIZE);
|
||||
}
|
||||
|
||||
@Override
|
@@ -0,0 +1,460 @@
|
||||
package systems.brn.serverstorage.screens;
|
||||
|
||||
import eu.pb4.sgui.api.ClickType;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import eu.pb4.sgui.api.elements.GuiElementInterface;
|
||||
import net.minecraft.entity.player.PlayerInventory;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.screen.slot.SlotActionType;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
import net.minecraft.sound.SoundCategory;
|
||||
import net.minecraft.sound.SoundEvents;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.serverstorage.blockentities.RadioInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.blockentities.StorageInterfaceBlockEntity;
|
||||
import systems.brn.serverstorage.lib.*;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.ServerStorage_Crafting_Enable;
|
||||
import static systems.brn.serverstorage.items.WirelessTerminalItem.getDistance;
|
||||
import static systems.brn.serverstorage.lib.StorageOperations.*;
|
||||
import static systems.brn.serverstorage.lib.Util.addCountToLore;
|
||||
import static systems.brn.serverstorage.lib.Util.removeCountFromLore;
|
||||
|
||||
public class StorageScreen extends PagedGui implements Searchable {
|
||||
private final ServerPlayerEntity player;
|
||||
public final StorageInterfaceBlockEntity blockEntity;
|
||||
public final StorageNetwork network;
|
||||
public final ItemStack itemStack;
|
||||
public final ServerWorld world;
|
||||
public final RadioInterfaceBlockEntity radioInterfaceBlockEntity;
|
||||
|
||||
public boolean checkDistance() {
|
||||
if (radioInterfaceBlockEntity != null) {
|
||||
RadioDistance radioDistance = getDistance(player, radioInterfaceBlockEntity);
|
||||
if (radioDistance.actualDistance() > radioDistance.finalDistance()) {
|
||||
close();
|
||||
ServerWorld playerWorld = radioDistance.playerWorld();
|
||||
ServerWorld terminalWorld = radioDistance.terminalWorld();
|
||||
String playerWorldName = playerWorld.getRegistryKey().getValue().toString();
|
||||
String terminalWorldName = terminalWorld.getRegistryKey().getValue().toString();
|
||||
player.sendMessage(Text.translatable("gui.serverstorage.radio_out_of_range", radioDistance.terminalPos().toShortString(), terminalWorldName, player.getBlockPos().toShortString(), playerWorldName, radioDistance.actualDistance(), radioDistance.finalDistance()), true);
|
||||
player.playSoundToPlayer(SoundEvents.BLOCK_NOTE_BLOCK_COW_BELL.value(), SoundCategory.PLAYERS, 1f, 1f);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public StorageScreen(ServerPlayerEntity player, BlockPos pos, @Nullable Runnable closeCallback) {
|
||||
super(player, closeCallback);
|
||||
this.player = player;
|
||||
this.setLockPlayerInventory(false);
|
||||
this.blockEntity = (StorageInterfaceBlockEntity) player.getWorld().getBlockEntity(pos);
|
||||
assert blockEntity != null;
|
||||
this.network = null;
|
||||
this.itemStack = ItemStack.EMPTY;
|
||||
this.world = player.getWorld();
|
||||
this.radioInterfaceBlockEntity = null;
|
||||
}
|
||||
|
||||
public StorageScreen(ServerPlayerEntity player, ItemStack itemStack, StorageNetwork storageNetwork, RadioInterfaceBlockEntity radioInterfaceBlockEntity) {
|
||||
super(player, null);
|
||||
this.player = player;
|
||||
this.blockEntity = null;
|
||||
this.setLockPlayerInventory(false);
|
||||
this.network = storageNetwork;
|
||||
this.itemStack = itemStack;
|
||||
this.world = player.getWorld();
|
||||
this.radioInterfaceBlockEntity = radioInterfaceBlockEntity;
|
||||
}
|
||||
|
||||
public StorageNetwork getNetwork() {
|
||||
if (blockEntity != null) {
|
||||
blockEntity.enforceNetwork();
|
||||
return blockEntity.network;
|
||||
}
|
||||
return network;
|
||||
}
|
||||
|
||||
public SortMode getSorting() {
|
||||
if (blockEntity == null) {
|
||||
return itemStack.getOrDefault(WirelessTerminalComponents.SORT_MODE, SortMode.NUMERICALLY_REVERSE);
|
||||
} else {
|
||||
return blockEntity.sortAlphabetically;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean getGroupSimilar() {
|
||||
if (blockEntity == null) {
|
||||
return itemStack.getOrDefault(WirelessTerminalComponents.GROUP_SIMILAR, false);
|
||||
} else {
|
||||
return blockEntity.groupSimilar;
|
||||
}
|
||||
}
|
||||
|
||||
public void setGroupSimilar(boolean groupSimilar) {
|
||||
if (blockEntity == null) {
|
||||
itemStack.set(WirelessTerminalComponents.GROUP_SIMILAR, groupSimilar);
|
||||
} else {
|
||||
blockEntity.groupSimilar = groupSimilar;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSorting(SortMode sorting) {
|
||||
if (blockEntity == null) {
|
||||
itemStack.set(WirelessTerminalComponents.SORT_MODE, sorting);
|
||||
} else {
|
||||
blockEntity.sortAlphabetically = sorting;
|
||||
}
|
||||
}
|
||||
|
||||
public String getQueryString() {
|
||||
if (blockEntity == null) {
|
||||
return itemStack.getOrDefault(WirelessTerminalComponents.QUERY_STRING, "");
|
||||
} else {
|
||||
return blockEntity.searchString;
|
||||
}
|
||||
}
|
||||
|
||||
public void setQueryString(String queryString) {
|
||||
if (blockEntity == null) {
|
||||
itemStack.set(WirelessTerminalComponents.QUERY_STRING, queryString);
|
||||
} else {
|
||||
blockEntity.searchString = queryString;
|
||||
}
|
||||
}
|
||||
|
||||
public int getPage() {
|
||||
if (blockEntity == null) {
|
||||
return itemStack.getOrDefault(WirelessTerminalComponents.PAGE, 0);
|
||||
} else {
|
||||
return blockEntity.page;
|
||||
}
|
||||
}
|
||||
|
||||
public void setPage(int page) {
|
||||
if (page > getPageAmount()) {
|
||||
page = getPageAmount() - 1;
|
||||
}
|
||||
if (blockEntity == null) {
|
||||
itemStack.set(WirelessTerminalComponents.PAGE, page);
|
||||
} else {
|
||||
blockEntity.page = page;
|
||||
}
|
||||
}
|
||||
|
||||
public void refreshTerminals() {
|
||||
if (blockEntity == null) {
|
||||
this.network.sortMode = getSorting();
|
||||
this.network.groupSimilar = getGroupSimilar();
|
||||
this.network.searchString = getQueryString();
|
||||
getNetwork().reindexNetwork();
|
||||
getNetwork().updateDisplays();
|
||||
updateDisplay();
|
||||
} else {
|
||||
blockEntity.refreshTerminals();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean open() {
|
||||
page = getPage();
|
||||
if (blockEntity == null) {
|
||||
updateDisplay();
|
||||
if (!checkDistance()) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
blockEntity.reindexDrives();
|
||||
blockEntity.openStorageScreens.add(this);
|
||||
blockEntity.updateDisplays();
|
||||
}
|
||||
return super.open();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateDisplay() {
|
||||
String title = getNetwork().driveUsedSlots +
|
||||
"u/" +
|
||||
getNetwork().driveTotalSlots +
|
||||
"t(" +
|
||||
getNetwork().driveFreeSlots +
|
||||
"f)" +
|
||||
"[" +
|
||||
getNetwork().driveContainerCount +
|
||||
"c]" +
|
||||
"[" +
|
||||
getNetwork().drivesCount +
|
||||
"d]";
|
||||
|
||||
setTitle(Text.of(title));
|
||||
super.updateDisplay();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return Math.ceilDivExact(getNetwork().filteredItemStackMap.size(), PAGE_SIZE);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
if (getNetwork().filteredItemStackMap.size() > id) {
|
||||
ItemStack itemStackKey = (ItemStack) getNetwork().filteredItemStackMap.keySet().toArray()[id];
|
||||
ItemStack aestheticStack = itemStackKey.copy();
|
||||
int count = getNetwork().filteredItemStackMap.get(itemStackKey);
|
||||
aestheticStack.setCount(Math.min(aestheticStack.getMaxCount(), count));
|
||||
ItemStack newStack = addCountToLore(count, aestheticStack, null);
|
||||
GuiElementBuilder guiElement = new GuiElementBuilder(newStack);
|
||||
return DisplayElement.of(guiElement);
|
||||
}
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onClick(int index, ClickType type, SlotActionType action, GuiElementInterface element) {
|
||||
if (!checkDistance()) {
|
||||
return false;
|
||||
}
|
||||
GuiElementInterface clickedElement = getSlot(index);
|
||||
ItemStack cursorStack = getPlayer().currentScreenHandler.getCursorStack();
|
||||
if (clickedElement != null && cursorStack.isEmpty()) {
|
||||
ItemStack clickedItem = clickedElement.getItemStack();
|
||||
ItemStack noLoreStack = removeCountFromLore(clickedItem);
|
||||
noLoreStack = getNetwork().findSimilarStack(noLoreStack);
|
||||
if (type.isRight) {
|
||||
if (!type.shift) {
|
||||
noLoreStack.setCount(Math.min(noLoreStack.getMaxCount(), noLoreStack.getCount() / 2)); //half stack
|
||||
} else {
|
||||
for (int i = 0; i < player.getInventory().getMainStacks().size(); i++) {
|
||||
ItemStack stack = player.getInventory().getMainStacks().get(i);
|
||||
if (ItemStack.areItemsAndComponentsEqual(stack, noLoreStack)) {
|
||||
insertItem(stack, 0, getVirtualSize(), false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} else if (type.isLeft) {
|
||||
if (noLoreStack.getCount() > noLoreStack.getMaxCount() && !type.shift) {
|
||||
noLoreStack.setCount(noLoreStack.getMaxCount()); // if not shift, get one stack
|
||||
}
|
||||
}
|
||||
if (!(type.isRight && type.shift)) {
|
||||
PlayerInventory playerInventory = player.getInventory();
|
||||
int insertCount = canInsertItemIntoInventory(playerInventory, noLoreStack);
|
||||
ItemStack insertingStack = noLoreStack.copy();
|
||||
insertingStack.setCount(insertCount);
|
||||
refreshTerminals();
|
||||
if (getNetwork().canRemove(noLoreStack) && insertCount > 0) {
|
||||
playerInventory.insertStack(insertingStack.copy());
|
||||
getNetwork().removeItemStack(insertingStack);
|
||||
refreshTerminals();
|
||||
}
|
||||
}
|
||||
} else if (!cursorStack.isEmpty()) {
|
||||
insertItem(cursorStack, true);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void insertItem(ItemStack stack, boolean isCursor) {
|
||||
if (!checkDistance() || stack.getItem() == itemStack.getItem()) {
|
||||
return;
|
||||
}
|
||||
int canPutIn = stack.getCount() - getNetwork().putItemStackRemainder(stack);
|
||||
if (canPutIn > 0) {
|
||||
if (isCursor) {
|
||||
stack.decrement(canPutIn);
|
||||
} else {
|
||||
removeFromInventory(player.getInventory(), stack, canPutIn);
|
||||
}
|
||||
refreshTerminals();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean insertItem(ItemStack stack, int startIndex, int endIndex, boolean fromLast) {
|
||||
if (!checkDistance()) {
|
||||
return false;
|
||||
}
|
||||
refreshTerminals();
|
||||
insertItem(stack, true);
|
||||
return super.insertItem(stack, startIndex, endIndex, fromLast);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement search() {
|
||||
String searchString = getQueryString();
|
||||
if (searchString == null || searchString.isEmpty() || searchString.equals("*")) {
|
||||
searchString = "Filter not set";
|
||||
}
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.literal(searchString).formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_QUESTION_MARK)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(getPlayer());
|
||||
if (checkDistance()) {
|
||||
if (y.isRight) {
|
||||
doSearch("");
|
||||
} else if (y.isLeft) {
|
||||
SearchScreen searchScreen = new SearchScreen(this, "");
|
||||
searchScreen.open();
|
||||
}
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement settings() {
|
||||
if (blockEntity == null) {
|
||||
WirelessTerminalSelectorScreen wirelessTerminalSelectorScreen = new WirelessTerminalSelectorScreen(this);
|
||||
return wirelessTerminalSelectorScreen.getItem();
|
||||
}
|
||||
SettingsScreen settingsScreen = new SettingsScreen(this);
|
||||
return settingsScreen.getItem();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement sorting() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(getSorting().getSortingText().formatted(Formatting.WHITE))
|
||||
.setLore(List.of(Text.translatable(getGroupSimilar() ? "gui.serverstorage.group_similar" : "gui.serverstorage.dont_group_similar").formatted(Formatting.DARK_PURPLE)))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(getSorting().getSortingIcon(getGroupSimilar()))
|
||||
.setCallback((x, clickType, z) -> {
|
||||
playClickSound(getPlayer());
|
||||
if (checkDistance()) {
|
||||
if (clickType == ClickType.MOUSE_LEFT) {
|
||||
setSorting(getSorting().nextSort());
|
||||
} else if (clickType == ClickType.MOUSE_RIGHT) {
|
||||
setGroupSimilar(!getGroupSimilar());
|
||||
}
|
||||
this.refreshTerminals();
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
private int insertIntoPlayer(ItemStack stack, int count, PlayerInventory playerInventory) {
|
||||
int maxFit = howMuchFits(stack, playerInventory);
|
||||
int finalCount = Math.min(count, maxFit);
|
||||
ItemStack insertedStack = stack.copy();
|
||||
insertedStack.setCount(finalCount);
|
||||
getNetwork().removeItemStack(insertedStack);
|
||||
getNetwork().updateDisplays();
|
||||
updateDisplay();
|
||||
int remainingToInsert = finalCount;
|
||||
for (int i = 0; i < Math.ceilDivExact(finalCount, stack.getMaxCount()); i++) {
|
||||
ItemStack cappedStack = insertedStack.copy();
|
||||
cappedStack.setCount(Math.min(insertedStack.getMaxCount(), remainingToInsert));
|
||||
|
||||
ItemStack remaining = insertStackIntoInventory(playerInventory, cappedStack.copy(), true);
|
||||
if (!remaining.isEmpty()) {
|
||||
ItemStack reverseStack = stack.copy();
|
||||
reverseStack.setCount(remaining.getCount() + remainingToInsert);
|
||||
getNetwork().putItemStackRemainder(reverseStack);
|
||||
break;
|
||||
}
|
||||
remainingToInsert -= cappedStack.getCount();
|
||||
}
|
||||
return count - (finalCount - remainingToInsert);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement storeAll() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("gui.serverstorage.store_all").formatted(Formatting.WHITE))
|
||||
.setLore(List.of(Text.translatable("gui.serverstorage.store_all.lore").formatted(Formatting.DARK_PURPLE)))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_STORE_ALL)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(player);
|
||||
if (checkDistance()) {
|
||||
if (y.isLeft) {
|
||||
for (int i = y.shift ? 0 : 8; i < player.getInventory().getMainStacks().size(); i++) {
|
||||
ItemStack stack = player.getInventory().getMainStacks().get(i);
|
||||
insertItem(stack, 0, getVirtualSize(), false);
|
||||
}
|
||||
}
|
||||
if (y.isRight) {
|
||||
//give to player
|
||||
for (Map.Entry<ItemStack, Integer> entry : getNetwork().filteredItemStackMap.entrySet()) {
|
||||
int leftOver = insertIntoPlayer(entry.getKey(), entry.getValue(), player.getInventory());
|
||||
if (leftOver > 0) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement crafting() {
|
||||
if (world != null && world.getGameRules().getBoolean(ServerStorage_Crafting_Enable)) {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("container.crafting").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_CRAFTING)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(player);
|
||||
if (checkDistance()) {
|
||||
CraftingScreen craftingScreen = new CraftingScreen(this);
|
||||
playClickSound(getPlayer());
|
||||
craftingScreen.open();
|
||||
}
|
||||
})
|
||||
);
|
||||
} else {
|
||||
return DisplayElement.filler();
|
||||
}
|
||||
}
|
||||
|
||||
public void doSearch(String query) {
|
||||
setQueryString(query);
|
||||
setPage(0);
|
||||
refreshTerminals();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement refresh() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setSkullOwner(GUI_REFRESH)
|
||||
.setName(Text.translatable("selectServer.refresh").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(player);
|
||||
if (checkDistance()) {
|
||||
setPage(0);
|
||||
setQueryString("");
|
||||
refreshTerminals();
|
||||
}
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose() {
|
||||
setPage(page);
|
||||
if (blockEntity != null) {
|
||||
this.blockEntity.markDirty();
|
||||
this.blockEntity.openStorageScreens.remove(this);
|
||||
}
|
||||
super.onClose();
|
||||
}
|
||||
}
|
@@ -0,0 +1,153 @@
|
||||
package systems.brn.serverstorage.screens;
|
||||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import eu.pb4.sgui.api.elements.GuiElementBuilder;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import systems.brn.serverstorage.items.WirelessTerminalItem;
|
||||
import systems.brn.serverstorage.lib.*;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import static systems.brn.serverstorage.ServerStorage.WIRELESS_TERMINAL;
|
||||
import static systems.brn.serverstorage.items.WirelessTerminalItem.saveStack;
|
||||
|
||||
public class WirelessTerminalSelectorScreen extends PagedGui {
|
||||
|
||||
final public ItemStack stack;
|
||||
final public ItemStack stackOriginal;
|
||||
public List<SessionStorageClass> sessions;
|
||||
public int selectedIndex;
|
||||
public final StorageScreen storageScreen;
|
||||
|
||||
public WirelessTerminalSelectorScreen(ServerPlayerEntity player, @Nullable StorageScreen storageScreen) {
|
||||
super(player, null);
|
||||
final ItemStack stackOriginal = player.getStackInHand(player.getActiveHand());
|
||||
final ItemStack stack = stackOriginal.copy();
|
||||
if (stack.getItem() == WIRELESS_TERMINAL) {
|
||||
this.stack = stack;
|
||||
this.stackOriginal = stackOriginal;
|
||||
this.sessions = new ArrayList<>(stack.getOrDefault(WirelessTerminalComponents.SESSIONS, new ArrayList<>()));
|
||||
this.selectedIndex = stack.getOrDefault(WirelessTerminalComponents.SELECTED_POSITION, -1);
|
||||
this.setTitle(Text.translatable("gui.serverstorage.radio_selector"));
|
||||
this.storageScreen = storageScreen;
|
||||
this.updateDisplay();
|
||||
} else {
|
||||
this.stack = ItemStack.EMPTY;
|
||||
this.stackOriginal = stack;
|
||||
this.sessions = new ArrayList<>();
|
||||
this.selectedIndex = -1;
|
||||
this.storageScreen = storageScreen;
|
||||
}
|
||||
}
|
||||
|
||||
public WirelessTerminalSelectorScreen(StorageScreen storageScreen) {
|
||||
this(storageScreen.getPlayer(), storageScreen);
|
||||
}
|
||||
|
||||
private void commitStack() {
|
||||
saveStack(stack, stackOriginal, player);
|
||||
}
|
||||
|
||||
private void setSelectedPosition() {
|
||||
if (selectedIndex >= sessions.size()) {
|
||||
selectedIndex = sessions.size() - 1;
|
||||
}
|
||||
stack.set(WirelessTerminalComponents.SELECTED_POSITION, selectedIndex);
|
||||
commitStack();
|
||||
}
|
||||
|
||||
private void removePosition(BlockPos pos) {
|
||||
this.sessions = Util.removePosition(pos, stack);
|
||||
setSelectedPosition();
|
||||
}
|
||||
|
||||
protected DisplayElement getRadioTerminal(BlockPos position, SessionStorageClass sessionStorageClass, int index) {
|
||||
if (player != null && player.getServer() != null) {
|
||||
MinecraftServer server = player.getServer();
|
||||
GameProfile gameProfile = sessionStorageClass.getPlayerProfile(server);
|
||||
|
||||
String playerName = gameProfile != null ? gameProfile.getName() : "Profile nonexistent";
|
||||
|
||||
var builder = new GuiElementBuilder(gameProfile != null ? Items.PLAYER_HEAD : Items.SKELETON_SKULL)
|
||||
.setName(Text.translatable("gui.serverstorage.radio_entry", index))
|
||||
.setSkullOwner(gameProfile, player.getServer())
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.radio_position",
|
||||
position.toShortString(), sessionStorageClass.getWorldKey().getValue().getPath()
|
||||
.formatted(Formatting.WHITE)
|
||||
))
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.player_management_session_owner", playerName))
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.radio_session_click_select"))
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.radio_session_click_open"))
|
||||
.addLoreLine(Text.translatable("gui.serverstorage.radio_session_click_delete"))
|
||||
.setCallback((clickIndex, clickType, slotActionType) -> {
|
||||
playClickSound(getPlayer());
|
||||
if (clickType.isLeft) {
|
||||
if (clickType.shift) {
|
||||
removePosition(position);
|
||||
} else {
|
||||
boolean success = WirelessTerminalItem.openTerminal(position, player, player.getStackInHand(player.getActiveHand()), sessionStorageClass.getWorld(server));
|
||||
if (!success) {
|
||||
removePosition(position);
|
||||
}
|
||||
}
|
||||
} else if (clickType.isRight) {
|
||||
this.selectedIndex = index;
|
||||
setSelectedPosition();
|
||||
boolean success = WirelessTerminalItem.openTerminal(position, player, player.getStackInHand(player.getActiveHand()), sessionStorageClass.getWorld(server));
|
||||
if (!success) {
|
||||
removePosition(position);
|
||||
}
|
||||
}
|
||||
updateDisplay();
|
||||
});
|
||||
|
||||
return DisplayElement.of(builder);
|
||||
} else {
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getPageAmount() {
|
||||
return sessions.size() / PAGE_SIZE;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected DisplayElement getElement(int id) {
|
||||
if (id < sessions.size()) {
|
||||
SessionStorageClass sessionStorageClass = sessions.get(id);
|
||||
return getRadioTerminal(sessionStorageClass.getTerminalPos(), sessionStorageClass, id);
|
||||
}
|
||||
return DisplayElement.empty();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClose() {
|
||||
super.onClose();
|
||||
WirelessTerminalItem.updateLore(stack, player.getServer());
|
||||
if (storageScreen != null) {
|
||||
storageScreen.open();
|
||||
}
|
||||
}
|
||||
|
||||
public DisplayElement getItem() {
|
||||
return DisplayElement.of(
|
||||
new GuiElementBuilder(Items.PLAYER_HEAD)
|
||||
.setName(Text.translatable("mco.configure.world.settings.title").formatted(Formatting.WHITE))
|
||||
.hideDefaultTooltip().noDefaults()
|
||||
.setSkullOwner(GUI_SETTINGS)
|
||||
.setCallback((x, y, z) -> {
|
||||
playClickSound(getPlayer());
|
||||
this.open();
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 414 B |
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"when": { "north": "none", "south": "none", "west": "none", "east": "none", "up": "none", "down": "none" },
|
||||
"apply": { "model": "serverstorage:block/bus_connector_blank" }
|
||||
},
|
||||
{
|
||||
"when": { "north": "bus" },
|
||||
"apply": { "model": "serverstorage:block/bus_connector_bus_north" }
|
||||
},
|
||||
{
|
||||
"when": { "south": "bus" },
|
||||
"apply": { "model": "serverstorage:block/bus_connector_bus_south" }
|
||||
},
|
||||
{
|
||||
"when": { "west": "bus" },
|
||||
"apply": { "model": "serverstorage:block/bus_connector_bus_west" }
|
||||
},
|
||||
{
|
||||
"when": { "east": "bus" },
|
||||
"apply": { "model": "serverstorage:block/bus_connector_bus_east" }
|
||||
},
|
||||
{
|
||||
"when": { "up": "bus" },
|
||||
"apply": { "model": "serverstorage:block/bus_connector_bus_up" }
|
||||
},
|
||||
{
|
||||
"when": { "down": "bus" },
|
||||
"apply": { "model": "serverstorage:block/bus_connector_bus_down" }
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,27 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "serverstorage:block/drive_container",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "serverstorage:block/drive_container",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "serverstorage:block/drive_container"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "serverstorage:block/drive_container",
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "serverstorage:block/drive_container",
|
||||
"x": 90
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "serverstorage:block/drive_container",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"when": { "north": "none", "south": "none", "west": "none", "east": "none", "up": "none", "down": "none" },
|
||||
"apply": { "model": "serverstorage:block/inventory_interface_blank" }
|
||||
},
|
||||
{
|
||||
"when": { "north": "inventory" },
|
||||
"apply": { "model": "serverstorage:block/inventory_interface_inventory_north" }
|
||||
},
|
||||
{
|
||||
"when": { "south": "inventory" },
|
||||
"apply": { "model": "serverstorage:block/inventory_interface_inventory_south" }
|
||||
},
|
||||
{
|
||||
"when": { "west": "inventory" },
|
||||
"apply": { "model": "serverstorage:block/inventory_interface_inventory_west" }
|
||||
},
|
||||
{
|
||||
"when": { "east": "inventory" },
|
||||
"apply": { "model": "serverstorage:block/inventory_interface_inventory_east" }
|
||||
},
|
||||
{
|
||||
"when": { "up": "inventory" },
|
||||
"apply": { "model": "serverstorage:block/inventory_interface_inventory_up" }
|
||||
},
|
||||
{
|
||||
"when": { "down": "inventory" },
|
||||
"apply": { "model": "serverstorage:block/inventory_interface_inventory_down" }
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "serverstorage:block/storage",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "serverstorage:block/storage",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "serverstorage:block/storage"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "serverstorage:block/storage",
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "serverstorage:block/storage"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "serverstorage:block/storage",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:block/bus_connector"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/creative_drive"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/diamond_antenna"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/diamond_drive"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/diamond_head"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/diamond_platter"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:block/display_block"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:block/drive_container"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/ender_antenna"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/golden_antenna"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/golden_drive"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/golden_head"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/golden_platter"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:block/inventory_interface"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/iron_antenna"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/iron_drive"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/iron_head"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/iron_platter"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/material_cpu"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/material_cpu_substrate"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/material_drive_casing"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/material_drive_controller"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/material_pcb"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/material_pcb_substrate"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_antenna"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_antenna_connector"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_bus"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_configuration"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_container"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_display"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_drive"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_filtering"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_inventory"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_modem"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_netherite_upgrade"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_pagination"
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "serverstorage:item/module_pcb"
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user