Jump to content

Recommended Posts

Posted (edited)

Hi, this article is more of a experience sharing instead of a tutorial, the code themselves should be self-explanatory, and the way I do things may not be the best practice, or most efficient.

Product:

zo1hIgh.png

 

I started with the textures, we need the textures/icons that are being rendered to the world, and the ones for the UI.

Kgqtirx.png

DFX7VXu.png

The blue textures are used when the option is hovered.

Then, we need to find out where the mouse is at and which one is selected, we can check the distance and angle from the screen center and decide which part it is on:

    private int getHoveringType(Minecraft minecraft)
    {
      double mX = minecraft.mouseHelper.getMouseX();
      double mY = minecraft.mouseHelper.getMouseY();
      double actualW = minecraft.getMainWindow().getWidth() / 2.0F;
      double actualH = minecraft.getMainWindow().getHeight() / 2.0F;
      double mX2 = mX - actualW;
      double mY2 = mY - actualH;
      double angle = AVAWeaponUtil.getAngleFromCoord(mX2, -mY2) + 30;
      if (Math.sqrt(mX2 * mX2 + mY2 * mY2) <= 15 * minecraft.getMainWindow().getGuiScaleFactor())
        return -1;
      if (angle > 360 || angle <= 60)
        return 0;
      return ((int) angle / 60);
    }

    public static double getAngleFromCoord(double x, double y)
    {
        double angle;
        angle = abs(atan2(x, y) * 180.0D / PI);
        if (x < 0)
            angle = 360 - angle;
        return angle;
    }

In this case the angle is 60 because 360 / 6 options = 60, and if the mouse is within radius of 15 from the screen center then no action is performed (-1)

And then the rendering can be done.

    @Override
      public void render(Minecraft minecraft, PlayerEntity player, MatrixStack stack, IPlayerAction capability, float screenWidth, float screenHeight)
    {
      float x = screenWidth / 2.0F;
      float y = screenHeight / 2.0F;
      float size = 60;
      int type = getHoveringType(minecraft);
      AVAClientUtil.blit(stack, type == -1 ? UI_BG_LIT : UI_BG, x - size, y - size, x + size, y + size);
      for (int i = 0; i < 6; i++)
      {
        stack.push();
        stack.translate(x, y, 0.0F);
        stack.rotate(Vector3f.ZP.rotationDegrees(i * 60));
        stack.translate(-x, -y, 0.0F);
        AVAClientUtil.blit(stack, type == i ? UI_BG_2_LIT : UI_BG_2, x - size, y - size, x + size, y + size);
        stack.pop();
      }
      AVAClientUtil.blit(stack, UI_BG_ICON_LAYER, x - size, y - size, x + size, y + size);
    }

    public static void blit(MatrixStack stack, @Nullable ResourceLocation texture, float x1, float y1, float x2, float y2)
    {
        if (texture != null)
            Minecraft.getInstance().getTextureManager().bindTexture(texture);
        Matrix4f matrix = stack.getLast().getMatrix();
        Tessellator tessellator = Tessellator.getInstance();
        BufferBuilder bufferbuilder = tessellator.getBuffer();
        bufferbuilder.begin(7, DefaultVertexFormats.POSITION_TEX);
        bufferbuilder.pos(matrix, x1, y2, 0.0F).tex(0.0F, 1.0F).endVertex();
        bufferbuilder.pos(matrix, x2, y2, 0.0F).tex(1.0F, 1.0F).endVertex();
        bufferbuilder.pos(matrix, x2, y1, 0.0F).tex(1.0F, 0.0F).endVertex();
        bufferbuilder.pos(matrix, x1, y1, 0.0F).tex(0.0F, 0.0F).endVertex();
        tessellator.draw();
    }

If the type is -1, then the circle at the center use the blue texture.

Otherwise if the type equals the index of the option, it uses the blue texture (or just use RenderSystem.color4f).

By rotating an identical texture we don't need to have 6 different textures for each option.

 

 

        public static boolean ACTIVE = false;
        public static Vector3d VEC = null;
        @Override
        public void tick(Minecraft minecraft, PlayerEntity player)
        {
            if (minecraft.isGameFocused() && minecraft.currentScreen == null && AVAClientConfig.ENABLE_PING_HOTKEY.get())
            {
                if (AVAClientUtil.middleMouseDown())
                {
                    if (!ACTIVE)
                    {
                        Vector3d eye = AVAWeaponUtil.getEyePositionFor(player);
                        BlockRayTraceResult result = player.world.rayTraceBlocks(new RayTraceContext(eye, eye.add(player.getLookVec().scale(100.0F)), RayTraceContext.BlockMode.VISUAL, RayTraceContext.FluidMode.NONE, player));
                        if (result.getType() != RayTraceResult.Type.MISS)
                        {
                            ACTIVE = true;
                            minecraft.mouseHelper.ungrabMouse();
                            if (minecraft.gameSettings.keyBindPickBlock.getKey().getKeyCode() == GLFW.GLFW_MOUSE_BUTTON_MIDDLE)
                                AVAClientUtil.unpressKeybind(minecraft.gameSettings.keyBindPickBlock);
                            VEC = result.getHitVec();
                        }
                    }
                }
                else
                {
                    int type = getHoveringType(minecraft);
                    if (ACTIVE && VEC != null && type != -1)
                        AVAPackets.INSTANCE.sendToServer(new PingMessage(VEC, ActivePingEffect.Type.values()[type]));
                    reset(minecraft);
                }
            }
            else reset(minecraft);
        }

