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

Dead or Alive series formats and tools

Post questions about game models here, or help out others!
b0ny
mega-veteran
mega-veteran
Posts: 239
Joined: Sat May 22, 2010 10:10 am
Has thanked: 22 times
Been thanked: 121 times

Re: Dead or Alive series formats and tools

Post by b0ny »

Lilstormcloud wrote:
Protocol X27 wrote:@b0ny, miku or whoever can help. Is there a newer version of the texture extractor I'm missing? I still cannot export the --H & --HL versions from v16 or any other version I have. As far as I know archivarius is dumping them correctly.
The Nurse files are not extracted properly by arch. It's not the texture extractors prob.
the problem for these files is that in this case some "--H" files have the same size, thus can't be detected inside the blp file by size. thus the encryption info can't be extracted from the blp file and is extracte from the "doa5Uarchivarius.dat", but the info in "doa5Uarchivarius.dat" is old/wrong...

one way to fix that is to fix the encryption flag for these "--H" files inside the "doa5Uarchivarius.dat", like this:

Code: Select all

from:
... AYANE_DLCU_014_003.--H	110	0000	00000000	0000
to:
... AYANE_DLCU_014_003.--H	110	E0000333	00000000	0000
doa5Uarchivarius(v18)
an alternative solution, is to use the python file from this new "doa5u archivaruis", and check the appropriate checkbox to forcibly decrypt the files. (open the ".py" file in a text editor to edit the maximum file size or to hide the option)
Lilstormcloud
mega-veteran
mega-veteran
Posts: 162
Joined: Sun Aug 04, 2013 9:39 pm
Has thanked: 47 times
Been thanked: 20 times

Re: Dead or Alive series formats and tools

Post by Lilstormcloud »

:ninja: [bruce]
Last edited by Lilstormcloud on Fri Sep 26, 2014 10:13 am, edited 1 time in total.
Esppiral
n00b
Posts: 11
Joined: Thu Aug 14, 2014 4:39 pm
Has thanked: 3 times

Re: Dead or Alive series formats and tools

Post by Esppiral »

Is there any tool to extract/modify models from Dead or alive 2 (Ps2 Dreamcast) ?
Protocol X27
ultra-veteran
ultra-veteran
Posts: 341
Joined: Wed Dec 14, 2011 5:46 pm
Has thanked: 141 times
Been thanked: 128 times

Re: Dead or Alive series formats and tools

Post by Protocol X27 »

@b0ny, awesome!! Thanks, that did the trick. Now I can attempt to rebuild one of the costumes with a standard res texture in another slot to see if the slot itself is broken.

@lsc, Daaaaang. Nice, I have a few questions on how your doing that because I'm apparently slow regarding last time you posted notes on that. Are you manually find each vertex in the face and then somehow tracking down the index for each?
Lilstormcloud
mega-veteran
mega-veteran
Posts: 162
Joined: Sun Aug 04, 2013 9:39 pm
Has thanked: 47 times
Been thanked: 20 times

Re: Dead or Alive series formats and tools

Post by Lilstormcloud »

There are varying degrees of complexity.

if you select 1 element and then export the vertex IDs of that, then there's a high chance they'll be a continuous block of numbers.

e.g
4921 4922 4923 4924 4925 4926
this is the little triangle I showed in the previous screen.

you can find the index by

(vertex ID - 1) convert to Hex = start index (do a Ctrl +F searching backwards into the index)
Find end value same method

It should look. FF FF "Start Number" etc etc etc "end value" etc etc FF FF
copy all values between the two "FF FF"

note that the index sometimes backward or forward reference

0001 0002 0040

followed by

1705 0040 1706

when scaling the index beware of forward and backward referencing values,
they must equal what they are referencing at all time regardless of how much you're scaling the rest of the block by.


Need to reshape & change weights after done filling the gap.
*Barbie doll* lol
Image
tcl36478655
beginner
Posts: 34
Joined: Mon Apr 08, 2013 2:22 am
Has thanked: 25 times
Been thanked: 3 times

Re: Dead or Alive series formats and tools

Post by tcl36478655 »

Lilstormcloud wrote:......
Bravo! :keke:
User avatar
Rosalin
mega-veteran
mega-veteran
Posts: 187
Joined: Fri Jun 13, 2014 11:38 am
Has thanked: 62 times
Been thanked: 56 times

Re: Dead or Alive series formats and tools

Post by Rosalin »

I was able to delete some vertices in the knee and fill the hollows in there.

but the result was not enough to fix the knee shape.

so I'm thinking about inserting some vertices using deleted ones.

