Files
LCE_Format_Documentation/Formats/COL.md
2023-04-24 11:25:13 -04:00

44 lines
1.9 KiB
Markdown

| Name | Size (per element) | Description |
| :-:|:-:|:-:|
| COL Version | (int32)0x4 | indicates Format version
| [Colours](./COL.md#Standard-Colours) | variable | a list of all colours within the Colour Table
| [Water Colours](./COL.md#Water-Colours) | variable | a list of all water colours within the Colour Table(only if Version > 0)
## Standard Colours
| Name | Size (per element) | Description |
| :-:|:-:|:-:|
| Count | (int32)0x4 | Amount of Colours in the table
(repeated per count)
| Name | Size (per element) | Description |
| :-:|:-:|:-:|
| Name | variable | a string(int16 indicates length, then Little endian Unicode string of specified length) indicating Colour name
| Colour | [(ARGB)](./COL.md#ARGB)0x4 | a string(int16 indicates length, then Little endian Unicode string of specified length) indicating Colour name
## Water Colours
| Name | Size (per element) | Description |
| :-:|:-:|:-:|
| Count | (int32)0x4 | Amount of Colours in the table
(repeated per count)
| Name | Size (per element) | Description |
| :-:|:-:|:-:|
| Name | variable | a string(int16 indicates length, then Little endian Unicode string of specified length) indicating Colour name
| Surface Colour | [(ARGB)](./COL.md#ARGB)0x4 | a string(int16 indicates length, then Little endian Unicode string of specified length) indicating Colour name
| Underwater Colour | [(ARGB)](./COL.md#ARGB)0x4 | a string(int16 indicates length, then Little endian Unicode string of specified length) indicating Colour name
| Fog Colour | [(ARGB)](./COL.md#ARGB)0x4 | a string(int16 indicates length, then Little endian Unicode string of specified length) indicating Colour name
## ARGB
| Name | Size (per element) | Description |
| :-:|:-:|:-:|
| Alpha | (int8)0x1 | Alpha colour channel
| Red | (int8)0x1 | Red colour channel
| Green | (int8)0x1 | Green colour channel
| Blue | (int8)0x1 | Blue colour channel