(24-08-2016, 08:45 AM)shygoo Wrote: Very cool stuff! I noticed in the documentation that BizHawk's Lua API provides hooks for CPU read/write/execute events, which is awesome, but I wasn't able to get them working with the N64 emulator. I wrote a small script to test the functions here http://pastebin.com/raw/fHS5fTJk. The console spits out "Mupen64Plus does not implement memory execute callbacks" when using the onmemoryexecute hook, and when using the onmemoryread/write hooks, the debugger window indicates that breakpoints have been added but they don't seem to trigger anything when they should. I was a little disheartened that these functions in particular don't work, but having built-in scripting for reading and modifying memory is very nice nonetheless. Never knew something like this was available for N64 emulation.
Nice, I hadn't read about those 'event' APIs yet. It would be great if any of those callbacks worked. I took your code and ran my own tests with the same outcomes. I even tried omitting the address because "If no address is given, it will attach to every memory read/write" but that didn't seem to fire either.
According to the Issue tracker
Request: add N64 debugging support, the N64 onmemoryread and onmemorywrite may work. I dug into the code a bit and see the hooks there as well:
N64.IDebuggable.cs Lines 76-139 and methods in
mupen64plusCoreApi.cs native interface, but haven't traced it all the way back into mupen64plus core. There might be some flag or method call needed to get mupen64plus to enable these breakpoints.
Edit: I had a chat with the BizHawk devs and apparently 1.11.6 doesn't support all the event features (like onmemoryexecute) and all the memory events only work if mupen is configured to use the Interpreter (or Pure Interpreter) core. You can grab the latest dev build from
AppVeyor and configure the "N64->Plugins->Global->Core Type". Once setup, then all read/write/exec trigger, however, it grinds emulation speed to a halt (e.g., I get 2 fps with all three enabled):
Code:
local MARIO_Y = 0x8033B1B0 -- mario y position
local MARIO_BEH_A = 0x802CB1C0 -- one of mario's behavior routines
local count_r = 0
local count_w = 0
local count_e = 0
-- callbacks
function memReadCallback()
count_r = count_r + 1
end
function memWriteCallback()
count_w = count_w + 1
end
function memExecCallback()
count_e = count_e + 1
end
local mario_y_r = event.onmemoryread(memReadCallback, MARIO_Y)
local mario_y_w = event.onmemorywrite(memWriteCallback, MARIO_Y)
local mario_beh_a_x = event.onmemoryexecute(memExecCallback, MARIO_BEH_A)
while true do
gui.text(0, 14, "R: " .. count_r .. " W: " .. count_w .. " E: " .. count_e)
emu.frameadvance()
end