Class BlockEntityVariablestore

java.lang.Object
net.minecraftforge.common.capabilities.CapabilityProvider<net.minecraft.world.level.block.entity.BlockEntity>
net.minecraft.world.level.block.entity.BlockEntity
org.cyclops.cyclopscore.blockentity.CyclopsBlockEntity
org.cyclops.integrateddynamics.core.blockentity.BlockEntityCableConnectableInventory
org.cyclops.integrateddynamics.blockentity.BlockEntityVariablestore
All Implemented Interfaces:
net.minecraft.world.inventory.MenuConstructor, net.minecraft.world.MenuProvider, net.minecraftforge.common.capabilities.ICapabilityProvider, net.minecraftforge.common.capabilities.ICapabilityProviderImpl<net.minecraft.world.level.block.entity.BlockEntity>, net.minecraftforge.common.capabilities.ICapabilitySerializable<net.minecraft.nbt.CompoundTag>, net.minecraftforge.common.extensions.IForgeBlockEntity, net.minecraftforge.common.util.INBTSerializable<net.minecraft.nbt.CompoundTag>, org.cyclops.cyclopscore.blockentity.IBlockEntityDelayedTickable, org.cyclops.cyclopscore.persist.IDirtyMarkListener, org.cyclops.cyclopscore.persist.nbt.INBTProvider, INetworkEventListener<VariablestoreNetworkElement>

