Difference between revisions of "Sims 3:0x8EAF13DE"

From SimsWiki
Jump to: navigation, search
m (Unencrypted Rig Data: Linking IK types)
m (Update the overview, minor formatting tweaks for readability)
Line 8: Line 8:
  
 
==Overview==
 
==Overview==
There are two formats of the RIG file.  The basic file content is a [http://www.radgametools.com/granny.html Granny 2] data file.  Apart from the official tools, there are some user-contributed tools for manipulating the data [http://gr2decode.altervista.org/ on altervista].  In addition, a second format exists, where the Granny data is wrapped with some additional fields.
+
There are three formats of the RIG file.
  
Get "Granny Viewer" from the [http://gr2decode.altervista.org/download.html altervista downloads] page and you can load the data (export it as 'somefile.gr2').
+
* The basic file content is a [http://www.radgametools.com/granny.html Granny 2] data file.
 +
** Apart from the official tools, there are some user-contributed tools for manipulating the data.
 +
** Get "Granny Viewer" from the [http://gr2decode.altervista.org/download.html altervista downloads] page and you can load the data (export it as 'somefile.gr2')
 +
** Also related is [http://forum.xentax.com/viewtopic.php?f=16&t=1805&start=30&st=0&sk=t&sd=a this thread] on Xentax.
 +
* A second format exists, where the Granny data is wrapped with [[#Optional wrapper|some additional fields]].
 +
* Starting with the Create A Pet Demo, there is a new third format that is [[#Unencrypted Rig Data|unencrypted]].
  
Also related is [http://forum.xentax.com/viewtopic.php?f=16&t=1805&start=30&st=0&sk=t&sd=a this thread] on Xentax.
+
 
==Format==
+
==Optional wrapper==
===Optional wrapper===
+
 
There is an optional wrapper to the Granny data.  This can be identified by the first DWORD in the file being 0x8EAF13DE (i.e. the resource type).  The format is:
 
There is an optional wrapper to the Granny data.  This can be identified by the first DWORD in the file being 0x8EAF13DE (i.e. the resource type).  The format is:
  
 +
===Format===
 
  DWORD 0x8EAF13DE
 
  DWORD 0x8EAF13DE
 
  DWORD 0
 
  DWORD 0
Line 146: Line 151:
 
  3195D4E320DC4F62CC36D03AB182FF89
 
  3195D4E320DC4F62CC36D03AB182FF89
  
===Unencrypted Rig Data===
+
==Unencrypted Rig Data==
 
Starting with the Create A Pet Demo, there is a new third format of RIG files that is unencrypted:
 
Starting with the Create A Pet Demo, there is a new third format of RIG files that is unencrypted:
  
 +
===Format===
 
  DWORD Major Version? 4
 
  DWORD Major Version? 4
 
  DWORD Minor Version? 2
 
  DWORD Minor Version? 2
Line 170: Line 176:
  
 
===IK Chain Types===
 
===IK Chain Types===
====Format====
 
 
The fields in this structure are all DWORD indices to the bone list defined above.  -1 indicates a null value.
 
The fields in this structure are all DWORD indices to the bone list defined above.  -1 indicates a null value.
 
{| class="wikitable sortable" border="1"
 
{| class="wikitable sortable" border="1"
Line 181: Line 186:
 
|}
 
|}
 
====IK Root====
 
====IK Root====
=====Format=====
 
 
  DWORD RootBind
 
  DWORD RootBind
 
  DWORD Info[11]
 
  DWORD Info[11]
Line 187: Line 191:
 
  DWORD Root
 
  DWORD Root
 
====IK Limb====
 
====IK Limb====
=====Format=====
 
 
  DWORD Start
 
  DWORD Start
 
  DWORD Mid
 
  DWORD Mid

Revision as of 14:38, 17 October 2011

Modding Reference by Category

Sims 3 :DBPF | File Types | RCOL(Scene) | Catalog Resource | String Table | Key Table | TS3 Programmer's Reference 

Rig Resource - _RIG
TypeID:0x8EAF13DE
Game Version:The Sims 3



Contents

Overview

There are three formats of the RIG file.

  • The basic file content is a Granny 2 data file.
    • Apart from the official tools, there are some user-contributed tools for manipulating the data.
    • Get "Granny Viewer" from the altervista downloads page and you can load the data (export it as 'somefile.gr2').
    • Also related is this thread on Xentax.
  • A second format exists, where the Granny data is wrapped with some additional fields.
  • Starting with the Create A Pet Demo, there is a new third format that is unencrypted.


Optional wrapper

There is an optional wrapper to the Granny data. This can be identified by the first DWORD in the file being 0x8EAF13DE (i.e. the resource type). The format is:

Format

DWORD 0x8EAF13DE
DWORD 0
DWORD offset1			// To "Int2" block from start of Granny data
DWORD offset2			// To start of Granny data (from start of this DWORD)
DWORD IKChainsOffset		// To start first of "Int2" Chunk (from start of this DWORD)
DWORD IKTargetSlotsOffset	//(from start of this DWORD)
DWORD IKInfoNodeOffset		//(from start of this DWORD)
DWORD CompressNodeOffset	//(from start of this DWORD)
DWORD FullBoneListOffset	//(from start of this DWORD)
DWORD // unused offset?
DWORD // unused offset?
DWORD // unused offset?
DWORD // unused offset?

--insert Granny2 data
--Padding 00's to next even DWORD
 
DWORD Count1
--repetition Count1:
	DWORD offset to IK Chain entry (from start of this DWORD)
--repetition Count1:
	//IK Chain entry
	DWORD
	DWORD ChainLength
	BYTE[32] //00
	DWORD IK pole //Bone index from granny2 data
	DWORD Chain start //Bone index from granny2 data

	DWORD SlotInfoNode //Bone index from granny2 data
	DWORD SlotInfoRootNode //Bone index from granny2 data

	DWORD SlotOffsetNode //Bone index from granny2 data
	DWORD SlotOffsetRootNode //Bone index from granny2 data

	DWORD InfoNodeFlags //(bits 0-10 means that node is enabled)

	DWORD InfoNode0  //Bone index from granny2 data
	DWORD InfoNode1  //Bone index from granny2 data
	DWORD InfoNode2  //Bone index from granny2 data
	DWORD InfoNode3  //Bone index from granny2 data
	DWORD InfoNode4  //Bone index from granny2 data
	DWORD InfoNode5  //Bone index from granny2 data
	DWORD InfoNode6  //Bone index from granny2 data
	DWORD InfoNode7  //Bone index from granny2 data
	DWORD InfoNode8  //Bone index from granny2 data
	DWORD InfoNode9  //Bone index from granny2 data 
	DWORD InfoNode10 //Bone index from granny2 data

	--repetition(ChainLength)
		DWORD

	DWORD //0
	
	//Chain links 
	--repetition(ChainLength) 		
	 	DWORD EndBone //Bone index from granny2 data
	 	DWORD StartBone   //Bone index from granny2 data
//IK Target Slots
DWORD count
--repetition count
	DWORD //Bone index from granny2 data

BYTE[56] //00

//Info Nodes
DWORD count
--repetition count
	DWORD //Bone index from granny2 data

//Compress Nodes(i.e. "b__R_Calf__Compress__")
DWORD count
--repetition count
	DWORD //Bone index from granny2 data

//Full bone list(contains every bone from granny2 data)
DWORD count
--repetition count
	DWORD //Bone index from granny2 data

Granny2 Data

All offsets in this section start from the start of the Granny2 Data.

BYTE[16]		// See Rick's note below
DWORD Header Size	// ?
DWORD Header Format
DWORD Reserved
DWORD Reserved
DWORD Version		// 6
DWORD DataSize
DWORD CRC
DWORD SectionOffset
DWORD SectionCount	// 1
DWORD RootObjectTypeIndex
DWORD RootObjectTypeOffset
DWORD RootObjectIndex
DWORD RootObjectOffset
DWORD Tag		// 0x8000001C
DWORD StringDb CRC
DWORD[3] Unused
//Sections
--repeat(SectionCount)
	DWORD CompressionFormat	// 2 
	DWORD DataOffset
	DWORD DataSize
	DWORD DecompressedSize
	DWORD Alignment
	DWORD 
	DWORD 
	DWORD Int1Offset
	DWORD Int1Count 	// ?
	DWORD Int1EndOffset	// to start of byte after 	Int1 section
	DWORD

//Int1 Section		// does this repeat or what?
DWORD
DWORD
DWORD

// Data
BYTE[DataSize]

Rick adds:

The blobs that start with the following sequences are Granny2 data blocks:

B867B0CAF86DB10F84728C7E5E19001E
29DE6CC0BAA4532B25F5B7A5F666E2EE
0E1195B56AA5B54BEB2828502578B304
E59B495E6F631F141E13EBA990BEEDC4
3195D4E320DC4F62CC36D03AB182FF89

Unencrypted Rig Data

Starting with the Create A Pet Demo, there is a new third format of RIG files that is unencrypted:

Format

DWORD Major Version? 4
DWORD Minor Version? 2
DWORD Bone Count
--repeat(Bone Count)
    FLOAT[3] Position
    FLOAT[4] Quaternion Orientation
    FLOAT[3] Scaling?
    DWORD Bone Name Length
    STRING (Bone Name Length ASCII characters)
    DWORD ???
    DWORD Parent Index
    DWORD Bone Name Hash (FNV 32)
    DWORD Flags? Usually 0x23
DWORD Skeleton Name Length
STRING (Skeleton Name Length ASCII characters)
DWORD IK Chain Count
--repeat(IK Chain Count)
    DWORD Type
    --insert type-specific data

IK Chain Types

The fields in this structure are all DWORD indices to the bone list defined above. -1 indicates a null value.

Type ID Name
0x00000001 IK Root
0x00000003 IK Limb

IK Root

DWORD RootBind
DWORD Info[11]
DWORD SlotOffset
DWORD Root

IK Limb

DWORD Start
DWORD Mid
DWORD End
DWORD Info[11]
DWORD PoleVector
DWORD SlotInfo
DWORD SlotOffset
DWORD Root
Modding Reference by Category

Sims 3 :DBPF | File Types | RCOL(Scene) | Catalog Resource | String Table | Key Table | TS3 Programmer's Reference 

Personal tools
Namespaces

Variants
Actions
Navigation
game select
Toolbox