How to parse debug information included with a game in Vorple?

Quixe seems to have functions to parse the gameinfo.dbg file generated when “Release for testing” is selected in the Inform 7 app, though it seems that this information is only parsed if the debug_info_chunk option is passed to the quixe_init function.

When using Vorple, Quixe initiation is controlled by Vorple / Haven. Is there a way to pass options to the quixe_init function from the vorple.options object?

It looks like Haven doesn’t provide options to quixe, so you should be able to provide them with the global game_options.

var game_options = {
    debug_info_chunk: true
};
1 Like