public class BlockEntityVariablestore extends BlockEntityCableConnectableInventory implements org.cyclops.cyclopscore.persist.IDirtyMarkListener, INetworkEventListener<VariablestoreNetworkElement>, net.minecraft.world.MenuProvider
A part entity used to store variables. Internally, this also acts as an expression cache
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
     

    Nested classes/interfaces inherited from class net.minecraftforge.common.capabilities.CapabilityProvider

    net.minecraftforge.common.capabilities.CapabilityProvider.AsField<B extends net.minecraftforge.common.capabilities.ICapabilityProviderImpl<B>>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
    static final int
     
    static final int
     

    Fields inherited from class net.minecraft.world.level.block.entity.BlockEntity

    level, remove, worldPosition

    Fields inherited from interface net.minecraftforge.common.extensions.IForgeBlockEntity

    INFINITE_EXTENT_AABB
  • Constructor Summary

    Constructors
    Constructor
    Description
    BlockEntityVariablestore(net.minecraft.core.BlockPos blockPos, net.minecraft.world.level.block.state.BlockState blockState)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected org.cyclops.cyclopscore.inventory.SimpleInventory
    createInventory(int inventorySize, int stackSize)
     
    net.minecraft.world.inventory.AbstractContainerMenu
    createMenu(int id, net.minecraft.world.entity.player.Inventory playerInventory, net.minecraft.world.entity.player.Player playerEntity)
     
    net.minecraft.network.chat.Component
     
    Set<Class<? extends INetworkEvent>>
     
    boolean
     
    void
     
    void
    Can be called at any time by the INetworkEventBus.
    void
     
    void
    read(net.minecraft.nbt.CompoundTag tag)
     
    protected void
    refreshVariables(boolean sendVariablesUpdateEvent)
     

    Methods inherited from class org.cyclops.integrateddynamics.core.blockentity.BlockEntityCableConnectableInventory

    afterNetworkReAlive, getCable, getConnected, getInventory, getNetwork, onChunkUnloaded, saveAdditional

    Methods inherited from class org.cyclops.cyclopscore.blockentity.CyclopsBlockEntity

    addCapabilityInternal, addCapabilitySided, canInteractWith, getCapability, getRotation, getStoredCapabilities, getUpdateBackoff, getUpdateBackoffTicks, getUpdatePacket, getUpdateTag, invalidateCaps, load, onDataPacket, onUpdateReceived, readGeneratedFieldsFromNBT, sendUpdate, setUpdateBackoff, shouldSendUpdate, transformFacingForRotation, unsetSendUpdate, writeGeneratedFieldsToNBT, writeToItemStack

    Methods inherited from class net.minecraft.world.level.block.entity.BlockEntity

    addEntityType, clearRemoved, fillCrashReportCategory, getBlockPos, getBlockState, getLevel, getPersistentData, getPosFromTag, getType, hasLevel, isRemoved, loadStatic, onlyOpCanSetNbt, saveToItem, saveWithFullMetadata, saveWithId, saveWithoutMetadata, setBlockState, setChanged, setChanged, setLevel, setRemoved, triggerEvent

    Methods inherited from class net.minecraftforge.common.capabilities.CapabilityProvider

    areCapsCompatible, areCapsCompatible, deserializeCaps, gatherCapabilities, gatherCapabilities, gatherCapabilities, getCapabilities, reviveCaps, serializeCaps

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.cyclops.cyclopscore.blockentity.IBlockEntityDelayedTickable

    reduceUpdateBackoff, sendImmediateUpdate

    Methods inherited from interface net.minecraftforge.common.capabilities.ICapabilityProvider

    getCapability

    Methods inherited from interface net.minecraftforge.common.extensions.IForgeBlockEntity

    deserializeNBT, getModelData, getRenderBoundingBox, handleUpdateTag, hasCustomOutlineRendering, requestModelDataUpdate, serializeNBT
  • Field Details

  • Constructor Details

    • BlockEntityVariablestore

      public BlockEntityVariablestore(net.minecraft.core.BlockPos blockPos, net.minecraft.world.level.block.state.BlockState blockState)
  • Method Details

    • createInventory

      protected org.cyclops.cyclopscore.inventory.SimpleInventory createInventory(int inventorySize, int stackSize)
      Overrides:
      createInventory in class BlockEntityCableConnectableInventory
    • read

      public void read(net.minecraft.nbt.CompoundTag tag)
      Overrides:
      read in class BlockEntityCableConnectableInventory
    • refreshVariables

      protected void refreshVariables(boolean sendVariablesUpdateEvent)
    • onDirty

      public void onDirty()
      Specified by:
      onDirty in interface org.cyclops.cyclopscore.persist.IDirtyMarkListener
      Overrides:
      onDirty in class org.cyclops.cyclopscore.blockentity.CyclopsBlockEntity
    • onLoad

      public void onLoad()
      Specified by:
      onLoad in interface net.minecraftforge.common.extensions.IForgeBlockEntity
      Overrides:
      onLoad in class org.cyclops.cyclopscore.blockentity.CyclopsBlockEntity
    • hasEventSubscriptions

      public boolean hasEventSubscriptions()
      Specified by:
      hasEventSubscriptions in interface INetworkEventListener<VariablestoreNetworkElement>
      Returns:
      If this should be registered to the network event bus for listening to network events.
    • getSubscribedEvents

      public Set<Class<? extends INetworkEvent>> getSubscribedEvents()
      Specified by:
      getSubscribedEvents in interface INetworkEventListener<VariablestoreNetworkElement>
      Returns:
      The static set of events this listener should be subscribed to.
    • onEvent

      public void onEvent(INetworkEvent event, VariablestoreNetworkElement networkElement)
      Description copied from interface: INetworkEventListener
      Can be called at any time by the INetworkEventBus. Only events in the set from INetworkEventListener.getSubscribedEvents() will be received.
      Specified by:
      onEvent in interface INetworkEventListener<VariablestoreNetworkElement>
      Parameters:
      event - The received event.
      networkElement - The network element.
    • createMenu

      @Nullable public net.minecraft.world.inventory.AbstractContainerMenu createMenu(int id, net.minecraft.world.entity.player.Inventory playerInventory, net.minecraft.world.entity.player.Player playerEntity)
      Specified by:
      createMenu in interface net.minecraft.world.inventory.MenuConstructor
    • getDisplayName

      public net.minecraft.network.chat.Component getDisplayName()
      Specified by:
      getDisplayName in interface net.minecraft.world.MenuProvider