Some JavaDoc
This commit is contained in:
parent
bc4f542e41
commit
9623935b55
1 changed files with 120 additions and 6 deletions
|
@ -17,11 +17,29 @@ import net.minecraft.world.level.block.Block;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Simple extension class that allows Recipe-builders to automatically generated Recipe-Avancements.
|
||||||
|
* <p>
|
||||||
|
* Implementing classes need to call {@link #createAdvancement(ResourceLocation, boolean)} or
|
||||||
|
* {@link #createAdvancement(ResourceLocation, ItemLike)} to enable an advncement and
|
||||||
|
* {@link #registerAdvancement(Recipe)} to finalize and register the new Advancement.
|
||||||
|
* <p>
|
||||||
|
* After that the unlockedBy-Methods can bes used to add Items that will unlock the Recipe (and prompt the unlock)
|
||||||
|
*/
|
||||||
public class AbstractAdvancementRecipe {
|
public class AbstractAdvancementRecipe {
|
||||||
protected AdvancementManager.Builder advancement;
|
protected AdvancementManager.Builder advancement;
|
||||||
boolean hasUnlockTrigger = false;
|
boolean hasUnlockTrigger = false;
|
||||||
boolean generateAdvancement = false;
|
boolean generateAdvancement = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Your implementing class should call this method to prepare a new {@link AdvancementManager.Builder}
|
||||||
|
* <p>
|
||||||
|
* For Example {@link FurnaceRecipe} will call this in the
|
||||||
|
* {@link FurnaceRecipe#make(String, String, ItemLike, ItemLike)}-Method
|
||||||
|
*
|
||||||
|
* @param id {@link ResourceLocation} for this advancement
|
||||||
|
* @param isTool true, if this is registered for a tool
|
||||||
|
*/
|
||||||
protected void createAdvancement(ResourceLocation id, boolean isTool) {
|
protected void createAdvancement(ResourceLocation id, boolean isTool) {
|
||||||
hasUnlockTrigger = false;
|
hasUnlockTrigger = false;
|
||||||
generateAdvancement = true;
|
generateAdvancement = true;
|
||||||
|
@ -33,12 +51,35 @@ public class AbstractAdvancementRecipe {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Your implementing class should call this method to prepare a new {@link AdvancementManager.Builder}
|
||||||
|
* <p>
|
||||||
|
* For Example {@link GridRecipe} will call this in the {@link GridRecipe#make(ResourceLocation, ItemLike)}-Method.
|
||||||
|
* <p>
|
||||||
|
* This method will call {@link #createAdvancement(ResourceLocation, boolean)}. The output object is used to
|
||||||
|
* determine wether or not this is a tool recipe.
|
||||||
|
*
|
||||||
|
* @param id {@link ResourceLocation} for this advancement
|
||||||
|
* @param output Used to determine wether or not this is a tool recipe.
|
||||||
|
*/
|
||||||
protected void createAdvancement(ResourceLocation id, ItemLike output) {
|
protected void createAdvancement(ResourceLocation id, ItemLike output) {
|
||||||
createAdvancement(id, (output.asItem() instanceof TieredItem || output.asItem() instanceof ArmorItem));
|
createAdvancement(id, (output.asItem() instanceof TieredItem || output.asItem() instanceof ArmorItem));
|
||||||
}
|
}
|
||||||
|
|
||||||
private int nameCounter = 0;
|
private int nameCounter = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Recipe will be unlocked by one of the passed Items. As sonn als players have one in their Inventory
|
||||||
|
* the recipe will unlock. Those Items are mostly the input Items for the recipe.
|
||||||
|
* <p>
|
||||||
|
* If you need to use other unlock-Criteria, you can get the {@link AdvancementManager.Builder}-Instance
|
||||||
|
* using {@link #getAdvancementBuilder()}
|
||||||
|
* <p>
|
||||||
|
* This method will automatically get the Items from the stacl and call {@link #unlockedBy(ItemLike...)}
|
||||||
|
*
|
||||||
|
* @param stacks {@link ItemStack}s that will unlock the recipe. The count is ignored.
|
||||||
|
*/
|
||||||
public void unlockedBy(ItemStack... stacks) {
|
public void unlockedBy(ItemStack... stacks) {
|
||||||
ItemLike[] items = Arrays.stream(stacks)
|
ItemLike[] items = Arrays.stream(stacks)
|
||||||
.filter(stack -> stack.getCount() > 0)
|
.filter(stack -> stack.getCount() > 0)
|
||||||
|
@ -48,6 +89,18 @@ public class AbstractAdvancementRecipe {
|
||||||
unlockedBy(items);
|
unlockedBy(items);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Recipe will be unlocked by one of the passed Items. As sonn als players have one in their Inventory
|
||||||
|
* the recipe will unlock. Those Items are mostly the input Items for the recipe.
|
||||||
|
* <p>
|
||||||
|
* If you need to use other unlock-Criteria, you can get the {@link AdvancementManager.Builder}-Instance
|
||||||
|
* using {@link #getAdvancementBuilder()}
|
||||||
|
* <p>
|
||||||
|
* This method will automatically derive a unique name for the criterion and call
|
||||||
|
* {@link #unlockedBy(String, ItemLike...)}
|
||||||
|
*
|
||||||
|
* @param items {@link Item}s or {@link Block}s that will unlock the recipe.
|
||||||
|
*/
|
||||||
public void unlockedBy(ItemLike... items) {
|
public void unlockedBy(ItemLike... items) {
|
||||||
String name = "has_" + (nameCounter++) + "_" +
|
String name = "has_" + (nameCounter++) + "_" +
|
||||||
Arrays.stream(items)
|
Arrays.stream(items)
|
||||||
|
@ -61,6 +114,18 @@ public class AbstractAdvancementRecipe {
|
||||||
unlockedBy(name, items);
|
unlockedBy(name, items);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Recipe will be unlocked by one of the passed Items. As sonn als players have one in their Inventory
|
||||||
|
* the recipe will unlock. Those Items are mostly the input Items for the recipe.
|
||||||
|
* <p>
|
||||||
|
* If you need to use other unlock-Criteria, you can get the {@link AdvancementManager.Builder}-Instance
|
||||||
|
* using {@link #getAdvancementBuilder()}
|
||||||
|
* <p>
|
||||||
|
* This method will automatically derive a unique name for the criterion and call
|
||||||
|
* {@link #unlockedBy(String, TagKey)}
|
||||||
|
*
|
||||||
|
* @param tag All items from this Tag will unlock the recipe
|
||||||
|
*/
|
||||||
public void unlockedBy(TagKey<Item> tag) {
|
public void unlockedBy(TagKey<Item> tag) {
|
||||||
ResourceLocation id = tag.location();
|
ResourceLocation id = tag.location();
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
|
@ -68,27 +133,76 @@ public class AbstractAdvancementRecipe {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Recipe will be unlocked by one of the passed Items. As sonn als players have one in their Inventory
|
||||||
|
* the recipe will unlock. Those Items are mostly the input Items for the recipe.
|
||||||
|
* <p>
|
||||||
|
* If you need to use other unlock-Criteria, you can get the {@link AdvancementManager.Builder}-Instance
|
||||||
|
* using {@link #getAdvancementBuilder()}
|
||||||
|
*
|
||||||
|
* @param name The name for this unlock-Criteria
|
||||||
|
* @param items {@link Item}s or {@link Block}s that will unlock the recipe.
|
||||||
|
*/
|
||||||
public void unlockedBy(String name, ItemLike... items) {
|
public void unlockedBy(String name, ItemLike... items) {
|
||||||
hasUnlockTrigger = true;
|
if (advancement != null) {
|
||||||
advancement.addInventoryChangedCriterion(name, items);
|
hasUnlockTrigger = true;
|
||||||
|
advancement.addInventoryChangedCriterion(name, items);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Recipe will be unlocked by one of the passed Items. As sonn als players have one in their Inventory
|
||||||
|
* the recipe will unlock. Those Items are mostly the input Items for the recipe.
|
||||||
|
* <p>
|
||||||
|
* If you need to use other unlock-Criteria, you can get the {@link AdvancementManager.Builder}-Instance
|
||||||
|
* using {@link #getAdvancementBuilder()}
|
||||||
|
*
|
||||||
|
* @param name The name for this unlock-Criteria
|
||||||
|
* @param tag All items from this Tag will unlock the recipe
|
||||||
|
*/
|
||||||
public void unlockedBy(String name, TagKey<Item> tag) {
|
public void unlockedBy(String name, TagKey<Item> tag) {
|
||||||
hasUnlockTrigger = true;
|
if (advancement != null) {
|
||||||
advancement.addInventoryChangedCriterion(name, tag);
|
hasUnlockTrigger = true;
|
||||||
|
advancement.addInventoryChangedCriterion(name, tag);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables the generation of an advancement
|
||||||
|
*/
|
||||||
public void noAdvancement() {
|
public void noAdvancement() {
|
||||||
generateAdvancement = false;
|
generateAdvancement = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void clearAdvancementCriteria() {
|
/**
|
||||||
|
* Resets the advancement. This is usefully when you need more controll but the Recipe Builder
|
||||||
|
* (like {@link GridRecipe} is automatically adding Items to the criterion list.
|
||||||
|
*/
|
||||||
|
public void resetAdvancement() {
|
||||||
if (advancement != null)
|
if (advancement != null)
|
||||||
advancement = AdvancementManager.Builder.createEmptyCopy(advancement);
|
advancement = AdvancementManager.Builder.createEmptyCopy(advancement);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the underlying Builder Instance
|
||||||
|
*
|
||||||
|
* @return null or The underlying builder Instance
|
||||||
|
*/
|
||||||
|
public AdvancementManager.Builder getAdvancementBuilder() {
|
||||||
|
return advancement;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Your implementing class should calls this method to finalize the advancement and register it.
|
||||||
|
* <p>
|
||||||
|
* For Example {@link GridRecipe} will call this in the {@link GridRecipe#build()}-Method
|
||||||
|
*
|
||||||
|
* @param recipe The generated recipe that need to be linked to the Advancement
|
||||||
|
*/
|
||||||
protected void registerAdvancement(Recipe<?> recipe) {
|
protected void registerAdvancement(Recipe<?> recipe) {
|
||||||
if (hasUnlockTrigger && generateAdvancement) {
|
if (hasUnlockTrigger && generateAdvancement && advancement != null) {
|
||||||
advancement
|
advancement
|
||||||
.startDisplay(recipe.getResultItem().getItem())
|
.startDisplay(recipe.getResultItem().getItem())
|
||||||
.hideFromChat()
|
.hideFromChat()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue