Madden NFL 2005 for xbox....

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
CireZero
ultra-n00b
Posts: 7
Joined: Tue Apr 12, 2005 2:56 am

Madden NFL 2005 for xbox....

Post by CireZero » Tue Apr 12, 2005 3:12 am

Madden 2005 uses a .dat file which was changed from the .big/.mad of the previous year. I'm not sure what you can get out of this bu here are some files...


http://members.cox.net/kaorusama/DB_TEAMS.DAT

Guest

Post by Guest » Thu Apr 14, 2005 3:53 am

are EA games off limit.. i noticed none of the sports games get any replies...

User avatar
friendsofwatto
VVIP member
VVIP member
Posts: 535
Joined: Wed Jun 30, 2004 3:01 pm
Location: Australia
Been thanked: 13 times
Contact:

Post by friendsofwatto » Thu Apr 14, 2005 5:15 am

Hey sorry.

I downloaded the file yesterday but havn't had the time to look at it yet - just spent the last 5 hours digging holes in the backyard :(. I will take a look at it as soon as I can - I don't think it is too different from Madden 2004 though.

Oh, and no, EA Games are not off limits - just usually they are harder to add support for. With the amount of money that EA makes from their games, they can afford to add in things like custom compression algorithms - whereas most other game companies just use pretty standard techniques like ZLib compression.

Thats all - I will hopefully get back to you about this soon.

WATTO
watto@watto.org
http://www.watto.org
Game Extractor - Read and write thousands of game archives!

User avatar
Mr.Mouse
Site Admin
Posts: 4051
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 421 times
Been thanked: 575 times
Contact:

Post by Mr.Mouse » Thu Apr 14, 2005 7:36 am

No, they are not off-limit, of course, as you can see MultiEx Commander support the FIFA series as well, and Actua Soccer etc.

I have looked at it, and it is possible to write a script for it. I just didn't have the time to look into it in more detail. My daily job as a scientist takes up 110% of my time... :wink: Rest assured, that a script is possible and will be created.

CireZero
ultra-n00b
Posts: 7
Joined: Tue Apr 12, 2005 2:56 am

Post by CireZero » Thu Apr 14, 2005 10:25 pm

that's awesome thanks guys... i really would to be able to extract the database and figure out how to edit it... it would make everything alot easier..

User avatar
friendsofwatto
VVIP member
VVIP member
Posts: 535
Joined: Wed Jun 30, 2004 3:01 pm
Location: Australia
Been thanked: 13 times
Contact:

Post by friendsofwatto » Fri Apr 15, 2005 11:54 am

OK, there are 3 formats that I have identified. Two of the formats are the same as Madden 2004, and there is one new one. The main difference between them is that some have compression directories, and each uses different padding sizes.

Code: Select all

+--------------------------------------------------+
| Madden 2004 *.dat (Type 1 - No Compression Used) |
+--------------------------------------------------+

// NOTE: Files with length=0 still incur padding, so are actually 64 null bytes

4 - Header (TERF)
4 - Directory Offset (64)
4 - Unknown (83886594)
2 - File Padding Size (64)
2 - Number Of Files
48 - null

4 - Directory Header (DIR1)
4 - Directory Length (including these 2 fields)

// for each file
  4 - File Offset (relative to the start of the FileDataHeader)
  4 - File Length
  
0-63 - null Padding to a multiple of 64 bytes
  
4 - File Data Header (DATA)
4 - File Data Length (including these 3 fields)
56 - null

// for each file
  X - File Data
  0-63 - null Padding to a multiple of 64 bytes


+----------------------------------------------------+
| Madden 2004 *.dat (Type 2 - Some Compression Used) |
+----------------------------------------------------+

// NOTE: Files with length=0 still incur padding, so are actually 4 null bytes

4 - Header (TERF)
4 - Directory Offset (16)
4 - Unknown (83886594)
2 - File Padding Size (4)
2 - Number Of Files

4 - Directory Header (DIR1)
4 - Directory Length (including these 2 fields)

// for each file
  4 - File Offset (relative to the start of the FileDataHeader)
  4 - File Length
  
4 - Compression Header (COMP)
4 - Compression Length (including these 2 fields)

// for each file
  4 - Compression Tag (0=uncompressed, 5=compressed)
  4 - Decompressed Size (0=uncompressed)
  
4 - File Data Header (DATA)
4 - File Data Length (including these 3 fields)
4 - null

