Jump to content

Recommended Posts

Posted

The abstractList is always rendering a dirt backgorund, even I overrided the method, then it'll caused a no respond, is there correct way to change it?

Here's my code:

package com.chaos.ekiLib.screen;

import com.chaos.ekiLib.api.EkiLibApi;
import com.chaos.ekiLib.station.data.Station;
import com.mojang.blaze3d.matrix.MatrixStack;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.widget.list.ExtendedList;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.util.text.TranslationTextComponent;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;

@OnlyIn(Dist.CLIENT)
public class ScreenStationSelection extends ScreenBase {
    private ScreenStationSelection.List list;
    private final boolean selectMode;

    public ScreenStationSelection(int dimID, PlayerEntity player, boolean selectMode) {
        super(new TranslationTextComponent("eki.screen.station_selection"), dimID, player);
        this.selectMode = selectMode;
    }

    protected void init() {
        this.list = new ScreenStationSelection.List(this.minecraft);
        this.children.add(this.list);
        super.init();
    }

    public void render(MatrixStack matrixStack, int mouseX, int mouseY, float partialTicks) {
        this.list.render(matrixStack, mouseX, mouseY, partialTicks);
        drawCenteredString(matrixStack, this.font, this.title, this.width / 2, 16, 16777215);
        this.renderBackground(matrixStack);
        super.render(matrixStack, mouseX, mouseY, partialTicks);
    }

    @OnlyIn(Dist.CLIENT)
    class List extends ExtendedList<ScreenStationSelection.List.StationEntry> {
        public List(Minecraft mcIn) {
            super(mcIn, ScreenStationSelection.this.width, ScreenStationSelection.this.height, 32, ScreenStationSelection.this.height - 65 + 4, 18);

            for (Station station : EkiLibApi.getStationList(ScreenStationSelection.this.dimID)){
                this.addEntry(new StationEntry(station));
            }

            if (this.getSelected() != null) {
                this.centerScrollOn(this.getSelected());
            }

        }

        protected int getScrollbarPosition() {
            return super.getScrollbarPosition() + 20;
        }

        public int getRowWidth() {
            return super.getRowWidth() + 50;
        }

        protected void renderBackground(MatrixStack matrixStack) {
            ScreenStationSelection.this.renderBackground(matrixStack);
        }

        protected boolean isFocused() {
            return ScreenStationSelection.this.getListener() == this;
        }

        @OnlyIn(Dist.CLIENT)
        public class StationEntry extends ExtendedList.AbstractListEntry<ScreenStationSelection.List.StationEntry> {
            private final Station station;

            public StationEntry(Station station) {
                this.station = station;
            }

            public void render(MatrixStack p_230432_1_, int p_230432_2_, int p_230432_3_, int p_230432_4_, int p_230432_5_, int p_230432_6_, int p_230432_7_, int p_230432_8_, boolean p_230432_9_, float p_230432_10_) {
                String s = this.station.getName() + " - " + this.station.getFormmatedPosition();
                ScreenStationSelection.this.font.func_238406_a_(p_230432_1_, s, (float) (ScreenStationSelection.List.this.width / 2 - ScreenStationSelection.this.font.getStringWidth(s) / 2), (float) (p_230432_3_ + 1), 16777215, true);
            }

            public boolean mouseClicked(double mouseX, double mouseY, int button) {
                if (button == 0) {
                    this.select();
                    return true;
                } else {
                    return false;
                }
            }

            private void select() {
                ScreenStationSelection.List.this.setSelected(this);
            }
        }
    }
}

 

  • 2 months later...
Posted

I already answered it in another post.
Don't override the method as it isn't necessary

In your list constructor, call the correct method here:
(link)

Quote

There is a method that allows you to get rid of it:
func_244606_c(false)


func_244606_c(false) // Disables dirt outline
func_244605_b(false) // Disables black background

Note that false disables them, whilst true enables them.

 

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.