diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/DynamicItemDefinition.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/DynamicItemDefinition.kt index 39fe10a3..d23fd401 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/DynamicItemDefinition.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/DynamicItemDefinition.kt @@ -8,5 +8,7 @@ class DynamicItemDefinition(def: RegistryObject) : DynamicDefin override fun sanitize(saveInput: JsonObject) { saveInput.remove("itemName") saveInput.remove("pickupQuestTemplates") + saveInput.remove("scripts") + saveInput.remove("scriptDelta") } } diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/BuilderAdapter.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/BuilderAdapter.kt index 5a07adf4..dedce642 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/BuilderAdapter.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/BuilderAdapter.kt @@ -60,6 +60,7 @@ class BuilderAdapter private constructor( val stringInterner: Interner = Interner { it }, ) : TypeAdapter() { private val loggedMisses = ObjectOpenHashSet() + private val flatProperties = properties.values.filter { it.isFlat } override fun write(writer: JsonWriter, value: T) { TODO("Not yet implemented") @@ -69,13 +70,16 @@ class BuilderAdapter private constructor( @Suppress("name_shadowing") var reader = reader + // загружаем указатели на стек + val properties = properties + val missing = ObjectOpenHashSet>() missing.addAll(properties.values) val instance = factory.invoke() var json: JsonObject by Delegates.notNull() - if (instance is IJsonHolder || properties.values.any { it.isFlat }) { + if (instance is IJsonHolder || flatProperties.isNotEmpty()) { json = TypeAdapters.JSON_ELEMENT.read(reader) as JsonObject reader = JsonTreeReader(json) @@ -86,6 +90,12 @@ class BuilderAdapter private constructor( } } + // загружаем указатели на стек + val logMisses = logMisses + val extraPropertiesAreFatal = extraPropertiesAreFatal + val loggedMisses = loggedMisses + val ignoreKeys = ignoreKeys + reader.beginObject() while (reader.hasNext()) { @@ -102,15 +112,15 @@ class BuilderAdapter private constructor( try { val peek = reader.peek() - if (!property.type.isMarkedNullable && peek == JsonToken.NULL) { + if (!property.isMarkedNullable && peek === JsonToken.NULL) { throw NullPointerException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (JSON contains null)") - } else if (peek == JsonToken.NULL) { + } else if (peek === JsonToken.NULL) { property.set(instance, null) reader.nextNull() } else { val readValue = property.adapter.read(reader) - if (!property.type.isMarkedNullable && readValue == null) + if (!property.isMarkedNullable && readValue == null) throw JsonSyntaxException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (Type provider returned null)") property.set(instance, readValue) @@ -134,14 +144,14 @@ class BuilderAdapter private constructor( reader.endObject() - for (property in properties.values) { - if (!property.isFlat || !missing.remove(property)) + for (property in flatProperties) { + if (!missing.remove(property)) continue try { val read = property.adapter.read(JsonTreeReader(json)) - if (!property.type.isMarkedNullable && read == null) { + if (!property.isMarkedNullable && read == null) { throw NullPointerException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (flat property adapter returned NULL)") } else if (read == null) { property.set(instance, null) @@ -157,7 +167,7 @@ class BuilderAdapter private constructor( if (property.mustBePresent == true) { throw JsonSyntaxException("${instance::class.qualifiedName} demands for ${property.name} to be present, however, it is missing from JSON structure") } else if (property.mustBePresent == null) { - if (property.type.isMarkedNullable) { + if (property.isMarkedNullable) { continue } diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/FactoryAdapter.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/FactoryAdapter.kt index eb1bcaee..3a54183a 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/FactoryAdapter.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/FactoryAdapter.kt @@ -296,7 +296,7 @@ class FactoryAdapter private constructor( val (field) = tuple if (readValues[i] == null) { - if (!tuple.type.isMarkedNullable) { + if (!tuple.isMarkedNullable) { throw JsonSyntaxException("Field ${field.name} of ${bound.qualifiedName} does not accept nulls") } @@ -350,7 +350,7 @@ class FactoryAdapter private constructor( throw JsonSyntaxException("Field ${field.name} of ${bound.qualifiedName} is missing") } - if (tuple.type.isMarkedNullable) { + if (tuple.isMarkedNullable) { continue } diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/Properties.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/Properties.kt index 187d6d74..286c3d25 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/Properties.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/io/json/builder/Properties.kt @@ -28,6 +28,7 @@ interface IResolvableProperty : IReferencedProperty { interface IResolvedProperty : IReferencedProperty { val type: KType val adapter: TypeAdapter + val isMarkedNullable: Boolean operator fun component1() = property operator fun component2() = adapter @@ -39,6 +40,7 @@ class ResolvedProperty( override val isFlat: Boolean ) : IResolvableProperty, IResolvedProperty { override val type: KType = property.returnType + override val isMarkedNullable: Boolean = type.isMarkedNullable override fun resolve(gson: Gson?): IResolvedProperty { return this @@ -74,6 +76,7 @@ interface IResolvableMutableProperty : IReferencedMutableProperty : IResolvableMutableProperty { val type: KType val adapter: TypeAdapter + val isMarkedNullable: Boolean operator fun component1() = property operator fun component2() = adapter @@ -91,6 +94,7 @@ class ResolvedMutableProperty( override val mustBePresent: Boolean? ) : IResolvableMutableProperty, IResolvedMutableProperty { override val type: KType = property.returnType + override val isMarkedNullable: Boolean = type.isMarkedNullable override fun resolve(gson: Gson?): IResolvedMutableProperty { return this