Jump to content

Recommended Posts

Posted

I'm trying to make an item that has a cool down that is itemstack based, not player based, so that it can be dual-wielded without creating a duplicate item that just creates clutter.  I created a capability, and it works, but the issue is trying to apply the cool down, or using any method from the CooldownTracker class. Basically crashes the game. Any idea on what the issue could be or just something that achieves something similar that I can reference would be much appreciated

 

Code (Both Pastebin and Hastebin aren't working rn for some reason)

Spoiler

public class BoltcasterItem extends ShootableItem implements IVanishable, ICoolDown {

    private final double damage;
    private final int velocity;
    public int ticks = 30;
    public CooldownTracker tracker;
    public boolean cooldown = false;

    public BoltcasterItem(double damageIn,int velocityIn, Properties builder) {
        super(builder);
        this.damage = damageIn;
        this.velocity = velocityIn;

        ItemModelsProperties.registerProperty(this, new ResourceLocation("loaded"), (stack, world, player) -> {
            if(player != null)
                return player.isHandActive() && player.getActiveItemStack() == stack ? 1.0F : player.findAmmo(stack).getCount();
            else
                return 0.0F;
        });
    }
    @Override
    public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity playerIn, Hand handIn) {
        ItemStack stack = playerIn.getHeldItem(handIn);
        boolean flag = playerIn.abilities.isCreativeMode || EnchantmentHelper.getEnchantmentLevel(Enchantments.INFINITY, stack) > 0;
        ItemStack arrowstack = playerIn.findAmmo(stack);

        if (!arrowstack.isEmpty() || flag) {
            if (arrowstack.isEmpty()) {
                arrowstack = new ItemStack(Items.ARROW);
            }
        }

        float f = getArrowVelocity(10 + this.velocity);

        boolean flag1 = playerIn.abilities.isCreativeMode || (arrowstack.getItem() instanceof ArrowItem && ((ArrowItem) arrowstack.getItem()).isInfinite(arrowstack, stack, playerIn));

        boolean flag2 = !playerIn.findAmmo(stack).isEmpty();

        if (!worldIn.isRemote) {
            if (!playerIn.abilities.isCreativeMode && !flag2) {
                worldIn.playSound((PlayerEntity) null, playerIn.getPosX(), playerIn.getPosY(), playerIn.getPosZ(), SoundEvents.BLOCK_DISPENSER_FAIL, SoundCategory.NEUTRAL, 1.0F, 1.5F);
            } else {

                ArrowItem arrowitem = (ArrowItem) (arrowstack.getItem() instanceof ArrowItem ? arrowstack.getItem() : Items.ARROW);
                AbstractArrowEntity abstractarrowentity = arrowitem.createArrow(worldIn, arrowstack, playerIn);
                abstractarrowentity = customArrow(abstractarrowentity);
                abstractarrowentity.func_234612_a_(playerIn, playerIn.rotationPitch, playerIn.rotationYaw, 0.0F, f * 3.0F, 1.0F);
                abstractarrowentity.setDamage(abstractarrowentity.getDamage() + this.damage);
                if (f == 1.0F) {
                    abstractarrowentity.setIsCritical(true);
                }

                int j = EnchantmentHelper.getEnchantmentLevel(Enchantments.POWER, stack);
                if (j > 0) {
                    abstractarrowentity.setDamage(abstractarrowentity.getDamage() + (double) j * 0.5D + 0.5D);
                }

                int k = EnchantmentHelper.getEnchantmentLevel(Enchantments.PUNCH, stack);
                if (k > 0) {
                    abstractarrowentity.setKnockbackStrength(k);
                }

                if (EnchantmentHelper.getEnchantmentLevel(Enchantments.FLAME, stack) > 0) {
                    abstractarrowentity.setFire(100);
                }

                stack.damageItem(1, playerIn, (p_220009_1_) -> {
                    p_220009_1_.sendBreakAnimation(playerIn.getActiveHand());
                });
                if (flag1 || playerIn.abilities.isCreativeMode && (arrowstack.getItem() == Items.SPECTRAL_ARROW || arrowstack.getItem() == Items.TIPPED_ARROW)) {
                    abstractarrowentity.pickupStatus = AbstractArrowEntity.PickupStatus.CREATIVE_ONLY;
                }

                worldIn.playSound((PlayerEntity) null, playerIn.getPosX(), playerIn.getPosY(), playerIn.getPosZ(), SoundEvents.ITEM_CROSSBOW_SHOOT, SoundCategory.NEUTRAL, 1.0F, 1.5F);
                worldIn.addEntity(abstractarrowentity);
            }

            if (!flag1 && !playerIn.abilities.isCreativeMode) {
                arrowstack.shrink(1);
                if (arrowstack.isEmpty()) {
                    playerIn.inventory.deleteStack(arrowstack);
                }
            }
        }

        ActionResult<ItemStack> ret = net.minecraftforge.event.ForgeEventFactory.onArrowNock(stack, worldIn, playerIn, handIn, flag);
        if (ret != null) return ret;

        if (!playerIn.abilities.isCreativeMode && !flag2) {

            stack.getCapability(CoolDownCapability.COOLDOWN_CAPABILITY).map(h -> {
                boolean canCoolDown = h.getCanCoolDown();

                //want to put a cool down tracker that isn't player side here, so that the cool down is separate among itemstacks, but crashes no matter what I put here

                ProjectDawn.LOGGER.info("empty side");

                return canCoolDown;

            }).orElse(null);


            return ActionResult.resultFail(stack);
        } else {
            playerIn.setActiveHand(handIn);


            stack.getCapability(CoolDownCapability.COOLDOWN_CAPABILITY).map(h -> {
                boolean canCoolDown = h.getCanCoolDown();

                //want to put a cool down tracker that isn't player side here, so that the cool down is separate among itemstacks, but crashes no matter what I put here

                ProjectDawn.LOGGER.info("loaded side");

                return canCoolDown;

            }).orElse(null);


            return ActionResult.resultConsume(stack);
        }
    }

    public static float getArrowVelocity(int charge) {
        float f = (float)charge / 20.0F;
        f = (f * f + f * 2.0F) / 3.0F;
        if (f > 1.0F) {
            f = 1.0F;
        }

        return f;
    }
    public AbstractArrowEntity customArrow(AbstractArrowEntity arrow) {
        return arrow;
    }

    @Override
    public Predicate<ItemStack> getInventoryAmmoPredicate() {
        return ARROWS;
    }

    @Override
    public int func_230305_d_() { return 8; }

    @Override
    public void canCoolDown(boolean canCoolDownIn) { this.cooldown = canCoolDownIn; }

    @Override
    public boolean getCanCoolDown() { return this.cooldown; }

    @Override
    public void setTracker(CooldownTracker tracker) { this.tracker = tracker; }

    @Override
    public CooldownTracker getTracker() { return tracker; }
}

 

 

