Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/gamecore/resources/fonts/FontRegistry.java

89 lines
1.6 KiB

package mightypork.gamecore.resources.fonts;
import java.util.HashMap;
import mightypork.gamecore.core.modules.AppAccess;
import mightypork.gamecore.core.modules.AppAccessAdapter;
import mightypork.gamecore.resources.ResourceLoadRequest;
import mightypork.gamecore.resources.fonts.impl.LazyFont;
import org.newdawn.slick.opengl.Texture;
/**
* Font loader and registry
*
* @author Ondřej Hruška (MightyPork)
*/
public class FontRegistry extends AppAccessAdapter {
/**
* @param app app access
*/
public FontRegistry(AppAccess app) {
super(app);
}
private final HashMap<String, GLFont> fonts = new HashMap<>();
private final HashMap<String, String> aliases = new HashMap<>();
/**
* Load a {@link LazyFont}
*
* @param key font key
* @param font font instance
*/
public void addFont(String key, LazyFont font)
{
getEventBus().send(new ResourceLoadRequest(font));
fonts.put(key, font);
}
/**
* Add a {@link GLFont} to the bank.
*
* @param key font key
* @param font font instance
*/
public void addFont(String key, GLFont font)
{
fonts.put(key, font);
}
/**
* Add a font alias.
*
* @param alias_key alias key
* @param font_key font key
*/
public void addAlias(String alias_key, String font_key)
{
aliases.put(alias_key, font_key);
}
/**
* Get a loaded {@link Texture}
*
* @param key texture key
* @return the texture
*/
public GLFont getFont(String key)
{
GLFont f = fonts.get(key);
if (f == null) f = fonts.get(aliases.get(key));
if (f == null) {
throw new RuntimeException("There's no font called " + key + "!");
}
return f;
}
}