Jump to content

[Forge 1.14] How to get an Overlay from in an event


lizzyd710

Recommended Posts

So I'm working on a mod that allows users to move the subtitles, and I figured out the events and stuff (for the most part), and understand that I probably have to make a Client Proxy for stuff too. Maybe I'm missing something, but I have some questions about getting the SubtitleOverlay in the event. I don't want to make new subtitles, I just want to change the position. Is there a way for me to get the game's subtitle overlay from the event? This is a snippet of my code:
 

@SubscribeEvent(receiveCanceled = true)
public void onEvent(RenderGameOverlayEvent.Pre event) {
    if(event.getType() == RenderGameOverlayEvent.ElementType.SUBTITLES) {
        // this is where the magic happens
        LOGGER.info("SUBTITLE PRERENDER EVENT");
        Minecraft mc = Minecraft.getInstance();
    }
}

I know I can't directly access the games SubtitleOverlayGui because it's protected, but is there some other way, or do I have to write a new class or something? (Sorry for the questions and rambling, I'm not used to posting on forums/asking for help)

Link to comment
Share on other sites

By "copy what SubtitleOverlayGui does and register an ISoundEventListener," do you mean make a new class that extends SubtitleOverlayGui? Could you explain a bit more or do you have a link to an example or explanation?

Edited by lizzyd710
Link to comment
Share on other sites

5 hours ago, diesieben07 said:

You could extend it, yes, but you wouldn't gain much from that. I am not sure why I need to explain the word "copy" to you.

i know what copy means, but I don't know where to copy it. Do you mean copy what SubtitleOverlayGUI does into the onEvent method and register that as an ISoundEventListener? 

Link to comment
Share on other sites

2 hours ago, diesieben07 said:

You need to register an ISoundEventListener. Just like SubtitleOverlayGUI does.

Please try to actually look at the code and understand what it's doing. It is not hard.

As is evidenced by my profile and my thread, I am new to Minecraft modding. I understand that I'm probably missing something obvious and how it can probably be frustrating to an experienced modder like yourself, but I too am frustrated. If I wasn't having trouble I wouldn't be creating this thread. I have looked at the code, and that is how I know that I cannot get the client's SubtitleOverlayGUI since it is a protected field and there is no method that gets the overlay. If you could provide an example of what you are saying, I think that would clear up my confusion.

Link to comment
Share on other sites

2 hours ago, lizzyd710 said:

it is a protected field and there is no method that gets the overlay

Since its protected, you can either extend the class, use an AccessTransformer or use Reflection.

  • Like 1

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

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



×
×
  • Create New...

Important Information

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