arma:file_formats:8wvr
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arma:file_formats:8wvr [2008/07/16 10:02] – created 8wvr initial page snakeman | arma:file_formats:8wvr [2024/08/01 07:55] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== ArmA 1 WRP File Format 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 reason being it is not editable in Visitor directly (it is the product of exporting a .pew file) and the format is in an // | ||
+ | |||
+ | A wrp file is the 'world map' for the given terrain. The simplicity of the requirements for the terrain are very neatly exposed in the structure below. | ||
+ | |||
+ | A ' | ||
+ | |||
+ | There are in fact only two components to a wrp. | ||
+ | * A cell grid of textures (alias materials, alias RvMat files) that ' | ||
+ | * A contiguous list of ' | ||
+ | |||
+ | All that is required within each of cell are definitions of | ||
+ | * The mean elevation (above or below sea level) of it's texture, | ||
+ | * And, the texture for it's surface. | ||
+ | |||
+ | The textures themselves are height independent. Meaning the same ' | ||
+ | |||
+ | Naturally, and of course, the same ' | ||
+ | |||
+ | Textures in arma can be very simple ' | ||
+ | |||
+ | Provisions exist to alter the terrain to | ||
+ | * Non Square dimensions | ||
+ | * Separate grids for Textures versus Elevations. | ||
+ | * Something other than 50 meter cells. | ||
+ | |||
+ | Official bis terrains have never used it. And I am unaware of any Oem terrain that does so. | ||
+ | |||
+ | 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, | ||
+ | |||
+ | 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. | ||
+ | |||
+ | Unlike cell indexes however, each identical pine tree is listed separately, rather than simply have a table. There' | ||
+ | |||
+ | For the purposes of game play, and no other reason, each, identical pine tree has a unique ' | ||
+ | |||
+ | |||
+ | ====== File Format ====== | ||
+ | |||
+ | This file format is principally used with Armed Assault and a derivation of it was used for Elite. | ||
+ | |||
+ | |||
====== 8WVR ====== | ====== 8WVR ====== | ||
- | ArmA WRP Format. | + | <code cpp> |
+ | 8WVR | ||
+ | { | ||
+ | WRPHeader | ||
+ | float | ||
+ | ushort | ||
+ | ulong | ||
+ | MaterialName | ||
+ | Object | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | * 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 ' | ||
+ | |||
+ | |||
+ | ====== WrpHeader ====== | ||
+ | |||
+ | <code cpp> | ||
+ | WrpHeader | ||
+ | { | ||
+ | char Filetype; | ||
+ | XYPair | ||
+ | XYPair | ||
+ | float | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | This is a fairly traditional Header for all Wrp types (including OPWRxx). | ||
+ | * OFP Resistance first introduced the cell Grid dimensions | ||
+ | * This, Arma format, simply adds a small wrinkle of a cellGrid Size. (Formerly set at 50 meters). | ||
+ | |||
+ | |||
+ | ====== MaterialName ====== | ||
+ | |||
+ | <code cpp> | ||
+ | MaterialName | ||
+ | { | ||
+ | Concatenated: | ||
+ | LenString(s) RvMatFileNames[[...]]; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | * 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 ' | ||
+ | * Secondly (and endemic to all wrp formats): bis use concatenated strings to express a series of rvmat files for EACH 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 concatenation to be used. | ||
+ | * In C code, each MaterialName entry (for 8WVR) appears as follows | ||
+ | |||
+ | <code cpp> | ||
+ | MaterialName | ||
+ | { | ||
+ | ulong Length; | ||
+ | char Name[[Length]]; | ||
+ | ulong Length2; // ALWAYS 0 | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | * At best, there happens to be only one String per cell entry. That fact does not negate the construct. | ||
+ | |||
+ | <code cpp> | ||
+ | Length: | ||
+ | </ | ||
+ | |||
+ | the above applies to EACH entry. (however, as stated) in the real world, this resolves to: | ||
+ | |||
+ | <code cpp> | ||
+ | Length: | ||
+ | </ | ||
+ | |||
+ | * Because the Material INDEX is one based (not zero based): | ||
+ | |||
+ | 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, | ||
+ | |||
+ | |||
+ | ====== Object ====== | ||
+ | |||
+ | <code cpp> | ||
+ | Object | ||
+ | { | ||
+ | float | ||
+ | ulong | ||
+ | String P3dFileName[[Length]]; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | The ' | ||
+ | |||
+ | Objects extend to end of file. There is no count as such. | ||
+ | |||
+ | There is at least one Object entry. | ||
+ | |||
+ | The last (or only) object entry is a dummy. There is ZERO length (and consequently no p3d file associated) for this dummy entry. (the other data content is that of the penultimate object, and ignored). The engine uses this fact to iterate thru the list of Objects when hunting down the ObjectID (par exemple). (end-of-file is a useless concept for the engine which has long since dispensed with file io and simply malloc' | ||
+ | |||
+ | 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 ====== | ||
- | Char[4] Signature: " | + | 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 |
- | Unsigned long [2] SizeX, SizeY - texture cell dimension.\\ | + | |
- | Unsigned long [2] SizeX, SizeY - elevations cell dimensions.\\ | + | |
- | Float Terrain Grid.\\ | + | |
- | Float Elevations Table [SizeX][SizeY]\\ | + | |
- | Short Rvmat Table [SizeX][SizeY]\\ | + | |
- | List of Rvmat Names\\ | + | |
- | 3D objects\\ | + | |
- | Very similar to OFP 4WVR. But elevations table in float, size of tables may be not the same (like ArmA OPRW) and rvmat files instead of textures. |
arma/file_formats/8wvr.1216202556.txt.gz · Last modified: 2008/07/16 10:02 by snakeman