Calculate Screenspace Position from 3D Position in Java.

huangapple go评论110阅读模式
英文:

Calculate Screenspace Position from 3D Position in Java

问题

概述

你好,我正在尝试计算屏幕上路标的屏幕空间位置,但我无法弄清楚如何进行数学计算。

  1. private Vector2f calc(float partialTicks)
  2. {
  3. // 获取调整了 GUI 缩放的宽度和高度
  4. Window window = _minecraft.getWindow();
  5. int width = window.getGuiScaledWidth();
  6. int height = window.getGuiScaledHeight();
  7. // 计算屏幕中心
  8. double screenCenterX = width / 2.0;
  9. double screenCenterY = height / 2.0;
  10. // 从 Minecraft 获取玩家
  11. LocalPlayer player = _minecraft.player;
  12. assert player != null;
  13. // 玩家的朝向角度
  14. float pitch = player.getXRot();
  15. float yaw = player.getYRot();
  16. // 玩家的视野
  17. double fov = Math.toRadians(player.getFieldOfViewModifier() * 70f);
  18. float pitchRadians = (float) Math.toRadians(pitch);
  19. float yawRadians = (float) Math.toRadians(yaw);
  20. double verticalPixelPerRad = screenCenterY / fov;
  21. double horizontalPixelPerRad = screenCenterX / fov;
  22. // 玩家的位置
  23. double px = player.getX();
  24. double py = player.getY();
  25. double pz = player.getZ();
  26. // 路标的位置
  27. double wx = _warp.x();
  28. double wy = _warp.y();
  29. double wz = _warp.z();
  30. // 计算玩家位置和路标位置之间的差值
  31. double dx = wx - px;
  32. double dy = wy - py;
  33. double dz = wz - pz;
  34. // 计算玩家和路标之间的距离
  35. double distance = Math.sqrt(dx * dx + dy * dy + dz * dz);
  36. // TODO: 计算路标点相对于玩家位置和朝向的屏幕空间位置
  37. return new Vector2f(0,0);
  38. }

GitHub 仓库链接: https://github.com/DcmanProductions/The-Warp-Mod/blob/be5400678cfe3f05a8a0501ac9d2b9f3d04a4a63/common/src/main/java/chase/minecraft/architectury/warpmod/client/gui/waypoint/WaypointOverlay.java

英文:

Overview

Hi,I'm trying to calculate the screen space position of a waypoint on screen, I can't figure out the math to do so.

  1. private Vector2f calc(float partialTicks)
  2. {
  3. // Getting the gui scale adjusted width and height
  4. Window window = _minecraft.getWindow();
  5. int width = window.getGuiScaledWidth();
  6. int height = window.getGuiScaledHeight();
  7. // Calculating the center of the screen
  8. double screenCenterX = width / 2.0;
  9. double screenCenterY = height / 2.0;
  10. // Getting the player from minecraft
  11. LocalPlayer player = _minecraft.player;
  12. assert player != null;
  13. // The players looking angle
  14. float pitch = player.getXRot();
  15. float yaw = player.getYRot();
  16. // The players field of view
  17. double fov = Math.toRadians(player.getFieldOfViewModifier() * 70f);
  18. float pitchRadians = (float) Math.toRadians(pitch);
  19. float yawRadians = (float) Math.toRadians(yaw);
  20. double verticalPixelPerRad = screenCenterY / fov;
  21. double horizontalPixelPerRad = screenCenterX / fov;
  22. // The players position
  23. double px = player.getX();
  24. double py = player.getY();
  25. double pz = player.getZ();
  26. // The warps position
  27. double wx = _warp.x();
  28. double wy = _warp.y();
  29. double wz = _warp.z();
  30. // Getting the delta between the players position and the position of the warp
  31. double dx = wx - px;
  32. double dy = wy - py;
  33. double dz = wz - pz;
  34. // Calculate the distance between the player and the warp
  35. double distance = Math.sqrt(dx * dx + dy * dy + dz * dz);
  36. // TODO: Calculate the screen space position of the warp point relative to the players position and rotation
  37. return new Vector2f(0,0);
  38. }

