Gamestudio Links
Zorro Links
Newest Posts
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/19/24 18:45
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (7th_zorro, AndrewAMD, TedMar), 837 guests, and 2 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
draw_obj with unicode strings #413759
12/17/12 13:11
12/17/12 13:11
Joined: Nov 2012
Posts: 62
Istanbul
T
Talemon Offline OP
Junior Member
Talemon  Offline OP
Junior Member
T

Joined: Nov 2012
Posts: 62
Istanbul
Hi, I think draw_obj has problems with unicode strings. I tried many ways to use it but it just draws the first character of the string. I think that's because second byte of a 16-bit char is most of the times zero(0x0) and draw_obj interprets it as a 8-bit null char.
If this is not the case, can you provide me an example to use draw_obj with a unicode string?

Re: draw_obj with unicode strings [Re: Talemon] #413768
12/17/12 15:22
12/17/12 15:22
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
Code:
function main() {
	TEXT* textUnicode = txt_create(10,0);  
	textUnicode.font = font_create("Arial Unicode MS#30");  
	txt_loadw(textUnicode,"Unicode.txt");
  	while(1) {
  		draw_obj(textUnicode);
  		wait(1);
  	}
 }



Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1