Difference between revisions of "Breakable (RW Section)"

From GTAMods Wiki
Jump to navigation Jump to search
m
m (Material Data)
Line 52: Line 52:
 
   
 
   
 
  Material Properties: array of <nowiki>[Material Count]</nowiki> elements
 
  Material Properties: array of <nowiki>[Material Count]</nowiki> elements
   12b - FLOAT[3]  - ambient/specular/diffuse, often 1.0
+
   12b - FLOAT[3]  - material color (red/green/blue)
  
 
==Tools and Scripts==
 
==Tools and Scripts==
 
* {{GTAF|269717|Breakable Objects Export Script}} by {{U|Deniska}}. A script for 3dsMax which allows to export Breakable model information to seperate files.
 
* {{GTAF|269717|Breakable Objects Export Script}} by {{U|Deniska}}. A script for 3dsMax which allows to export Breakable model information to seperate files.

Revision as of 22:56, 13 May 2015

{{{NAME}}}
RenderWare Stream Section
Vendor {{{VENDORNAME}}}
Module {{{MODULENAME}}}
Module ID 0x{{{MODULEID}}}
Identifier 0x{{{IDENTIFIER}}}
Chunk ID 0x{{{MODULEID}}}{{{IDENTIFIER}}}
Versions All
Hierarchy
Parents:
None
Children:
None
Extensions:
None
File Format

Breakable model is one of Rockstar's custom sections used in GTA San Andreas. It contains information on how to split breakable objects when they are hit. An object including this section has to be defined in object.dat.

The typical location in a SA dff section hierarchy is Clump > Geometry List > Geometry > Extension > Breakable model.

Header

There is a 56 byte header which holds information about the amount of data arrays that follow.

 4b - UINT32  - Offset to this data (zero if Breakable model is not used)
 4b - UINT32  - Position rule (if 1 then position is calculated relatively to object collision model, if 0 - to clump position)
 4b - UINT32  - Vertex Count
 4b - UINT32  - Offset to vertices (unused)
 4b - UINT32  - Offset to texture coors (unused)
 4b - UINT32  - Offset to vertex colors (unused)
 4b - UINT32  - Face Count
 4b - UINT32  - Offset to faces (unused)
 4b - UINT32  - Offset to material assignments (unused)
 4b - UINT32  - Material Count (= Fragment Count)
 4b - UINT32  - Offset to textures  (unused)
 4b - UINT32  - Offset to texture names  (unused)
 4b - UINT32  - Offset to mask names  (unused)
 4b - UINT32  - Offset to material properties  (unused)

Geometry Data

Vertices: array of [Vertex Count] elements
  12b - FLOAT[3]  - XYZ

UV Coords: array of [Vertex Count] elements
   8b - FLOAT[2]  - UV

Vertex Colors: array of [Vertex Count] elements
   4b - BYTE[4]   - RGBA

Faces: array of [Face Count] elements
   6b - UINT16[3] - 3 indices into vertex array

Material Assignments: array of [Face Count] elements
   2b - UINT16    - Material ID

Material Data

Each polygon group sharing the same material is treated as a separate fragment when the object is split up.

Texture Names: array of [Material Count] elements
  32b - CHAR[32]  - Texture Name

Alpha Names: array of [Material Count] elements
  32b - CHAR[32]  - Alpha Texture Name

Material Properties: array of [Material Count] elements
  12b - FLOAT[3]  - material color (red/green/blue)

Tools and Scripts