本文整理汇总了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);
}
示例2: ceil
import net.minecraft.util.MathHelper; //导入方法依赖的package包/类
public static int ceil(double p_ceil_0_)
{
return MathHelper.ceiling_double_int(p_ceil_0_);
}
示例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;
}