Posted
4 minutes ago, diesieben07 said:

Please show it. The item class you posted does not use capabilities.

Here's the capability: 

Spoiler

public interface ICoolDown
{
    void canCoolDown(boolean canCoolDownIn);

    boolean getCanCoolDown();

    void setTracker(CooldownTracker tracker);

    CooldownTracker getTracker();
}

 

 

Posted
1 hour ago, diesieben07 said:

That is an interface which your item implements. That is not what a capability is.

Refer to the docs: https://mcforge.readthedocs.io/en/latest/datastorage/capabilities/

Oh shoot sorry! Didn't realize I sent that one by accident, was in a bit of a rush earlier. Here's the capability class

Spoiler

public class CoolDownCapability
{
    @CapabilityInject(ICoolDown.class)
    public static Capability<ICoolDown> COOLDOWN_CAPABILITY = null;

    public static void register()
    {
        CapabilityManager.INSTANCE.register(ICoolDown.class, new Storage(), DefaultCoolDownCapability::new);
    }

    public static class Storage implements Capability.IStorage<ICoolDown>
    {
        @Nullable
        @Override
        public INBT writeNBT(Capability<ICoolDown> capability, ICoolDown instance, Direction side) {
            CompoundNBT tag = new CompoundNBT();
            tag.putBoolean("canCoolDown", instance.getCanCoolDown());
            return tag;
        }

        @Override
        public void readNBT(Capability<ICoolDown> capability, ICoolDown instance, Direction side, INBT nbt) {
            boolean canCoolDown = ((CompoundNBT)nbt).getBoolean("coolDown");
            instance.canCoolDown(canCoolDown);
        }
    }
}

 

 

Posted (edited)
46 minutes ago, diesieben07 said:

And where do you add it to your item? And where do you use it? Why does your Item implement ICoolDown?

I add it here, and originally used it here too. Thinking about it, yeah it really doesn't make sense for me to implement it into my item

Spoiler


@Mod.EventBusSubscriber(modid = ProjectDawn.MOD_ID, bus = Mod.EventBusSubscriber.Bus.FORGE)
public class CoolDownHandler
{
    public CoolDownHandler() {  }

