aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/util/FirmFormatters.kt
blob: a3e93aebe4490327398c0ae978a68f0e1fcae06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package moe.nea.firmament.util

import com.google.common.math.IntMath.pow
import kotlin.math.absoluteValue
import kotlin.time.Duration

object FirmFormatters {
    fun toString(float: Float, fractionalDigits: Int): String = toString(float.toDouble(), fractionalDigits)
    fun toString(double: Double, fractionalDigits: Int): String {
        val long = double.toLong()
        val δ = (double - long).absoluteValue
        val μ = pow(10, fractionalDigits)
        val digits = (μ * δ).toInt().toString().padStart(fractionalDigits, '0').trimEnd('0')
        return long.toString() + (if (digits.isEmpty()) "" else ".$digits")
    }

    fun formatTimespan(duration: Duration): String {
        return duration.toString()
    }

}