Important information: this site is currently scheduled to go offline indefinitely by end of the year.

[PC/X360] Rise of the Tomb Raider Bigfile.000.tiger

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by Ekey »

Code: Select all

struct iDRMHeader
{
   uint32_t   dwVersion; //16
   uint32_t   dwStrLength1;
   uint32_t   dwStrLength2;
   uint32_t   dwNull1;
   uint32_t   dwNull2;
   uint32_t   dwNull3;
   uint32_t   dwTotalSections;
   uint32_t   dwLocaleID;
};

struct iDRMEntry
{
   uint32_t   dwUnknown1;
   uint32_t   dwType;
   uint32_t   dwResourceID; //??
   uint32_t   dwSectionID; //??
   uint32_t   dwLanguageID;
};

struct iDRMSubEntry
{
   uint32_t   dwUnknown1;
   uint32_t   dwNull;
   uint32_t   dwOffset;
   uint32_t   dwFlags; // or two uint16_t
   uint32_t   dwLanguageID;
   uint32_t   dwSize;
   uint32_t   dwUnknown2;
};

struct iCDRMHeader
{
   uint32_t   dwID; //CDRM
   uint32_t   dwNull1;
   uint32_t   dwTotalBlocks;
   uint32_t   dwNull2;
};

struct iCDRMEntry
{
   uint32_t   dwUnknown;
   uint32_t   dwBlockZSize;
};
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by michalss »

nice, how do you recognize types pls ? ALso is there any existing type list?
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by Ekey »

Code: Select all

dwType & 0xFF

Code: Select all

0 - Generic Data
1 - Empty Data
2 - Animation
5 - Texture
6 - Sound
7 - DTP Data
8 - Script
9 - Shader
10 - Material
11 - Object
12 - Render Mesh
13 - Collision Mesh
14 - Stream Group List
15 - Trigger Data
Some meshes from mainmenu_larasflat_01.drm can't be loaded.

Section 1138 - mesh
Image

Section Pack - meshes - All look like this:
Image
T0M099
ultra-n00b
Posts: 9
Joined: Mon Apr 01, 2013 6:12 pm
Has thanked: 19 times
Been thanked: 5 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by T0M099 »

Hello :)

I have minimal experience with ripping models and other stuff from games,

but it is possible to extract game models and textures from Xbox One version ?
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by michalss »

T0M099 wrote:Hello :)

I have minimal experience with ripping models and other stuff from games,

but it is possible to extract game models and textures from Xbox One version ?

No it is not..
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by michalss »

Ekey wrote:

Code: Select all

struct iHeader
{
   uint32_t   dwID; //TAFS
   uint32_t   dwVersion; // Previous is 3 , Current is 4
   uint32_t   dwUnknown1;
   uint32_t   dwTotalFiles;
   uint32_t   dwUnknown2;
   uint8_t    iPlatform[32]; //Platform (xenon-w) or (ps3-w) or (pc-w)
};

//Entry stucture for version 3
struct iEntryV3
{
   uint32_t   dwHash; //Hash of filename
   uint32_t   dwLanguage;
   uint32_t   dwSize;
   uint32_t   dwZSize; //Posible
   uint32_t   dwFlags; //or two uint16_t
   uint32_t   dwOffset;
};

//Entry stucture for version 4
struct iEntryV4
{
   uint32_t   dwHash; //Hash of filename
   uint32_t   dwLanguage;
   uint32_t   dwSize;
   uint32_t   dwZSize; //Posible
   uint32_t   dwOffset;
   uint32_t   dwFlags; //or two uint16_t
};

HI Ekey,

Found out something very disturbing. IF you extract archive then all files size does not match the size of archive, not even close. Something very strange happening in there. Can you please double check i cannot figure it out :( For example big file with size 298 MB after extraction all files togerther is not even 131 MB of size :(
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by michalss »

i guess i found it, each tiger file has 2 sets of headers... this is very interesting crap also depending on the size of archive

Any help would be nice :)
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
Gh0stBlade
Moderator
Posts: 719
Joined: Mon Jul 05, 2010 8:55 pm
Has thanked: 20 times
Been thanked: 496 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by Gh0stBlade »

michalss wrote:i guess i found it, each tiger file has 2 sets of headers... this is very interesting crap also depending on the size of archive

Any help would be nice :)
It shouldn't be a problem to extract those files with the information EKey provided. Are you sure you are extracting all of the sections correctly? Also, each file is aligned so there's tons of unused space in those archives which is not extracted or needed to be.


