Небольшие попроавления имён

This commit is contained in:
DBotThePony 2023-08-13 15:00:32 +07:00
parent 2faf509bf5
commit a97e51a51d
Signed by: DBot
GPG Key ID: DCC23B5715498507
7 changed files with 58 additions and 24 deletions

View File

@ -779,6 +779,41 @@ class Starbound : ISBFileLocator {
1
}
state.setTableFunction("treeStemDirectory", this) { args ->
// String root.treeStemDirectory(String stemName)
TODO("treeStemDirectory")
}
state.setTableFunction("treeFoliageDirectory", this) { args ->
// String root.treeFoliageDirectory(String foliageName)
TODO("treeFoliageDirectory")
}
state.setTableFunction("collection", this) { args ->
// Collection root.collection(String collectionName)
TODO("collection")
}
state.setTableFunction("collectables", this) { args ->
// List<Collectable> root.collectables(String collectionName)
TODO("collectables")
}
state.setTableFunction("elementalResistance", this) { args ->
// String root.elementalResistance(String elementalType)
TODO("elementalResistance")
}
state.setTableFunction("dungeonMetadata", this) { args ->
// Json root.dungeonMetadata(String dungeonName)
TODO("dungeonMetadata")
}
state.setTableFunction("behavior", this) { args ->
// BehaviorState root.behavior(`LuaTable` context, Json config, `JsonObject` parameters)
TODO("behavior")
}
state.pop()
state.load(polyfill, "@starbound.jar!/scripts/polyfill.lua")

View File

