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

What is the best way to create a crafting table in 1.19.

 

Currently i have this. What should i use instead of use and getMenuProvider

/**
 * @see CraftingTableBlock
 */
public class OmnitrixCrafter extends Block {
    public static final DirectionProperty FACING = HorizontalDirectionalBlock.FACING;
    private static final Component CONTAINER_TITLE =
            Component.translatable("container.omnitrix_crafter");

    public OmnitrixCrafter() {
        super(Properties.of(Material.STONE).strength(2).sound(SoundType.STONE).noCollission());

    }

    @Override
    public InteractionResult use(BlockState p_52233_, Level p_52234_, BlockPos p_52235_,
            Player p_52236_, InteractionHand p_52237_, BlockHitResult p_52238_) {
        if (p_52234_.isClientSide) {
            return InteractionResult.SUCCESS;
        } else {
            p_52236_.openMenu(p_52233_.getMenuProvider(p_52234_, p_52235_));
            p_52236_.awardStat(Stats.INTERACT_WITH_CRAFTING_TABLE);
            return InteractionResult.CONSUME;
        }
    }

    @Override
    public MenuProvider getMenuProvider(BlockState p_52240_, Level p_52241_, BlockPos p_52242_) {
        return new SimpleMenuProvider((p_52229_, p_52230_, p_52231_) -> {
            return new CraftingMenu(p_52229_, p_52230_,
                    ContainerLevelAccess.create(p_52241_, p_52242_));
        }, CONTAINER_TITLE);
    }
}

 

Unfortunately you can not simply extends the CraftingMenu since you need a custom MenuType.
But you can copy the full logic of the CraftingMenu and replace the MenuType in the constructor and add to the client constructor a FriendlyByteBuf,
then you need to change the logic in #stillValid. You can return true or copy the vanilla logic and do this for your CraftingTableBlock.

For the Screen you can do the same thing, you only need to change the AbstractContainerMenu to your CraftingMenu.
Then you need to register the Screen in FMLClientSetupEvent in #enqueueWork via MenuScreens#register.

Note you need to use NetworkHooks#openScreen for your CraftingMenu.

Quote

Unfortunately you can not simply extends the CraftingMenu since you need a custom MenuType.

That's not totally true. You can subclass CraftingMenu as long as you override 2 key methods

    public class MyCraftingMenu extends CraftingMenu {

        private final ContainerLevelAccess access;

        public MyCraftingMenu(int p_39356_, Inventory p_39357_, ContainerLevelAccess p_39358_) {
            super(p_39356_, p_39357_, p_39358_);
            this.access = p_39358_;
        }

        public MyCraftingMenu(int p_39353_, Inventory p_39354_) {
            this(p_39353_, p_39354_, ContainerLevelAccess.NULL);
        }

        // Override to return your menu type that identifies the screen to use
        @Override
        public MenuType<?> getType() {
            return MY_MENU_TYPE.get();
        }

        // Override to identify the block instance (used to force the user out of the screen if the block is destroyed)
        @Override
        public boolean stillValid(Player p_39368_) {
            return stillValid(this.access, p_39368_, MY_CRAFTING_BLOCK.get());
        }
    }

 

Of course this assumes the vanilla CraftingMenu is a useful for what you want to display on the screen.

If your crafting screen is radically different you will want your own AbstractContainerMenu implementation with the forge additions described above.

 

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

27 minutes ago, warjort said:

That's not totally true. You can subclass CraftingMenu as long as you override 2 key methods

This possibility exists i know, it's not the recommended way to do.

By far the best way would be a PR that allows opening vanilla menus for modded Blocks.

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.