summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f34df6e)
raw | patch | inline | side by side (parent: f34df6e)
author | fredboy <fredboy@protonmail.com> | |
Tue, 23 Apr 2024 21:21:28 +0000 (04:21 +0700) | ||
committer | fredboy <fredboy@protonmail.com> | |
Tue, 23 Apr 2024 21:21:28 +0000 (04:21 +0700) |
core/src/ru/deadsoftware/cavedroid/misc/utils/RenderingUtils.kt | patch | blob | history |
diff --git a/core/src/ru/deadsoftware/cavedroid/misc/utils/RenderingUtils.kt b/core/src/ru/deadsoftware/cavedroid/misc/utils/RenderingUtils.kt
index 24813acc853fe54ef5421c046a55c48cfede0b39..8976c9963cd8935d64a373ee54db088513537662 100644 (file)
import com.badlogic.gdx.graphics.g2d.SpriteBatch
import com.badlogic.gdx.math.Rectangle
import ru.deadsoftware.cavedroid.misc.Assets
-import java.awt.Color as JavaColor
private fun Rectangle.shifted(shift: Float) = Rectangle(x + shift, y, width, height)
return Assets.minecraftFont.draw(this, str, x, y)
}
+/**
+ * Parses hex color string into [Color]
+ * Format is strictly #FFFFFF
+ */
fun colorFromHexString(hex: String): Color {
- val rgba = (JavaColor.decode(hex).rgb shl 8) or (0xFF)
+ if (hex[0] != '#' || hex.length != 7) {
+ return Color.WHITE
+ }
+
+ var rgba = try {
+ hex.substring(1).toInt(16)
+ } catch (e: NumberFormatException) {
+ 0xffffff
+ }
+
+ rgba = (rgba shl 8) or 0xFF
return Color(rgba)
}