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

Dead Space 2 Suit Models Help Please

Post questions about game models here, or help out others!
AceAngel
veteran
Posts: 115
Joined: Sun Feb 08, 2009 5:45 pm
Has thanked: 35 times
Been thanked: 8 times

Re: Dead Space 2 Suit Models Help Please

Post by AceAngel »

The contents of this post was deleted because of possible forum rules violation.
nightFlarer
beginner
Posts: 33
Joined: Thu May 13, 2010 8:25 am
Has thanked: 4 times
Been thanked: 2 times

Re: Dead Space 2 Suit Models Help Please

Post by nightFlarer »

Well, it's similar. The only difference is the information is in a different offset and the UV's are kept at the bottom of the file instead of separately. So a separate script is needed.
czehntner
ultra-n00b
Posts: 5
Joined: Wed Feb 16, 2011 5:27 pm

Re: Dead Space 2 Suit Models Help Please

Post by czehntner »

hey everyone. im new here so im trying to learn along with what everyone on here is explaining. ive been able to open the files in the 3ds max program (geo format i believe), but my problem is this. So far i only have the helmet (advanced) file and the shin for the legs. Is there any way you guys could post the geo files for the rest of the advanced suit so i can use those as well? i have no idea how to extract the files if that is what you guys are doing (again, new to this so sorry if my terms are off). I was hoping on using these files to put a suit together. Hope you guys can help me out, thank you for your time, and good luck with your progress!
Gamma256
n00b
Posts: 12
Joined: Tue Feb 15, 2011 1:13 am

Re: Dead Space 2 Suit Models Help Please

Post by Gamma256 »

Image is pretty big. 5760x3240
http://img560.imageshack.us/img560/2176/5suits.jpg

Yay finnaly got all the suits, now I need to grab the textures and put them up for download.
czehntner
ultra-n00b
Posts: 5
Joined: Wed Feb 16, 2011 5:27 pm

Re: Dead Space 2 Suit Models Help Please

Post by czehntner »

Gamma256 wrote:Image is pretty big. 5760x3240
http://img560.imageshack.us/img560/2176/5suits.jpg

Yay finnaly got all the suits, now I need to grab the textures and put them up for download.
you just made my year with that picture and that post!
Gamma256
n00b
Posts: 12
Joined: Tue Feb 15, 2011 1:13 am

Re: Dead Space 2 Suit Models Help Please

Post by Gamma256 »

They also don't have any missing mesh that the .geo exporter seems to mess up when ever there are 2 models attached together as a single mesh but have separate bitmaps and one doesn't show the faces but the vertexs are there. I'll bring this issue up to nightflare unless he knows.

I also have Isaac in the Straight Jacket but im fixing him up. And im fixing up the advanced suit.

Also when I mean grab the textures I mean ALL of them. DLC and what not.

E:
http://img64.imageshack.us/img64/3051/i ... jacket.jpg
argh need to stop rending so damn wide but its done.
czehntner
ultra-n00b
Posts: 5
Joined: Wed Feb 16, 2011 5:27 pm

Re: Dead Space 2 Suit Models Help Please

Post by czehntner »

Gamma256 wrote:They also don't have any missing mesh that the .geo exporter seems to mess up when ever there are 2 models attached together as a single mesh but have separate bitmaps and one doesn't show the faces but the vertexs are there. I'll bring this issue up to nightflare unless he knows.

I also have Isaac in the Straight Jacket but im fixing him up. And im fixing up the advanced suit.

Also when I mean grab the textures I mean ALL of them. DLC and what not.

E:
http://img64.imageshack.us/img64/3051/i ... jacket.jpg
argh need to stop rending so damn wide but its done.
ive said it before. you made my year. textures and models. cant wait for you to post them if you are.
nightFlarer
beginner
Posts: 33
Joined: Thu May 13, 2010 8:25 am
Has thanked: 4 times
Been thanked: 2 times

Re: Dead Space 2 Suit Models Help Please

Post by nightFlarer »

I've just updated the script viewtopic.php?p=49117#p49117

The .geo format is really inconsistent, so I've added an "if statement" for more compatibility, the problem was that there are two face counts in the file, sometimes they are the same, and sometimes they aren't which caused some faces not to be read. So I simply made the script choose the larger face count.

I haven't fixed the other problems yet (probably won't get to).
Nexus Elite ns
beginner
Posts: 20
Joined: Sun Nov 08, 2009 6:11 pm

Re: Dead Space 2 Suit Models Help Please

Post by Nexus Elite ns »

nightFlarer wrote:I've just updated the script viewtopic.php?p=49117#p49117

The .geo format is really inconsistent, so I've added an "if statement" for more compatibility, the problem was that there are two face counts in the file, sometimes they are the same, and sometimes they aren't which caused some faces not to be read. So I simply made the script choose the larger face count.

I haven't fixed the other problems yet (probably won't get to).
What other problem would that be?
sirew
beginner
Posts: 26
Joined: Sun Jan 30, 2011 2:24 pm

