Great Idea! Here's a self-executable jar file:
http://www.chronotext.org/lab/DEBUG1.jar (363K)
I added some System.out progress messages that should be helpful to isolate the issue.
The jar's manifest is as follows:
Class-Path: jogl.zip gluegen-rt.jar
Main-Class: debug3.Tokyo_15_DEBUG1Therefore, on my system, I put the jar in a directory together with:
- jogl.zip
- gluegen-rt.jar
- jogl.dll
- jogl_awt.dll
- gluegen-rt.dll
In order to see the output, I launch with something like:
java -classpath DEBUG1.jar debug3.Tokyo_15_DEBUG1 >output.txtSupposing everything runs without bugs, the output looks like:
Tokyo_15.init(): BEGIN...
Tokyo_15.init(): TEXTURE LOADED
Tokyo_15.init(): FONT CREATION BEGIN...END
Tokyo_15.init(): BACKGROUND LOADED
Tokyo_15.init(): END
Tokyo_15.display(): FRAME 1
ZFont.allocate: BEGIN...END
ZFont.initTexture: ENTITY '83' BEGIN...END
...
ZFont.initTexture: ENTITY '80' BEGIN...END
Tokyo_15.display(): FRAME 2Thanks!