Added comments to the crafter to help people understand it

This commit is contained in:
modmuss50 2015-05-21 07:56:01 +01:00
parent 7b1b131b23
commit 9eb7735c10

View file

@ -86,55 +86,55 @@ public class RecipeCrafter {
* Call this on the tile tick * Call this on the tile tick
*/ */
public void updateEntity() { public void updateEntity() {
if (currentRecipe == null) { if (currentRecipe == null) {//It will now look for new recipes.
for (IBaseRecipeType recipe : RecipeHanderer.getRecipeClassFromName(recipeName)) { for (IBaseRecipeType recipe : RecipeHanderer.getRecipeClassFromName(recipeName)) {
if(recipe.canCraft(parentTile) && hasAllInputs(recipe)){ if(recipe.canCraft(parentTile) && hasAllInputs(recipe)){//This checks to see if it has all of the inputs
boolean canGiveInvAll = true; boolean canGiveInvAll = true;
for (int i = 0; i < recipe.getOutputs().size(); i++) { for (int i = 0; i < recipe.getOutputs().size(); i++) {//This checks to see if it can fit all of the outputs
if (!canFitStack(recipe.getOutputs().get(i), outputSlots[i])) { if (!canFitStack(recipe.getOutputs().get(i), outputSlots[i])) {
canGiveInvAll = false; canGiveInvAll = false;
} }
} }
if(canGiveInvAll){ if(canGiveInvAll){
currentRecipe = recipe; currentRecipe = recipe;//Sets the current recipe then syncs
parentTile.syncWithAll(); parentTile.syncWithAll();
return; return;
} }
} }
} }
} else { } else {
if(!hasAllInputs()){ if(!hasAllInputs()){//If it doesn't have all the inputs reset
currentRecipe = null; currentRecipe = null;
currentTickTime = 0; currentTickTime = 0;
parentTile.syncWithAll(); parentTile.syncWithAll();
return; return;
} }
if (currentTickTime >= currentRecipe.tickTime()) { if (currentTickTime >= currentRecipe.tickTime()) {//If it has reached the recipe tick time
boolean canGiveInvAll = true; boolean canGiveInvAll = true;
for (int i = 0; i < currentRecipe.getOutputs().size(); i++) { for (int i = 0; i < currentRecipe.getOutputs().size(); i++) {//Checks to see if it can fit the output
if (!canFitStack(currentRecipe.getOutputs().get(i), outputSlots[i])) { if (!canFitStack(currentRecipe.getOutputs().get(i), outputSlots[i])) {
canGiveInvAll = false; canGiveInvAll = false;
} }
} }
ArrayList<Integer> filledSlots = new ArrayList<Integer>(); ArrayList<Integer> filledSlots = new ArrayList<Integer>();//The slots that have been filled
if (canGiveInvAll && currentRecipe.onCraft(parentTile)) { if (canGiveInvAll && currentRecipe.onCraft(parentTile)) {
for (int i = 0; i < currentRecipe.getOutputs().size(); i++) { for (int i = 0; i < currentRecipe.getOutputs().size(); i++) {
if (!filledSlots.contains(outputSlots[i])) { if (!filledSlots.contains(outputSlots[i])) {//checks it has not been filled
fitStack(currentRecipe.getOutputs().get(i), outputSlots[i]); fitStack(currentRecipe.getOutputs().get(i), outputSlots[i]);//fills the slot with the output stack
filledSlots.add(outputSlots[i]); filledSlots.add(outputSlots[i]);
} }
} }
useAllInputs(); useAllInputs();//this uses all the inputs
currentRecipe = null; currentRecipe = null;//resets
currentTickTime = 0; currentTickTime = 0;
parentTile.syncWithAll(); parentTile.syncWithAll();
} }
} else if (currentTickTime < currentRecipe.tickTime()) { } else if (currentTickTime < currentRecipe.tickTime()) {
if (energy.canUseEnergy(currentRecipe.euPerTick())) { if (energy.canUseEnergy(currentRecipe.euPerTick())) {//This checks to see if it can use the power
if(!parentTile.getWorldObj().isRemote){ if(!parentTile.getWorldObj().isRemote){//remove the power on the server side only
this.energy.setEnergyStored(this.energy.getEnergyStored() - currentRecipe.euPerTick()); this.energy.setEnergyStored(this.energy.getEnergyStored() - currentRecipe.euPerTick());
} }
currentTickTime++; currentTickTime++;//increase the ticktime
parentTile.syncWithAll(); parentTile.syncWithAll();
} }
} }
@ -147,7 +147,7 @@ public class RecipeCrafter {
} }
for(ItemStack input : currentRecipe.getInputs()){ for(ItemStack input : currentRecipe.getInputs()){
Boolean hasItem = false; Boolean hasItem = false;
for(int inputSlot : inputSlots){ for(int inputSlot : inputSlots){//Checks to see if it can find the input
if(ItemUtils.isItemEqual(input, inventory.getStackInSlot(inputSlot), true, true, true) && inventory.getStackInSlot(inputSlot).stackSize >= input.stackSize){ if(ItemUtils.isItemEqual(input, inventory.getStackInSlot(inputSlot), true, true, true) && inventory.getStackInSlot(inputSlot).stackSize >= input.stackSize){
hasItem = true; hasItem = true;
} }
@ -180,7 +180,7 @@ public class RecipeCrafter {
return; return;
} }
for(ItemStack input : currentRecipe.getInputs()){ for(ItemStack input : currentRecipe.getInputs()){
for(int inputSlot : inputSlots){ for(int inputSlot : inputSlots){//Uses all of the inputs
if(ItemUtils.isItemEqual(input, inventory.getStackInSlot(inputSlot), true, true, true)){ if(ItemUtils.isItemEqual(input, inventory.getStackInSlot(inputSlot), true, true, true)){
inventory.decrStackSize(inputSlot, input.stackSize); inventory.decrStackSize(inputSlot, input.stackSize);
} }
@ -188,7 +188,7 @@ public class RecipeCrafter {
} }
} }
public boolean canFitStack(ItemStack stack, int slot) { public boolean canFitStack(ItemStack stack, int slot) {//Checks to see if it can fit the stack
if (stack == null) { if (stack == null) {
return true; return true;
} }
@ -203,18 +203,18 @@ public class RecipeCrafter {
return false; return false;
} }
public void fitStack(ItemStack stack, int slot) { public void fitStack(ItemStack stack, int slot) {//This fits a stack into a slot
if (stack == null) { if (stack == null) {
return; return;
} }
if (inventory.getStackInSlot(slot) == null) { if (inventory.getStackInSlot(slot) == null) {//If the slot is empty set the contents
inventory.setInventorySlotContents(slot, stack); inventory.setInventorySlotContents(slot, stack);
return; return;
} }
if (ItemUtils.isItemEqual(inventory.getStackInSlot(slot), stack, true, true, true)) { if (ItemUtils.isItemEqual(inventory.getStackInSlot(slot), stack, true, true, true)) {//If the slot has stuff in
if (stack.stackSize + inventory.getStackInSlot(slot).stackSize <= stack.getMaxStackSize()) { if (stack.stackSize + inventory.getStackInSlot(slot).stackSize <= stack.getMaxStackSize()) {//Check to see if it fits
ItemStack newStack = stack.copy(); ItemStack newStack = stack.copy();
newStack.stackSize = inventory.getStackInSlot(slot).stackSize + stack.stackSize; newStack.stackSize = inventory.getStackInSlot(slot).stackSize + stack.stackSize;//Sets the new stack size
inventory.setInventorySlotContents(slot, newStack); inventory.setInventorySlotContents(slot, newStack);
} }
} }