Re: Dead Space 2 Suit Models Help Please

Post by sirew »

Hi guys, how to unpack the str file?, I'm using PC version
saladbeard
ultra-n00b
Posts: 8
Joined: Sat Feb 05, 2011 10:51 am

Re: Dead Space 2 Suit Models Help Please

Post by saladbeard »

Hey guys, any progress with the models? Is anyone still working on them? :)
sergoba
ultra-n00b
Posts: 2
Joined: Fri Mar 11, 2011 8:52 am

Re: Dead Space 2 Suit Models Help Please

Post by sergoba »

Did anyone ever manage to adjust a second version of the import script to import map scenes?
erik945
mega-veteran
mega-veteran
Posts: 257
Joined: Fri Jan 20, 2012 5:43 pm
Has thanked: 49 times
Been thanked: 139 times

Re: Dead Space 2 Suit Models Help Please

Post by erik945 »

Dead Space 3 used 3 float value for UV coordinate (may be UVW???). Third WORD is usually 000000ff.
Adaptation of the nightFlarer's script for it:

Code: Select all

fname = getOpenFileName \
caption:"Open .geo from Mesh folder" \
types:"Dead Space 2 Mesh(*.geo)|*.geo" \
historyCategory:"DeadSpace2ObjectPresets"
f = fopen fname "rb"
gname = getOpenFileName \
caption:"Open .geo from MeshVolatile folder" \
types:"Dead Space 2 UV(*.geo)|*.geo" \
historyCategory:"DeadSpace2ObjectPresets"
g = fopen gname "rb"
clearlistener()
fscale=100
indices = 0

Face_array=#()
Vert_array=#()
UV_array=#()

fseek f 0x50 #seek_set
infoOff1=readlong f
r=readlong f
r=readlong f
r=readlong f
r=readlong f
r=readlong f
infoOff2=readlong f

fseek f infoOff1 #seek_set
fseek f 48 #seek_cur
Print ("Last Read @ 0x"+((bit.intAsHex(ftell f))as string))
faceInd=readlong f
fseek f 76 #seek_cur
unk01=readlong f
vertOff=readlong f
faceOff=readlong f


fseek f infoOff2 #seek_set
Print ("Last Read @ 0x"+((bit.intAsHex(ftell f))as string))
unk1=readlong f
vertcount=readlong f
unk2=readlong f
null1=readlong f
unk3=readlong f
vertcount=readlong f
unk4=readlong f
unk5=readlong f
unk6=readlong f
face=readlong f
Print ("Last Read @ 0x"+((bit.intAsHex(ftell f))as string))
unk7=readlong f
unk8=readlong f
unk9=readlong f
unk10=readlong f
unk11=readlong f
unk12=readlong f
unk13=readlong f
face2=readlong f
Print ("face2 @ 0x"+((bit.intAsHex(ftell f))as string))

fseek f vertOff #seek_set
Print ("Last Read @ 0x"+((bit.intAsHex(ftell f))as string))

   
for x = 1 to vertcount do(

vx=readfloat f
vy=readfloat f
vz=readfloat f
p=readfloat f
p=readfloat f
p=readfloat f
p=readfloat f
p=readfloat f
append Vert_array([vx,vy,vz] * fscale)
)

for u = 1 to vertcount do(
tu=readfloat g
tv=readfloat g
tw=readfloat g
	
append UV_array[tu,tv,0]
)

fseek f faceoff #seek_set
Print ("Last Read @ 0x"+((bit.intAsHex(ftell f))as string))

if (face2 > faceInd) then (
indices = face2
)else(
indices = faceInd)

if (faceInd > face) then (
indices = faceInd
)else(
indices = face)

for x = 1 to indices/3 do(
fa=readshort f #unsigned+1
fb=readshort f #unsigned+1
fc=readshort f #unsigned+1
append Face_array[fa,fb,fc]
)
Print ("Last Read @ 0x"+((bit.intAsHex(ftell f))as string))

msh = mesh vertices:Vert_array faces:Face_array
msh.numTVerts = UV_array.count
buildTVFaces msh
for j = 1 to UV_array.count do setTVert msh j UV_array[j]
for j = 1 to Face_array.count do setTVFace msh j Face_array[j]

Print ("Last Read @ 0x"+((bit.intAsHex(ftell f))as string))
gc()
fclose f
fclose g
Add only one string:

Code: Select all

tw=readfloat g
:D
luxox18
mega-veteran
mega-veteran
Posts: 176
Joined: Fri Jul 29, 2011 9:18 pm
Has thanked: 54 times
Been thanked: 46 times

Re: Dead Space 2 Suit Models Help Please

Post by luxox18 »

erik945

you have any script for dante's inferno?
erik945
mega-veteran
mega-veteran
Posts: 257
Joined: Fri Jan 20, 2012 5:43 pm
Has thanked: 49 times
Been thanked: 139 times

Re: Dead Space 2 Suit Models Help Please

Post by erik945 »

No, I didn't interested this game
Post Reply