Main Site | Forum | Rules | Downloads | Wiki | Features | Podcast

NLSC Forum

A hub for everything related to NBA 2K9 modding. Releases, previews, requests, and other modding discussion belongs here.
Post a reply

[christmas presents] Structure of NBA2K9 IFF

Thu Dec 25, 2008 11:04 pm

This may be useful.
http://hades.net.cn/post/nba2k9_iff_format.html
Merry Christmas
Last edited by nbastar on Thu Dec 25, 2008 11:24 pm, edited 1 time in total.

Re: [christmas presents] Struct of NBA2K9 IFF

Thu Dec 25, 2008 11:13 pm

is this the iff tool? if it is then thank you so much

edit: nah this is not the tool this is just the structure of the iff program and they are just a bunch of codes and i know this is not complete..

can you please just make this into like a GUI program?

btw thanks for posting this info

Re: [christmas presents] Structure of NBA2K9 IFF

Thu Dec 25, 2008 11:32 pm

Service Unavailable

Re: [christmas presents] Structure of NBA2K9 IFF

Thu Dec 25, 2008 11:37 pm

Ping go to YM and lets talk there

Re: [christmas presents] Struct of NBA2K9 IFF

Thu Dec 25, 2008 11:39 pm

Kris wrote:is this the iff tool? if it is then thank you so much

edit: nah this is not the tool this is just the structure of the iff program and they are just a bunch of codes and i know this is not complete..

can you please just make this into like a GUI program?

btw thanks for posting this info


As the saying goes,Give a man a fish, and you feed him for a day; teach a man to fish, and you get rid of him on the weekend. :lol:

Re: [christmas presents] Structure of NBA2K9 IFF

Thu Dec 25, 2008 11:41 pm

Code:
TITLE: Structure of NBA2K9 IFF
AUTHOR: hades
DATE: 2008-12-19,22:36
LINK: http://hades.net.cn/post/nba2k9_iff_format.html

typedef struct {
IFF_HEADER iffHeader;
IFF_MAINDATA iffHadesData[dwDataFileCount];
} IFF_FILE;

typedef struct {
DWORD dwMagic;
DWORD dwSize;
DWORD dwFileLen;
DWORD dwReserve;
DWORD dwDataFileCount;
DWORD dwUnknow1;
DWORD dwSubFileCount;
DWORD dwUnknow2;
IFF_HEADER_DATA ihdData[dwDataFileCount];
DWORD dwSubFile[dwSubFileCount];
IFF_HEADER_SUB ihdSub[dwSubFileCount];
} IFF_HEADER;

typedef struct {
DWORD dwName;
DWORD dwType;
DWORD dwUnknow1;
DWORD dwUnCompressLen;
DWORD dwUnknow2;
DWORD dwStartOffset;
DWORD dwCompressLen;
DWORD dwReserve;
} IFF_HEADER_DATA;

typedef struct {
DWORD dwName;
DWORD dwType;
DWORD dwSubCount;
DWORD dwOffset[dwSubCount];
} IFF_HEADER_SUB;

typedef struct {
DWORD dwFlag;
DWORD dwUnCompressLen; //reverse
DWORD dwCompressLen; //reverse
DWORD dwUnknow1;
DWORD dwHades;
BYTE btData[dwCompressLen-20];//compressed
} IFF_MAINDATA;

by hades(hades.net.cn)

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 1:31 am

whats in this stracture? how can we use it?

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 3:48 am

With this structure programmers should be able to unpack the files in order to create an importer/exporter. I am suspicious, though. He put his own name in the code.

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 3:55 am

somethings fishy....~~~ :?

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 4:35 am

We must be wary of potential assholes.

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 5:20 am

This isn't bullshits, i have exporter with this structure, and i talk with guy, he tell me that he don't have any free times to finnish project, because he don't like him editor. Editor is very slowly.

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 6:35 am

It just looks funny with "hades" in the code.

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 10:21 am

Fibaa wrote:This isn't bullshits, i have exporter with this structure, and i talk with guy, he tell me that he don't have any free times to finnish project, because he don't like him editor. Editor is very slowly.

Editor is very slowly?the demo version is protect by Code Virtualizer,so it be come slowly,just a demo,i remember somebody told u.
Not that he dislike his editor ,just he haven a lot of other works to do.
understand?baby

Re: [christmas presents] Structure of NBA2K9 IFF

Fri Dec 26, 2008 10:26 am

Pdub wrote:It just looks funny with "hades" in the code.

just a variable name,you can change it to any name if you want
Post a reply