LBA1:Holomap location file: Difference between revisions
Jump to navigation
Jump to search
[checked revision] | [checked revision] |
Content deleted Content added
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
These files contain the arrow informations which appear in the LBA1 Holomap. Informations related with its coordinations in Twinsun planet and also about the description text. |
These files contain the arrow informations which appear in the LBA1 Holomap. Informations related with its coordinations in Twinsun planet and also about the description text. |
||
struct Location { |
struct Location { |
||
uint16 x |
uint16 x |
||
uint16 y |
uint16 y |
||
uint16 z |
uint16 z |
||
uint16 textIndex |
uint16 textIndex |
||
}; |
}; |
||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
locations[i]. |
locations[i].y = readUint16LE(); |
||
locations[i]. |
locations[i].z = readUint16LE(); |
||
locations[i]. |
locations[i].textIndex = readUint16LE(); |
||
} |
|||
⚫ | |||
} |
|||
==Specification== |
==Specification== |
Latest revision as of 12:11, 27 January 2021
Holomap location file | |
---|---|
Extension |
HL1 |
Occurence |
LBA1 |
Programs supporting this format | |
References | |
These files contain the arrow informations which appear in the LBA1 Holomap. Informations related with its coordinations in Twinsun planet and also about the description text.
struct Location { uint16 x uint16 y uint16 z uint16 textIndex }; numLocations = hqrSize / sizeof(Location) for (i = 0; i < numLocations; i++) { locations[i].x = readUint16LE(); locations[i].y = readUint16LE(); locations[i].z = readUint16LE(); locations[i].textIndex = readUint16LE(); }
Specification[edit]
This article needs completion. Please provide more information if you can. |
Information provided by: alexfont