LBA1:Holomap location file: Difference between revisions
Jump to navigation
Jump to search
[checked revision] | [checked revision] |
Content deleted Content added
m Zink moved page LBA 1 holomap location file to LBA1:Holomap location file without leaving a redirect |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
}} |
}} |
||
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 { |
|||
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== |
==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