Valhalla Legends Archive

Programming => General Programming => Java Programming => Topic started by: Camel on August 21, 2007, 09:47 AM

Title: [0x50] TZ bias, et al
Post by: Camel on August 21, 2007, 09:47 AM
Anybody know how to determine TZ bias, LocaleID, LanguageID, Country abbreviation, and Country in Java?

p = new BNCSPacket(BNCSCommandIDs.SID_AUTH_INFO);
p.writeDWord(0); // Protocol ID (0)
p.writeDWord(PlatformIDs.PLATFORM_IX86); // Platform ID (IX86)
p.writeDWord(productID); // Product ID
p.writeDWord(verByte); // Version byte
p.writeDWord("enUS"); // Product language
p.writeDWord(0); // Local IP
p.writeDWord(0xf0); // TZ bias
p.writeDWord(0x409); // Locale ID
p.writeDWord(0x409); // Language ID
p.writeNTString("USA"); // Country abreviation
p.writeNTString("United States"); // Country
p.SendPacket(dos, cs.packetLog);
break;
Title: Re: [0x50] TZ bias, et al
Post by: rabbit on August 21, 2007, 10:48 AM
Not sure if it covers everything, but clicky (http://java.sun.com/developer/technicalArticles/J2SE/locale/index.html).
Title: Re: [0x50] TZ bias, et al
Post by: Camel on August 21, 2007, 11:05 AM
Thanks for the pointer. Got all but locale id/language id so far.

Locale loc = Locale.getDefault();
String prodLang = loc.getLanguage() + loc.getCountry();
int tzBias = TimeZone.getDefault().getOffset(new Date().getTime()) / -60000;
Out.info(this.getClass(), "tzBias=" + tzBias);


p = new BNCSPacket(BNCSCommandIDs.SID_AUTH_INFO);
p.writeDWord(0); // Protocol ID (0)
p.writeDWord(PlatformIDs.PLATFORM_IX86); // Platform ID (IX86)
p.writeDWord(productID); // Product ID
p.writeDWord(verByte); // Version byte
p.writeDWord(prodLang); // Product language
p.writeDWord(0); // Local IP
p.writeDWord(tzBias); // TZ bias
p.writeDWord(0x409); // Locale ID
p.writeDWord(0x409); // Language ID
p.writeNTString(loc.getISO3Country()); // Country abreviation
p.writeNTString(loc.getDisplayCountry()); // Country
p.SendPacket(dos, cs.packetLog);
Title: Re: [0x50] TZ bias, et al
Post by: Chriso on August 23, 2007, 06:45 PM
Don't know if this will help but it shows you how to use the TimeZone class:
http://java.sun.com/developer/JDCTechTips/2003/tt1104.html#2