If player's focusing, the middle mouse is down, then we check if there's terrain (block) in player's sight within 100 blocks, if not, reset the vec, regrab the mouse and set active to false.

MouseHelper#ungrabMouse call allows players to move mouse around the screen.

 

Once we have the VEC set (where the ping will occur), we can render a line between the center of the screen and the ping location. (White line)

AxLrJ4e.png

{
          ActiveRenderInfo info = minecraft.gameRenderer.getActiveRenderInfo();
          Vector3f view = info.getViewVector();
          Vector3d vec = info.getProjectedView().add(view.getX(), view.getY(), view.getZ());
          drawLine(stack, (float) vec.x, (float) vec.y, (float) vec.z, (float) pingVec.x, (float) pingVec.y, (float) pingVec.z, 255, 255, 255, 1.0F)
  }

    public static void drawLine(MatrixStack stack, float x1, float y1, float z1, float x2, float y2, float z2, int r, int g, int b, float a)
    {
        AVAClientUtil.drawTransparent(true);
        IRenderTypeBuffer.Impl impl = IRenderTypeBuffer.getImpl(Tessellator.getInstance().getBuffer());
        IVertexBuilder builder = impl.getBuffer(RenderType.LINES);
        Vector3d view = Minecraft.getInstance().gameRenderer.getActiveRenderInfo().getProjectedView();
        stack.push();
        stack.translate(-view.x, -view.y, -view.z);
        Matrix4f matrix = stack.getLast().getMatrix();
        builder.pos(matrix, x1, y1, z1).color(r, g, b, (int) (a * 255.0F)).endVertex();
        builder.pos(matrix, x2, y2, z2).color(r, g, b, (int) (a * 255.0F)).endVertex();
        stack.pop();
        impl.finish();
        AVAClientUtil.drawTransparent(false);
        RenderSystem.color4f(1.0F, 1.0F, 1.0F, 1.0F);
    }
                      
                      
                      

If you did not add the look offset to the camera position it will not be visible.

 

Then we send a packet to the server to notify all other players that I've ping the location.

Once players receives the location of the pings, it's time to render them.

                RenderSystem.disableDepthTest();
                AVAClientUtil.drawTransparent(true);
                Vector3d view = Minecraft.getInstance().gameRenderer.getActiveRenderInfo().getProjectedView();
                Vector3d vec = activePing.getVec();
                double distance = activePing.getVec().distanceTo(view);
                if (distance > 100.0F)
                    continue;
                renderObjectAt(minecraft, activePing, world, stack, (float) (distance / 20.0F), 0.0F, activePing.getTexture());
                double x = vec.x - view.getX();
                double y = vec.y - view.getY();
                double z = vec.z - view.getZ();
                stack.push();
                stack.translate(x, y, z);
                stack.rotate(minecraft.getRenderManager().getCameraOrientation());
                stack.rotate(Vector3f.ZP.rotationDegrees(180.0F));
                float size = (float) (distance / 200.0F);
                stack.scale(size, size, size);
                IRenderTypeBuffer.Impl impl = IRenderTypeBuffer.getImpl(Tessellator.getInstance().getBuffer());
                String text = AVACommonUtil.round(distance, 2) + "m";
                minecraft.fontRenderer.func_243247_a(new StringTextComponent(text), -minecraft.fontRenderer.getStringWidth(text) / 2.0F, 10, AVAConstants.AVA_HUD_TEXT_WHITE, false, stack.getLast().getMatrix(), impl, true, 0, 15728880);
                impl.finish();
                stack.pop();

    private static void renderObjectAt(Minecraft minecraft, EnvironmentObjectEffect object, World world, MatrixStack stack, float size, float offsetScale, ResourceLocation texture)
    {
        Vector3d vec = object.getVec();
        stack.push();
        Vector3d view = Minecraft.getInstance().gameRenderer.getActiveRenderInfo().getProjectedView();
        double x = vec.x - view.getX();
        double y = vec.y - view.getY();
        double z = vec.z - view.getZ();
        if (Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2) + Math.pow(z, 2)) > 100.0F)
            return;
        stack.translate(x, y, z);
        Direction direction = object.getDirection();
        if (direction != null)
        {
            Vector3i offset = direction.getDirectionVec();
            stack.translate(offset.getX() * offsetScale, offset.getY() * offsetScale, offset.getZ() * offsetScale);
            rotateByDirection(stack, direction);
        }
        else
        {
            stack.rotate(minecraft.getRenderManager().getCameraOrientation());
            stack.rotate(Vector3f.ZP.rotationDegrees(180.0F));
        }
        if (object.doBlend())
        {
            Color colour = new Color(world.getBlockState(object.getPos()).getMaterialColor(world, object.getPos()).colorValue);
            RenderSystem.color4f(colour.getRed() / 255.0F, colour.getGreen() / 255.0F, colour.getBlue() / 255.0F, object.getTransparency());
        }
        AVAClientUtil.blit(stack, texture, -size, -size, size, size);
        RenderSystem.color4f(1.0F, 1.0F, 1.0f, 1.0F);
        stack.pop();
    }