@ -65,7 +65,7 @@ class TreasurePoolDefinition(pieces: List<Piece>) {
for (round in 0 until rounds) {
for (entry in fill) {
entry.map(left = {
entry.run(left = {
val stack = it.makeStack()
if (stack.isNotEmpty) result.add(stack)
}, right = {
@ -78,7 +78,7 @@ class TreasurePoolDefinition(pieces: List<Piece>) {
for (entry in pool) {
if (chosen <= entry.weight) {
entry.treasure.map(left = {
entry.treasure.run(left = {
val stack = it.makeStack()
if (stack.isNotEmpty) result.add(stack)
}, right = {

View File

@ -3,7 +3,7 @@ package ru.dbotthepony.kstarbound.defs.particle
import com.google.common.collect.ImmutableList
import ru.dbotthepony.kstarbound.defs.animation.DestructionAction
import ru.dbotthepony.kstarbound.io.json.builder.JsonImplementation
import ru.dbotthepony.kstarbound.util.ChainedProperty
import ru.dbotthepony.kstarbound.util.VirtualProperty
import ru.dbotthepony.kstarbound.util.SBPattern
import ru.dbotthepony.kvector.vector.ndouble.Vector2d
@ -25,14 +25,14 @@ interface IParticleConfig : IParticleVariance {
val particles = ImmutableList.copyOf(particles)
return object : IParticleConfig, IParticleVariance by chain {
override val finalVelocity by ChainedProperty(IParticleConfig::finalVelocity, particles)
override val destructionAction by ChainedProperty(IParticleConfig::destructionAction, particles)
override val destructionTime by ChainedProperty(IParticleConfig::destructionTime, particles)
override val fade by ChainedProperty(IParticleConfig::fade, particles)
override val layer by ChainedProperty(IParticleConfig::layer, particles)
override val timeToLive by ChainedProperty(IParticleConfig::timeToLive, particles)
override val variance by ChainedProperty(IParticleConfig::variance, particles)
override val text by ChainedProperty(IParticleConfig::text, particles)
override val finalVelocity by VirtualProperty(IParticleConfig::finalVelocity, particles)
override val destructionAction by VirtualProperty(IParticleConfig::destructionAction, particles)
override val destructionTime by VirtualProperty(IParticleConfig::destructionTime, particles)
override val fade by VirtualProperty(IParticleConfig::fade, particles)
override val layer by VirtualProperty(IParticleConfig::layer, particles)
override val timeToLive by VirtualProperty(IParticleConfig::timeToLive, particles)
override val variance by VirtualProperty(IParticleConfig::variance, particles)
override val text by VirtualProperty(IParticleConfig::text, particles)
}
}
}

View File

@ -2,7 +2,7 @@ package ru.dbotthepony.kstarbound.defs.particle
import com.google.common.collect.ImmutableList
import ru.dbotthepony.kstarbound.io.json.builder.JsonImplementation
import ru.dbotthepony.kstarbound.util.ChainedProperty
import ru.dbotthepony.kstarbound.util.VirtualProperty
import ru.dbotthepony.kvector.vector.Color
import ru.dbotthepony.kvector.vector.ndouble.Vector2d
import ru.dbotthepony.kvector.vector.ndouble.Vector4d
@ -24,14 +24,14 @@ interface IParticleVariance {
val particles = ImmutableList.copyOf(particles)
return object : IParticleVariance {
override val offset by ChainedProperty(IParticleVariance::offset, particles)
override val position by ChainedProperty(IParticleVariance::position, particles)
override val offsetRegion by ChainedProperty(IParticleVariance::offsetRegion, particles)
override val initialVelocity by ChainedProperty(IParticleVariance::initialVelocity, particles)
override val approach by ChainedProperty(IParticleVariance::approach, particles)
override val angularVelocity by ChainedProperty(IParticleVariance::angularVelocity, particles)
override val size by ChainedProperty(IParticleVariance::size, particles)
override val color by ChainedProperty(IParticleVariance::color, particles)
override val offset by VirtualProperty(IParticleVariance::offset, particles)
override val position by VirtualProperty(IParticleVariance::position, particles)
override val offsetRegion by VirtualProperty(IParticleVariance::offsetRegion, particles)
override val initialVelocity by VirtualProperty(IParticleVariance::initialVelocity, particles)
override val approach by VirtualProperty(IParticleVariance::approach, particles)
override val angularVelocity by VirtualProperty(IParticleVariance::angularVelocity, particles)
override val size by VirtualProperty(IParticleVariance::size, particles)
override val color by VirtualProperty(IParticleVariance::color, particles)
}
}
}

View File

@ -29,7 +29,7 @@ object EitherTypeAdapter : TypeAdapterFactory {
if (value == null)
out.nullValue()
else
value.map({ leftAdapter.write(out, it) }, { rightAdapter.write(out, it) })
value.run({ leftAdapter.write(out, it) }, { rightAdapter.write(out, it) })
}
override fun read(`in`: JsonReader): Either<Any, Any>? {

View File

@ -13,7 +13,7 @@ data class Either<L : Any, R : Any>(val left: L?, val right: R?) {
require(!(left != null && right != null)) { "Both inputs are not null" }
}
inline fun map(left: (L) -> Unit, right: (R) -> Unit) {
inline fun run(left: (L) -> Unit, right: (R) -> Unit) {
if (this.left != null)
left.invoke(this.left)
else

View File

@ -1,12 +1,11 @@
package ru.dbotthepony.kstarbound.util
import com.google.common.collect.ImmutableList
import java.util.*
import java.util.stream.Stream
import kotlin.properties.ReadOnlyProperty
import kotlin.reflect.KProperty
class ChainedProperty<R, T>(private val getter: (R) -> T?, private val receivers: ImmutableList<R>) : ReadOnlyProperty<Any?, T?> {
class VirtualProperty<R, T>(private val getter: (R) -> T?, private val receivers: ImmutableList<R>) : ReadOnlyProperty<Any?, T?> {
constructor(getter: (R) -> T?, receivers: Stream<R>) : this(getter, receivers.collect(ImmutableList.toImmutableList()))
constructor(getter: (R) -> T?, receivers: Array<out R>) : this(getter, ImmutableList.copyOf(receivers))
constructor(getter: (R) -> T?, receivers: List<R>) : this(getter, ImmutableList.copyOf(receivers))