Jump to content

Recommended Posts

Posted

Heyho guys!

 

I came across this question while I was creating my new mod.

I know three different ways to set up proper event handlers, like the examples here:

 

  Reveal hidden contents

 

 

I wonder, which of these different methods is the best one regarding orderliness of the code, time efficiency of the program and amount of code. Or is this indifferent altogether?

 

Please tell me what you think about this!

Posted

I use a variant of #2, myself

 

public void initEventHandlers() {
  EventHandler evHandle = new EventHandler();
  MinecraftForge.EVENT_BUS.register(evHandle);
  FMLCommonHandler.instance().bus().register(evHandle); //OBJECT REUSE, HEYO
}

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Personally I've separated:

Common:

*ForgeEvents

*FMLEvents

Client:

*ClientForgeEvents

 

and hadn't a chance to make ClientFMLEvents yet.

 

I register whole class once in proxy and in case of Client events I do that in client proxy ofc.

 

I doubt that there is any difference here other than readability.

  Quote

1.7.10 is no longer supported by forge, you are on your own.

Posted
  On 3/16/2015 at 6:25 PM, Draco18s said:

I use a variant of #2, myself

 

public void initEventHandlers() {
  EventHandler evHandle = new EventHandler();
  MinecraftForge.EVENT_BUS.register(evHandle);
  FMLCommonHandler.instance().bus().register(evHandle); //OBJECT REUSE, HEYO
}

I take it one step further and make my event handler final. Then I store the singleton instance of the event handler in itself.

Maker of the Craft++ mod.

Posted

I usually register event handler like this:

...
public class MyItem extends Item {
...
    public MyItem() {
        ...
        MinecraftForge.EVENT_BUS.register(this);
        ...
    }

    @SubscribeEvent
    public void onXX(XX event) {
        ...
    }
}

 

But I have no idea about whether it's not a efficient way(both programming and executing).

Of course, this event has close relations with the item.

Author of Tao Land Mod.

width=200 height=69http://taoland.herbix.me/images/1/14/TaoLandLogo.png[/img]

Also, author of RenderTo

----

I'm not an English native speaker. I just try my best.

Posted
  On 3/17/2015 at 5:22 AM, Bedrock_Miner said:

Doesn't this make your code a bit messy if every single event your mod is receiving is located in one class?

If you use comments and JavaDoc it will look much nicer.

Maker of the Craft++ mod.

Posted

I doubt that having more or fewer classes really makes a difference as far as efficiency.

 

If your mod is running slowly, profile your code and see where the bottleneck is, then optimize that, but don't prematurely sacrifice clean organization of your project for what you imagine may be more efficient code.

 

In my case, I keep logical groups of events together in the same class, e.g. all my combat-related events go in CombatEventHandler class, whereas my world gen events go in GenEventHandler, etc. Some of these are registered to multiple buses, but most just one. For GuiOverlays, I make one class per overlay, treating it like any other GUI even though it uses an event.

 

Keeping client events separate is also nice, as then you can have a class member for Minecraft.getMinecraft and other such things that would crash your game otherwise.

 

Everyone has their personal preferences, and you should just choose one that makes sense for you and your project.

Posted

I like keeping the number of event handling classes small because then it is less of a pain to register them and you won't forget to register one.  To me having lots of separate classes is "messier" than having them all grouped in one handler.  I do create a separate handler class for each bus though, so I have the regular one, the FML one, ore gen one, terrain gen one.  So basically one handler registered to each bus.

 

I suppose it depends on how complicated your event handling methods are.  Most of mine are about 15 lines or less of code, so it is not too unwieldy to have them all in one class.

 

As mentioned above, I don't think there would necessarily be any efficiency effect in the different approaches, although I suspect that having more classes means that the event bus needs to iterate more (would need a compiler expert to comment on that).  But mostly it is a coding style preference.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

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

    • Hello , when I try to launch the forge installer it just crash with a message for 0,5 secondes. I'm using java 17 to launch it. Here's the link of the error :https://cdn.corenexis.com/view/?img=d/ma24/qs7u4U.jpg  
    • You will find the crash-report or log in your minecraft directory (crash-report or logs folder)
    • Use a modpack which is using these 2 mods as working base:   https://www.curseforge.com/minecraft/modpacks/life-in-the-village-3
    • inicie un mundo donde instale Croptopia y Farmer's Delight, entonces instale el addon Croptopia Delight pero no funciona. es la version 1.18.2
    • Hello all. I'm currently grappling with the updateShape method in a custom class extending Block.  My code currently looks like this: The conditionals in CheckState are there to switch blockstate properties, which is working fine, as it functions correctly every time in getStateForPlacement.  The problem I'm running into is that when I update a state, the blocks seem to call CheckState with the position of the block which was changed updated last.  If I build a wall I can see the same change propagate across. My question thus is this: is updateShape sending its return to the neighbouring block?  Is each block not independently executing the updateShape method, thus inserting its own current position?  The first statement appears to be true, and the second false (each block is not independently executing the method). I have tried to fix this by saving the block's own position to a variable myPos at inception, and then feeding this in as CheckState(myPos) but this causes a worse outcome, where all blocks take the update of the first modified block, rather than just their neighbour.  This raises more questions than it answers, obviously: how is a different instance's variable propagating here?  I also tried changing it so that CheckState did not take a BlockPos, but had myPos built into the body - same problem. I have previously looked at neighbourUpdate and onNeighbourUpdate, but could not find a way to get this to work at all.  One post on here about updatePostPlacement and other methods has proven itself long superceded.  All other sources on the net seem to be out of date. Many thanks in advance for any help you might offer me, it's been several days now of trying to get this work and several weeks of generally trying to get round this roadblock.  - Sandermall
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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