mirror of
https://github.com/google/flatbuffers.git
synced 2025-04-08 09:12:14 +08:00
63 lines
2.2 KiB
Kotlin
63 lines
2.2 KiB
Kotlin
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
import com.google.flatbuffers.BaseVector
|
|
import com.google.flatbuffers.BooleanVector
|
|
import com.google.flatbuffers.ByteVector
|
|
import com.google.flatbuffers.Constants
|
|
import com.google.flatbuffers.DoubleVector
|
|
import com.google.flatbuffers.FlatBufferBuilder
|
|
import com.google.flatbuffers.FloatVector
|
|
import com.google.flatbuffers.LongVector
|
|
import com.google.flatbuffers.StringVector
|
|
import com.google.flatbuffers.Struct
|
|
import com.google.flatbuffers.Table
|
|
import com.google.flatbuffers.UnionVector
|
|
import java.nio.ByteBuffer
|
|
import java.nio.ByteOrder
|
|
import kotlin.math.sign
|
|
|
|
@Suppress("unused")
|
|
class Attacker : Table() {
|
|
|
|
fun __init(_i: Int, _bb: ByteBuffer) {
|
|
__reset(_i, _bb)
|
|
}
|
|
fun __assign(_i: Int, _bb: ByteBuffer) : Attacker {
|
|
__init(_i, _bb)
|
|
return this
|
|
}
|
|
val swordAttackDamage : Int
|
|
get() {
|
|
val o = __offset(4)
|
|
return if(o != 0) bb.getInt(o + bb_pos) else 0
|
|
}
|
|
fun mutateSwordAttackDamage(swordAttackDamage: Int) : Boolean {
|
|
val o = __offset(4)
|
|
return if (o != 0) {
|
|
bb.putInt(o + bb_pos, swordAttackDamage)
|
|
true
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
companion object {
|
|
fun validateVersion() = Constants.FLATBUFFERS_24_3_25()
|
|
fun getRootAsAttacker(_bb: ByteBuffer): Attacker = getRootAsAttacker(_bb, Attacker())
|
|
fun getRootAsAttacker(_bb: ByteBuffer, obj: Attacker): Attacker {
|
|
_bb.order(ByteOrder.LITTLE_ENDIAN)
|
|
return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb))
|
|
}
|
|
fun createAttacker(builder: FlatBufferBuilder, swordAttackDamage: Int) : Int {
|
|
builder.startTable(1)
|
|
addSwordAttackDamage(builder, swordAttackDamage)
|
|
return endAttacker(builder)
|
|
}
|
|
fun startAttacker(builder: FlatBufferBuilder) = builder.startTable(1)
|
|
fun addSwordAttackDamage(builder: FlatBufferBuilder, swordAttackDamage: Int) = builder.addInt(0, swordAttackDamage, 0)
|
|
fun endAttacker(builder: FlatBufferBuilder) : Int {
|
|
val o = builder.endTable()
|
|
return o
|
|
}
|
|
}
|
|
}
|