Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/320.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 无限循环阻止文本字段接受输入_Java_Swing_Opengl_Render_Jtextfield - Fatal编程技术网

Java 无限循环阻止文本字段接受输入

Java 无限循环阻止文本字段接受输入,java,swing,opengl,render,jtextfield,Java,Swing,Opengl,Render,Jtextfield,我使用opengl在画布上渲染模型,因此使用while循环,并在线程下运行它,以避免干扰主线程。我还有一个文本字段,我想在这里写一些文本。文本字段聚焦于我的操作并接受输入,但在画布上悬停时,文本字段聚焦,但我无法在其上写入内容。这可能是因为while循环,但我不知道如何克服这个问题。我希望ui保持响应性 这是我的密码: import java.awt.Canvas; import java.awt.EventQueue; import javax.swing.JFrame; import ja

我使用opengl在画布上渲染模型,因此使用while循环,并在线程下运行它,以避免干扰主线程。我还有一个文本字段,我想在这里写一些文本。文本字段聚焦于我的操作并接受输入,但在画布上悬停时,文本字段聚焦,但我无法在其上写入内容。这可能是因为while循环,但我不知道如何克服这个问题。我希望ui保持响应性

这是我的密码:

import java.awt.Canvas;
import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JTextField;

import org.lwjgl.opengl.Display;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.PixelFormat;

public final class Loader extends JFrame {

    public final int FPS = 120; // better cause of animations

    public static Loader loader;
    public Canvas canvas;
    private Viewport viewport;
    private JTextField textField;