// for each file
  X - File Data
  0-3 - null Padding to a multiple of 4 bytes
  
  
+----------------------------------------------------+
| Madden 2005 *.dat (Type 3 - Some Compression Used) |
+----------------------------------------------------+

// NOTE: Files with length=0 still incur padding, so are actually 128 null bytes

4 - Header (TERF)
4 - Directory Offset (128)
4 - Unknown (83886594)
2 - File Padding Size (128)
2 - Number Of Files

4 - Directory Header (DIR1)
4 - Directory Length (including these 2 fields)

// for each file
  4 - File Offset (relative to the start of the FileDataHeader)
  4 - File Length
  
0-127 - Padding to a multiple of 128 bytes
  
4 - Compression Header (COMP)
4 - Compression Length (including these 2 fields)

// for each file
  4 - Compression Tag (0=uncompressed, 5=compressed)
  4 - Decompressed Size (0=uncompressed)
  
0-127 - Padding to a multiple of 128 bytes
  
4 - File Data Header (DATA)
4 - File Data Length (including these 3 fields)
4 - null

// for each file
  X - File Data
  0-127 - null Padding to a multiple of 128 bytes

Game Extractor (Full Version) will open the archives, but the compression is unknown so if the files are compressed then you can't view them. Mr Mouse or someone will probably be able to do a script for these formats as well, but they won't be decompressable either.

Sorry mate - thats the best we can do at this point in time.

WATTO
watto@watto.org
http://www.watto.org
Game Extractor - Read and write thousands of game archives!

CireZero
ultra-n00b
Posts: 7
Joined: Tue Apr 12, 2005 2:56 am

Post by CireZero » Fri Apr 15, 2005 10:25 pm

Can you show what kinda files you got outta those.

User avatar
friendsofwatto
VVIP member
VVIP member
Posts: 535
Joined: Wed Jun 30, 2004 3:01 pm
Location: Australia
Been thanked: 13 times
Contact:

Post by friendsofwatto » Sat Apr 16, 2005 2:48 pm

Well, the archive you attached had compressed files in it - and *most* of the Madden 2005 archives do use compressed files, which is really bad for us. What is worse is that the compression is custom, thus we cannot determine how to get back to the original file, unless someone knows how to hack apart an exe, or unless someone from EA gives us some insider info :(

WATTO
watto@watto.org
http://www.watto.org
Game Extractor - Read and write thousands of game archives!

CireZero
ultra-n00b
Posts: 7
Joined: Tue Apr 12, 2005 2:56 am

Post by CireZero » Sat Apr 16, 2005 3:53 pm

the funny thing is that i purchased the full version of game extractor and it only opens that one file.... :( i tried to check out the player picture dat file and it was a no go.... said there was no plugin for it... it's 35megs so i can't load it any where...

User avatar
friendsofwatto
VVIP member
VVIP member
Posts: 535
Joined: Wed Jun 30, 2004 3:01 pm
Location: Australia
Been thanked: 13 times
Contact:

Post by friendsofwatto » Sat Apr 16, 2005 3:57 pm

Hmm OK, well maybe there are other formats that I am not aware of. I don't have the game, but a few people have sent me files from it and they have worked OK. I will take a look and see if there is anything obvious that is going wrong, otherwise I will need to look at some of the non-working archives.

WATTO
watto@watto.org
http://www.watto.org
Game Extractor - Read and write thousands of game archives!

User avatar
friendsofwatto
VVIP member
VVIP member
Posts: 535
Joined: Wed Jun 30, 2004 3:01 pm
Location: Australia
Been thanked: 13 times
Contact:

Post by friendsofwatto » Mon Apr 18, 2005 5:11 pm

OK, you can give this plugin a go if you want - can't guarentee it will work though. Do the following...

1. go to the Game Extractor directory
2. Make a directory called "plugins"
3. Unzip the file into the plugins/ directory
4. Restart Game Extractor.

Good luck.

WATTO
watto@watto.org
http://www.watto.org
You do not have the required permissions to view the files attached to this post.
Game Extractor - Read and write thousands of game archives!

Guest

Post by Guest » Sun Apr 24, 2005 8:35 am

what plugin?

User avatar
Mr.Mouse
Site Admin
Posts: 4051
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 421 times
Been thanked: 575 times
Contact:

Post by Mr.Mouse » Sun Apr 24, 2005 10:10 am

You must be logged in to view files attached to posts. Then you will see the plugin.

Post Reply