How do I convert user data like this:

local user_data = { 0x33, 0x22, 0x11, 0x00 }

to either a uint32 or float using Lua? I cant find anything in the documentation that talks about this.

I've tried various methods and none of these have worked:

local data_uint32 = tonumber(user_data)
local data_uint32 = user_data:uint32()
local data_uint32 = uint32(user_data)
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I'd rather define my own function:

function toUInt32(user_data)
    return user_data[1] * 0x1000000
         + user_data[2] * 0x10000
         + user_data[3] * 0x100
         + user_data[4]
end
print(toUInt32(user_data))

Don't know any predefined library function to do this.

Note: You may want to consider the endianness of the number.

link|improve this answer
feedback

You might be interested in the solutions to this question as it is equivalent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.