gpt4 book ai didi

lua - 使用 LUA 解码 UDP 消息

转载 作者:行者123 更新时间:2023-12-04 01:52:40 24 4
gpt4 key购买 nike

我对 lua 和编程一般比较陌生(自学),所以请保持温和!

无论如何,我写了一个 lua 脚本来读取来自游戏的 UDP 消息。消息的结构是:

DATAxXXXXaaaaBBBBccccDDDDeeeeFFFFggggHHHH
DATAx = 4 letter ID and x = control character
XXXX = integer shows the group of the data (groups are known)
aaaa...HHHHH = 8 single-precision floating point numbers

最后一个是我需要解码的数字。

如果我打印收到的消息,它是这样的:
DATA*{V???A?A?...etc.

使用 string.byte(),我得到一个这样的字节流(我已经“格式化”了字节以反射(reflect)上面的结构。
68 65 84 65/42/20 0 0 0/237 222 28 66/189 59 182 65/107 42 41 65/33 173 79 63/0 0 128 63/146 41 41 65/0 0 30 66/0 0 184 65

前 5 个字节当然是 DATA*。接下来的4个是第20组数据。接下来的字节,我需要解码的字节,等于这些值:
237 222 28 66 = 39.218
189 59 182 65 = 22.779
107 42 41 65 = 10.573
33 173 79 63 = 0.8114
0 0 128 63 = 1.0000
146 41 41 65 = 10.573
0 0 30 66 = 39.500
0 0 184 65 = 23.000

我找到了使用 BitConverter.ToSingle() 进行解码的 C# 代码,但我还没有为 Lua 找到这样的代码。
任何的想法?

最佳答案

你有什么lua版本?
此代码适用于 Lua 5.3

local str = "DATA*\20\0\0\0\237\222\28\66\189\59\182\65..."
-- Read two float values starting from position 10 in the string
print(string.unpack("<ff", str, 10)) --> 39.217700958252 22.779169082642 18
-- 18 (third returned value) is the next position in the string

对于 Lua 5.1 您必须编写特殊功能(或从 François Perrad's git repo 中窃取)
local function binary_to_float(str, pos)
local b1, b2, b3, b4 = str:byte(pos, pos+3)
local sign = b4 > 0x7F and -1 or 1
local expo = (b4 % 0x80) * 2 + math.floor(b3 / 0x80)
local mant = ((b3 % 0x80) * 0x100 + b2) * 0x100 + b1
local n
if mant + expo == 0 then
n = sign * 0.0
elseif expo == 0xFF then
n = (mant == 0 and sign or 0) / 0
else
n = sign * (1 + mant / 0x800000) * 2.0^(expo - 0x7F)
end
return n
end


local str = "DATA*\20\0\0\0\237\222\28\66\189\59\182\65..."
print(binary_to_float(str, 10)) --> 39.217700958252
print(binary_to_float(str, 14)) --> 22.779169082642

关于lua - 使用 LUA 解码 UDP 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52238824/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com