IThingWithDescription в тайлах и их модиферах

This commit is contained in:
DBotThePony 2023-02-05 22:45:49 +07:00
parent 7309f6be46
commit b212ef7518
Signed by: DBot
GPG Key ID: DCC23B5715498507
3 changed files with 17 additions and 7 deletions

View File

@ -72,8 +72,8 @@ interface IThingWithDescription {
}
data class ThingDescription(
override val shortdescription: String,
override val description: String,
override val shortdescription: String = "...",
override val description: String = "...",
override val racialDescription: Map<String, String>,
override val racialShortDescription: Map<String, String>,
) : IThingWithDescription {

View File

@ -3,24 +3,30 @@ package ru.dbotthepony.kstarbound.defs.tile
import com.google.common.collect.ImmutableList
import com.google.gson.GsonBuilder
import ru.dbotthepony.kstarbound.defs.AssetReference
import ru.dbotthepony.kstarbound.defs.IThingWithDescription
import ru.dbotthepony.kstarbound.defs.ThingDescription
import ru.dbotthepony.kstarbound.io.json.builder.FactoryAdapter
import ru.dbotthepony.kstarbound.io.json.builder.JsonFactory
import ru.dbotthepony.kstarbound.io.json.builder.JsonPropertyConfig
@JsonFactory
data class MaterialModifier(
val modId: Int,
val modName: String,
val itemDrop: String? = null,
val description: String = "...",
val health: Int = 0,
val harvestLevel: Int = 0,
val breaksWithTile: Boolean = true,
val grass: Boolean = false,
val miningSounds: ImmutableList<String> = ImmutableList.of(),
val miningParticle: String? = null,
@JsonPropertyConfig(isFlat = true)
val descriptionData: ThingDescription,
override val renderTemplate: AssetReference<RenderTemplate>,
override val renderParameters: RenderParameters
) : IRenderableTile {
) : IRenderableTile, IThingWithDescription by descriptionData {
init {
require(modId > 0) { "Invalid material modifier ID $modId" }
}

View File

@ -2,8 +2,11 @@ package ru.dbotthepony.kstarbound.defs.tile
import com.google.gson.GsonBuilder
import ru.dbotthepony.kstarbound.defs.AssetReference
import ru.dbotthepony.kstarbound.defs.IThingWithDescription
import ru.dbotthepony.kstarbound.defs.ThingDescription
import ru.dbotthepony.kstarbound.io.json.builder.FactoryAdapter
import ru.dbotthepony.kstarbound.io.json.builder.JsonFactory
import ru.dbotthepony.kstarbound.io.json.builder.JsonPropertyConfig
import ru.dbotthepony.kstarbound.registerTypeAdapter
import ru.dbotthepony.kvector.vector.Color
@ -13,8 +16,6 @@ data class TileDefinition(
val materialName: String,
val particleColor: Color? = null,
val itemDrop: String? = null,
val description: String = "...",
val shortdescription: String = "...",
val footstepSound: String? = null,
val blocksLiquidFlow: Boolean = true,
@ -23,6 +24,9 @@ data class TileDefinition(
val health: Double = 0.0,
val category: String,
@JsonPropertyConfig(isFlat = true)
val descriptionData: ThingDescription,
override val renderTemplate: AssetReference<RenderTemplate>,
override val renderParameters: RenderParameters,
) : IRenderableTile
) : IRenderableTile, IThingWithDescription by descriptionData