Skip to content

Commit

Permalink
feat: keep divination rod at 0 durability until next full scan
Browse files Browse the repository at this point in the history
this allows using the rod to find existing search results
  • Loading branch information
klikli-dev committed Feb 1, 2023
1 parent 20907b6 commit 1001d84
Showing 1 changed file with 14 additions and 21 deletions.
35 changes: 14 additions & 21 deletions src/main/java/com/klikli_dev/theurgy/item/DivinationRodItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import net.minecraft.network.chat.*;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.sounds.SoundSource;
import net.minecraft.stats.Stats;
import net.minecraft.tags.TagKey;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResult;
Expand Down Expand Up @@ -73,24 +74,6 @@ public DivinationRodItem(Properties pProperties, Tier defaultTier, TagKey<Block>
this.defaultAllowAttuning = defaultAllowAttuning;
}

public static void spawnEntityClientSide(Level level, Entity entity) {
if (level instanceof ClientLevel clientLevel) {
clientLevel.putNonPlayerEntity(entity.getId(), entity); //client only spawn of entity
}
}

public static void fillItemCategory(DivinationRodItem item, CreativeModeTab tab, NonNullList<ItemStack> items) {
var level = Minecraft.getInstance().level;
if (level != null) {
var recipeManager = level.getRecipeManager();
recipeManager.getRecipes().forEach((recipe) -> {
if (recipe.getResultItem().getItem() == item) {
items.add(recipe.getResultItem().copy());
}
});
}
}

@Override
public int getMaxDamage(ItemStack stack) {
return stack.getOrCreateTag().getInt(TheurgyConstants.Nbt.Divination.SETTING_DURABILITY);
Expand Down Expand Up @@ -235,6 +218,16 @@ public ItemStack finishUsingItem(ItemStack stack, Level level, LivingEntity enti
if (!(entityLiving instanceof Player player))
return stack;

if(stack.getDamageValue() >= stack.getMaxDamage()){
//if in the last usage cycle the item was used up, we now actually break it to avoid over-use
player.broadcastBreakEvent(player.getUsedItemHand());
var item = stack.getItem();
stack.shrink(1);
player.awardStat(Stats.ITEM_BROKEN.get(item));
stack.setDamageValue(0);
return stack;
}

player.getCooldowns().addCooldown(this, stack.getOrCreateTag().getInt(TheurgyConstants.Nbt.Divination.SETTING_DURATION));
stack.getOrCreateTag().putFloat(TheurgyConstants.Nbt.Divination.DISTANCE, NOT_FOUND);
if (level.isClientSide) {
Expand All @@ -249,9 +242,9 @@ public ItemStack finishUsingItem(ItemStack stack, Level level, LivingEntity enti
this.spawnResultParticle(result, level, player);
}
} else {
stack.hurtAndBreak(1, player, (entity) -> {
entity.broadcastBreakEvent(player.getUsedItemHand());
});
//only hurt, but do not break -> this allows using the rod without breaking it when we just re-use a saved result.
//we break it at the beginning of this method if we are at >= max damage.
stack.hurt(1, player.getRandom(), null);
}
return stack;
}
Expand Down

0 comments on commit 1001d84

Please sign in to comment.