mirror of
https://github.com/CPunch/LuaDecompy.git
synced 2024-11-23 15:10:09 +00:00
ld: minor refactoring
This commit is contained in:
parent
3be45f156a
commit
f9f1d4af00
56
lundump.py
56
lundump.py
@ -70,6 +70,8 @@ _RKBCInstr = [Opcodes.SETTABLE, Opcodes.ADD, Opcodes.SUB, Opcodes.MUL, Opcodes.D
|
|||||||
_RKCInstr = [Opcodes.GETTABLE, Opcodes.SELF]
|
_RKCInstr = [Opcodes.GETTABLE, Opcodes.SELF]
|
||||||
_KBx = [Opcodes.LOADK, Opcodes.GETGLOBAL, Opcodes.SETGLOBAL]
|
_KBx = [Opcodes.LOADK, Opcodes.GETGLOBAL, Opcodes.SETGLOBAL]
|
||||||
|
|
||||||
|
_LUAMAGIC = b'\x1bLua'
|
||||||
|
|
||||||
# is an 'RK' value a K? (result is true for K, false for R)
|
# is an 'RK' value a K? (result is true for K, false for R)
|
||||||
def whichRK(rk: int):
|
def whichRK(rk: int):
|
||||||
return (rk & (1 << 8)) > 0
|
return (rk & (1 << 8)) > 0
|
||||||
@ -313,29 +315,21 @@ class LuaUndump:
|
|||||||
def get_byte(self) -> int:
|
def get_byte(self) -> int:
|
||||||
return self.loadBlock(1)[0]
|
return self.loadBlock(1)[0]
|
||||||
|
|
||||||
def get_int32(self) -> int:
|
def get_uint32(self) -> int:
|
||||||
if (self.big_endian):
|
order = 'big' if self.big_endian else 'little'
|
||||||
return int.from_bytes(self.loadBlock(4), byteorder='big', signed=False)
|
return int.from_bytes(self.loadBlock(4), byteorder=order, signed=False)
|
||||||
else:
|
|
||||||
return int.from_bytes(self.loadBlock(4), byteorder='little', signed=False)
|
|
||||||
|
|
||||||
def get_int(self) -> int:
|
def get_uint(self) -> int:
|
||||||
if (self.big_endian):
|
order = 'big' if self.big_endian else 'little'
|
||||||
return int.from_bytes(self.loadBlock(self.int_size), byteorder='big', signed=False)
|
return int.from_bytes(self.loadBlock(self.int_size), byteorder=order, signed=False)
|
||||||
else:
|
|
||||||
return int.from_bytes(self.loadBlock(self.int_size), byteorder='little', signed=False)
|
|
||||||
|
|
||||||
def get_size_t(self) -> int:
|
def get_size_t(self) -> int:
|
||||||
if (self.big_endian):
|
order = 'big' if self.big_endian else 'little'
|
||||||
return int.from_bytes(self.loadBlock(self.size_t), byteorder='big', signed=False)
|
return int.from_bytes(self.loadBlock(self.size_t), byteorder=order, signed=False)
|
||||||
else:
|
|
||||||
return int.from_bytes(self.loadBlock(self.size_t), byteorder='little', signed=False)
|
|
||||||
|
|
||||||
def get_double(self) -> int:
|
def get_double(self) -> int:
|
||||||
if self.big_endian:
|
order = '>d' if self.big_endian else '<d'
|
||||||
return struct.unpack('>d', self.loadBlock(8))[0]
|
return struct.unpack(order, self.loadBlock(8))[0]
|
||||||
else:
|
|
||||||
return struct.unpack('<d', self.loadBlock(8))[0]
|
|
||||||
|
|
||||||
def get_string(self, size) -> str:
|
def get_string(self, size) -> str:
|
||||||
if (size == None):
|
if (size == None):
|
||||||
@ -349,8 +343,8 @@ class LuaUndump:
|
|||||||
chunk = Chunk()
|
chunk = Chunk()
|
||||||
|
|
||||||
chunk.name = self.get_string(None)
|
chunk.name = self.get_string(None)
|
||||||
chunk.frst_line = self.get_int()
|
chunk.frst_line = self.get_uint()
|
||||||
chunk.last_line = self.get_int()
|
chunk.last_line = self.get_uint()
|
||||||
|
|
||||||
chunk.numUpvals = self.get_byte()
|
chunk.numUpvals = self.get_byte()
|
||||||
chunk.numParams = self.get_byte()
|
chunk.numParams = self.get_byte()
|
||||||
@ -361,12 +355,12 @@ class LuaUndump:
|
|||||||
chunk.name = chunk.name[1:-1]
|
chunk.name = chunk.name[1:-1]
|
||||||
|
|
||||||
# parse instructions
|
# parse instructions
|
||||||
num = self.get_int()
|
num = self.get_uint()
|
||||||
for i in range(num):
|
for i in range(num):
|
||||||
chunk.appendInstruction(_decode_instr(self.get_int32()))
|
chunk.appendInstruction(_decode_instr(self.get_uint32()))
|
||||||
|
|
||||||
# get constants
|
# get constants
|
||||||
num = self.get_int()
|
num = self.get_uint()
|
||||||
for i in range(num):
|
for i in range(num):
|
||||||
constant: Constant = None
|
constant: Constant = None
|
||||||
type = self.get_byte()
|
type = self.get_byte()
|
||||||
@ -385,7 +379,7 @@ class LuaUndump:
|
|||||||
chunk.appendConstant(constant)
|
chunk.appendConstant(constant)
|
||||||
|
|
||||||
# parse protos
|
# parse protos
|
||||||
num = self.get_int()
|
num = self.get_uint()
|
||||||
for i in range(num):
|
for i in range(num):
|
||||||
chunk.appendProto(self.decode_chunk())
|
chunk.appendProto(self.decode_chunk())
|
||||||
|
|
||||||
@ -393,20 +387,20 @@ class LuaUndump:
|
|||||||
# eh, for now just consume the bytes.
|
# eh, for now just consume the bytes.
|
||||||
|
|
||||||
# line numbers
|
# line numbers
|
||||||
num = self.get_int()
|
num = self.get_uint()
|
||||||
for i in range(num):
|
for i in range(num):
|
||||||
self.get_int()
|
self.get_uint()
|
||||||
|
|
||||||
# locals
|
# locals
|
||||||
num = self.get_int()
|
num = self.get_uint()
|
||||||
for i in range(num):
|
for i in range(num):
|
||||||
name = self.get_string(None)[:-1] # local name ([:-1] to remove the NULL terminator)
|
name = self.get_string(None)[:-1] # local name ([:-1] to remove the NULL terminator)
|
||||||
start = self.get_int() # local start PC
|
start = self.get_uint() # local start PC
|
||||||
end = self.get_int() # local end PC
|
end = self.get_uint() # local end PC
|
||||||
chunk.appendLocal(Local(name, start, end))
|
chunk.appendLocal(Local(name, start, end))
|
||||||
|
|
||||||
# upvalues
|
# upvalues
|
||||||
num = self.get_int()
|
num = self.get_uint()
|
||||||
for i in range(num):
|
for i in range(num):
|
||||||
self.get_string(None) # upvalue name
|
self.get_string(None) # upvalue name
|
||||||
|
|
||||||
@ -414,7 +408,7 @@ class LuaUndump:
|
|||||||
|
|
||||||
def decode_rawbytecode(self, rawbytecode):
|
def decode_rawbytecode(self, rawbytecode):
|
||||||
# bytecode sanity checks
|
# bytecode sanity checks
|
||||||
if not rawbytecode[0:4] == b'\x1bLua':
|
if not rawbytecode[0:4] == _LUAMAGIC:
|
||||||
raise Exception("Lua Bytecode expected!")
|
raise Exception("Lua Bytecode expected!")
|
||||||
|
|
||||||
bytecode = array.array('b', rawbytecode)
|
bytecode = array.array('b', rawbytecode)
|
||||||
|
Loading…
Reference in New Issue
Block a user