add more fonts
This commit is contained in:
parent
681bb4dc4e
commit
a73901a584
6 changed files with 39 additions and 11 deletions
|
@ -253,8 +253,9 @@ public class Client implements IThreadListener {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class FontFunction implements BoolFunction {
|
public static class FontFunction implements EnumFunction<Font> {
|
||||||
public void apply(BoolVar cv, boolean value) {
|
public void apply(EnumVar cv, Font value) {
|
||||||
|
Font.unload();
|
||||||
Font.load(value);
|
Font.load(value);
|
||||||
Client.CLIENT.rescale();
|
Client.CLIENT.rescale();
|
||||||
}
|
}
|
||||||
|
@ -473,8 +474,8 @@ public class Client implements IThreadListener {
|
||||||
public Style style = Style.DEFAULT;
|
public Style style = Style.DEFAULT;
|
||||||
@Variable(name = "gui_scroll_lines", category = CVarCategory.GUI, min = 1, max = 10, display = "Scrollbreite", unit = "Zeilen")
|
@Variable(name = "gui_scroll_lines", category = CVarCategory.GUI, min = 1, max = 10, display = "Scrollbreite", unit = "Zeilen")
|
||||||
public int scrollLines = 3;
|
public int scrollLines = 3;
|
||||||
@Variable(name = "gui_font_tiny", category = CVarCategory.GUI, display = "Kleine Schrift", callback = FontFunction.class)
|
@Variable(name = "gui_font", category = CVarCategory.GUI, display = "Schriftart", callback = FontFunction.class)
|
||||||
public boolean tinyFont = false;
|
public Font font = Font.LARGE;
|
||||||
|
|
||||||
@Variable(name = "draw_downfall_range", category = CVarCategory.RENDER, min = 0, max = 15, display = "Niederschlag-Radius")
|
@Variable(name = "draw_downfall_range", category = CVarCategory.RENDER, min = 0, max = 15, display = "Niederschlag-Radius")
|
||||||
public int downfallRange = 10;
|
public int downfallRange = 10;
|
||||||
|
@ -2249,7 +2250,7 @@ public class Client implements IThreadListener {
|
||||||
this.registerDebug();
|
this.registerDebug();
|
||||||
System.gc();
|
System.gc();
|
||||||
System.gc();
|
System.gc();
|
||||||
Font.load(false);
|
Font.load(Font.LARGE);
|
||||||
GlState.enableBlend();
|
GlState.enableBlend();
|
||||||
GlState.blendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
GlState.blendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
||||||
this.initConsole();
|
this.initConsole();
|
||||||
|
|
|
@ -10,14 +10,26 @@ import client.renderer.GlState;
|
||||||
import client.renderer.texture.TextureUtil;
|
import client.renderer.texture.TextureUtil;
|
||||||
import client.util.FileUtils;
|
import client.util.FileUtils;
|
||||||
import common.log.Log;
|
import common.log.Log;
|
||||||
|
import common.util.Displayable;
|
||||||
|
import common.util.Identifyable;
|
||||||
|
|
||||||
public class Font {
|
public enum Font implements Identifyable, Displayable {
|
||||||
|
TINY("tiny", "Winzig", 6, 7),
|
||||||
|
SMALL("small", "Klein", 8, 10),
|
||||||
|
MEDIUM("medium", "Mittel", 10, 12),
|
||||||
|
LARGE("large", "Groß", 12, 14);
|
||||||
|
|
||||||
public static final FontChar[] SIZES = new FontChar[256];
|
public static final FontChar[] SIZES = new FontChar[256];
|
||||||
|
|
||||||
public static int XGLYPH = 12;
|
public static int XGLYPH = 12;
|
||||||
public static int YGLYPH = 14;
|
public static int YGLYPH = 14;
|
||||||
|
|
||||||
private static int texture;
|
private static int texture;
|
||||||
|
|
||||||
|
private final String name;
|
||||||
|
private final String display;
|
||||||
|
private final int width;
|
||||||
|
private final int height;
|
||||||
|
|
||||||
public static void bindTexture() {
|
public static void bindTexture() {
|
||||||
GlState.bindTexture(texture);
|
GlState.bindTexture(texture);
|
||||||
|
@ -73,12 +85,12 @@ public class Font {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void load(boolean tiny) {
|
public static void load(Font font) {
|
||||||
XGLYPH = tiny ? 6 : 12;
|
XGLYPH = font.width;
|
||||||
YGLYPH = tiny ? 7 : 14;
|
YGLYPH = font.height;
|
||||||
BufferedImage img = null;
|
BufferedImage img = null;
|
||||||
try {
|
try {
|
||||||
img = TextureUtil.readImage(FileUtils.getResource("textures/font" + (tiny ? "_tiny" : "") + ".png"));
|
img = TextureUtil.readImage(FileUtils.getResource("textures/font_" + font.name + ".png"));
|
||||||
}
|
}
|
||||||
catch(FileNotFoundException e) {
|
catch(FileNotFoundException e) {
|
||||||
Log.IO.error("Konnte Font-Textur nicht laden: Datei nicht vorhanden");
|
Log.IO.error("Konnte Font-Textur nicht laden: Datei nicht vorhanden");
|
||||||
|
@ -107,4 +119,19 @@ public class Font {
|
||||||
texture = 0;
|
texture = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Font(String name, String display, int width, int height) {
|
||||||
|
this.name = name;
|
||||||
|
this.display = display;
|
||||||
|
this.width = width;
|
||||||
|
this.height = height;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return this.name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDisplay() {
|
||||||
|
return this.display;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@ public class GuiStyle extends GuiOptions implements DropdownCallback<String>, Bu
|
||||||
}
|
}
|
||||||
|
|
||||||
this.addSelector("gui_scale", 0, 5 * 34 + (Style.values().length / 3) * 20, 181, 0);
|
this.addSelector("gui_scale", 0, 5 * 34 + (Style.values().length / 3) * 20, 181, 0);
|
||||||
this.addSelector("gui_font_tiny", 183, 5 * 34 + (Style.values().length / 3) * 20, 181, 0);
|
this.addSelector("gui_font", 183, 5 * 34 + (Style.values().length / 3) * 20, 181, 0);
|
||||||
|
|
||||||
if(this.gm.style != Style.CUSTOM) {
|
if(this.gm.style != Style.CUSTOM) {
|
||||||
this.add(new ActButton(0, 3 * 34, 364, 0, new ButtonCallback() {
|
this.add(new ActButton(0, 3 * 34, 364, 0, new ButtonCallback() {
|
||||||
|
|
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.2 KiB |
BIN
client/src/main/resources/textures/font_medium.png
Normal file
BIN
client/src/main/resources/textures/font_medium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
BIN
client/src/main/resources/textures/font_small.png
Normal file
BIN
client/src/main/resources/textures/font_small.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.5 KiB |
Loading…
Add table
Add a link
Reference in a new issue