    @SubscribeEvent
    public static void onAttachCapabilities(AttachCapabilitiesEvent<ItemStack> event) {
        if (event.getObject().getItem() instanceof BoltcasterItem)
        {
                CoolDownProvider provider = new CoolDownProvider();
                event.addCapability(new ResourceLocation(ProjectDawn.MOD_ID, "cooldown"), provider);
                event.addListener(provider::invalidate);
    }

    }

}

 

I'm gonna make it be used there, like I originally had it, instead of in the class. I guess cause I was looking around other classes and thought something in the line of IVanishable it needed to be implemented in my item class

Edited by Babelincoln1809
Posted (edited)
4 hours ago, diesieben07 said:

There is no reason to use the event for your own items. Simply override initCapabilities.

Okay, so I override that and just attach the capability through there in the item class?

 

[Edit]

I got it to work by doing that, so how do I fix the cooldown issue exactly?

Edited by Babelincoln1809
Posted
4 hours ago, diesieben07 said:

What is the issue now?

Getting the cooldown to work basically. I got it so it doesn't crash the game whenever I right click, which is a step in the right direction, but still doesn't do the item cool down

Posted
11 minutes ago, diesieben07 said:

Post your updated code.

Here's the boltcaster class: https://pastebin.com/yKTnnjif

And Here's the default capability: https://pastebin.com/w3yRJDGP

I referenced how the PlayerEntity creates it's cool down tracker, and that seems to have fixed the crashing issue I had yesterday, but other than that I really can't put a finger on why it just simply doesn't work. I looked around more in the PlayerEntity class and what uses that method to see if it has something that I don't, but I haven't found anything that could resolve it

 

Posted
2 minutes ago, diesieben07 said:

Why?

Where do you call CooldownTracker#tick?

I referenced the bucket item class just to get it to work, it was the only class to override that method, I'll change that. Also, I don't have CooldownTracker#tick called anywhere, I didn't know I needed to call that

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Oh I forgot to update the title. I figured out the issue and I'm rather embarrassed to say that it was a file path issue. The game already knew I was accessing the achievements so I wasn't suppose to include advancements in the file path. Minecraft file paths have always confused me a little bit... ResourceLocation advancementId = new ResourceLocation( TheDeadRise.MODID,"adventure/spawntrigger");
    • Can someone help my with this? My forge server won't open and I'm not that good with this stuff. It gave me this error message:   C:\Users\apbeu\Desktop\Forge server>java -Xmx4G -Xms1G -jar server.jar nogui 2024-12-11 18:21:01,054 main WARN Advanced terminal features are not available in this environment [18:21:01] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 36.2.34, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, nogui] [18:21:01] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 8.1.3+8.1.3+main-8.1.x.c94d18ec starting: java version 21.0.4 by Oracle Corporation Exception in thread "main" java.lang.IllegalAccessError: class cpw.mods.modlauncher.SecureJarHandler (in unnamed module @0x402e37bc) cannot access class sun.security.util.ManifestEntryVerifier (in module java.base) because module java.base does not export sun.security.util to unnamed module @0x402e37bc         at cpw.mods.modlauncher.SecureJarHandler.lambda$static$1(SecureJarHandler.java:45)         at cpw.mods.modlauncher.api.LamdbaExceptionUtils.uncheck(LamdbaExceptionUtils.java:95)         at cpw.mods.modlauncher.SecureJarHandler.<clinit>(SecureJarHandler.java:45)         at cpw.mods.modlauncher.Launcher.lambda$new$6(Launcher.java:55)         at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708)         at cpw.mods.modlauncher.api.TypesafeMap.computeIfAbsent(TypesafeMap.java:52)         at cpw.mods.modlauncher.api.TypesafeMap.computeIfAbsent(TypesafeMap.java:47)         at cpw.mods.modlauncher.Environment.computePropertyIfAbsent(Environment.java:62)         at cpw.mods.modlauncher.Launcher.<init>(Launcher.java:55)         at cpw.mods.modlauncher.Launcher.main(Launcher.java:66)         at net.minecraftforge.server.ServerMain$Runner.runLauncher(ServerMain.java:63)         at net.minecraftforge.server.ServerMain$Runner.access$100(ServerMain.java:60)         at net.minecraftforge.server.ServerMain.main(ServerMain.java:57) C:\Users\apbeu\Desktop\Forge server>pause
    • Here is the url for the crash report if anyone can help me, please. https://mclo.gs/KGn5LWy  
    • Every single time I try and open my modpack it crashes before the game fully opens and I don't know what is wrong. I open the crash logs but I don't understand what any of it means. What do I do?
    • Hey, sorry I haven't said anything in a while. I was banned on here for sending you straight up crash logs and they banned me for spam... but I learned that these forums are for forge only and I was working with neoforge... but thank you for all the help.
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.