I haven't had a chance to look closely over this, and from what I see just scrolling above, there appears to be as much code remarked out as there is code active, so I can't really follow it much on my browser.
Let me give a quick demo of displaying chinese characters for you. I'm not fluent in the language so have no idea if I'm missing something here, but here's how to get a simplified chinese to display:
The font used is the one packaged for windows and should be readily available for most systems (I think).
The file with the chinese is below. Feel free to grab and test it.
Let me give a quick demo of displaying chinese characters for you. I'm not fluent in the language so have no idea if I'm missing something here, but here's how to get a simplified chinese to display:
Code: (Select All)
Screen _NewImage(800, 600, 32)
chinese$ = _ReadFile$("Chinese-Simplified8.txt") 'read out chinese file
Screen _NewImage(800, 600, 32) '32-bit screen for custom font
f = _LoadFont("msyh.ttc", 16, "monospace") 'load the windows built in chinese font
_Font f 'swap to that font
_UPrintString (0, 0), chinese$, 800, 8, f 'print the file
'note that there are no breakpoints in this file and no wordwrap. You'd need to detect those and split them yourself.
The font used is the one packaged for windows and should be readily available for most systems (I think).
The file with the chinese is below. Feel free to grab and test it.

