Changes between Initial Version and Version 1 of FileFormat


Ignore:
Timestamp:
05/21/14 13:13:43 (11 years ago)
Author:
epyon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FileFormat

    v1 v1  
     1== Nova File Format (nvf) ==
     2
     3{{{
     4#!c++
     5struct ndf_root
     6{
     7  char id[4];
     8 
     9}
     10
     11
     12struct ndf_header
     13{
     14  int type;
     15  int name;
     16  int num_child;
     17  ndf_header children[];
     18}
     19
     20struct ndf_element
     21{
     22  int num_attr;
     23  ndf_attribute attr[];
     24}
     25
     26struct ndf_attribute
     27{
     28  int name;
     29  char type;
     30}
     31
     32}}}
     33
     34* mesh (name, count other)
     35* submesh
     36* joints
     37
     38== Nova Archive (nar) ==
     39
     40
     41
     42== Model file ==
     43
     44{{{
     45model_root
     46--mesh
     47--mesh
     48}}}