Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I am working on a custom GUI with a tile entity that handles keyboard input via a class extending Screen. I am trying to get the result of the keyboard input, as a String, to be stored in NBT data. 

This is for version 1.15.2, here's what I've tried:

 

Variables

This is run after the enter key is pressed, to signal the end of the input.

tileentity.storage.v1 = result;

This is the storage class referred to above.

public class Storage {

    public String v1 = "";

}

When the data makes it to this point in the tile entity...

@Override
public CompoundNBT write(CompoundNBT compound)
{
  super.write(compound);

  compound.putString("v1", this.v1);

  return compound;
}

...it is reset to the default values.

Using the tick function, I was able to debug what was happening, and it appears that the data is only visible when isRemote() is true, and I'm guessing read() and write() are used when it's false.

 

SimpleChannels

I tried to use a SimpleChannel to try to get the data. Here's the code below:

This is the packet handler class.

public class PacketHandler {

    private static final String PROTOCOL_VERSION = "1";
    public static final SimpleChannel INSTANCE = NetworkRegistry.newSimpleChannel(
            new ResourceLocation("modid", "main"),
            () -> PROTOCOL_VERSION,
            PROTOCOL_VERSION::equals,
            PROTOCOL_VERSION::equals
    );

    public static void register() {
        int id = 0;

        INSTANCE.registerMessage(id++, StoragePacket.class, StoragePacket::encode, StoragePacket::decode, StoragePacket::handle);
    }

}

I call it here, yes, it's been registered:

PacketHandler.INSTANCE.sendTo(new StoragePacket("data"), this.getMinecraft().getConnection().getNetworkManager(), NetworkDirection.PLAY_TO_SERVER);

The data was then received in the handle function of the StoragePacket class successfully. 

From there, I don't know how to get this into my tile entity, and saved, and I don't know if this is the right way anyway.

 

If there's an easier way to store a string, please let me know.

 

Thanks for your help in advance!

Edited by Jack Richard

So you'll need to be creative on how you send over the information from the client to the server. Tile entities only store their position on the server. So, before you open up your screen, you should probably send over the block position of the TE to the client and then send that value back with the player. Lucky for you, forge can actually send a packet buffer with the current block pos of the TE when inputted with some extra data assuming your container factory extends IContainerFactory on registry. From there, it's all a matter of piecing it together and implementing.

 

Happy hunting!

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.