Skip to content
Snippets Groups Projects
Commit ae3916a6 authored by Matyáš Latner's avatar Matyáš Latner
Browse files

#66 Fonts loading in different sizes workaround

parent 15d13245
Branches feature-crimescene-translations
No related tags found
No related merge requests found
Showing
with 66 additions and 3 deletions
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
......@@ -14,6 +14,7 @@ import java.util.Map;
import cz.nic.tablexia.game.games.robbery.assets.RobberyAssets;
import cz.nic.tablexia.loader.application.ApplicationAtlasManager;
import cz.nic.tablexia.loader.application.ApplicationFontManager;
import cz.nic.tablexia.util.ui.TablexiaButton;
import cz.nic.tablexia.util.ui.TablexiaNoBlendingImage;
......@@ -23,7 +24,6 @@ public class RuleScreen extends AbstractRobberyScreen {
private static final float LABEL_Y_POSITION_RATIO = 23f/40;
private static final Color LABEL_TEXT_COLOR = Color.GRAY;
private static final float LABEL_FONT_SCALE = 0.8f;
private static final float TITLE_PAPER_POSITION_X_OFFSET = 1f/20;
private static final float TITLE_PAPER_Y_POSITION_RATIO = 3f/5;
......@@ -103,10 +103,9 @@ public class RuleScreen extends AbstractRobberyScreen {
float labelWidth = paperWidth * TITLE_WIDTH_RATIO;
float labelHeight = paperHeight * TITLE_HEIGHT_RATIO;
BitmapFont font = getDefaultRegularFont();
BitmapFont font = ApplicationFontManager.getInstance().getFont(ApplicationFontManager.FontType.ROBOTO_REGULAR_18);
font.getData().markupEnabled = true;
Label label = new Label(getData().getRuleMessageText(this), new LabelStyle(font, LABEL_TEXT_COLOR));
label.setFontScale(LABEL_FONT_SCALE);
label.setWrap(true);
label.setBounds(paperX + (paperWidth / 2) - (labelWidth / 2),
paperY + (paperHeight * LABEL_Y_POSITION_RATIO) - labelHeight,
......
......@@ -21,6 +21,50 @@ import cz.nic.tablexia.loader.IApplicationLoader;
*/
public class ApplicationFontManager extends AssetManager implements IApplicationLoader {
public enum FontType {
ROBOTO_REGULAR_10 ("Roboto-Regular_10.ttf", 10, true),
ROBOTO_REGULAR_12 ("Roboto-Regular_12.ttf", 12, true),
ROBOTO_REGULAR_14 ("Roboto-Regular_14.ttf", 14, true),
ROBOTO_REGULAR_14_NOFILTER ("Roboto-Regular_14_nofilter.ttf", 14, false),
ROBOTO_REGULAR_16 ("Roboto-Regular_16.ttf", 16, true),
ROBOTO_REGULAR_18 ("Roboto-Regular_18.ttf", 18, true),
ROBOTO_REGULAR_20 ("Roboto-Regular_20.ttf", 20, true),
ROBOTO_REGULAR_26 ("Roboto-Regular_26.ttf", 26, true),
ROBOTO_REGULAR_30 ("Roboto-Regular_30.ttf", 30, true),
ROBOTO_BOLD_10 ("Roboto-Bold_10.ttf", 10, true),
ROBOTO_BOLD_12 ("Roboto-Bold_12.ttf", 12, true),
ROBOTO_BOLD_14 ("Roboto-Bold_14.ttf", 14, true),
ROBOTO_BOLD_16 ("Roboto-Bold_16.ttf", 16, true),
ROBOTO_BOLD_18 ("Roboto-Bold_18.ttf", 18, true),
ROBOTO_BOLD_20 ("Roboto-Bold_20.ttf", 20, true),
ROBOTO_BOLD_20_NOFILTER ("Roboto-Bold_20_nofilter.ttf", 20, false),
ROBOTO_BOLD_26 ("Roboto-Bold_26.ttf", 26, true),
ROBOTO_BOLD_30 ("Roboto-Bold_30.ttf", 30, true);
private String fontName;
private int size;
private boolean filtering;
FontType(String fontName, int size, boolean filtering) {
this.fontName = fontName;
this.size = size;
this.filtering = filtering;
}
public String getFontName() {
return FONT_PATH + fontName;
}
public int getSize() {
return size;
}
public boolean isFiltering() {
return filtering;
}
}
private static final int FONT_SIZE = 20;
private static final String FONT_PATH = "font/";
public static final String FONT_ROBOTO_REGULAR = FONT_PATH + "Roboto-Regular.ttf";
......@@ -53,6 +97,22 @@ public class ApplicationFontManager extends AssetManager implements IApplication
public void load() {
loadFont(FONT_ROBOTO_REGULAR);
loadFont(FONT_ROBOTO_BOLD);
for (FontType fontType: FontType.values()) {
loadFont(fontType);
}
}
private void loadFont(FontType fontType) {
FreeTypeFontLoaderParameter fontParams = new FreeTypeFontLoaderParameter();
fontParams.fontFileName = fontType.getFontName();
fontParams.fontParameters.size = fontType.getSize();
fontParams.fontParameters.characters = FreeTypeFontGenerator.DEFAULT_CHARS + TablexiaSettings.LocaleDefinition.getAllSpecialCharacters();
if (fontType.isFiltering()) {
fontParams.fontParameters.minFilter = TextureFilter.Linear;
fontParams.fontParameters.magFilter = TextureFilter.Linear;
}
load(fontType.getFontName(), BitmapFont.class, fontParams);
}
private void loadFont(String fontFile) {
......@@ -65,6 +125,10 @@ public class ApplicationFontManager extends AssetManager implements IApplication
load(fontFile, BitmapFont.class, fontParams);
}
public BitmapFont getFont(FontType fontType) {
return get(fontType.getFontName(), BitmapFont.class);
}
public BitmapFont getFont(String fontName) {
return get(fontName, BitmapFont.class);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment