Examples of SlotMinecartFilter


Examples of mods.railcraft.common.gui.slots.SlotMinecartFilter

        super(tile);
        this.tile = tile;

        addWidget(new FluidGaugeWidget(tile.getTankManager().get(0), 17, 23, 176, 0, 16, 47));

        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 0, 62, 39));
        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 1, 80, 39));
        addSlot(input = new SlotLiquidContainerFilled(tile, 0, 134, 21));
        addSlot(output = new SlotOutput(tile, 1, 134, 56));
        for (int i = 0; i < 3; i++) {
            for (int k = 0; k < 9; k++) {
                addSlot(new Slot(inventoryplayer, k + i * 9 + 9, 8 + k * 18, 84 + i * 18));
 
View Full Code Here

Examples of mods.railcraft.common.gui.slots.SlotMinecartFilter

        super(tile);
        this.tile = tile;

        addWidget(new FluidGaugeWidget(tile.getTankManager().get(0), 17, 23, 176, 0, 16, 47));

        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 0, 44, 39));
        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 1, 62, 39));
        addSlot(new SlotLiquidFilter(tile.getLiquidFilter(), 0, 89, 39));
        addSlot(input = new SlotLiquidContainerEmpty(tile, 0, 134, 21));
        addSlot(new SlotOutput(tile, 1, 134, 56));

        for (int i = 0; i < 3; i++) {
View Full Code Here

Examples of mods.railcraft.common.gui.slots.SlotMinecartFilter

            for (int k = 0; k < 3; k++) {
                addSlot(new SlotFilter(tile.getItemFilters(), k + i * 3, 8 + k * 18, 26 + i * 18));
            }
        }

        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 0, 71, 26));
        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 1, 89, 26));

        for (int i = 0; i < 3; i++) {
            for (int k = 0; k < 3; k++) {
                addSlot(tile.getBufferSlot(k + i * 3, 116 + k * 18, 26 + i * 18));
            }
View Full Code Here

Examples of mods.railcraft.common.gui.slots.SlotMinecartFilter

    public ContainerDetectorAdvanced(InventoryPlayer inventoryplayer, TileDetector tile) {
        super(((DetectorAdvanced) tile.getDetector()).getFilters());
        this.detector = (DetectorAdvanced) tile.getDetector();

        for (int i = 0; i < detector.getFilters().getSizeInventory(); i++) {
            addSlot(filterSlots = new SlotMinecartFilter(detector.getFilters(), i, 8 + i * 18, 24));
        }

        for (int i = 0; i < 3; i++) {
            for (int k = 0; k < 9; k++) {
                addSlot(new Slot(inventoryplayer, k + i * 9 + 9, 8 + k * 18, 58 + i * 18));
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.