FileStructure BIN CrypticS: Difference between revisions

From OuroDev
(Created page with "Dim nSkip As Integer = (4 - (nPos And 3)) And 3 (WORK IN PROGRESS) DragonSire == BIN FILE STRUCTURE - CrypticS == {| class="wikitable" style="width:50%" |+BIN File Structu...")
 
No edit summary
Line 1: Line 1:
Dim nSkip As Integer = (4 - (nPos And 3)) And 3
(WORK IN PROGRESS)
(WORK IN PROGRESS)
DragonSire
DragonSire
Line 85: Line 81:
| style="text-align: center; font-size:15px; background-color:#dae8fc;" | CheckSum, or Offset...Not Sure Yet
| style="text-align: center; font-size:15px; background-color:#dae8fc;" | CheckSum, or Offset...Not Sure Yet
| style="text-align: center; font-size:15px; background-color:#dae8fc;" |  
| style="text-align: center; font-size:15px; background-color:#dae8fc;" |  
|-
| style="text-align: center; font-size:15px; background-color:#dae8fc;" | *
| style="text-align: center; font-size:15px; background-color:#dae8fc;" | END LOOP
| style="text-align: center; font-size:15px; background-color:#dae8fc;" |
| style="text-align: center; font-size:15px; background-color:#dae8fc;" |
|}
== BIN FILE STRUCTURE - CrypticS ==
{| class="wikitable" style="width:50%"
|+BIN File Structure (Work in Progress)
! style="text-align: center; font-weight:bold; font-size:16px; background-color:#5578dd;width:20%;" | DataType
! style="text-align: center; font-weight:bold; font-size:16px; background-color:#5578dd;width:10%;" | Size
! style="text-align: center; font-weight:bold; font-size:16px; background-color:#5578dd;width:30%;" | Description
! style="text-align: center; font-weight:bold; font-size:16px; background-color:#5578dd;width:20%;" | Notes
|-
|-
| style="text-align: center; font-size:15px; background-color:#dae8fc;" | *
| style="text-align: center; font-size:15px; background-color:#dae8fc;" | *

Revision as of 11:31, 13 May 2019

(WORK IN PROGRESS) DragonSire

BIN FILE STRUCTURE - CrypticS

BIN File Structure (Header)
DataType Size Description Notes
String 8 Bytes Identifier Should be CrypticS
Integer/UInteger 4 CheckSum
Short/UShort 2 Bytes String Length
String * Parse Type Used Expected Parse6 (Current)
Short/UShort 2 Bytes FileNumber File1
* * String Table
BIN File Structure (String Table)
DataType Size Description Notes
Integer/UInteger 4 NumberBytes
Integer/UInteger 4 Number String Entries
* LOOP String Entries
Short/UShort 2 Length of String
VAR String String from Length
* CHECK Skip Alignment Check (4 - (PositionInBuffer And 3)) And 3
Skip Number Bytes Believe All Zero though could be control character changes
Integer/UInteger 4 CheckSum, or Offset...Not Sure Yet
* END LOOP

BIN FILE STRUCTURE - CrypticS

BIN File Structure (Work in Progress)
DataType Size Description Notes
* END LOOP