aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/utils/FontUtils.kt
blob: 1db76942821cba7ab45e0ed0bb65e4b00029a39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package ca.allanwang.kau.utils

import android.content.Context
import android.graphics.Typeface

/**
 * Created by Allan Wang on 2017-06-28.
 */
object FontUtils {

    private val sTypefaceCache: MutableMap<String, Typeface> = mutableMapOf()

    fun get(context: Context, font: String): Typeface {
        synchronized(sTypefaceCache) {
            if (!sTypefaceCache.containsKey(font)) {
                val tf = Typeface.createFromAsset(
                        context.applicationContext.assets, "fonts/$font.ttf")
                sTypefaceCache.put(font, tf)
            }
            return sTypefaceCache.get(font)
                    ?: throw IllegalArgumentException("Font error; typeface does not exist at assets/fonts$font.ttf")
        }
    }

    fun getName(typeface: Typeface): String? = sTypefaceCache.entries.firstOrNull { it.value == typeface }?.key

}

fun Context.getFont(font: String) = FontUtils.get(this, font)
fun Context.getFontName(typeface: Typeface) = FontUtils.getName(typeface)