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

.o3d format conversion help.

Post questions about game models here, or help out others!
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

.o3d format conversion help.

Post by db. »

having issues converting files from .o3d to .x or .obj, its from a game called flyff, and people have been modding .dds files for client side of the game but i was wanting to try modding the 3d files in a modeler. someones done it already but not explaing much on how.

post:
http://forum.ragezone.com/f206/flyff-re ... ost2651398

Game:
http://flyff.gpotato.com/

sample file: see below.
You do not have the required permissions to view the files attached to this post.
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

Post by db. »

[ unneeded code ]
Last edited by db. on Wed Oct 17, 2007 2:25 pm, edited 1 time in total.
fatduck
mega-veteran
mega-veteran
Posts: 315
Joined: Wed Aug 02, 2006 10:07 pm
Has thanked: 10 times
Been thanked: 94 times

Post by fatduck »

Your post above didn't help me! But I had figured the format out already! :D

Code: Select all

--------------
Header section
--------------
byte           uknCount1
struct uknData1 {
  byte
} uknData1[uknCount1]
dword          ??               //always 0x15
byte  X 4                       //??
dword X 8      ??               //always 00
byte  X 39                      //??
dword          ??               //always 0x3E
dword          ??               //always 0x3F
byte           flag1            //??
byte           flag2          
byte           flag3
byte           flag4
byte           flag5
struct uknData2 {
  float X 3
} uknData2[flag2]
dword                           //??
dword                           //??
dword                           //??
dword          lodCount

------------
Mesh Section
------------
struct LODmesh {
  dword X 2
  dword        uknCount3        //?? Something related to bones
  struct uknData3 (
    dword
  } uknData3[uknCount3]
  dword
  dword        nTermimator      //0xFFFFFFFF
  float X 16   Matrix4X4        //transformation
  float X 6    BBox             //?? Bounding Box
  byte X 40                     //always 00
  dword        XCount           //?? Vert Shader
  dword        VtCount          //verts count
  dword        FcCount          //face count
  dword        FcSize           //Face indices size
  struct XData {
    float X 3
  } XData[XCount]
  struct VertPool {
    float X 3      posXYZ
    float          weight1
    float          weight2
    word           Bone1
    word           Bone2
    float X 3      NormalXYZ
    float X 2      UV
  } VertPool[VtCount]
  struct Face {
    word           idx1
    word           idx2
    word           idx3
  } Face[FcCount]
  struct XIndex {
    word           idx
  } XIndex[VtCount]
  dword          XXCount        //same as XCount
  struct XXData {
    dword
  } XXData[XXCount]
  ----------------
  material section
  ----------------
  dword
  dword          MatCount       //?? *material count(even MatCount = 0, still have material)
  struct Material {
    float x 3    colorRGBA
    float x 3    colorRGBA
    float x 3    colorRGBA
    float x 3    colorRGBA
    dword                       //always 00
    dword        TexLeg
    char[TexLeg] szTexture
  } Material[MatCount] 
  dword        matIDCount     //face material count
  struct FaceMatID {
    dword                       //always 0
    dword        MFcCount       //face for this MatID
    dword        MatID
    dword                       //always 4
    byte X 120                  //all 00
  } FaceMatID[matIDCount]
} LODmesh[lodCount]
You do not have the required permissions to view the files attached to this post.
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

Post by db. »

fatduck wrote:Your post above didn't help me! But I had figured the format out already! :D
i was hoping it did, it was the dx controls im guessing , but inside the .exe and awesome ! waited so long for this.

now to just get a way to export it into .obj or something similar
Last edited by db. on Wed Oct 17, 2007 2:26 pm, edited 1 time in total.
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

Post by db. »

have to admit i am new at this but how would i go about exporting this to a file i could use in a modeler?
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

Post by db. »

well i asked fatduck if he could help me out but he's got a bit on his plate, so is there anyone else who could help me out on this.
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

Post by db. »

bump :(
babebabe
beginner
Posts: 36
Joined: Fri Jan 06, 2006 5:19 pm

Post by babebabe »

DIY guys, we already had format description :D
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

Post by db. »

babebabe wrote:DIY guys, we already had format description :D
uhm... i dunno coding ... if did i wouldnt be having all this trouble ;\
db.
beginner
Posts: 21
Joined: Wed Oct 10, 2007 3:12 am

Post by db. »

still hoping someone can come up with a converter for this please.
bizzybody
beginner
Posts: 28
Joined: Wed Jan 02, 2008 9:54 am
Has thanked: 1 time
Been thanked: 13 times

Post by bizzybody »

The extention .o3d was used by the 3D model format in "Darkstone". The editor for that format is called MakeO3D.

Google for make03d to find the editor. If that will open your files, then ask on the Darkstone Forum for help- some people have done custom models for that game and may have info on exporting o3d to some other format.
Karpati
ultra-veteran
ultra-veteran
Posts: 467
Joined: Thu Dec 07, 2006 11:25 pm
Has thanked: 9 times
Been thanked: 95 times

Post by Karpati »

bizzybody,

I compared these file formats and I know 100 % the Flyff's .o3d format is not the Darkstone's .o3d ones.
Rheini
Moderator
Posts: 652
Joined: Wed Oct 18, 2006 9:48 pm
Location: Germany
Has thanked: 19 times
Been thanked: 46 times
Contact:

Post by Rheini »

fatduck wrote:Your post above didn't help me! But I had figured the format out already! :D
You are the 3D model format god! :D :wink:
Would you mind having a look at this thread? viewtopic.php?t=2546
We already collected some information, but some stuff is still missing.
ICON
ultra-n00b
Posts: 6
Joined: Thu Sep 11, 2008 7:51 pm

Re: .o3d format conversion help.

Post by ICON »

Wow Still no tools for this. That Kinda Sucks I could use this.
prekon
ultra-n00b
Posts: 4
Joined: Mon Sep 22, 2008 8:01 pm

Re: .o3d format conversion help.

Post by prekon »

I have a primitive converter but i want to convert it really not just half :/
Maybe ill figure that stuff thats left out soon (Bones, Animation, Some files just are different..)
Post Reply