mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-26 00:38:35 +01:00
Re-added invtweaks support for the storage crate
This commit is contained in:
parent
dc7bd582e6
commit
0b025fe249
2 changed files with 40 additions and 0 deletions
|
@ -12,12 +12,14 @@ package de.ellpeck.actuallyadditions.mod.inventory;
|
||||||
|
|
||||||
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityBase;
|
||||||
import de.ellpeck.actuallyadditions.mod.tile.TileEntityGiantChest;
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityGiantChest;
|
||||||
|
import invtweaks.api.container.ChestContainer;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.entity.player.InventoryPlayer;
|
import net.minecraft.entity.player.InventoryPlayer;
|
||||||
import net.minecraft.inventory.Container;
|
import net.minecraft.inventory.Container;
|
||||||
import net.minecraft.inventory.Slot;
|
import net.minecraft.inventory.Slot;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
|
||||||
|
@ChestContainer(rowSize = 13, isLargeChest = true)
|
||||||
public class ContainerGiantChest extends Container{
|
public class ContainerGiantChest extends Container{
|
||||||
|
|
||||||
public final TileEntityGiantChest tileChest;
|
public final TileEntityGiantChest tileChest;
|
||||||
|
|
38
src/main/java/invtweaks/api/container/ChestContainer.java
Normal file
38
src/main/java/invtweaks/api/container/ChestContainer.java
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
package invtweaks.api.container;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.RetentionPolicy;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A marker for containers that have a chest-like persistent storage component. Enables the Inventory Tweaks sorting
|
||||||
|
* buttons for this container.
|
||||||
|
*/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.TYPE)
|
||||||
|
public @interface ChestContainer {
|
||||||
|
// Set to true if the Inventory Tweaks sorting buttons should be shown for this container.
|
||||||
|
boolean showButtons() default true;
|
||||||
|
|
||||||
|
// Size of a chest row
|
||||||
|
int rowSize() default 9;
|
||||||
|
|
||||||
|
// Uses 'large chest' mode for sorting buttons
|
||||||
|
// (Renders buttons vertically down the right side of the GUI)
|
||||||
|
boolean isLargeChest() default false;
|
||||||
|
|
||||||
|
// Annotation for method to get size of a chest row if it is not a fixed size for this container class
|
||||||
|
// Signature int func()
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.METHOD)
|
||||||
|
@interface RowSizeCallback {
|
||||||
|
}
|
||||||
|
|
||||||
|
// Annotation for method to get size of a chest row if it is not a fixed size for this container class
|
||||||
|
// Signature int func()
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.METHOD)
|
||||||
|
@interface IsLargeCallback {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue