Jump to content

Recommended Posts

Posted

How can I connect IInteractionObject with my Gui?
My target is to open gui (with no container) through clicking on entity and I want to make it compatible both with client and server side.
I have my gui registred in this way in the main mod file 

		ModLoadingContext.get().registerExtensionPoint(ExtensionPoint.GUIFACTORY, ()->GuiOldMan::new);

At first I tried to make my GuiOldMan implements IInteractionObject but the whole gui is client side only so it didn't work for the server.
I am trying to open Gui using

NetworkHooks.openGui((EntityPlayerMP) player, new GuiOldMan());

I've been also trying to make separate object that implements IInteractionObject, but I don't know how to connect this object with gui.
Thanks in Advance!


 

Posted (edited)
10 minutes ago, diesieben07 said:

If your GUI is client-only just use Minecraft#displayGuiScreen. IInteractionObject and friends are for GUIs that need server<>client interaction.

yeah I have tried that using 

Quote

if(world.isRemote)

but it doesn't work when running on a server.
Also I've been trying to make it work on server using packets (server -> client -> open Gui) but it doesn't work.

Edited by Krevik
Posted (edited)
9 minutes ago, diesieben07 said:

Show your attempt at using a packet. And elaborate on "doesn't work".

When I try using Minecraft.getInstance.displayGui() inside if(world.isRemote()) I am getting crash when starting server

Attempted to load class net/minecraft/client/gui/GuiScreen for invalid dist DEDICATED_SERVER



My attempt for using packet:
ProcessInteract Method:

Spoiler

    @Override
    public boolean processInteract(EntityPlayer player, EnumHand hand)
    {
            if(player instanceof EntityPlayerMP) {
                PacketHandler.sendTo(new PacketClientOpenGuiOldMan(), (EntityPlayerMP) player);
            }
        return super.processInteract(player, hand);
    }

 


Packet Handler class:

Spoiler

public final class PacketHandler
{
    private static final String PROTOCOL_VERSION = Integer.toString(1);
    private static final SimpleChannel HANDLER = NetworkRegistry.ChannelBuilder
            .named(new ResourceLocation(MOD_ID, "channel_kathairis_"+PROTOCOL_VERSION))
            .clientAcceptedVersions(PROTOCOL_VERSION::equals)
            .serverAcceptedVersions(PROTOCOL_VERSION::equals)
            .networkProtocolVersion(() -> PROTOCOL_VERSION)
            .simpleChannel();

    public static void register()
    {
        int id = 0;
        HANDLER.registerMessage(id++, PacketClientOpenGuiOldMan.class, PacketClientOpenGuiOldMan::encode, PacketClientOpenGuiOldMan::decode, PacketClientOpenGuiOldMan.Handler::handle);

    }

    public static void sendToServer(Object msg)
    {
        HANDLER.sendToServer(msg);
    }

    public static void sendTo(Object msg, EntityPlayerMP player)
    {
        if (!(player instanceof FakePlayer))
        {
            HANDLER.sendTo(msg, player.connection.netManager, NetworkDirection.PLAY_TO_CLIENT);
        }
    }

    public static void sendToAll(Object msg){
        for (EntityPlayerMP player : ServerLifecycleHooks.getCurrentServer().getPlayerList().getPlayers())
        {
            sendTo(msg,player);
        }
    }
}

 

 

PacketClientOpenGuiOldMan class:

Spoiler

public class PacketClientOpenGuiOldMan  {

    public PacketClientOpenGuiOldMan(){

    }

    public static void encode(PacketClientOpenGuiOldMan msg, PacketBuffer buf)
    {
    }

    public static PacketClientOpenGuiOldMan decode(PacketBuffer buf)
    {
        return new PacketClientOpenGuiOldMan();
    }

    public static class Handler
    {
        public static void handle(final PacketClientOpenGuiOldMan message, Supplier<NetworkEvent.Context> ctx)
        {
            if(ctx.get().getDirection()== NetworkDirection.PLAY_TO_CLIENT){
                Minecraft.getInstance().displayGuiScreen(new GuiOldMan());
            }
            ctx.get().setPacketHandled(true);
        }
    }
}

 


When trying to use this way, I am getting the same error when trying run the server - attempted to load class for invalid dist

Edited by Krevik
Posted
2 minutes ago, diesieben07 said:

Well, yes, you cannot access client-only classes from common code. You have to use the methods in DistExecutor.

ohh? ? could you tell me sth more or point to any thing that could help me?

Posted
1 minute ago, diesieben07 said:

Have you looked at the methods the class provides? They have some documentation and are in general quite straightforward...

Well only one method here contains any documentation. But you're right they seem easy, I should be able to do that now. Thanks a lot!

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

    • I can't understand the logs, so I'm hoping someone could tell me what's causing the issues. https://pastebin.com/d1XPxCes
    • Hello I'm currently making an Item that thrusts you to viewing direction, and I referenced riptide code of trident for my item. @Override public InteractionResultHolder<ItemStack> use(Level pLevel, Player pPlayer, InteractionHand pUsedHand) { if(!pLevel.isClientSide() && pUsedHand == InteractionHand.MAIN_HAND && pPlayer.isOnGround()){ Impale(pPlayer, pUsedHand); pPlayer.getCooldowns().addCooldown(this, 40); } return super.use(pLevel, pPlayer, pUsedHand); } public void Impale(Player pPlayer, InteractionHand pUsedHand) { float playerYRot = pPlayer.getYRot(); float xForce = -Mth.sin(playerYRot * ((float)Math.PI / 180F)) * Mth.cos((float)Math.PI / 180F); float yForce = 100.6F; float zForce = Mth.cos(playerYRot * ((float)Math.PI / 180F)) * Mth.cos((float)Math.PI / 180F); float stabilizedForce = Mth.sqrt(xForce * xForce + zForce * zForce); xForce /= stabilizedForce; zForce /= stabilizedForce; pPlayer.push((double)xForce, (double)yForce, (double)zForce); pPlayer.sendSystemMessage(Component.literal(playerYRot + " " + xForce + " " + yForce + " " + zForce + " " + stabilizedForce + "shoo")); } I sure edited a lot from source code but this isn't working somehow? the sendSystemMessage works correctly. It prints value of variables and string, but the force isn't applying to player. how can I make this to work? Thanks.
    • i tried putting a modpack together and cant get this working no matter what i have tried log: https://pastebin.com/uqz1aKiY
    • We have an event for an Entity being struck by lighting, but doesn't look like we have one for Blocks. And unfortunately, looking at it, the LightingBolt entity doesn't have any context on why it was registered, so you wouldn't be able to get the source context. What are you trying to accomplish with this event?
    • Hey guys, I'm trying to use the simple planes mod https://www.curseforge.com/minecraft/mc-mods/simple-planes with a nuclear bombs mod https://www.curseforge.com/minecraft/mc-mods/nuclear-bombs . The simple planes mod has a cargo plane that can drop tnt, and i want it to work with the nuclear bombs. I added this JSON file from chatGPT to the payloads folder in simple planes (because the nukes couldn't even get stored in the plane in the first place), but this only allows the nuke to drop but doesn't explode: https://mclo.gs/3uEQIX2 . This nuke mod requires a redstone signal and then manual activation, which makes this tougher i imagine. If someone could write me a code for the payload folder for simpleplanes, something that even tampers with the nuke mod, or any general suggestions that would be great!  Many Thanks
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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