Sometimes they were uncontrollable. but sometimes it worked. I wouldn't get the differences yet clearly.
Lilstormcloud
mega-veteran
mega-veteran
Posts: 162
Joined: Sun Aug 04, 2013 9:39 pm
Has thanked: 47 times
Been thanked: 20 times

Re: Dead or Alive series formats and tools

Post by Lilstormcloud »

maybe the boneID + weight.

also try moving that particular one upwards. it pops out coz it doesn't move in sync with the rest of the leg.

also try.
build index and vertex same as what you're copying (slow process)
then match boneID and bone weight.
User avatar
Rosalin
mega-veteran
mega-veteran
Posts: 187
Joined: Fri Jun 13, 2014 11:38 am
Has thanked: 62 times
Been thanked: 56 times

Re: Dead or Alive series formats and tools

Post by Rosalin »

I already matched boneID + Weight perfectly using script.

maybe that's because one missing vertex I hope.

***

There's a thin plate on marie's jersey costume.
Using that, I'm thinking about reinforcing textures in some parts.
Lilstormcloud
mega-veteran
mega-veteran
Posts: 162
Joined: Sun Aug 04, 2013 9:39 pm
Has thanked: 47 times
Been thanked: 20 times

Re: Dead or Alive series formats and tools

Post by Lilstormcloud »

I think the one causing the problem is,

1 space down, 1 space left from the one you deleted.

But yea maybe it's missing one beside it, for now I've been just moving it up.

Image
User avatar
Rosalin
mega-veteran
mega-veteran
Posts: 187
Joined: Fri Jun 13, 2014 11:38 am
Has thanked: 62 times
Been thanked: 56 times

Re: Dead or Alive series formats and tools

Post by Rosalin »

Is there any way to pick up the multiple Normal values at a time?

I was able to pick one normal value of a vertex by looking at OBJ file.

but, you know vertex Normal ID was different from vertex ID, so I had to matched them one by one manually in 3DSmax.

I couldn't figure out relation between those two IDs.

Converting them to HEND3N was not problem any more.

I wish I could get a list of vertex normals massively in easy way.

something like this

3783 - 0.11 0.32 0.54
3784 - 0.11 0.33 0.67
3785 - 0.12 0.33 0.78
..
Esppiral
n00b
Posts: 11
Joined: Thu Aug 14, 2014 4:39 pm
Has thanked: 3 times

Re: Dead or Alive series formats and tools

Post by Esppiral »

b0ny wrote:hi guys. i've searched around internet and didn't found any information about the playstation2 version of doa.
and then i've made myself an extractor for the hardcore version. if anyone will be interested i think i can make also an importer, and an extractor for the jap doa2 for ps2(not hardcore) which can be launched on the pcsx2 emulator.

you can take the doa2unpacker here

p.s. maybe the blender importer will work for you guys when i at last will port it to blender 2.63... (and i'm a lamer that works only on windows so i can't guarantee that it will work on linux)
Could you please reupload the unpacker? the file is no longer available.
b0ny
mega-veteran
mega-veteran
Posts: 239
Joined: Sat May 22, 2010 10:10 am
Has thanked: 22 times
Been thanked: 121 times

Re: Dead or Alive series formats and tools

Post by b0ny »

Esppiral wrote:Could you please reupload the unpacker? the file is no longer available.
doa2hardcore_unpacker.zip

here you go, along with the source. though, afaik, there are no parsers for ps2 doa files, what are you going to do with the files?
Darko
double-veteran
double-veteran
Posts: 723
Joined: Mon Jul 13, 2009 6:16 pm
Has thanked: 72 times
Been thanked: 138 times

Re: Dead or Alive series formats and tools

Post by Darko »

b0ny wrote:
Esppiral wrote:Could you please reupload the unpacker? the file is no longer available.
doa2hardcore_unpacker.zip

here you go, along with the source. though, afaik, there are no parsers for ps2 doa files, what are you going to do with the files?
any advance with DOA5 motions??
Image
Lilstormcloud
mega-veteran
mega-veteran
Posts: 162
Joined: Sun Aug 04, 2013 9:39 pm
Has thanked: 47 times
Been thanked: 20 times

Re: Dead or Alive series formats and tools

Post by Lilstormcloud »

Rosalin wrote:Is there any way to pick up the multiple Normal values at a time?

I was able to pick one normal value of a vertex by looking at OBJ file.
..etc

..
Not sure I understand what you mean. They're all in order.

Here's Lisa DLC body.

Looking at this, it seems like it's completely possible to make an app to convert an obj model to tmcl format.
Could be worth testing if can convert a obj model from another game and inserting into doa.

I'm just not so sure how to calculate the vt and vn though.

forget about the face, that's in-order, but not in scale, since it's jumbled with A connected to B connected to A connected to C and crap.
Image
Post Reply