⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 font.java

📁 NeHe用java与OpenGL结合教程源码
💻 JAVA
字号:
package demos.nehe.lesson44;

import com.sun.opengl.util.BufferUtil;

import javax.media.opengl.GL;
import java.nio.ByteBuffer;

/**
 * I don't mind if you use this class in your own code. All I ask is
 * that you give me and Giuseppe D'Agata credit for it if you do.
 * And plug NeHe while your at it! :P  Thanks go to Giuseppe D'Agata
 * for the code that this class is based off of. Thanks Enjoy.
 * @author Vic Hollis
 * @author Abdul Bezrati
 */
class Font {
    private double m_WindowHeight;
    private double m_WindowWidth;
    private int m_FontTexture;
    private int m_ListBase;
    private ByteBuffer stringBuffer = BufferUtil.newByteBuffer(512);

    public Font() {
        m_FontTexture = 0;    // Initalize the texture to 0
        m_ListBase = 0;    // Initalize the List base to 0
    }

    public void setFontTexture(int tex) {
        if (tex != 0) {          // If the texture is valid
            m_FontTexture = tex; // Set the font texture
        }
    }

    public void buildFont(GL gl, float scale) {
        m_ListBase = gl.glGenLists(256);                                // Creating 256 Display Lists
        if (m_FontTexture != 0) {
            gl.glBindTexture(GL.GL_TEXTURE_2D, m_FontTexture);            // Select Our Font Texture
            for (int loop = 0; loop < 256; loop++) {                             // Loop Through All 256 Lists
                float cx = (float) (loop % 16) / 16.0f;                              // X Position Of Current Character
                float cy = (float) (loop / 16) / 16.0f;                              // Y Position Of Current Character

                gl.glNewList(m_ListBase + loop, GL.GL_COMPILE);              // Start Building A List
                gl.glBegin(GL.GL_QUADS);                                // Use A Quad For Each Character
                gl.glTexCoord2f(cx, 1 - cy - 0.0625f);                  // Texture Coord (Bottom Left)
                gl.glVertex2f(0, 0);                                     // Vertex Coord (Bottom Left)
                gl.glTexCoord2f(cx + 0.0625f, 1 - cy - 0.0625f);        // Texture Coord (Bottom Right)
                gl.glVertex2f(16 * scale, 0);                            // Vertex Coord (Bottom Right)
                gl.glTexCoord2f(cx + 0.0625f, 1 - cy);                  // Texture Coord (Top Right)
                gl.glVertex2f(16 * scale, 16 * scale);                  // Vertex Coord (Top Right)
                gl.glTexCoord2f(cx, 1 - cy);                            // Texture Coord (Top Left)
                gl.glVertex2f(0, 16 * scale);                           // Vertex Coord (Top Left)
                gl.glEnd();                                               // Done Building Our Quad (Character)
                gl.glTranslated(10 * scale, 0, 0);                            // Move To The Right Of The Character
                gl.glEndList();                                           // Done Building The Display List
            }                                                           // Loop Until All 256 Are Built
        }
    }

    public void glPrintf(GL gl, int x, int y, int set, String format) {
        if (format == null)                                              // If There's No Text
            return;

        byte text[] = format.getBytes();

        if (set > 1)                                                       // Did User Choose An Invalid Character Set?
            set = 1;

        gl.glEnable(GL.GL_TEXTURE_2D);                                  // Enable 2d Textures
        gl.glEnable(GL.GL_BLEND);                                       // Enable Blending
        gl.glBlendFunc(GL.GL_SRC_COLOR, GL.GL_ONE_MINUS_SRC_COLOR);
        gl.glBindTexture(GL.GL_TEXTURE_2D, m_FontTexture);              // Select Our Font Texture
        gl.glDisable(GL.GL_DEPTH_TEST);                                 // Disables Depth Testing
        gl.glMatrixMode(GL.GL_PROJECTION);                              // Select The Projection Matrix
        gl.glPushMatrix();                                              // Store The Projection Matrix
        gl.glLoadIdentity();                                            // Reset The Projection Matrix
        gl.glOrtho(0, m_WindowWidth, 0, m_WindowHeight, -1, 1);              // Set Up An Ortho Screen
        gl.glMatrixMode(GL.GL_MODELVIEW);                               // Select The Modelview Matrix
        gl.glPushMatrix();                                              // Store The Modelview Matrix
        gl.glLoadIdentity();                                            // Reset The Modelview Matrix
        gl.glTranslated(x, y, 0);                                         // Position The Text (0,0 - Bottom Left)
        gl.glListBase(m_ListBase - 32 + (128 * set));                         // Choose The Font Set (0 or 1)

        if (stringBuffer.capacity() < format.length()) {
            stringBuffer = BufferUtil.newByteBuffer(format.length());
        }

        stringBuffer.clear();
        stringBuffer.put(format.getBytes());
        stringBuffer.flip();

        gl.glCallLists(text.length, GL.GL_BYTE, stringBuffer);                    // Write The Text To The Screen
        gl.glMatrixMode(GL.GL_PROJECTION);                              // Select The Projection Matrix
        gl.glPopMatrix();                                               // Restore The Old Projection Matrix
        gl.glMatrixMode(GL.GL_MODELVIEW);                               // Select The Modelview Matrix
        gl.glPopMatrix();                                               // Restore The Old Projection Matrix
        gl.glEnable(GL.GL_DEPTH_TEST);
        gl.glDisable(GL.GL_BLEND);
        gl.glDisable(GL.GL_TEXTURE_2D);
    }

    public void setWindowSize(int width, int height) {
        m_WindowWidth = width;                                         // Set the window size width
        m_WindowHeight = height;                                        // Set the window size height
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -