SCAN (Metroid Prime 2): Difference between revisions

m
>Aruki
m (woah massive headers)
>Aruki
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{research|3|Crack SNFO}}
''This article is for the SCAN format from Metroid Prime 2 and 3. For other revisions of this format, see [[SCAN (File Format)]].''


The '''.SCAN file format''' describes SCAN POI data and has references to several resources. This variation of the format is completely different than its [[SCAN (Metroid Prime)|Metroid Prime]] counterpart.
The '''SCAN file format''' describes scannable objects. The format's been updated since Prime 1; the data is now embedded into a script object, using the [[Scriptable Layers (Metroid Prime 2)|scriptable layers]] format. There was also some additional data added to the format to set up the model that displays in the logbook.
 
{{research|minor|There's a couple remaining unknown parameters.}}


__TOC__
__TOC__


== Header ==
== Format ==
The header is rather simple and consists of the following:
 
{|class="wikitable"
The SCAN format sets up a small script layer that contains a single [[#ScannableObjectInfo|ScannableObjectInfo]] instance.
!Offset
 
!Size
=== Header ===
!Description
 
{| class="wikitable"
! Offset
! Size
! Description
|-
|-
|0x0
| 0x0
|4
| 4
|'''Magic''' FourCC
| '''Magic'''; always <code>SCAN</code>
|-
|-
|0x4
| 0x4
|4
| 4
|'''Version''' Always 2, no matter what game
| {{unknown|Unknown; always 2}}
|-
|-
|0x8
| 0x8
|1
| 1
|{{unknown|Boolean?}}
| {{unknown|Unknown}}
|-
|-
|0x9
| 0x9
|4
| 4
|{{unknown|Unknown}}
| '''Instance count'''; always 1
|}
|}


== SNFO Chunk ==
=== ScannableObjectInfo ===
The SNFO header is simply a FourCC and the total length in bytes. Due to the fact that there is nothing in the header to determine which version of SCAN we're working with, we have to rely on the size of the SNFO chunk. If it's less than 0x0251 bytes, it's Metroid Prime 2. Otherwise it's Metroid Prime 3.
 
This section of the file embeds a ScannableObjectInfo script object.
 
{| class="wikitable"
! Offset
! Size
! Description
|-
| 0x0
| 4
| '''Object type'''; always <code>SNFO</code>
|-
| 0x4
| 2
| '''Instance size'''
|-
| 0x6
| 4
| '''Instance ID'''; always 0
|-
| 0xA
| 2
| '''Connection count'''; always 0
|-
| 0xC
| 4
| '''Base property ID'''; always 0xFFFFFFFF
|-
| 0x10
| 2
| '''Base property size'''
|-
| 0x12
| 2
| '''Property count'''; 0x14 for Prime 2, 0x16 for Prime 3
|}
 
==== Properties (Echoes) ====
 
These are all the properties a ScannableObjectInfo instance contains:
 
{| class="wikitable"
! ID
! Type
! Name
|-
| 0x2F5B6423
| [[STRG (Metroid Prime)|STRG]]
| Scan Text
|-
| 0xC308A322
| long
| Scan Speed (0 for fast, 1 for slow)
|-
| 0x7B714814
| bool
| Is Important? (0 for blue, 1 for red)
|-
| 0x1733B1EC
| bool
| Use Logbook Model After Scan?
|-
| 0x53336141
| [[TXTR (File Format)|TXTR]]
| Post-Scan Override Texture
|-
| 0x3DE0BA64
| float
| Logbook Default X Rotation
|-
| 0x2ADD6628
| float
| Logbook Default Z Rotation
|-
| 0xD0C15066
| float
| Logbook Scale
|-
| 0xB7ADC418
| [[CMDL (Metroid Prime)|CMDL]]
| Logbook Model
|-
| 0x15694EE1
| [[AnimationParameters (Metroid Prime)|AnimationParameters]]
| Logbook AnimSet
|-
| 0x58F9FE99
| [[AnimationParameters (Metroid Prime)|AnimationParameters]]
| {{unknown|Unknown}}
|-
| 0x1C5B4A3A
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 1
|-
| 0x8728A0EE
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 2
|-
| 0xF1CD99D3
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 3
|-
| 0x6ABE7307
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 4
|-
| 0x1C07EBA9
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 5
|-
| 0x8774017D
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 6
|-
| 0xF1913840
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 7
|-
| 0x6AE2D294
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 8
|-
| 0x1CE2091C
| [[#ScanInfoSecondaryModel|ScanInfoSecondaryModel]]
| Secondary Model 9
|}
 
==== ScanInfoSecondaryModel ====
 
This struct is used to embed a resource that can be attached to the model in the logbook. The mesh can be either a [[CMDL (Metroid Prime)|model]] or an [[ANCS (File Format)|animset]].
 
{| class="wikitable"
! ID
! Type
! Name
|-
| 0x1F7921BC
| [[CMDL (Metroid Prime)|CMDL]]
| Model
|-
| 0xCDD202D1
| [[AnimationParameters (Metroid Prime)|AnimationParameters]]
| AnimSet
|-
| 0x3EA2BED8
| string
| Attach Bone Name
|}


Other than that, SNFO is entirely unknown.
=== Dependencies ===


== Dependency List ==
After the ScannableObjectInfo instance, there's a list of the scan's dependencies present. The list follows the same format as the [[DGRP (File Format)|DGRP]] format.
The dependency list follows the same format as [[DGRP (File Format)|DGRP]]


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