Unity I2 Localization Assets: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
(Created page with "{{GRAFPageHeader}} == TEXT == * ''' Format Type ''': Text <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> * ''' Signature ''':...")
 
imported>Ikskoks
(Created page with "{{GRAFPageHeader}} == TEXT == * ''' Format Type ''': Text <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> * ''' Signature ''':...")
(No difference)

Revision as of 22:04, 21 February 2022

Back to index | Edit this page

TEXT

  • Format Type : Text
  • Endian Order : Little Endian
  • Signature : I2Languages


Format Specifications

// header
12 bytes - nulls
4 bytes (uint32) - unknown  // 1
4 bytes (uint32) - unknown  // 1
4 bytes (uint32) - num of strings?
36 bytes - unknown

// data
num_of_strings *
{
  4 bytes (uint32) - string title length
  x bytes (char) - string title
  x bytes - padding
  4 bytes (uint32) - title type?  // 14

  num_of_languages *
  {
    4 bytes (uint32) - string length
    x bytes (char) - string
    x bytes - padding
  }

  4 bytes (uint32) - ID length
  x bytes (char) - ID   // e.g. "2846"
  4 bytes (uint32) - ID type?  // 14
  x bytes - padding
   
}


// tail
12 bytes - unknown
num_of_languages *
{
  4 bytes (uint32) - full lang name length
  x bytes (char) - full lang name  // e.g. "English"
  x bytes - padding
  4 bytes (uint32) - short lang name length
  x bytes (char) - short lang name // e.g. "en"
}

x bytes - Word count string, google API link etc.

Notes and Comments

Games

List of games using this file format:

  • The Falconeer (*.-18)

QuickBMS Script

Not written yet.

Compatible Programs

None.