spiiin

Results 18 comments of spiiin

This flag is enabled for windows by default, so this is not the reason for error for windows version

I just checked that code inside **#ifdef LUA_USE_WINDOWS ... #endif** and **#ifdef LUA_DL_DLL #endif** is reached by compiler. I didn't test that some dlls will loaded by mesen yet.

I need to check it, but I think it's possible.

Yes, pallete bytes encoded in separate layer for this game, but configs not support it now. I'll work on fix this

I have PoC of controlling fceux via Jupyter Notebook (interactive Python) through host lua-script https://www.youtube.com/watch?v=c3D5gljbkO0 Fceux has built low-level tcp-socket support, so it can read/write data from it. I created...

You must write Matlab code to connect to the socket and send commands via it yourself. Lua code can be the same, it is just listening commands from the socket...

Your question related with the game code itself, not the emulator. I didn't explore SMB code. Coins are drawn as background object, and I didn't know, when and how background...

Number of coins also drawn at background, ppu addresses 206D-206E

Rendering is controlled by the game code, there is no function in emulator or lua for this

Ah, I forgot, fceux lua-script really has poor support of debugging and changing ppu state. The best solution is to implement needed function yourself as I do for ppu.readbyte/readbyterange functions...