New script update in OP.
Click the thanks button if I helped!
Ekey
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 1823
Joined: Wed Mar 31, 2010 6:54 am
Has thanked: 92 times
Been thanked: 1058 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by Ekey »

Gh0stBlade wrote:New script update in OP.
File Blocked for Violation.
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by michalss »

Gh0stBlade wrote:
michalss wrote:i guess i found it, each tiger file has 2 sets of headers... this is very interesting crap also depending on the size of archive

Any help would be nice :)
It shouldn't be a problem to extract those files with the information EKey provided. Are you sure you are extracting all of the sections correctly? Also, each file is aligned so there's tons of unused space in those archives which is not extracted or needed to be.


New script update in OP.

Yes im sure, but as i said and also ekey, only base files are getting extracted, rest is data from DRM put in random places in TIGER format, repack is impossible in this case.. :(
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
Gh0stBlade
Moderator
Posts: 719
Joined: Mon Jul 05, 2010 8:55 pm
Has thanked: 20 times
Been thanked: 496 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by Gh0stBlade »

michalss wrote:
Gh0stBlade wrote:
michalss wrote:i guess i found it, each tiger file has 2 sets of headers... this is very interesting crap also depending on the size of archive

Any help would be nice :)
It shouldn't be a problem to extract those files with the information EKey provided. Are you sure you are extracting all of the sections correctly? Also, each file is aligned so there's tons of unused space in those archives which is not extracted or needed to be.


New script update in OP.

Yes im sure, but as i said and also ekey, only base files are getting extracted, rest is data from DRM put in random places in TIGER format, repack is impossible in this case.. :(
Repacking is not impossible, it's just a lot of work to do. The best way to do this is to modify the PATCH tiger files and inject modified DRM files into those. The game will automatically load anything with higher priority in the PATCH tiger files so that way, you can still modify the game without altering the larger bigfiles.
Click the thanks button if I helped!
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by michalss »

Gh0stBlade wrote:
Yes im sure, but as i said and also ekey, only base files are getting extracted, rest is data from DRM put in random places in TIGER format, repack is impossible in this case.. :(
Repacking is not impossible, it's just a lot of work to do. The best way to do this is to modify the PATCH tiger files and inject modified DRM files into those. The game will automatically load anything with higher priority in the PATCH tiger files so that way, you can still modify the game without altering the larger bigfiles.

I sort it already, im specializing on repacking things, this one is bad for this purpose, but on X360 found the way how to make a localization tools and it working just fine... Just glad i did not need to edit fonts, coz it is impossibl, for me, to even found it. I will post it in Tools Forum soon...
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
OrangeC
double-veteran
double-veteran
Posts: 868
Joined: Sun Apr 20, 2008 2:58 am
Has thanked: 5 times
Been thanked: 41 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by OrangeC »

Anyone success on parsing the MUL files?
michalss
Moderator
Posts: 954
Joined: Sun Mar 27, 2011 8:42 pm
Has thanked: 10 times
Been thanked: 161 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by michalss »

OrangeC wrote:Anyone success on parsing the MUL files?

Nope, very hard, hard format, not even 1 was able to parse it, even aluigi :(... I would also need that, but not success at all :(
Quick BMS Editor GUI - simple easy to use
Goto : viewtopic.php?uid=34229&f=29&t=6797&start=0

Downloads from DropBox : https://dl.dropboxusercontent.com/u/
User avatar
SILENTpavel
advanced
Posts: 54
Joined: Fri Aug 05, 2011 5:53 am
Has thanked: 87 times
Been thanked: 16 times

Re: Rise of the Tomb Raider Bigfile.000.tiger

Post by SILENTpavel »

Gh0stBlade wrote:fmt_TR2_mesh_1_0.py - Version 1.1 - 18/11/15
Deleted?
Post Reply