1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-18 05:23:22 -07:00
mm/Lua/monitor debug text.lua

48 lines
965 B
Lua
Raw Normal View History

2015-12-26 23:22:15 -08:00
-- use with inject.lua on O EUDB MQ
2016-01-12 15:54:42 -08:00
require "lib.setup"
2015-12-26 19:06:50 -08:00
require "boilerplate"
require "addrs.init"
2015-12-26 19:06:50 -08:00
local buffer = 0x700700
2015-12-26 19:06:50 -08:00
local vfc = A(0x168960, 4)
2015-12-26 23:22:15 -08:00
-- $ tail -f oot\ debug.txt | iconv -f euc-jp
local f = io.open('oot debug.txt', 'w+b')
local ignore_vframes = true
2015-12-26 23:22:15 -08:00
while version == "O EUDB MQ" do
2015-12-26 19:06:50 -08:00
local pos = buffer
local str = ''
2015-12-26 23:22:15 -08:00
local fmt = '%c'
2015-12-26 19:06:50 -08:00
while true do
local b = R1(pos)
pos = pos + 1
if b == 0 then
break
end
2015-12-26 23:22:15 -08:00
str = str..string.char(b)
2015-12-26 19:06:50 -08:00
end
2015-12-26 23:22:15 -08:00
f:write(str)
f:flush()
if ignore_vframes then
if R4(0x7006FC) == 0 then
W4(0x7006F8, 0x80700700)
W1(0x700700, 0)
else
print('buffer in use')
end
2015-12-26 19:06:50 -08:00
emu.frameadvance()
else
local old = vfc()
for i=1,30 do
emu.frameadvance()
local new = vfc()
if new ~= old then break end
end
2015-12-26 19:06:50 -08:00
end
end
2015-12-26 23:22:15 -08:00
f:close()