    private Loader() {

        setTitle("Test");
        setResizable(true);
        setSize(320, 285);
        setLocationRelativeTo(null);
        getContentPane().setLayout(null);
        setVisible(true);

        canvas = new Canvas();
        getContentPane().add(canvas);
        canvas.setBounds(10, 24, 280, 163);

        textField = new JTextField();
        textField.setColumns(10);
        textField.setBounds(91, 193, 116, 22);
        getContentPane().add(textField);
    }

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {

                    // Initialize the frame
                    loader = new Loader();

                    new Thread(new Runnable() {
                        @Override
                        public void run() {
                            try {
                                // render the model
                                loader.render();
                            } catch (Exception e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }
                        }
                    }).start();

                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    private static void init(Canvas canvas) throws Exception {

        Display.setParent(canvas);
        try {
            Display.create(new PixelFormat(8, 24, 8, 8));
        } catch (Exception ex) {
            Display.create(new PixelFormat(8, 24, 8, 0));
        }
        Display.makeCurrent();
        Display.setVSyncEnabled(false);
        Display.setSwapInterval(0);
    }

    private void render() throws Exception {
        init(canvas);
        loader.viewport = new Viewport(canvas);
        long[] timerCache = new long[10];
        long timerCur = 0L;
        long timerDst = 0L;
        long timerLast = 0L;
        long timerRate = 1000000L * 1000L / FPS;
        int timerCacheIndex = 0;
        int timerCacheSize = 0;
        boolean minSleep = Runtime.getRuntime().availableProcessors() <= 1;
        long[] clockCache = new long[32];
        int clockIndex = 0;
        int fps = 0;
        while (isVisible()) {
            long clock = System.nanoTime();
            long lastClock = clockCache[clockIndex];
            clockCache[clockIndex] = clock;
            if (++clockIndex == 32)
                clockIndex = 0;

            if (lastClock != 0L && clock > lastClock) {
                fps = (int) (1000000L * 1000L * 32L / (clock - lastClock));
            }
            GL11.glClear(GL11.GL_COLOR_BUFFER_BIT | GL11.GL_DEPTH_BUFFER_BIT);
            GL11.glClearColor(.5f, .6f, .9f, 1f);
            loader.viewport.render();
            if (minSleep)
                try {
                    Thread.sleep(1L);
                } catch (Exception ex) {
                }

            timerCache[timerCacheIndex++] = System.nanoTime();
            if (timerCacheSize < timerCacheIndex)
                timerCacheSize = timerCacheIndex;

            if (timerCacheIndex == 10)
                timerCacheIndex = 0;

            long time = 0L;
            for (int i = 0; i != timerCacheSize; time += timerCache[i++])
                ;

            time /= (long) timerCacheSize;
            if (timerCacheSize == 1)
                timerLast = time;

            timerCur += time - timerLast;
            timerLast = time;
            timerDst += timerRate;
            if (timerDst > timerCur) {
                long sleep = timerDst - timerCur;
                try {
                    Thread.sleep(sleep / 1000000L, (int) (sleep % 1000000L));
                } catch (Exception ex) {
                }
                timerCur = timerDst;
                for (int i = 0; i != timerCacheSize; ++i)
                    timerCache[i] += sleep;

                timerLast += sleep;
            }
        }
    }
}
此gif可能有助于了解它当前的外观。

我看不出这里的错误在哪里,我已经为render方法使用了一个线程

编辑:

Viewport.java

public Viewport(Canvas canvas) throws LWJGLException {
    this.canvas = canvas;
    this.scale = 1.0F;
    this.pitch = 180.0F;
    this.yaw = 0.0F;
    this.roll = 0.0F;
}

public void render() {
    try {
        Dimension size = canvas.getSize();
        if (models != null && size.width > 0 && size.height > 0) {
            if (width != size.width || height != size.height) {
                width = size.width;
                height = size.height;
                glViewport(0, 0, width, height);
                glMatrixMode(GL_PROJECTION);
                glLoadIdentity();
                float c = (float) Math.sqrt((double) (width * width) + (double) (height * height));
                glOrtho(0.0F, (float) width, 0.0F, (float) height, -c, c);
                glMatrixMode(GL_MODELVIEW);
            }

            if (Mouse.isButtonDown(0) && !Mouse.isButtonDown(1)) {
                yaw -= (float) Mouse.getDX() / 2;
                pitch -= (float) Mouse.getDY() / 2;
            }
            if (Mouse.isButtonDown(0) && Mouse.isButtonDown(1)) {
                offset_z += (float) Mouse.getDY();
            }

            float wheel = (float) Mouse.getDWheel() / 1800.0F;
            if (wheel > 1.0F)
                wheel = 1.0F;
            else if (wheel < -1.0F)
                wheel = -1.0F;
            scale += scale * wheel;
            if (scale < 0.01F)
                scale = 0.01F;
            for (Model3D model : models) {
                float x = (float) width / 2.0F;
                float y = ((float) -((100.0F * (scale))) + offset_z) + (float) (height - model.height()) / 2.0F;
                float z = 0.0F;

                model.render(model, x, y, z, pitch, yaw, roll, scale, scale, scale);
            }

            Display.update();
        }
    } catch (Throwable t) {

    }

}
而不是:

        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    // render the model
                    loader.render();
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }).start();
也许:

        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    // render the model
                    loader.render();
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }        
        });
它将在AWT调度线程上运行,可能问题会消失。Swing线程不安全有时会让生活变得艰难。

而不是:

        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    // render the model
                    loader.render();
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }).start();
也许:

        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    // render the model
                    loader.render();
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }        
        });

它将在AWT调度线程上运行,可能问题会消失。Swing不具备线程安全性有时会让生活变得艰难。

您可以尝试将requestFocus添加到加载程序类的渲染方法末尾并报告发生的情况吗?

您可以尝试将requestFocus添加到加载程序类的渲染方法末尾并报告发生的情况吗?

您所属的视口类是什么使用?@CardinalSystem更新了问题!您使用的这个视口类是什么?@CardinalSystem更新了这个问题!不,模型现在从来没有被渲染过,我不能编辑任何东西思考或单击任何地方不,模型现在从来没有被渲染过,我不能编辑任何东西思考或单击任何地方如果这不起作用,你也可以尝试添加textField.requestFocusnope,它不起作用。它已经有焦点,但不接受任何输入。如果这不起作用,您也可以尝试添加textField.requestFocusnope,它不起作用。它已经有了焦点,但不需要任何输入。