All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.registration.Registration.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-4.3.0
Show newest version
package godot.registration

import godot.PropertyHint
import godot.core.KtClass
import godot.core.KtConstructor
import godot.core.KtEnumListProperty
import godot.core.KtEnumProperty
import godot.core.KtFunction
import godot.core.KtFunction0
import godot.core.KtFunction1
import godot.core.KtFunction10
import godot.core.KtFunction11
import godot.core.KtFunction12
import godot.core.KtFunction13
import godot.core.KtFunction14
import godot.core.KtFunction15
import godot.core.KtFunction16
import godot.core.KtFunction2
import godot.core.KtFunction3
import godot.core.KtFunction4
import godot.core.KtFunction5
import godot.core.KtFunction6
import godot.core.KtFunction7
import godot.core.KtFunction8
import godot.core.KtFunction9
import godot.core.KtFunctionInfo
import godot.core.KtObject
import godot.core.KtProperty
import godot.core.KtPropertyInfo
import godot.core.KtRpcConfig
import godot.core.KtSignalInfo
import godot.core.TypeManager
import godot.core.VariantConverter
import godot.core.VariantParser
import godot.core.toVariantArray
import godot.core.variantArrayOf
import godot.tools.common.constants.Constraints
import godot.tools.common.extensions.convertToSnakeCase
import kotlin.reflect.KClass
import kotlin.reflect.KFunction1
import kotlin.reflect.KFunction10
import kotlin.reflect.KFunction11
import kotlin.reflect.KFunction12
import kotlin.reflect.KFunction13
import kotlin.reflect.KFunction14
import kotlin.reflect.KFunction15
import kotlin.reflect.KFunction16
import kotlin.reflect.KFunction17
import kotlin.reflect.KFunction2
import kotlin.reflect.KFunction3
import kotlin.reflect.KFunction4
import kotlin.reflect.KFunction5
import kotlin.reflect.KFunction6
import kotlin.reflect.KFunction7
import kotlin.reflect.KFunction8
import kotlin.reflect.KFunction9
import kotlin.reflect.KMutableProperty1
import kotlin.reflect.KProperty

data class KtFunctionArgument(
    val type: VariantConverter,
    val className: String,
    val name: String = "" //empty for return type
) {
    internal fun toKtPropertyInfo() = KtPropertyInfo(
        type,
        name,
        className,
        PropertyHint.PROPERTY_HINT_NONE,
        "", //always empty. Only used for properties
    )
}