The github repo: https://github.com/DcmanProductions/The-Warp-Mod/blob/be5400678cfe3f05a8a0501ac9d2b9f3d04a4a63/common/src/main/java/chase/minecraft/architectury/warpmod/client/gui/waypoint/WaypointOverlay.java

答案1

得分: 0

I solved the issue

  1. private static final Minecraft client = Minecraft.getInstance();
  2. public static final Matrix4f lastProjMat = new Matrix4f();
  3. public static final Matrix4f lastModMat = new Matrix4f();
  4. public static final Matrix4f lastWorldSpaceMatrix = new Matrix4f();
  5. public static Vector3d worldSpaceToScreenSpace(Vector3d pos)
  6. {
  7. Camera camera = client.getEntityRenderDispatcher().camera;
  8. int displayHeight = client.getWindow().getHeight();
  9. int[] viewport = new int[4];
  10. GL11.glGetIntegerv(GL11.GL_VIEWPORT, viewport);
  11. Vector3f target = new Vector3f();
  12. double dx = pos.x - camera.getPosition().x;
  13. double dy = pos.y - camera.getPosition().y;
  14. double dz = pos.z - camera.getPosition().z;
  15. Vector4f transformedCoordinates = new Vector4f((float) dx, (float) dy, (float) dz, 1.f).mul(lastWorldSpaceMatrix);
  16. Matrix4f matrixProj = new Matrix4f(lastProjMat);
  17. Matrix4f matrixModel = new Matrix4f(lastModMat);
  18. matrixProj.mul(matrixModel).project(transformedCoordinates.x(), transformedCoordinates.y(), transformedCoordinates.z(), viewport, target);
  19. return new Vector3d(target.x / client.getWindow().getGuiScale(), (displayHeight - target.y) / client.getWindow().getGuiScale(), target.z);
  20. }
  21. public static boolean screenSpaceCoordinateIsVisible(Vector3d pos)
  22. {
  23. return pos != null && (pos.z > -1 & pos.z < 1);
  24. }

https://github.com/DcmanProductions/The-Warp-Mod/blob/1.19.4-architectury/common/src/main/java/chase/minecraft/architectury/warpmod/client/renderer/RenderUtils.java

英文:

So I solved the issue

  1. private static final Minecraft client = Minecraft.getInstance();
  2. public static final Matrix4f lastProjMat = new Matrix4f();
  3. public static final Matrix4f lastModMat = new Matrix4f();
  4. public static final Matrix4f lastWorldSpaceMatrix = new Matrix4f();
  5. public static Vector3d worldSpaceToScreenSpace(Vector3d pos)
  6. {
  7. Camera camera = client.getEntityRenderDispatcher().camera;
  8. int displayHeight = client.getWindow().getHeight();
  9. int[] viewport = new int[4];
  10. GL11.glGetIntegerv(GL11.GL_VIEWPORT, viewport);
  11. Vector3f target = new Vector3f();
  12. double dx = pos.x - camera.getPosition().x;
  13. double dy = pos.y - camera.getPosition().y;
  14. double dz = pos.z - camera.getPosition().z;
  15. Vector4f transformedCoordinates = new Vector4f((float) dx, (float) dy, (float) dz, 1.f).mul(lastWorldSpaceMatrix);
  16. Matrix4f matrixProj = new Matrix4f(lastProjMat);
  17. Matrix4f matrixModel = new Matrix4f(lastModMat);
  18. matrixProj.mul(matrixModel).project(transformedCoordinates.x(), transformedCoordinates.y(), transformedCoordinates.z(), viewport, target);
  19. return new Vector3d(target.x / client.getWindow().getGuiScale(), (displayHeight - target.y) / client.getWindow().getGuiScale(), target.z);
  20. }
  21. public static boolean screenSpaceCoordinateIsVisible(Vector3d pos)
  22. {
  23. return pos != null && (pos.z > -1 && pos.z < 1);
  24. }

https://github.com/DcmanProductions/The-Warp-Mod/blob/1.19.4-architectury/common/src/main/java/chase/minecraft/architectury/warpmod/client/renderer/RenderUtils.java

huangapple
  • 本文由 发表于 2023年4月10日 21:15:37
  • 转载请务必保留本文链接:https://go.coder-hub.com/75977473.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定