commonMain.com.divpundir.mavlink.definitions.common.Attitude.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of definitions-jvm Show documentation
Show all versions of definitions-jvm Show documentation
A modern MAVLink library for the JVM written in Kotlin.
The newest version!
package com.divpundir.mavlink.definitions.common
import com.divpundir.mavlink.api.GeneratedMavField
import com.divpundir.mavlink.api.GeneratedMavMessage
import com.divpundir.mavlink.api.MavMessage
import com.divpundir.mavlink.serialization.MavDataDecoder
import com.divpundir.mavlink.serialization.MavDataEncoder
import com.divpundir.mavlink.serialization.encodeFloat
import com.divpundir.mavlink.serialization.encodeUInt32
import com.divpundir.mavlink.serialization.safeDecodeFloat
import com.divpundir.mavlink.serialization.safeDecodeUInt32
import com.divpundir.mavlink.serialization.truncateZeros
import kotlin.Byte
import kotlin.ByteArray
import kotlin.Float
import kotlin.Int
import kotlin.UInt
import kotlin.Unit
/**
* The attitude in the aeronautical frame (right-handed, Z-down, Y-right, X-front, ZYX, intrinsic).
*
* @param timeBootMs Timestamp (time since system boot).
* units = ms
* @param roll Roll angle (-pi..+pi)
* units = rad
* @param pitch Pitch angle (-pi..+pi)
* units = rad
* @param yaw Yaw angle (-pi..+pi)
* units = rad
* @param rollspeed Roll angular speed
* units = rad/s
* @param pitchspeed Pitch angular speed
* units = rad/s
* @param yawspeed Yaw angular speed
* units = rad/s
*/
@GeneratedMavMessage(
id = 30u,
crcExtra = 39,
)
public data class Attitude(
/**
* Timestamp (time since system boot).
* units = ms
*/
@GeneratedMavField(type = "uint32_t")
public val timeBootMs: UInt = 0u,
/**
* Roll angle (-pi..+pi)
* units = rad
*/
@GeneratedMavField(type = "float")
public val roll: Float = 0F,
/**
* Pitch angle (-pi..+pi)
* units = rad
*/
@GeneratedMavField(type = "float")
public val pitch: Float = 0F,
/**
* Yaw angle (-pi..+pi)
* units = rad
*/
@GeneratedMavField(type = "float")
public val yaw: Float = 0F,
/**
* Roll angular speed
* units = rad/s
*/
@GeneratedMavField(type = "float")
public val rollspeed: Float = 0F,
/**
* Pitch angular speed
* units = rad/s
*/
@GeneratedMavField(type = "float")
public val pitchspeed: Float = 0F,
/**
* Yaw angular speed
* units = rad/s
*/
@GeneratedMavField(type = "float")
public val yawspeed: Float = 0F,
) : MavMessage {
override val instanceCompanion: MavMessage.MavCompanion = Companion
override fun serializeV1(): ByteArray {
val encoder = MavDataEncoder(SIZE_V1)
encoder.encodeUInt32(timeBootMs)
encoder.encodeFloat(roll)
encoder.encodeFloat(pitch)
encoder.encodeFloat(yaw)
encoder.encodeFloat(rollspeed)
encoder.encodeFloat(pitchspeed)
encoder.encodeFloat(yawspeed)
return encoder.bytes
}
override fun serializeV2(): ByteArray {
val encoder = MavDataEncoder(SIZE_V2)
encoder.encodeUInt32(timeBootMs)
encoder.encodeFloat(roll)
encoder.encodeFloat(pitch)
encoder.encodeFloat(yaw)
encoder.encodeFloat(rollspeed)
encoder.encodeFloat(pitchspeed)
encoder.encodeFloat(yawspeed)
return encoder.bytes.truncateZeros()
}
public companion object : MavMessage.MavCompanion {
private const val SIZE_V1: Int = 28
private const val SIZE_V2: Int = 28
override val id: UInt = 30u
override val crcExtra: Byte = 39
override fun deserialize(bytes: ByteArray): Attitude {
val decoder = MavDataDecoder(bytes)
val timeBootMs = decoder.safeDecodeUInt32()
val roll = decoder.safeDecodeFloat()
val pitch = decoder.safeDecodeFloat()
val yaw = decoder.safeDecodeFloat()
val rollspeed = decoder.safeDecodeFloat()
val pitchspeed = decoder.safeDecodeFloat()
val yawspeed = decoder.safeDecodeFloat()
return Attitude(
timeBootMs = timeBootMs,
roll = roll,
pitch = pitch,
yaw = yaw,
rollspeed = rollspeed,
pitchspeed = pitchspeed,
yawspeed = yawspeed,
)
}
public operator fun invoke(builderAction: Builder.() -> Unit): Attitude =
Builder().apply(builderAction).build()
}
public class Builder {
public var timeBootMs: UInt = 0u
public var roll: Float = 0F
public var pitch: Float = 0F
public var yaw: Float = 0F
public var rollspeed: Float = 0F
public var pitchspeed: Float = 0F
public var yawspeed: Float = 0F
public fun build(): Attitude = Attitude(
timeBootMs = timeBootMs,
roll = roll,
pitch = pitch,
yaw = yaw,
rollspeed = rollspeed,
pitchspeed = pitchspeed,
yawspeed = yawspeed,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy