Make RGBAColorTypeAdapter accept hex strings as input

This commit is contained in:
DBotThePony 2024-05-22 18:57:42 +07:00
parent 16ccb84d3b
commit 032f32626e
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -1,5 +1,6 @@
package ru.dbotthepony.kstarbound.json.factory
import com.google.gson.JsonSyntaxException
import com.google.gson.TypeAdapter
import com.google.gson.stream.JsonReader
import com.google.gson.stream.JsonToken
@ -29,6 +30,12 @@ object RGBAColorTypeAdapter : TypeAdapter<RGBAColor>() {
if (`in`.consumeNull())
return null
if (`in`.peek() == JsonToken.STRING) {
val str = `in`.nextString()
val color = RGBAColor.fromHexStringRGB(str) ?: throw JsonSyntaxException("Not a valid hex color: $str")
return color
}
`in`.beginArray()
val red = `in`.nextInt()