arma:file_formats:8wvr
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
arma:file_formats:8wvr [2009/07/17 09:36] – added better info. snakeman | arma:file_formats:8wvr [2024/08/01 07:55] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== 8WVR ====== | + | ====== |
+ | |||
+ | [[https:// | ||
+ | |||
+ | **ArmA 1** aka Armed Assault (ArmA) | ||
+ | |||
+ | **WRP File Format - 8WVR** | ||
+ | |||
+ | See also [[ofp: | ||
- | Introduction | + | ====== |
The 8WVR.wrp file should be viewed as an intermediate file format and of little use to the community at large. | The 8WVR.wrp file should be viewed as an intermediate file format and of little use to the community at large. | ||
- | The reason being it is not editable in Visitor directly (it is the product of exporting a .pew file) and the format is in an unoptimized state for use in the Real Virtuality game engine. | + | The reason being it is not editable in Visitor directly (it is the product of exporting a .pew file) and the format is in an //unoptimized// state for use in the Real Virtuality game engine. |
- | A wrp file is the 'world map' for the given island. The simplicity of the requirements for the map are very neatly exposed in the structure below. | + | A wrp file is the 'world map' for the given terrain. The simplicity of the requirements for the terrain |
- | A ' | + | A ' |
There are in fact only two components to a wrp. | There are in fact only two components to a wrp. | ||
- | |||
* A cell grid of textures (alias materials, alias RvMat files) that ' | * A cell grid of textures (alias materials, alias RvMat files) that ' | ||
- | * A contiguous list of ' | + | * A contiguous list of ' |
All that is required within each of cell are definitions of | All that is required within each of cell are definitions of | ||
- | |||
* The mean elevation (above or below sea level) of it's texture, | * The mean elevation (above or below sea level) of it's texture, | ||
- | * And, the texture for it's surface. | + | * And, the texture for it's surface. |
The textures themselves are height independent. Meaning the same ' | The textures themselves are height independent. Meaning the same ' | ||
Line 27: | Line 34: | ||
Textures in arma can be very simple ' | Textures in arma can be very simple ' | ||
- | Provisions exist to alter the map to | + | Provisions exist to alter the terrain |
* Non Square dimensions | * Non Square dimensions | ||
* Separate grids for Textures versus Elevations. | * Separate grids for Textures versus Elevations. | ||
- | * Something other than 50 meter cells. | + | * Something other than 50 meter cells. |
- | Official | + | Official |
- | The only other necessary component of a wrp file is to populate it with objects. Objects are models, and as such, any single model is represented by a p3d file. Naturally and of course, the same model (Pine tree) can be referred to multiple times. Each one is a unique Object from the perspective of the wrp file. P3d models can of course be quite complex, even to the point of being inter-active, | + | The only other necessary component of a wrp file is to populate it with objects. |
- | Unlike cell indexes however, each identical pine tree is listed separately, rather than simply have a table. There' | + | Objects are models, and as such, any single model is represented by a p3d file. Naturally |
- | For the purposes | + | P3d models can of course be quite complex, even to the point of being inter-active, eg opening doors, but again, of themselves, they do no complicate |
- | Legend | + | Objects are independent of the cell grid structure. They are placed on the terrain using their own dimensional space transform. For all the engine cares, the building could be upside down and buried 10 meters under the sea. |
- | Little endian byte order, lsb first for numeric values, text is stored in Big endian byte order. | + | Unlike cell indexes however, each identical pine tree is listed separately, rather than simply have a table. There' |
- | * ushort: 16 bit unsigned short (2 bytes) | + | For the purposes of game play, and no other reason, each, identical pine tree has a unique ' |
- | * ulong: 32 bit unsigned integer | + | |
- | * float: 32 bit signed single precision floating point value (4 bytes) | + | |
- | * char: ascii character(s) | + | |
- | String | + | ====== File Format ====== |
- | <code cpp> | + | This file format is principally used with Armed Assault and a derivation of it was used for Elite. |
- | String | + | |
- | { | + | |
- | ulong Length; | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | This is a Basic or Pascal way of doing things. Unlike the more familiar Asciiz (null terminated) strings used in other file formats, here, speed is used to NOT calculate string length (or at least hunt the null char) | ||
- | XYPair | + | ====== 8WVR ====== |
<code cpp> | <code cpp> | ||
- | XYPair | + | 8WVR |
{ | { | ||
- | | + | WRPHeader |
+ | float | ||
+ | ushort | ||
+ | ulong | ||
+ | MaterialName | ||
+ | Object | ||
} | } | ||
</ | </ | ||
- | File Format | + | * The ' |
+ | * The Objects extend to end of file. There is no count as such. | ||
+ | * There is always at least one Object entry. | ||
+ | * The last, (and possibly only) entry, has no p3d filename associated with it. This is the ' | ||
- | * This file format is principally used with Armed Assault and a derivation of it was used for Elite. | ||
- | + | ====== WrpHeader ====== | |
- | 8WVR | + | |
<code cpp> | <code cpp> | ||
- | 8WVR | + | WrpHeader |
{ | { | ||
- | WRPHeader | + | char Filetype; // 8WVR |
- | | + | XYPair |
- | ushort | + | XYPair |
- | ulong | + | float |
- | MaterialName | + | |
- | | + | |
} | } | ||
</ | </ | ||
- | * The ' | + | This is a fairly traditional Header for all Wrp types (including OPWRxx). |
- | * The Objects extend | + | * OFP Resistance first introduced the cell Grid dimensions |
- | * There is always at least one Object entry. | + | * This, Arma format, simply adds a small wrinkle of a cellGrid Size. (Formerly set at 50 meters). |
- | * The last, (and possibly only) entry, has no p3d filename associated with it. This is the ' | + | |
- | WrpHeader | + | ====== MaterialName ====== |
<code cpp> | <code cpp> | ||
- | WrpHeader | + | MaterialName |
{ | { | ||
- | char Filetype; | + | Concatenated: |
- | | + | LenString(s) RvMatFileNames[[...]]; //[[Length]]: |
- | XYPair | + | |
- | float | + | |
} | } | ||
</ | </ | ||
- | This is a fairly traditional Header for all Wrp types (including " | + | * The MaterialIndex indicates what collection of textures should be used in any given cell. Ie any 50 meter chunk of the terrain. Thus, you should fully expect to see a lot of the same index value for ' |
- | + | * This ' | |
- | MaterialName | + | * Secondly |
+ | * More than one rvmat file *could* be used PER CELL. In practice this never happens. However, the construct exists in all Wrp formats for concatenation to be used. | ||
+ | * In C code, each MaterialName | ||
<code cpp> | <code cpp> | ||
MaterialName | MaterialName | ||
{ | { | ||
- | Strings RvMatFileNames[...]; //[Length]:" | + | ulong Length; // including the null char |
- | } | + | char Name[[Length]]; |
+ | ulong Length2; // ALWAYS 0 | ||
+ | }; | ||
</ | </ | ||
- | Conceptually, these are lists of all the textures that are used by this ' | + | * At best, there happens to be only one String per cell entry. That fact does not negate |
- | Endemic to all wrp formats: BI use concatenated Strings to express a series of rvmat files for the given cell. More than one rvmat file *could* be used per cell. In practice this never happens. However, the construct exists in all Wrp formats for it to be used. | + | <code cpp> |
+ | Length:Ascii: | ||
+ | </ | ||
- | In this wrp format, specifically 8WVR, BI use Length Strings rather than the more familiar Asciiz strings. The end result is the same. A zero length entry, is, the end of (this series of) concatenated rvmat files. | + | the above applies to EACH entry. (however, as stated) in the real world, this resolves |
- | + | ||
- | At best, there happens | + | |
<code cpp> | <code cpp> | ||
- | Length: | + | Length: |
</ | </ | ||
- | To complicate | + | * Because |
- | To this end, the very first MaterialName entry is always null. There is no file associated with it, because it will never be accessed. For the first entry only then there is a single ulong length value (four bytes) == 0. All other entries contain a length , followed by a string, followed by a length of zero. The latter, meaning, no more rvmats for this cell. | + | The very first MaterialName entry is always null. There is no file associated with it, because it will never be accessed. For the first entry only there is a single ulong length value (four bytes) == 0. All other entries contain a length , followed by a string, followed by a length of zero. |
- | * Note that this list of rvmat files while intended to only contain unique instances, does not. Occasionally, | + | * Note that this list of rvmat files while intended to only contain unique instances, does not. Occasionally, |
- | Object | + | |
+ | ====== | ||
<code cpp> | <code cpp> | ||
- | Object | + | Object |
{ | { | ||
- | float | + | float |
ulong | ulong | ||
- | String P3dFileName[Length]; | + | String P3dFileName[[Length]]; // ca\buildings\ryb_domek.p3d |
} | } | ||
</ | </ | ||
- | The ' | + | The ' |
Objects extend to end of file. There is no count as such. | Objects extend to end of file. There is no count as such. | ||
Line 159: | Line 161: | ||
Note that unlike the cell-indexes which refer to a single unique rvmat file. There is no index-list of p3d files (but perhaps should be, because of the enormous quantity of repetitions silver oak pine trees etc). | Note that unlike the cell-indexes which refer to a single unique rvmat file. There is no index-list of p3d files (but perhaps should be, because of the enormous quantity of repetitions silver oak pine trees etc). | ||
- | FilePaths | ||
- | * Note that file paths are *always* hard - wired to the (virtual) PrefixRoot\ directory. Like ArmA P3d files, there is NO, relative addressing. See P3D file formats for a description of the PrefixRoot\ | + | ====== FilePaths ====== |
+ | |||
+ | Note that file paths are *always* hard - wired to the (virtual) PrefixRoot\ directory. Like ArmA P3d files, there is NO, relative addressing. See P3D file formats for a description of the PrefixRoot\ |
arma/file_formats/8wvr.1247823402.txt.gz · Last modified: 2009/07/17 09:36 by snakeman