QTSIc8A.png

T1IxILB.png

 

In the code I change the size of the object according to the distance ( (distance / 20.0F) ), so the object will stay at similar size no matter the distance between them, and so does the text size.

The direction is always null, and doBlend is false. They are used in my other renderings.

 

 

 

Edited by poopoodice
  • Like 2
  • Thanks 1

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

    • Without Network protocol fix mod, I get kicked with a Network Protocol error when on LAN. Also, both of these issues are caused by a Null Pointer Exception/Screen cannot be null in a "Client Bound Player Combat Kill Packet".
    • You need a new "items" folder at  resources/assets/yourmodid/ there you add for every item model a .json file with the exact item/block name and fill it like this if it's an item: { "model": { "type": "minecraft:model", "model": "yourmodid:item/youritem" } } and so if its a block: { "model": { "type": "minecraft:model", "model": "yourmodid:block/youritem" } } There is also a generator for it you can do namy crazy things with it which replaces the previous hard coded Item Properties implementaion method (Bow pulling animation for example). https://misode.github.io/assets/item/
    • Hello! I'm playing a modpack (custom made) with some friends, and we have the server running on BisectHosting. We encountered a bug with an entity from The Box Of Horrors mod, that would crash the game whenever someone nearby it would log in. We tried to fix it by: 1) Editing the player.dat files to change the location of the affected players (something I had done successfully previously) 2) Updating the version of the mod we had (0.0.8.2) to the latest alpha version (0.0.8.3 However, after doing both of those, none of us are able to join the server, and we get the following errors: Server side: https://pastebin.com/J5sc3VQN Client side: Internal Server Error (that's basically all I've gotten) Please help! I've tried restoring the player data to how it was before I made the changes (Bisect allows you to restore deleted files) and deleting all of my player data files and I still get the same error. Deleting Box Of Horrors causes the error: Failed to load datapacks, cannot continue with server load.
    • Hey there! I'm trying to create a simple mod for Forge 1.21.1 that adds a few custom banner patterns that don't require any banner pattern items. To be completely honest, this is my first time modding for Minecraft, so after setting up the project in Intellij, I copied the parts of the source code from this mod on CurseForge that dealt with adding and registering banner patterns, including the lang and banner_pattern .json files. From what I understand, to add a banner pattern that doesn't require a banner pattern item, I only needed to create the registries for each pattern like in here and then register it in the main java class like here on Line 54. Additionally, in the lang/en_us.json file, add in the names for each respective banner color, and in the data/minecraft/tags/banner_pattern/no_items_required.json file, add each banner pattern that does not require a banner pattern item to make a banner. The project is able to compile when loading in Forge which makes me assume that the file structure I have is correct, but on loading a Minecraft world, this error appears in console and the loom is subsequently blank. [Worker-Main-1/ERROR] [minecraft/TagLoader]: Couldn't load tag minecraft:no_item_required as it is missing following references: *lists every added entry in no_item_required.json* The message clearly states something went wrong regarding when trying to load in the registries from the mod, but I have no clue what could be wrong with the code I have. Attached below are screenshots of what I currently have. Java Main Class Banner Registry Class File Structure Error in Console upon loading a Minecraft world What the loom shows without minecraft:no_item_required    The original mod I copied still functions completely, so if anyone can figure out why the registries for the mod I'm making isn't working, that would be greatly appreciated!    
    • Please someone help me to know how can I fix this generation error in the trees! I already uninstalled and reinstalled several mods in my modpack and can't figure out what is causing it.    
  • Topics

×
×
  • Create New...

Important Information

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