LBA1:Holomap location file: Difference between revisions

From LBA File Information
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
};
};
numLocations = hqrSize / sizeof(Location)

for (i = 0; i < numLocations; i++) {
numLocations = hqrSize / sizeof(Location)
locations[i].x = readUint16LE();
for (i = 0; i < numLocations; i++) {
locations[i].x = readUint16LE();
locations[i].y = readUint16LE();
locations[i].y = readUint16LE();
locations[i].z = readUint16LE();
locations[i].z = readUint16LE();
locations[i].textIndex = 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

Find entries of this type

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]


Information provided by: alexfont