Jump to content

What's the most efficient way to use event handlers?


Bedrock_Miner

Recommended Posts

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:

 

Event Handler 1:

 

Main.class:

public void initEventHandlers() {
  MinecraftForge.EVENT_BUS.register(new EventHandlerGameOverlay());
  FMLCommonHandler.instance().bus().register(new EventHandlerInput());
}

EventHandlerGameOverlay.class:

@SubscribeEvent
public void onGameOverlay(RenderGameOverlayEvent e) {
  [...]
}

EventHandlerInput.class:

@SubscribeEvent
public void onKeyPressed(KeyInputEvent e) {
  [...]
}

@SubscribeEvent
public void onMouse(MouseEvent e) {
  [...]
}

Basic idea of this event handler type: Every kind of event has its own event handler, so that they are logically divided into seperate classes. Every eventhandler is registered seperately.

Event Handler 2:

 

Main.class:

public void initEventHandlers() {
  MinecraftForge.EVENT_BUS.register(new EventHandler());
  FMLCommonHandler.instance().bus().register(new EventHandler());
}

EventHandler.class:

@SubscribeEvent
public void onGameOverlay(RenderGameOverlayEvent e) {
  [...]
}

@SubscribeEvent
public void onKeyPressed(KeyInputEvent e) {
  [...]
}

@SubscribeEvent
public void onMouse(MouseEvent e) {
  [...]
}

Basic idea of this event handler type: Every event is handled in a single class. This class is registered to both event buses.

Event Handler 3:

 

Main.class:

public void initEventHandlers() {
  MinecraftForge.EVENT_BUS.register(new EventHandlerController());
  FMLCommonHandler.instance().bus().register(new EventController());
}

EventHandlerController.class:

SubscribeEvent
public void onGameOverlay(RenderGameOverlayEvent e) {
  EventHandlerGameOverlay.onGameOverlay(e);
}

@SubscribeEvent
public void onKeyPressed(KeyInputEvent e) {
  EventHandlerInput.onKeyPressed(e);
}

@SubscribeEvent
public void onMouse(MouseEvent e) {
  EventHandlerInput.onMouse(e);
}

EventHandlerGameOverlay.class:

public void onGameOverlay(RenderGameOverlayEvent e) {
  [...]
}

EventHandlerInput.class:

public void onKeyPressed(KeyInputEvent e) {
  [...]
}

public void onMouse(MouseEvent e) {
  [...]
}

Basic idea of this event handler type: The event handlers are located in seperate classes to be logically divided but they are called by a single event handler which is the only handler of this mod which is registered to the buses.

 

 

 

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!

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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/

Link to comment
Share on other sites

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

    • today i downloaded forge 1.20.1 version 47.2.0 installed it in my .minecraft and installed the server, with and without mod it literally gives the same error, so i went to see other versions like 1.17 and it worked normally   https://paste.ee/p/VxmfF
    • If you're seeking an unparalleled solution to recover lost or stolen cryptocurrency, let me introduce you to GearHead Engineers Solutions. Their exceptional team of cybersecurity experts doesn't just restore your funds; they restore your peace of mind. With a blend of cutting-edge technology and unparalleled expertise, GearHead Engineers swiftly navigates the intricate web of the digital underworld to reclaim what's rightfully yours. In your moment of distress, they become your steadfast allies, guiding you through the intricate process of recovery with transparency, trustworthiness, and unwavering professionalism. Their team of seasoned web developers and cyber specialists possesses the acumen to dissect the most sophisticated schemes, leaving no stone unturned in their quest for justice. They don't just stop at recovering your assets; they go the extra mile to identify and track down the perpetrators, ensuring they face the consequences of their deceitful actions. What sets  GearHead Engineers apart is not just their technical prowess, but their unwavering commitment to their clients. From the moment you reach out to them, you're met with compassion, understanding, and a resolute determination to right the wrongs inflicted upon you. It's not just about reclaiming lost funds; it's about restoring faith in the digital landscape and empowering individuals to reclaim control over their financial futures. If you find yourself ensnared in the clutches of cybercrime, don't despair. Reach out to GearHead Engineers and let them weave their magic. With their expertise by your side, you can turn the tide against adversity and emerge stronger than ever before. In the realm of cybersecurity, GearHead Engineers reigns supreme. Don't just take my word for it—experience their unparalleled excellence for yourself. Your journey to recovery starts here.
    • Ok so this specific code freezes the game on world creation. This is what gets me so confused, i get that it might not be the best thing, but is it really so generation heavy?
    • Wizard web recovery has exhibited unparalleled strength in the realm of recovery. They stand out as the premier team to collaborate with if you encounter withdrawal difficulties from the platform where you’ve invested. Recently, I engaged with them to recover over a million dollars trapped in an investment platform I’d been involved with for months. I furnished their team with every detail of the investment, including accounts, names, and wallet addresses to which I sent the funds. This decision proved to be the best I’ve made, especially after realizing the company had scammed me.   Wizard web recovery ensures exemplary service delivery and ensures the perpetrators face justice. They employ advanced techniques to ensure you regain access to your funds. Understandably, many individuals who have fallen victim to investment scams may still regret engaging in online services again due to the trauma of being scammed. However, I implore you to take action. Seek assistance from Wizard Web Recovery today and witness their remarkable capabilities. I am grateful that I resisted their enticements, and despite the time it took me to discover Wizard web recovery, they ultimately fulfilled my primary objective. Without wizard web recovery intervention, I would have remained despondent and perplexed indefinitely.
    • I've tested the same code on three different envionrments (Desktop win10, desktop Linux and Laptop Linux) and it kinda blows up all the same. Gonna try this code and see if i can tune it
  • Topics

×
×
  • Create New...

Important Information

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