Are you, in fact, a pregnant lady who lives in the apartment next door to Superdeath's parents? - Commodore

Create an account  

 
MoM debug mode

I think I did not mention it yet. MoM has conserved remnants of an internal debug mode. It may be useful for testing and other purposes.



The debug mode can be set by putting 0x30D16 in Wizards.exe from 00 to 01.

Known effects:
ALT+A ....... automates turns, you can't move, but AIs move normally (same as Time stop spell).
ALT+K ....... switches Strategic combat On/Off
ALT+N ....... shows the X,Y coordinates and the continent number on the overland map

X ......... on City_internal screen shows extra debug info
crash diagnostics (don't know if it works)

RNG is reseed with a constant, so that the effects are fully repeatable on another computer - but I don't know if it works for battles (would be nice to know)
Reply

Very nice!
This will be helpful in troubleshooting problems!
--I like ILSe
Reply

kyrub Wrote:RNG is reseed with a constant, so that the effects are fully repeatable on another computer - but I don't know if it works for battles (would be nice to know)

I suggest reseeding the random generator with (turn count + something + seed salt) at the beginning of each turn and when loading the game. This way the effects are fully repeatable. Seed salt is non zero positive constant, which ensures better randomness. Limitation with this implementation is the game events'd be same for all games.

Seed value should be combination of more than 1 variable. For instance, combination of unit count, town count, gold amount, mana count, spell count, turn count, land mass, difficulty level et. cetera. This removes strong dependency on turn count. I think good seed to be (turn count + mana & gold amounts). Add mana & gold incomes for more complexity.
Reply

kyrub Wrote:The debug mode can be set by putting 0x30D16 in Wizards.exe from 00 to 01.

Known effects:
ALT+A ....... automates turns, you can't move, but AIs move normally (same as Time stop spell).
ALT+K ....... switches Strategic combat On/Off
ALT+N ....... shows the X,Y coordinates and the continent number on the overland map

X ......... on City_internal screen shows extra debug info
crash diagnostics (don't know if it works)

RNG is reseed with a constant, so that the effects are fully repeatable on another computer - but I don't know if it works for battles (would be nice to know)

@Kyrub: Now you changed the game so that X into the city moves to bext city. jive
How does the key in debug mode work now?

@ILS: can the debug mode be temporary enabled from the Tweaker during the game without permanently changing Wizards.exe?
Only the people crazy enough to think they can change the world of Arcanus and Myrror can do it. rolleye
Reply

FrancoK Wrote:@ILS: can the debug mode be temporary enabled from the Tweaker during the game without permanently changing Wizards.exe?

Yes. It's in the EXE:Game data section.
When connected to a game its effect is temporary.
When you manually load wizards.exe, change it, and save it, its effect is permanent.
--I like ILSe
Reply

I like Serena Wrote:Yes. It's in the EXE:Game data section.
When connected to a game its effect is temporary.
When you manually load wizards.exe, change it, and save it, its effect is permanent.
Thank you. thumbsup
Only the people crazy enough to think they can change the world of Arcanus and Myrror can do it. rolleye
Reply

I just found out that the debug flag enables 2 more keys:

F11 ....... exit with a memory usage message.
F12 ....... make a screen dump into a SCRDMP00.FLI file.
--I like ILSe
Reply

(September 23rd, 2012, 18:48)I like Serena Wrote: I just found out that the debug flag enables 2 more keys:

F11 ....... exit with a memory usage message.
F12 ....... make a screen dump into a SCRDMP00.FLI file.
@"I like Serena"
Apologies for asking 10 years later, but I just came across this post. Do you happen to recall in the code where you saw those options?
I have been working on disassembling MoM for years, but do not recall having noticed any such reference(s).
I had thought I had all the 'debug_flag' references documented.
Reply

@"I like Serena"
I found them! Please excuse my previous reply.
It just took a few days for it to (re)occur to me to work down from the DOS Get Enhanced Keystroke Interrupt and then also to find the right information on the enhanced scancodes.
And, now, I'm fixated on the subsequent code that manipulates and makes use of the codes. :|
Reply

There are 6 functions that call the one with the DOS interrupt. Of those, one is unused, one does nothing with the input (it's an input clear function), and one only processes the debug keys (it's a "press any key" function). Then there are two edit box input handlers for the two different types of text edit controls, and finally one routine that actually processes keystrokes other than text input. That's the one at $1A959 in wizards.exe or $18E9B in magic.exe. In short, it does this:

"processes keystrokes without activating controls,
like moving the mouse cursor around or progressing
ALT-string triggers, but also sets into the return
pointer any control with a hotkey match, and returns
the pressed key itself as well"
Reply



Forum Jump: