mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
96 lines
4 KiB
Java
96 lines
4 KiB
Java
/*
|
|
* This file ("JamVillagerTradeHandler.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.gen;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.InitItems;
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheJams;
|
|
import net.minecraft.entity.passive.EntityVillager;
|
|
import net.minecraft.init.Items;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.math.MathHelper;
|
|
import net.minecraft.village.MerchantRecipe;
|
|
import net.minecraft.village.MerchantRecipeList;
|
|
import net.minecraftforge.oredict.OreDictionary;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Random;
|
|
|
|
public class JamVillagerTradeHandler{
|
|
|
|
private final ArrayList<Trade> trades = new ArrayList<Trade>();
|
|
|
|
public JamVillagerTradeHandler(){
|
|
this.addWants("ingotGold", 5, 7);
|
|
this.addWants("cropWheat", 15, 25);
|
|
this.addWants("dustRedstone", 25, 40);
|
|
this.addWants(new ItemStack(Items.BUCKET), 5, 9);
|
|
this.addWants(new ItemStack(Items.GLASS_BOTTLE), 12, 17);
|
|
this.addWants(new ItemStack(Items.POTIONITEM), 1, 1);
|
|
this.addWants("ingotIron", 10, 15);
|
|
this.addWants("gemDiamond", 1, 2);
|
|
this.addWants("dustGlowstone", 12, 22);
|
|
}
|
|
|
|
public void addWants(String oredictName, int minSize, int maxSize){
|
|
ArrayList<ItemStack> stacks = (ArrayList<ItemStack>)OreDictionary.getOres(oredictName, false);
|
|
this.trades.add(new Trade(stacks, minSize, maxSize));
|
|
}
|
|
|
|
public void addWants(ItemStack stack, int minSize, int maxSize){
|
|
this.trades.add(new Trade(stack, minSize, maxSize));
|
|
}
|
|
|
|
//@Override
|
|
public void manipulateTradesForVillager(EntityVillager villager, MerchantRecipeList recipeList, Random rand){
|
|
for(int trade = 0; trade < this.trades.size(); trade++){
|
|
for(int want = 0; want < this.trades.get(trade).wants.size(); want++){
|
|
ItemStack wantsOne = this.trades.get(trade).wants.get(want);
|
|
wantsOne.stackSize = MathHelper.getRandomIntegerInRange(rand, this.trades.get(trade).minStackSize, this.trades.get(trade).maxStackSize);
|
|
|
|
ItemStack wantsTwo = null;
|
|
if(rand.nextInt(3) == 0){
|
|
int randomSecondTrade = rand.nextInt(this.trades.size());
|
|
for(int randomSecondWant = 0; randomSecondWant < this.trades.get(randomSecondTrade).wants.size(); randomSecondWant++){
|
|
wantsTwo = this.trades.get(randomSecondTrade).wants.get(randomSecondWant);
|
|
wantsTwo.stackSize = MathHelper.getRandomIntegerInRange(rand, this.trades.get(randomSecondTrade).minStackSize, this.trades.get(randomSecondTrade).maxStackSize);
|
|
}
|
|
}
|
|
if(wantsOne == wantsTwo){
|
|
wantsTwo = null;
|
|
}
|
|
|
|
for(int k = 0; k < TheJams.values().length; k++){
|
|
recipeList.add(new MerchantRecipe(wantsOne, wantsTwo, new ItemStack(InitItems.itemJams, rand.nextInt(3)+1, k)));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public static class Trade{
|
|
|
|
public final ArrayList<ItemStack> wants = new ArrayList<ItemStack>();
|
|
public final int minStackSize;
|
|
public final int maxStackSize;
|
|
|
|
public Trade(ArrayList<ItemStack> wants, int minStackSize, int maxStackSize){
|
|
this.wants.addAll(wants);
|
|
this.minStackSize = minStackSize <= 0 ? 1 : minStackSize;
|
|
this.maxStackSize = maxStackSize <= 0 ? 1 : maxStackSize;
|
|
}
|
|
|
|
public Trade(ItemStack want, int minStackSize, int maxStackSize){
|
|
this.wants.add(want);
|
|
this.minStackSize = minStackSize <= 0 ? 1 : minStackSize;
|
|
this.maxStackSize = maxStackSize <= 0 ? 1 : maxStackSize;
|
|
}
|
|
|
|
}
|
|
}
|