Lights (Metroid Prime): Difference between revisions

imported>Antidote
(Created page with "The '''Lights''' section in Metroid Prime areas defines several different types of lights: spot, point, directional, and custom. The exact behavior for each type of light is n...")
 
>Aruki
 
(15 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The '''Lights''' section in Metroid Prime areas defines several different types of lights: spot, point, directional, and custom. The exact behavior for each type of light is not entirely known, however they all use the same struct. The only difference is how they're utilized by the engine.
The '''lights''' section in Metroid Prime areas defines several different types of lights: local ambient, directional, spot, and custom. Every light type has the same structure in the file; however, different types are utilized in different ways by the engine.


{{research|3|Past power, nothing is really known.}}
{{research|minor|Lights are mostly figured out; the remaining unknowns are very likely unused, because the game's code never accesses them or passes them to the main light class, but it would be good to have some double-checking. There's also more unknowns in the Prime 3 lights format that probably -are- used.}}


__TOC__
__TOC__


==Format==
==Format==
The header for the light section is extremely simple and consists of the magic, <code>0xBABEDEAD</code>, followed by two arrays of lights, preceded by their count.
 
===Light===
The lights section has a very brief header consisting of the magic value <code>0xBABEDEAD</code>. It's then followed by a number of '''light layers'''. Each light layer consists of a count value, then an array of lights. Each layer represents a separate set of lights; actors can choose with set they're lit with through an object property in LightParameters. The number of light layers is static, but it varies from game to game; Prime 1 and 2 can have up to two light layers, while Prime 3 can have four.
Lights consist a 0x41 byte long struct and consists of the following:
 
{|class="wikitable"
=== Metroid Prime 1/2 ===
!Type
 
!Description
Each light is a 0x41-byte struct. Note that the same structure is used for every light type, but not every value is used by every type; in fact, some of them aren't used by any of them.
 
{| class="wikitable"
! Offset
! Type
! Description
! Notes
|-
|-
|long
| 0x0
|'''Light Type'''
| long
| '''Light Type'''
|
|-
|-
|float3
| 0x4
|'''Light Color'''
| float3
| '''Color'''
| There is no alpha component.
|-
|-
|float3
| 0x10
|'''Position'''
| float3
| '''Position'''
|
|-
|-
|float3
| 0x1C
|{{unknown|Direction?}}
| float3
| '''Direction'''
|  
|-
|-
|float
| 0x28
|'''Power'''; NOT intensity, intensity is calculated using this value.
| float
| '''Brightness'''
| Multiplied by color for local ambient, used to calculate distance attenuation coefficients for spot/custom
|-
|-
|float
| 0x2C
|{{unknown|Angle?}}
| float
| '''Spot Cutoff'''
| Used to calculate angle attenuation coefficients for spotlights
|-
|-
|float
| 0x30
|{{unknown|Unknown}}
| float
| {{unknown|'''Unknown'''}}
| Possibly unused
|-
|-
|float
| 0x34
|{{unknown|Unknown}}
| bool
| {{unknown|'''Unknown'''}}
| Possibly unused
|-
|-
|byte
| 0x35
|{{unknown|Unknown}}
| float
| {{unknown|'''Unknown'''}}
| Possibly unused
|-
|-
|float
| 0x39
|{{unknown|Unknown}}
| long
| '''Falloff Type'''
| Possible values: 0 - Constant; 1 - Linear; 2 - Quadratic
|-
|-
|long
| 0x3D
|{{unknown|Unknown}}
| float
| {{unknown|'''Unknown'''}}
| Possibly unused
|-
|-
|float
| 0x41
|{{unknown|Unknown}}
| colspan=3 {{unknown|End of light}}
|}
|}
=== Metroid Prime 3 ===
Prime 3's light format is very similar, but there's a number of new fields introduced (most of which are currently unknown).
{| class="wikitable"
! Offset
! Type
! Description
! Notes
|-
| 0x0
| long
| '''Light Type'''
|
|-
| 0x4
| float4
| '''Color'''
| This color ''does'' have an alpha component, unlike Prime 1 lights.
|-
| 0x14
| float3
| '''Position'''
|
|-
| 0x20
| float3
| '''Direction'''
|
|-
| 0x2C
| float3
| '''Codirection'''
| The light's up vector
|-
| 0x38
| float
| '''Brightness'''
| Multiplied by color for local ambient, used to calculate distance attenuation coefficients for spot/custom
|-
| 0x3C
| float
| '''Spot Cutoff'''
| Used to calculate angle attenuation coefficients for spotlights
|-
| 0x40
| float
| {{unknown|'''Unknown'''}}
|
|-
| 0x44
| bool
| {{unknown|'''Unknown'''}}
|
|-
| 0x45
| float
| {{unknown|'''Unknown'''}}
|
|-
| 0x49
| u32
| '''Falloff Type'''
|
|-
| 0x4D
| float
| {{unknown|'''Unknown'''}}
|
|-
| 0x51
| float
| {{unknown|'''Unknown'''}}
|
|-
| 0x55
| float
| {{unknown|'''Unknown'''}}
|
|-
| 0x59
| float
| {{unknown|'''Unknown'''}}
|
|-
| 0x5D
| float
| {{unknown|'''Unknown'''}}
|
|-
| 0x61
| u32
| {{unknown|'''Unknown'''}}
|
|-
| 0x65
| colspan=3 {{unknown|End of light}}
|}
=== Light Types ===
The first value in each light is a type value. These are the possible values:
{| class="wikitable"
! Type
! Name
|-
| 0x0
| Local Ambient
|-
| 0x1
| Directional
|-
| 0x3
| Spot
|-
| Other
| Custom
|}
Note that although the game supports point lights, those can't be set through the MREA files; custom lights are used for omnidirectional lights.
== Light Functionality ==
=== Local Ambient ===
Ambient lights represent the brightness/color of an area in the absence of any regular lights. There's typically one of these per area; it's not known how they interact if there's more than one. For ambient lights, the color is not used directly; it's multiplied by the Multiplier value and then clamped between 0 and 1, and the result is used as the ambient color.
=== Directional ===
Directional lights are lights that have a constant direction for every vertex in the scene. Since GX doesn't have any built-in functions for handling directional lights, the way the game implements this is by taking the light's direction, inverting it, and then multiplying it by 1048576; the result is used as the light's position.
=== Spot ===
Spot lights shine in a specific direction from a specific position. Distance attenuation is calculated the same way as with custom lights. For angular attenuation, this is calculated using the spot cutoff parameter. The cutoff value from the file is halved and converted from degrees to radians, and the cosine of the result is calculated. Then the angular attenuation coefficients are calculated as:
<pre>(0.0, -CosCutoff / (1.0 - CosCutoff), 1.0 / (1.0 - CosCutoff))</pre>
=== Custom ===
While the other light types only use a couple of the value to generate lights out of what's essentially a preset setup, custom lights allow for much greater control and customization of the light properties. They're commonly used to represent omnidirectional lights; as such they're by far the most common light type in the game. For attenuation, angular attenuation is set to (1.0, 0.0, 0.0). Distance attenuation is calculated differently depending on the falloff type.
Each falloff type will set one distance attenuation coefficient, with the other two set to 0. For each type:
* 0: '''Constant''': Coefficient A is set to <code>2.0 / Brightness</code>
* 1: '''Linear''': Coefficient B is set to <code>250 / Brightness</code>
* 2: '''Quadratic''': Coefficient C is set to <code>25000 / Brightness</code>


[[Category:File Formats]]
[[Category:File Formats]]
[[Category:Metroid Prime]]
[[Category:Metroid Prime]]
[[Category:Metroid Prime 2: Echoes]]
[[Category:Metroid Prime 2: Echoes]]
[[Category:Major research needed]]
Anonymous user