Package codechicken.nei

Examples of codechicken.nei.PositionedStack


    @Override
    public PositionedStack getOtherStack()
    {
      if(output.hasSecondary())
      {
        return new PositionedStack(output.secondaryOutput, 116, 30);
      }

      return null;
    }
View Full Code Here


      return null;
    }

    public CachedIORecipe(ItemStack itemstack, ChanceOutput chance)
    {
      input = new PositionedStack(itemstack, 40, 12);
      output = chance;
    }
View Full Code Here

    public PositionedStack outputStack;

    @Override
    public PositionedStack getIngredient()
    {
      return new PositionedStack(input.itemStack, 40, 12);
    }
View Full Code Here

    }

    @Override
    public PositionedStack getOtherStack()
    {
      return new PositionedStack(fuelStacks.get(cycleticks/40 % fuelStacks.size()), 40, 48);
    }
View Full Code Here

    }

    public CachedIORecipe(AdvancedInput adv, ItemStack output, List<ItemStack> fuels)
    {
      input = adv;
      outputStack = new PositionedStack(output, 100, 30);
      fuelStacks = fuels;
    }
View Full Code Here

    public CachedIORecipe(ItemStack itemstack, ItemStack itemstack1)
    {
      super();
     
      input = new PositionedStack(itemstack, 40, 12);
      output = new PositionedStack(itemstack1, 100, 30);
    }
View Full Code Here

      return null;
    }

    public CachedIORecipe(ItemStack input, GasStack output)
    {
      inputStack = new PositionedStack(input, 26-xOffset, 36-yOffset);
      outputStack = output;
    }
View Full Code Here

    public ArrayList<PositionedStack> ingredients;
    public PositionedStack result;

    public CachedEnergyRecipe(int width, int height, Object[] items, ItemStack out)
    {
      result = new PositionedStack(out, 119, 24);
      ingredients = new ArrayList<PositionedStack>();
      setIngredients(width, height, items);
    }
View Full Code Here

          if(items[y*width+x] == null)
          {
            continue;
          }

          PositionedStack stack = new PositionedStack(items[y*width+x], 25+x*18, 6+y*18);
          stack.setMaxSize(1);
          ingredients.add(stack);
        }
      }
    }
 
View Full Code Here

      return null;
    }

    public CachedIORecipe(ItemStack input, GasStack output)
    {
      inputStack = new PositionedStack(input, 26-xOffset, 36-yOffset);
      outputStack = output;
    }
View Full Code Here

TOP

Related Classes of codechicken.nei.PositionedStack

Copyright © 2018 www.massapicom. 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.