當前位置: 首頁>>代碼示例>>Java>>正文


Java MathHelper.ceiling_double_int方法代碼示例

本文整理匯總了Java中net.minecraft.util.MathHelper.ceiling_double_int方法的典型用法代碼示例。如果您正苦於以下問題:Java MathHelper.ceiling_double_int方法的具體用法?Java MathHelper.ceiling_double_int怎麽用?Java MathHelper.ceiling_double_int使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.util.MathHelper的用法示例。


在下文中一共展示了MathHelper.ceiling_double_int方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ScaledResolution

import net.minecraft.util.MathHelper; //導入方法依賴的package包/類
public ScaledResolution(Minecraft p_i46445_1_)
{
    this.scaledWidth = p_i46445_1_.displayWidth;
    this.scaledHeight = p_i46445_1_.displayHeight;
    this.scaleFactor = 1;
    boolean flag = p_i46445_1_.isUnicode();
    int i = p_i46445_1_.gameSettings.guiScale;

    if (i == 0)
    {
        i = 1000;
    }

    while (this.scaleFactor < i && this.scaledWidth / (this.scaleFactor + 1) >= 320 && this.scaledHeight / (this.scaleFactor + 1) >= 240)
    {
        ++this.scaleFactor;
    }

    if (flag && this.scaleFactor % 2 != 0 && this.scaleFactor != 1)
    {
        --this.scaleFactor;
    }

    this.scaledWidthD = (double)this.scaledWidth / (double)this.scaleFactor;
    this.scaledHeightD = (double)this.scaledHeight / (double)this.scaleFactor;
    this.scaledWidth = MathHelper.ceiling_double_int(this.scaledWidthD);
    this.scaledHeight = MathHelper.ceiling_double_int(this.scaledHeightD);
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:29,代碼來源:ScaledResolution.java

示例2: ceil

import net.minecraft.util.MathHelper; //導入方法依賴的package包/類
public static int ceil(double p_ceil_0_)
{
    return MathHelper.ceiling_double_int(p_ceil_0_);
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:5,代碼來源:RealmsMth.java

示例3: setup

import net.minecraft.util.MathHelper; //導入方法依賴的package包/類
/**
 * Sets up the character data and textures.
 *
 * @param characterData The array of character data that should be filled.
 * @param type          The font type. (Regular, Bold, and Italics)
 */
private CharacterData[] setup(CharacterData[] characterData, int type) {
    // Quickly generates the colors.
    generateColors();

    // Changes the type of the font to the given type.
    Font font = this.font.deriveFont(type);

    // An image just to get font data.
    BufferedImage utilityImage = new BufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB);

    // The graphics of the utility image.
    Graphics2D utilityGraphics = (Graphics2D) utilityImage.getGraphics();

    // Sets the font of the utility image to the font.
    utilityGraphics.setFont(font);

    // The font metrics of the utility image.
    FontMetrics fontMetrics = utilityGraphics.getFontMetrics();

    // Iterates through all the characters in the character set of the font renderer.
    for (int index = 0; index < characterData.length; index++) {
        // The character at the current index.
        char character = (char) index;

        // The width and height of the character according to the font.
        Rectangle2D characterBounds = fontMetrics.getStringBounds(character + "", utilityGraphics);

        // The width of the character texture.
        float width = (float) characterBounds.getWidth() + (2 * MARGIN);

        // The height of the character texture.
        float height = (float) characterBounds.getHeight();

        // The image that the character will be rendered to.
        BufferedImage characterImage = new BufferedImage(MathHelper.ceiling_double_int(width), MathHelper.ceiling_double_int(height), BufferedImage.TYPE_INT_ARGB);

        // The graphics of the character image.
        Graphics2D graphics = (Graphics2D) characterImage.getGraphics();

        // Sets the font to the input font/
        graphics.setFont(font);

        // Sets the color to white with no alpha.
        graphics.setColor(new Color(255, 255, 255, 0));

        // Fills the entire image with the color above, makes it transparent.
        graphics.fillRect(0, 0, characterImage.getWidth(), characterImage.getHeight());

        // Sets the color to white to draw the character.
        graphics.setColor(Color.WHITE);

        // Enables anti-aliasing so the font doesn't have aliasing.
        graphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
        graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
        graphics.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
        graphics.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, this.fractionalMetrics ? RenderingHints.VALUE_FRACTIONALMETRICS_ON : RenderingHints.VALUE_FRACTIONALMETRICS_OFF);

        // Draws the character.
        graphics.drawString(character + "", MARGIN, fontMetrics.getAscent());

        // Generates a new texture id.
        int textureId = GlStateManager.generateTexture();

        // Allocates the texture in opengl.
        createTexture(textureId, characterImage);

        // Initiates the character data and stores it in the data array.
        characterData[index] = new CharacterData(character, characterImage.getWidth(), characterImage.getHeight(), textureId);
    }

    // Returns the filled character data array.
    return characterData;
}
 
開發者ID:SerenityEnterprises,項目名稱:SerenityCE,代碼行數:80,代碼來源:TTFFontRenderer.java


注:本文中的net.minecraft.util.MathHelper.ceiling_double_int方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。