Jump to content

Recommended Posts

Posted

Hello,

 

i'm writing a mod which adds a set of different Capabilities for Entities. Actually i'm giving any Entity my capabilities on registration, which creates a lot of unnecessary overhead.

 

Please add some Method to add/remove Capabilities from Entities on the fly. Thanks :)

 

Posted (edited)

well its kinda lot of code... actually i'm attaching the capabilities to every EntityLiving/EntityMinecart by catching the attachCapability event.

 

every capability has a wrapper around it which is able to attach/detach the capability. so i dont see any place to optimize here except of adding a wrapper around all capabilities so that i end up with one capability... but even those wrappers already used are annoying me ;)

 

its just that multiplayer server hold tons of entities cached and i would like to keep my overhead at the possible minimum. And Capabilities would be a great Tool for me if i could just add/remove them on the fly to a entity. 

 

@dieSieben07 also while you are reading this thread anyways, thanks for all the questions you answered before on the forums, that helped a lot to get started with modding minecraft :)

 

well thats one of my capabilities, the attaching/detaching is managed within the capability provider

public class authorityCapability implements ICapabilitySerializable<NBTBase> {
    @CapabilityInject(IauthorityCapability.class)
    public static Capability<IauthorityCapability> AUTHORITY = null;

    private authorityProvider instance = null;

    public static void register(){
        CapabilityManager.INSTANCE.register(IauthorityCapability.class, new authorityStorage(), authorityProvider.class);
        MinecraftForge.EVENT_BUS.register(new eventHandler());
        capabilities.register(AUTHORITY);}

    public authorityCapability(Entity e){
        instance = new authorityProvider(e);
    }

    public boolean hasCapability(Capability<?> capability, @Nullable EnumFacing facing) {
        return capability.equals(AUTHORITY);
    }

    @Nullable
    public <T> T getCapability(Capability<T> capability, @Nullable EnumFacing facing) {
        if(!capability.equals(AUTHORITY))
            return null;

        return AUTHORITY.<T> cast(instance);
    }

    @Override
    public NBTBase serializeNBT(){
        if(instance == null)
            return new NBTTagCompound();

        return AUTHORITY.getStorage().writeNBT(AUTHORITY, instance, null);
    }

    @Override
    public void deserializeNBT(NBTBase nbt){
        if(instance != null)
            AUTHORITY.getStorage().readNBT(AUTHORITY, instance, null, nbt);
    }

    public static class eventHandler {
        private static final ResourceLocation KEY = new ResourceLocation(OpenEntity.MODID, "authorityCapability");

        @SubscribeEvent
        public void StartTracking(PlayerEvent.StartTracking event){
            if(!event.getTarget().hasCapability(AUTHORITY, null))
                return;

            if(!event.getTarget().getCapability(AUTHORITY, null).isAttached())
                return;

            event.getTarget().getCapability(AUTHORITY, null).syncToClient(event.getEntityPlayer());
        }

        @SubscribeEvent
        public void attachCapability(AttachCapabilitiesEvent<Entity> event) {
            Entity entity = event.getObject();

            if (!giveCapToEntity(entity))
                return;

            if(entity.hasCapability(AUTHORITY, null))
                return;

            //Logger.getLogger(OpenEntity.MODID).info("adding cap INVENTORY " + entity.world.isRemote);

            event.addCapability(KEY, new authorityCapability(entity));
        }

        @SubscribeEvent
        public void onDeath(LivingDeathEvent event) {
            if(event.getEntity().hasCapability(AUTHORITY, null))
                event.getEntity().getCapability(AUTHORITY, null).detach(null);
        }

        public static boolean giveCapToEntity(Entity e){
            if(e instanceof EntityCreature)
                return true;

            if(e instanceof EntityMinecart)
                return true;

            return false;
        }
    }
}

 

Edited by ben_mkiv
Posted

So my problem with this is that my Capability is used to attach a OpenComputers machine to Mobs for example. Which will be used on like 1-2 Mobs for each user, while every other mob has to get the capability handler assigned even when never using it.

 

maybe capabilities are the wrong tool for that, but i dont know how else to attach custom data to a mob

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

    • When I first heard about Bitcoin back in 2018, I was skeptical. The idea of a decentralized, digital currency seemed too good to be true. But I was intrigued as I learned more about the technology behind it and its potential. I started small, investing just a few hundred dollars, dipping my toes into the cryptocurrency waters. At first, it was exhilarating to watch the value of my investment grow exponentially. I felt like I was part of the future, an early adopter of this revolutionary new asset. But that euphoria was short-lived. One day, I logged into my digital wallet only to find it empty - my Bitcoin had vanished without a trace. It turned out that the online exchange I had trusted had been hacked, and my funds were stolen. I was devastated, both financially and emotionally. All the potential I had seen in Bitcoin was tainted by the harsh reality that with decentralization came a lack of regulation and oversight. My hard-earned money was gone, lost to the ether of the digital world. This experience taught me a painful lesson about the price of trust in the uncharted territory of cryptocurrency. While the technology holds incredible promise, the risks can be catastrophic if you don't approach it with extreme caution. My Bitcoin investment gamble had failed, and I was left to pick up the pieces, wiser but poorer for having placed my faith in the wrong hands. My sincere appreciation goes to MUYERN TRUST HACKER. You are my hero in recovering my lost funds. Send a direct m a i l ( muyerntrusted ( @ ) mail-me ( . )c o m ) or message on whats app : + 1 ( 4-4-0 ) ( 3 -3 -5 ) ( 0-2-0-5 )
    • You could try posting a log (if there is no log at all, it may be the launcher you are using, the FAQ may have info on how to enable the log) as described in the FAQ, however this will probably need to be reported to/remedied by the mod author.
    • So me and a couple of friends are playing with a shitpost mod pack and one of the mods in the pack is corail tombstone and for some reason there is a problem with it, where on death to fire the player will get kicked out of the server and the tombstone will not spawn basically deleting an entire inventory, it doesn't matter what type of fire it is, whether it's from vanilla fire/lava, or from modded fire like ice&fire/lycanites and it's common enough to where everyone on the server has experienced at least once or twice and it doesn't give any crash log. a solution to this would be much appreciated thank you!
    • It is 1.12.2 - I have no idea if there is a 1.12 pack
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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