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

commonMain.com.divpundir.mavlink.definitions.csairlink.AirlinkAuthResponse.kt Maven / Gradle / Ivy

The newest version!
package com.divpundir.mavlink.definitions.csairlink

import com.divpundir.mavlink.api.GeneratedMavField
import com.divpundir.mavlink.api.GeneratedMavMessage
import com.divpundir.mavlink.api.MavEnumValue
import com.divpundir.mavlink.api.MavMessage
import com.divpundir.mavlink.serialization.MavDataDecoder
import com.divpundir.mavlink.serialization.MavDataEncoder
import com.divpundir.mavlink.serialization.encodeEnumValue
import com.divpundir.mavlink.serialization.safeDecodeEnumValue
import com.divpundir.mavlink.serialization.truncateZeros
import kotlin.Byte
import kotlin.ByteArray
import kotlin.Int
import kotlin.UInt
import kotlin.Unit

/**
 * Response to the authorization request
 *
 * @param respType Response type
 */
@GeneratedMavMessage(
  id = 52_001u,
  crcExtra = -17,
)
public data class AirlinkAuthResponse(
  /**
   * Response type
   */
  @GeneratedMavField(type = "uint8_t")
  public val respType: MavEnumValue = MavEnumValue.fromValue(0u),
) : MavMessage {
  override val instanceCompanion: MavMessage.MavCompanion = Companion

  override fun serializeV1(): ByteArray {
    val encoder = MavDataEncoder(SIZE_V1)
    encoder.encodeEnumValue(respType.value, 1)
    return encoder.bytes
  }

  override fun serializeV2(): ByteArray {
    val encoder = MavDataEncoder(SIZE_V2)
    encoder.encodeEnumValue(respType.value, 1)
    return encoder.bytes.truncateZeros()
  }

  public companion object : MavMessage.MavCompanion {
    private const val SIZE_V1: Int = 1

    private const val SIZE_V2: Int = 1

    override val id: UInt = 52_001u

    override val crcExtra: Byte = -17

    override fun deserialize(bytes: ByteArray): AirlinkAuthResponse {
      val decoder = MavDataDecoder(bytes)

      val respType = decoder.safeDecodeEnumValue(1).let { value ->
        val entry = AirlinkAuthResponseType.getEntryFromValueOrNull(value)
        if (entry != null) MavEnumValue.of(entry) else MavEnumValue.fromValue(value)
      }

      return AirlinkAuthResponse(
        respType = respType,
      )
    }

    public operator fun invoke(builderAction: Builder.() -> Unit): AirlinkAuthResponse =
        Builder().apply(builderAction).build()
  }

  public class Builder {
    public var respType: MavEnumValue = MavEnumValue.fromValue(0u)

    public fun build(): AirlinkAuthResponse = AirlinkAuthResponse(
      respType = respType,
    )
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy