Difference between revisions of "Category:Field Type"

From SWGANH Wiki
Jump to: navigation, search
Line 1: Line 1:
 
Here is a list of the different templates at your disposal ([http://en.wikipedia.org/wiki/List_of_colors look here for palette]):
 
Here is a list of the different templates at your disposal ([http://en.wikipedia.org/wiki/List_of_colors look here for palette]):
 
{| class="wikitable"
 
{| class="wikitable"
|{{sbyte}}
 
|sbyte
 
|{{byte}}
 
|byte
 
|{{bool}}
 
|bool
 
 
|-
 
|-
|{{short}}
+
|{{bool}}||bool||'''bool''' (1byte, 0:false, other value:true)
|short
+
|{{ushort}}
+
|ushort
+
 
|-
 
|-
|{{int}}
+
|{{sbyte}}||sbyte||'''sbyte''' (1byte, signed)
|int
+
|{{uint}}
+
|uint
+
|{{float}}
+
|float
+
 
|-
 
|-
|{{long}}
+
|{{byte}}||byte||'''byte''' (1byte, unsigned)
|long
+
|{{ulong}}
+
|ulong
+
|{{double}}
+
|double
+
 
|-
 
|-
|{{a_string}}
+
|{{short}}||short||'''short''' (2bytes, signed)
|a_string
+
|-
|{{u_string}}
+
|{{ushort}}||ushort||'''ushort''' (2bytes, unsigned)
|u_string
+
|-
|{{c_string}}
+
|{{int}}||int||'''int''' (4bytes, signed)
|c_string
+
|-
|{{b_string}}
+
|{{uint}}||uint||'''uint''' (4bytes, unsigned)
|b_string
+
|-
 +
|{{float}}||float||'''float''' (4bytes, signed)
 +
|-
 +
|{{long}}||long||'''long''' (8bytes, signed)
 +
|-
 +
|{{ulong}}||ulong||'''ulong''' (8bytes, unsigned)
 +
|-
 +
|{{double}}||double||'''double''' (8bytes, signed)
 +
|-
 +
|{{a_string}}||a_string||'''ANSI/ASCII String''' (each char: 1byte, ASCII:leading0+7bits, ANSI:8bits)
 +
|-
 +
|{{u_string}}||u_string||'''Unicode String''' (each char: 2bytes)
 +
|-
 +
|{{c_string}}||c_string||'''Customization String''' (each char: 2bytes)
 +
|-
 +
|{{b_string}}||b_string||'''Byte String''' (each char: 1byte, used for session key only)
 +
|-
 +
|{{list}}||list||'''LIST Component'''
 +
|-
 +
|{{uncertain}}||uncertain||'''Uncertain Values'''
 +
|-
 +
|{{unknown}}||unknown||'''Unknown Variable Name'''
 
|-
 
|-
|{{list}}
 
|list
 
|{{uncertain}}
 
|uncertain
 
|{{unknown}}
 
|unknown
 
 
|}
 
|}

Revision as of 06:20, 21 March 2007

Here is a list of the different templates at your disposal (look here for palette):

BOOL bool bool (1byte, 0:false, other value:true)
SBYTE sbyte sbyte (1byte, signed)
BYTE byte byte (1byte, unsigned)
SHORT short short (2bytes, signed)
USHORT ushort ushort (2bytes, unsigned)
INT int int (4bytes, signed)
UINT uint uint (4bytes, unsigned)
FLOAT float float (4bytes, signed)
LONG long long (8bytes, signed)
ULONG ulong ulong (8bytes, unsigned)
DOUBLE double double (8bytes, signed)
A_STRING a_string ANSI/ASCII String (each char: 1byte, ASCII:leading0+7bits, ANSI:8bits)
U_STRING u_string Unicode String (each char: 2bytes)
C_STRING c_string Customization String (each char: 2bytes)
B_STRING b_string Byte String (each char: 1byte, used for session key only)
{ } list LIST Component
? uncertain Uncertain Values
?? unknown Unknown Variable Name