class ClassBuilderDsl(
    @PublishedApi internal val registeredName: String,
    private val relativeSourcePath: String,
    private val compilationTimeRelativeRegistrationFilePath: String,
    private val superClasses: List,
    private val baseGodotClass: String
) {
    private val constructors = mutableMapOf>()

    private val functions = mutableMapOf>()
    private var notificationFunctions = listOf Unit>()

    @PublishedApi
    internal val properties = mutableMapOf>()

    private val signals = mutableMapOf()

    fun constructor(constructor: KtConstructor) {
        require(!constructors.containsKey(constructor.parameterCount)) {
            "A constructor with ${constructor.parameterCount} argument(s) already exists."
        }
        require(constructor.parameterCount <= Constraints.MAX_CONSTRUCTOR_ARG_COUNT) {
            "Cannot register a constructor with ${constructor.parameterCount} arguments, max argument count is ${Constraints.MAX_CONSTRUCTOR_ARG_COUNT}"
        }
        constructors[constructor.parameterCount] = constructor
    }

    fun 

property( kProperty: KMutableProperty1, variantType: VariantConverter, type: VariantConverter, className: String, hint: PropertyHint = PropertyHint.PROPERTY_HINT_NONE, hintString: String = "", usage: Long ) { val propertyName = kProperty.name.convertToSnakeCase() require(!properties.contains(propertyName)) { "Found two properties with name $propertyName for class $registeredName" } properties[propertyName] = KtProperty( KtPropertyInfo( type, propertyName, className, hint, hintString, usage ), kProperty, variantType ) } inline fun > enumProperty( kProperty: KMutableProperty1, usage: Long, hintString: String ) { val propertyName = kProperty.name.convertToSnakeCase() require(!properties.contains(propertyName)) { "Found two properties with name $propertyName for class $registeredName" } properties[propertyName] = KtEnumProperty( KtPropertyInfo( VariantParser.LONG, propertyName, "Int", PropertyHint.PROPERTY_HINT_ENUM, hintString, usage, ), kProperty, { enum: P? -> enum?.ordinal ?: 1 }, { i -> enumValues

()[i] } ) } inline fun , L : Collection

> enumListProperty( kProperty: KMutableProperty1, usage: Long, hintString: String ) { val propertyName = kProperty.name.convertToSnakeCase() require(!properties.contains(propertyName)) { "Found two properties with name $propertyName for class $registeredName" } properties[propertyName] = KtEnumListProperty( KtPropertyInfo( VariantParser.ARRAY, propertyName, "Int", PropertyHint.PROPERTY_HINT_ENUM, hintString, usage, ), kProperty, { enumList: Collection

? -> enumList ?.map { it.ordinal } ?.toVariantArray() ?: variantArrayOf() }, { enumOrdinalVariantArray -> @Suppress("UNCHECKED_CAST") enumOrdinalVariantArray.map { enumValues

()[it] } as L } ) } @JvmName("enumFlagPropertyMutable") @Suppress("UNCHECKED_CAST") inline fun > enumFlagProperty( kProperty: KMutableProperty1>, usage: Long, hintString: String ) = enumFlagProperty( kProperty as KMutableProperty1>, usage, hintString, ) inline fun > enumFlagProperty( kProperty: KMutableProperty1>, usage: Long, hintString: String ) { val propertyName = kProperty.name.convertToSnakeCase() require(!properties.contains(propertyName)) { "Found two properties with name $propertyName for class $registeredName" } properties[propertyName] = KtEnumProperty( KtPropertyInfo( VariantParser.LONG, propertyName, "Int", PropertyHint.PROPERTY_HINT_FLAGS, hintString, usage, ), kProperty, { enumSet -> var intFlag = 0 enumSet?.forEach { enum -> intFlag += 1 shl enum.ordinal } intFlag }, { value -> val intFlag = (value as P).ordinal val enums = mutableSetOf

() var bit = 1 for (i in 0 until Int.SIZE_BITS) { if ((intFlag and bit) > 0) { val element = enumValues

().firstOrNull { it.ordinal == i } if (element != null) { enums.add(element) } } bit = bit shl 1 if (bit > intFlag) break } enums } ) } /** * Notification functions of class hierarchy * * Order: child to parent * * Only present if the notification function is registered and is overriding [KtObject._notification]. * * **Note:** Manually declared functions with name `_notification` are not supposed to be added to this list even if * the return type and parameters match! */ fun notificationFunctions( notificationFunctionsOfClassHierarchy: List Unit> ) { notificationFunctions = notificationFunctionsOfClassHierarchy } fun function( func: KFunction1, variantType: VariantConverter, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction0( KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf(), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), func, variantType ) ) } fun function( func: KFunction2, variantType: VariantConverter, p0Type: VariantConverter, p0: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction1( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type ) ) } fun function( func: KFunction3, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction2( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type ) ) } fun function( func: KFunction4, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction3( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type ) ) } fun function( func: KFunction5, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction4( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type ) ) } fun function( func: KFunction6, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction5( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type ) ) } fun function( func: KFunction7, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction6( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, ) ) } fun function( func: KFunction8, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction7( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, ) ) } fun function( func: KFunction9, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction8( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, ) ) } fun function( func: KFunction10, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction9( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type ) ) } fun function( func: KFunction11, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p9Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, p9: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction10( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo(), p9.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type, p9Type = p9Type ) ) } fun function( func: KFunction12, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p9Type: VariantConverter, p10Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, p9: KtFunctionArgument, p10: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction11( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo(), p9.toKtPropertyInfo(), p10.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type, p9Type = p9Type, p10Type = p10Type ) ) } fun function( func: KFunction13, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p9Type: VariantConverter, p10Type: VariantConverter, p11Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, p9: KtFunctionArgument, p10: KtFunctionArgument, p11: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction12( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo(), p9.toKtPropertyInfo(), p10.toKtPropertyInfo(), p11.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type, p9Type = p9Type, p10Type = p10Type, p11Type = p11Type ) ) } fun function( func: KFunction14, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p9Type: VariantConverter, p10Type: VariantConverter, p11Type: VariantConverter, p12Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, p9: KtFunctionArgument, p10: KtFunctionArgument, p11: KtFunctionArgument, p12: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction13( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo(), p9.toKtPropertyInfo(), p10.toKtPropertyInfo(), p11.toKtPropertyInfo(), p12.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type, p9Type = p9Type, p10Type = p10Type, p11Type = p11Type, p12Type = p12Type ) ) } fun function( func: KFunction15, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p9Type: VariantConverter, p10Type: VariantConverter, p11Type: VariantConverter, p12Type: VariantConverter, p13Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, p9: KtFunctionArgument, p10: KtFunctionArgument, p11: KtFunctionArgument, p12: KtFunctionArgument, p13: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction14( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo(), p9.toKtPropertyInfo(), p10.toKtPropertyInfo(), p11.toKtPropertyInfo(), p12.toKtPropertyInfo(), p13.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type, p9Type = p9Type, p10Type = p10Type, p11Type = p11Type, p12Type = p12Type, p13Type = p13Type ) ) } fun function( func: KFunction16, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p9Type: VariantConverter, p10Type: VariantConverter, p11Type: VariantConverter, p12Type: VariantConverter, p13Type: VariantConverter, p14Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, p9: KtFunctionArgument, p10: KtFunctionArgument, p11: KtFunctionArgument, p12: KtFunctionArgument, p13: KtFunctionArgument, p14: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction15( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo(), p9.toKtPropertyInfo(), p10.toKtPropertyInfo(), p11.toKtPropertyInfo(), p12.toKtPropertyInfo(), p13.toKtPropertyInfo(), p14.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type, p9Type = p9Type, p10Type = p10Type, p11Type = p11Type, p12Type = p12Type, p13Type = p13Type, p14Type = p14Type ) ) } fun function( func: KFunction17, variantType: VariantConverter, p0Type: VariantConverter, p1Type: VariantConverter, p2Type: VariantConverter, p3Type: VariantConverter, p4Type: VariantConverter, p5Type: VariantConverter, p6Type: VariantConverter, p7Type: VariantConverter, p8Type: VariantConverter, p9Type: VariantConverter, p10Type: VariantConverter, p11Type: VariantConverter, p12Type: VariantConverter, p13Type: VariantConverter, p14Type: VariantConverter, p15Type: VariantConverter, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument, p5: KtFunctionArgument, p6: KtFunctionArgument, p7: KtFunctionArgument, p8: KtFunctionArgument, p9: KtFunctionArgument, p10: KtFunctionArgument, p11: KtFunctionArgument, p12: KtFunctionArgument, p13: KtFunctionArgument, p14: KtFunctionArgument, p15: KtFunctionArgument, returnType: KtFunctionArgument, rpcConfig: KtRpcConfig ) { appendFunction( KtFunction16( functionInfo = KtFunctionInfo( name = func.name.convertToSnakeCase(), _arguments = listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo(), p5.toKtPropertyInfo(), p6.toKtPropertyInfo(), p7.toKtPropertyInfo(), p8.toKtPropertyInfo(), p9.toKtPropertyInfo(), p10.toKtPropertyInfo(), p11.toKtPropertyInfo(), p12.toKtPropertyInfo(), p13.toKtPropertyInfo(), p14.toKtPropertyInfo(), p15.toKtPropertyInfo() ), returnVal = returnType.toKtPropertyInfo(), rpcConfig = rpcConfig ), function = func, variantType = variantType, p0Type = p0Type, p1Type = p1Type, p2Type = p2Type, p3Type = p3Type, p4Type = p4Type, p5Type = p5Type, p6Type = p6Type, p7Type = p7Type, p8Type = p8Type, p9Type = p9Type, p10Type = p10Type, p11Type = p11Type, p12Type = p12Type, p13Type = p13Type, p14Type = p14Type, p15Type = p15Type ) ) } fun signal(kProperty: KProperty) { appendSignal( KtSignalInfo(kProperty.name.convertToSnakeCase(), listOf()) ) } fun signal( kProperty: KProperty, p0: KtFunctionArgument ) { appendSignal( KtSignalInfo( kProperty.name.convertToSnakeCase(), listOf( p0.toKtPropertyInfo() ) ) ) } fun signal( kProperty: KProperty, p0: KtFunctionArgument, p1: KtFunctionArgument ) { appendSignal( KtSignalInfo( kProperty.name.convertToSnakeCase(), listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo() ) ) ) } fun signal( kProperty: KProperty, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument ) { appendSignal( KtSignalInfo( kProperty.name.convertToSnakeCase(), listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo() ) ) ) } fun signal( kProperty: KProperty, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument ) { appendSignal( KtSignalInfo( kProperty.name.convertToSnakeCase(), listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo() ) ) ) } fun signal( kProperty: KProperty, p0: KtFunctionArgument, p1: KtFunctionArgument, p2: KtFunctionArgument, p3: KtFunctionArgument, p4: KtFunctionArgument ) { appendSignal( KtSignalInfo( kProperty.name.convertToSnakeCase(), listOf( p0.toKtPropertyInfo(), p1.toKtPropertyInfo(), p2.toKtPropertyInfo(), p3.toKtPropertyInfo(), p4.toKtPropertyInfo() ) ) ) } private fun appendFunction(function: KtFunction) { require(!functions.containsKey(function.functionInfo.name)) { "A method with ${function.functionInfo.name} already exists." } functions[function.functionInfo.name] = function } @PublishedApi internal fun appendSignal(signalInfo: KtSignalInfo) { require(!signals.containsKey(signalInfo.name)) { "A signal with ${signalInfo.name} already exists." } signals[signalInfo.name] = signalInfo } internal fun build(): KtClass { check(constructors.isNotEmpty()) { "Please provide at least one constructor." } // Constraints.MAX_CONSTRUCTOR_ARG_COUNT + 1 because we have no arg constructor. val constructorArray = arrayOfNulls>(Constraints.MAX_CONSTRUCTOR_ARG_COUNT + 1) constructors.forEach { constructorArray[it.key] = it.value } return KtClass( registeredName = registeredName, relativeSourcePath = relativeSourcePath, compilationTimeRelativeRegistrationFilePath = compilationTimeRelativeRegistrationFilePath, _registeredSupertypes = superClasses, _constructors = constructorArray.toList(), _properties = properties, _functions = functions, _notificationFunctions = notificationFunctions, _signalInfos = signals, baseGodotClass = baseGodotClass ) } } class ClassRegistry( private val projectName: String, private val isDependency: Boolean, ) { private val _classes = mutableListOf>() val classes: List> = _classes fun registerClass( superClass: List, kClass: KClass, isTool: Boolean = false, baseGodotClass: String, registeredName: String, relativeSourcePath: String, compilationTimeRelativeRegistrationFilePath: String, cb: ClassBuilderDsl.() -> Unit ) { val builder = ClassBuilderDsl(registeredName, relativeSourcePath, compilationTimeRelativeRegistrationFilePath, superClass, baseGodotClass) builder.cb() TypeManager.registerUserType(registeredName, kClass) registerClass(builder.build()) } private fun registerClass(cls: KtClass) { _classes.add(cls) } } interface ClassRegistrar { fun register(registry: ClassRegistry) }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy