gpt4 book ai didi

java - LWJGL 3 不会划线

转载 作者:行者123 更新时间:2023-12-01 07:04:36 26 4
gpt4 key购买 nike

我正在尝试与 LWJGL 3 划清界限。它可以编译,并且所有 native 都已正确设置。我在 Ubuntu 上运行。我真的不明白问题出在哪里;窗口初始化并且背景是正确的清晰颜色,但线条不会绘制。我几乎完全从他们的新网站上找到的唯一示例中复制了代码。我不知道我做错了什么。

import static org.lwjgl.glfw.GLFW.*;
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.system.MemoryUtil.NULL;

import java.awt.DisplayMode;
import java.nio.ByteBuffer;

import org.lwjgl.glfw.GLFWErrorCallback;
import org.lwjgl.glfw.GLFWKeyCallback;
import org.lwjgl.glfw.GLFWvidmode;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GLContext;
import org.lwjgl.util.Display;
import org.lwjgl.util.glu.GLU;

public class Main {
// We need to strongly reference callback instances.
private static GLFWErrorCallback errorCallback;
private static GLFWKeyCallback keyCallback;
static final int INIT_WIDTH = 300;
static final int INIT_HEIGHT = 300;

// The window handle
private static long window;

public static boolean verbose = true;

public static void init() {
final String WINDOW_TITLE = "WINDOW";

vPrint("Initializing GLFW...");
if (glfwInit() != GL11.GL_TRUE) {
throw new IllegalStateException("Unable to initialize GLFW");
}
vPrint("Done!\n");

//Window will be hidden after creation
glfwWindowHint(GLFW_VISIBLE, GL_FALSE);
//Window will be resizable
glfwWindowHint(GLFW_RESIZABLE, GL_TRUE);

vPrint("Creating window...");
window = glfwCreateWindow(INIT_WIDTH, INIT_HEIGHT, WINDOW_TITLE, NULL, NULL);
if (window == NULL) {
throw new RuntimeException("Failed to create the GLFW window");
} else {
vPrint("Done!\n");
}

//Setup a key callback. It will be called every time a key is pressed, repeated or released.
glfwSetKeyCallback(window, keyCallback = new GLFWKeyCallback() {
@Override
public void invoke(long window, int key, int scancode, int action, int mods) {
if ( key == GLFW_KEY_ESCAPE && action == GLFW_RELEASE )
glfwSetWindowShouldClose(window, GL_TRUE); // We will detect this in our rendering loop
}
});

// Get the resolution of the primary monitor
ByteBuffer vidmode = glfwGetVideoMode(glfwGetPrimaryMonitor());
// Center our window
glfwSetWindowPos(
window,
(GLFWvidmode.width(vidmode) - INIT_WIDTH) / 2,
(GLFWvidmode.height(vidmode) - INIT_HEIGHT) / 2
);

// Make the OpenGL context current
glfwMakeContextCurrent(window);
// Enable v-sync
glfwSwapInterval(1);

// Make the window visible
glfwShowWindow(window);
GLContext.createFromCurrent();

//Set window clear color
glClearColor(0.5f, 0.0f, 0.0f, 0.0f);

initOpenGL();
}

public static void main(String[] args) {
try {
init();
loop();

glfwDestroyWindow(window);
keyCallback.release();
} finally {
glfwTerminate();
errorCallback.release();
}
}

public static void loop() {
// Run the rendering loop until the user has attempted to close
// the window or has pressed the ESCAPE key.
while ( glfwWindowShouldClose(window) == GL_FALSE ) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // clear the framebuffer

glfwSwapBuffers(window); // swap the color buffers
render();

// Poll for window events. The key callback above will only be
// invoked during this call.
glfwPollEvents();
}
}

private static void vPrint(String str) {
if (verbose) {
System.out.print(str);
}
}

private static void render() {
glColor3f(1, 1, 1);
glBegin(GL_LINE);
glVertex2f(10, 10);
glVertex2f(20, 20);
glEnd();
}

private static void initOpenGL() {
glViewport(0, 0, INIT_WIDTH, INIT_HEIGHT);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();

// Calculate The Aspect Ratio Of The Window
GLU.gluPerspective(30.0f, (float)INIT_HEIGHT / (float)INIT_HEIGHT, 0.3f, 200.0f);

glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
}

编辑:我现在相当确定这是我使用 GL_LINE 时出现的错误;

最佳答案

这里存在很多问题。

抽奖电话

这里有一个流行但有时很难发现的错误:

glBegin(GL_LINE);

用于绘制线条的枚举是GL_LINES(注意尾随S)。另一方面,GL_LINEglPolygonMode() 的可能参数之一。所以这个调用应该是:

glBegin(GL_LINES);

绘制循环中的调用顺序

渲染循环中的调用顺序看起来错误:

while ( glfwWindowShouldClose(window) == GL_FALSE ) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glfwSwapBuffers(window);
render();
glfwPollEvents();
}

glfwSwapBuffers() 调用指定您已完成渲染,并准备好呈现您渲染的内容。由于您是在调用 render() 之前进行该调用,因此所显示的只是已清除的缓冲区。

或者以不同的方式看待它,如果您单步执行循环结束和开始之间的调用序列,并忽略 glfwPollEvents() 调用,则您的 render() 调用将立即执行通过glClear()。因此渲染结果在有机会呈现之前就被清除了。

正确的调用顺序是:

while ( glfwWindowShouldClose(window) == GL_FALSE ) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
render();
glfwSwapBuffers(window);
glfwPollEvents();
}

这将允许在通过 glfwSwapBuffers() 调用呈现结果之前执行渲染。

坐标范围

您需要注意变换和坐标范围。当您仅设置透视变换时,它将假设您的坐标位于从原点沿负 z 轴看的近平面和远平面范围之间。您将需要在负 z 方向上进行平移作为模型 View 矩阵的一部分,以获得查看体积内的坐标。否则整个几何体将被剪掉。

例如,您可以在设置模型 View 矩阵时添加 glTranslatef() 调用,这会将几何图形放置在近平面和远平面之间:

glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glTranslatef(0.0f, 0.0f, -50.0f);

如果这个解释不够充分,您可能需要寻找一个解释 OpenGL 坐标系和转换的教程。

关于java - LWJGL 3 不会划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29113631/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com