@‘AymericRed’:
Alors j’ai regardé rapidement le SlotCrafting de mc 1.7.10, il faut que tu retires toutes les fonctions getRemainingItems du crafting manager et des classes de recette, puis recopies la fonction onPickupFromSlot de la classe SlotCrafting dans la classe de ton Slot.
Merci je vais faire cela :)___Donc Petite question j’enlève
public TutorielShapedRecipes addRecipe(ItemStack result, Object… recipeComponents)
{
String s = "";
int i = 0;
int j = 0;
int k = 0;
if (recipeComponents* instanceof String[])
{
String[] astring = (String[])((String[])recipeComponents[i++]);
for (int l = 0; l < astring.length; ++l)
{
String s2 = astring[l];
++k;
j = s2.length();
s = s + s2;
}
}
else
{
while (recipeComponents* instanceof String)
{
String s1 = (String)recipeComponents[i++];
++k;
j = s1.length();
s = s + s1;
}
}
Character character;
Map <character, object="">components = Maps.<character, object="">newHashMap();
Object in;
for ( ; i < recipeComponents.length; i += 2)
{
in = recipeComponents_;
Object component = null;
character = (Character)recipeComponents*;
if (in instanceof Item)
{
component = new ItemStack((Item)recipeComponents_);
}
else if (in instanceof Block)
{
component = new ItemStack((Block)recipeComponents_, 1, 32767);
}
else if (in instanceof ItemStack)
{
component = (ItemStack)recipeComponents_;
}
else if (in instanceof String)
{
component = (String)in;
}
else
{
throw new IllegalArgumentException("Invalid shaped recipe: unknown type " + in.getClass().getName() + "!");
}
components.put(character, component);
}
Object[] aitemstack = new Object[j * k];
char key;
Object component;
for (int i1 = 0; i1 < j * k; ++i1)
{
key = s.charAt(i1);
if (components.containsKey(Character.valueOf(key)))
{
component = components.get(Character.valueOf(key));
if(component instanceof ItemStack)
aitemstack[i1] = ((ItemStack)component).copy();
else
aitemstack[i1] = component;
}
else
aitemstack[i1] = null;
}
TutorielShapedRecipes shapedrecipes = new TutorielShapedRecipes(j, k, aitemstack, result);
this.recipes.add(shapedrecipes);
return shapedrecipes;
}
et
public void addShapelessRecipe(ItemStack result, Object… recipeComponents)
{
List list = Lists.newArrayList();
for (Object component : recipeComponents) //Pour chaque composant de la recette
{
if (component instanceof ItemStack)
{
list.add(((ItemStack)component).copy());
}
else if (component instanceof Item)
{
list.add(new ItemStack((Item)component));
}
else if(component instanceof Block)
{
list.add(new ItemStack((Block)component));
}
else if(component instanceof String) //Pour l'ore dictionnary
{
list.add(component);
}
else throw new IllegalArgumentException("Invalid shapeless recipe: unknown type " + component.getClass().getName() + "!");
}
this.recipes.add(new TutorielShapelessRecipe(result, list));
}
et
public ItemStack[] getRemainingItems(InventoryCrafting craftMatrix, World worldIn)
{
for (IRecipe irecipe : this.recipes) //Pour chaque recette
{
if (irecipe.matches(craftMatrix, worldIn)) //Si elle correspond à la matrice actuelle
{
return irecipe.getRemainingItems(craftMatrix); //On retourne les items restants
}
}
ItemStack[] aitemstack = new ItemStack[craftMatrix.getSizeInventory()];
for (int i = 0; i < aitemstack.length; ++i)
{
aitemstack* = craftMatrix.getStackInSlot(i);
}
return aitemstack; //Si ça ne correspond à aucune recette, on retourne tous les items qui sont présents dans la matrice
}
?
Merci de ton aide ;)____</character,></character,>