|
|
|
@ -1,14 +1,10 @@
|
|
|
|
|
ptt_dfstring={}
|
|
|
|
|
if(COMPATMODE) then
|
|
|
|
|
ptt_dfstring.ptr={off=4,rtype=DWORD}
|
|
|
|
|
ptt_dfstring.size={off=20,rtype=DWORD}
|
|
|
|
|
if WINDOWS then
|
|
|
|
|
ptt_dfstring.ptr={off=0,rtype=DWORD}
|
|
|
|
|
ptt_dfstring.size={off=16,rtype=DWORD}
|
|
|
|
|
ptt_dfstring.alloc={off=20,rtype=DWORD}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
ptt_dfstring.ptr={off=0,rtype=DWORD}
|
|
|
|
|
ptt_dfstring.size={off=16,rtype=DWORD}
|
|
|
|
|
ptt_dfstring.alloc={off=20,rtype=DWORD}
|
|
|
|
|
end
|
|
|
|
|
function ptt_dfstring:getval()
|
|
|
|
|
function ptt_dfstring:getval()
|
|
|
|
|
--print(string.format("GETTING FROM:%x",self.__offset))
|
|
|
|
|
if self.size<16 then
|
|
|
|
|
--print(string.format("GETTING FROM:%x",self.__offset))
|
|
|
|
@ -17,8 +13,8 @@ function ptt_dfstring:getval()
|
|
|
|
|
--print(string.format("GETTING FROM:%x",self.ptr))
|
|
|
|
|
return string.sub(engine.peekstr(self.ptr),1,self.size)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
function ptt_dfstring:setval(newstring)
|
|
|
|
|
end
|
|
|
|
|
function ptt_dfstring:setval(newstring)
|
|
|
|
|
local offset=self.__offset
|
|
|
|
|
local strl=string.len(newstring)
|
|
|
|
|
if strl<16 then
|
|
|
|
@ -43,8 +39,13 @@ function ptt_dfstring:setval(newstring)
|
|
|
|
|
engine.pokestr(loc,newstring)
|
|
|
|
|
engine.poked(self.__offset,loc)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
--ptt_dfstring.ptr={off=0,rtype=DWORD}
|
|
|
|
|
function ptt_dfstring:getval()
|
|
|
|
|
return engine.peekstr_stl(self.__offset)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--if(COMPATMODE) then
|
|
|
|
|
--ptr_vector={}
|
|
|
|
|
--ptr_vector.st={off=4,rtype=DWORD}
|
|
|
|
@ -173,7 +174,7 @@ local posoff=VersionInfo.getGroup("Creatures"):getGroup("creature"):getOffset("p
|
|
|
|
|
ptr_Creature.x={off=posoff,rtype=WORD} --ok
|
|
|
|
|
ptr_Creature.y={off=posoff+2,rtype=WORD} --ok
|
|
|
|
|
ptr_Creature.z={off=posoff+4,rtype=WORD} --ok
|
|
|
|
|
ptr_Creature.flags={off=224,rtype=ptt_dfflag.new(10)}
|
|
|
|
|
ptr_Creature.flags={off=VersionInfo.getGroup("Creatures"):getGroup("creature"):getOffset("flags1"),rtype=ptt_dfflag.new(10)}
|
|
|
|
|
ptr_Creature.name={off=0,rtype=ptt_dfstring}
|
|
|
|
|
ptr_Creature.ID={off=252,rtype=DWORD} --ok i guess
|
|
|
|
|
ptr_Creature.followID={off=592,rtype=DWORD} --ok
|
|
|
|
|