Search in sources :

Example 1 with ProgWidgetDropItem

use of pneumaticCraft.common.progwidgets.ProgWidgetDropItem in project PneumaticCraft by MineMaarten.

the class GuiProgWidgetDropItem method initGui.

@Override
public void initGui() {
    super.initGui();
    List<GuiRadioButton> radioButtons = new ArrayList<GuiRadioButton>();
    GuiRadioButton radioButton = new GuiRadioButton(7, guiLeft + 4, guiTop + 80, 0xFF000000, "Random");
    radioButton.checked = !((ProgWidgetDropItem) widget).dropStraight();
    addWidget(radioButton);
    radioButtons.add(radioButton);
    radioButton.otherChoices = radioButtons;
    GuiRadioButton radioButton2 = new GuiRadioButton(8, guiLeft + 4, guiTop + 94, 0xFF000000, "Straight");
    radioButton2.checked = ((ProgWidgetDropItem) widget).dropStraight();
    addWidget(radioButton2);
    radioButtons.add(radioButton2);
    radioButton2.otherChoices = radioButtons;
}
Also used : ProgWidgetDropItem(pneumaticCraft.common.progwidgets.ProgWidgetDropItem) ArrayList(java.util.ArrayList) GuiRadioButton(pneumaticCraft.client.gui.widget.GuiRadioButton)

Example 2 with ProgWidgetDropItem

use of pneumaticCraft.common.progwidgets.ProgWidgetDropItem in project PneumaticCraft by MineMaarten.

the class ProgrammedDroneUtils method deliverItemsAmazonStyle.

public static EntityCreature deliverItemsAmazonStyle(World world, int x, int y, int z, ItemStack... deliveredStacks) {
    if (world.isRemote)
        return null;
    if (deliveredStacks.length == 0)
        throw new IllegalArgumentException("You need to deliver at least 1 stack!");
    if (deliveredStacks.length > 65)
        throw new IllegalArgumentException("You can only deliver up to 65 stacks at once!");
    for (ItemStack stack : deliveredStacks) {
        if (stack == null)
            throw new IllegalArgumentException("You can't supply a null stack to be delivered!");
        if (stack.getItem() == null)
            throw new IllegalArgumentException("You can't supply a stack with a null item to be delivered!");
    }
    EntityDrone drone = getChargedDispenserUpgradeDrone(world);
    //Program the drone
    int startY = world.getHeightValue(x + 30, z) + 30;
    drone.setPosition(x + 30, startY, z);
    List<IProgWidget> widgets = drone.progWidgets;
    ProgWidgetStart start = new ProgWidgetStart();
    start.setX(92);
    start.setY(41);
    widgets.add(start);
    ProgWidgetInventoryExport export = new ProgWidgetInventoryExport();
    export.setX(92);
    export.setY(52);
    widgets.add(export);
    ProgWidgetDropItem drop = new ProgWidgetDropItem();
    drop.setX(92);
    drop.setY(74);
    widgets.add(drop);
    ProgWidgetGoToLocation gotoPiece = new ProgWidgetGoToLocation();
    gotoPiece.setX(92);
    gotoPiece.setY(96);
    widgets.add(gotoPiece);
    ProgWidgetSuicide suicide = new ProgWidgetSuicide();
    suicide.setX(92);
    suicide.setY(107);
    widgets.add(suicide);
    ProgWidgetArea area = new ProgWidgetArea();
    area.setX(107);
    area.setY(52);
    area.x1 = x;
    area.y1 = y;
    area.z1 = z;
    widgets.add(area);
    area = new ProgWidgetArea();
    area.setX(107);
    area.setY(74);
    area.x1 = x;
    area.z1 = z;
    if (drone.isBlockValidPathfindBlock(x, y, z)) {
        for (int i = 0; i < 5 && drone.isBlockValidPathfindBlock(area.x1, i + y + 1, area.z1); i++) {
            area.y1 = y + i;
        }
    } else {
        area.y1 = world.getHeightValue(x, z) + 10;
        //Worst case scenario, there are definately no blocks here.
        if (!drone.isBlockValidPathfindBlock(area.x1, area.y1, area.z1))
            area.y1 = 260;
    }
    widgets.add(area);
    area = new ProgWidgetArea();
    area.setX(107);
    area.setY(96);
    area.x1 = x + 30;
    area.y1 = startY;
    area.z1 = z;
    widgets.add(area);
    TileEntityProgrammer.updatePuzzleConnections(widgets);
    for (int i = 0; i < deliveredStacks.length; i++) {
        drone.getInventory().setInventorySlotContents(i, deliveredStacks[i].copy());
    }
    world.spawnEntityInWorld(drone);
    return drone;
}
Also used : ProgWidgetDropItem(pneumaticCraft.common.progwidgets.ProgWidgetDropItem) IProgWidget(pneumaticCraft.common.progwidgets.IProgWidget) EntityDrone(pneumaticCraft.common.entity.living.EntityDrone) ProgWidgetGoToLocation(pneumaticCraft.common.progwidgets.ProgWidgetGoToLocation) ProgWidgetArea(pneumaticCraft.common.progwidgets.ProgWidgetArea) ProgWidgetInventoryExport(pneumaticCraft.common.progwidgets.ProgWidgetInventoryExport) ProgWidgetSuicide(pneumaticCraft.common.progwidgets.ProgWidgetSuicide) ItemStack(net.minecraft.item.ItemStack) ProgWidgetStart(pneumaticCraft.common.progwidgets.ProgWidgetStart)

Aggregations

ProgWidgetDropItem (pneumaticCraft.common.progwidgets.ProgWidgetDropItem)2 ArrayList (java.util.ArrayList)1 ItemStack (net.minecraft.item.ItemStack)1 GuiRadioButton (pneumaticCraft.client.gui.widget.GuiRadioButton)1 EntityDrone (pneumaticCraft.common.entity.living.EntityDrone)1 IProgWidget (pneumaticCraft.common.progwidgets.IProgWidget)1 ProgWidgetArea (pneumaticCraft.common.progwidgets.ProgWidgetArea)1 ProgWidgetGoToLocation (pneumaticCraft.common.progwidgets.ProgWidgetGoToLocation)1 ProgWidgetInventoryExport (pneumaticCraft.common.progwidgets.ProgWidgetInventoryExport)1 ProgWidgetStart (pneumaticCraft.common.progwidgets.ProgWidgetStart)1 ProgWidgetSuicide (pneumaticCraft.common.progwidgets.ProgWidgetSuicide)1