X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2Fdecode_binobj.cxx;h=70a50f5ea2bef5814e151eaaaa6cd54289df02a9;hb=dc09a50472890ac706d3c76d8af34cc3682ada0c;hp=1af14819f386463abc3da74bdc58c17009c31a29;hpb=096550f163648572b0b9f5c5bc13fc007d8d51ca;p=simgear.git diff --git a/simgear/io/decode_binobj.cxx b/simgear/io/decode_binobj.cxx index 1af14819..70a50f5e 100644 --- a/simgear/io/decode_binobj.cxx +++ b/simgear/io/decode_binobj.cxx @@ -1,7 +1,13 @@ +#include + #include +#include STL_IOSTREAM #include "sg_binobj.hxx" +SG_USING_STD(cout); +SG_USING_STD(endl); + int main( int argc, char **argv ) { int i, j; @@ -50,25 +56,49 @@ int main( int argc, char **argv ) { } cout << endl; - cout << "# triangle groups" << endl; + cout << "# geometry groups" << endl; cout << endl; string material; int_list vertex_index; + int_list normal_index; int_list tex_index; + // generate points + string_list pt_materials = obj.get_pt_materials(); + group_list pts_v = obj.get_pts_v(); + group_list pts_n = obj.get_pts_n(); + for ( i = 0; i < (int)pts_v.size(); ++i ) { + material = pt_materials[i]; + vertex_index = pts_v[i]; + normal_index = pts_n[i]; + cout << "# usemtl " << material << endl; + cout << "pt "; + for ( j = 0; j < (int)vertex_index.size(); ++j ) { + cout << vertex_index[j] << "/" << normal_index[j] << " "; + } + cout << endl; + } + // generate triangles string_list tri_materials = obj.get_tri_materials(); group_list tris_v = obj.get_tris_v(); + group_list tris_n = obj.get_tris_n(); group_list tris_tc = obj.get_tris_tc(); for ( i = 0; i < (int)tris_v.size(); ++i ) { material = tri_materials[i]; vertex_index = tris_v[i]; + normal_index = tris_n[i]; tex_index = tris_tc[i]; cout << "# usemtl " << material << endl; cout << "f "; for ( j = 0; j < (int)vertex_index.size(); ++j ) { - cout << vertex_index[j] << "/" << tex_index[j] << " "; + cout << vertex_index[j]; + if ( normal_index.size() ) { + cout << "/" << normal_index[j]; + } + cout << "/" << tex_index[j]; + cout << " "; } cout << endl; } @@ -76,15 +106,21 @@ int main( int argc, char **argv ) { // generate strips string_list strip_materials = obj.get_strip_materials(); group_list strips_v = obj.get_strips_v(); + group_list strips_n = obj.get_strips_n(); group_list strips_tc = obj.get_strips_tc(); for ( i = 0; i < (int)strips_v.size(); ++i ) { material = strip_materials[i]; vertex_index = strips_v[i]; + normal_index = strips_n[i]; tex_index = strips_tc[i]; cout << "# usemtl " << material << endl; cout << "ts "; for ( j = 0; j < (int)vertex_index.size(); ++j ) { - cout << vertex_index[j] << "/" << tex_index[j] << " "; + cout << vertex_index[j]; + if ( normal_index.size() ) { + cout << "/" << normal_index[j]; + } + cout << "/" << tex_index[j] << " "; } cout << endl; } @@ -92,15 +128,21 @@ int main( int argc, char **argv ) { // generate fans string_list fan_materials = obj.get_fan_materials(); group_list fans_v = obj.get_fans_v(); + group_list fans_n = obj.get_fans_n(); group_list fans_tc = obj.get_fans_tc(); for ( i = 0; i < (int)fans_v.size(); ++i ) { material = fan_materials[i]; vertex_index = fans_v[i]; + normal_index = fans_n[i]; tex_index = fans_tc[i]; cout << "# usemtl " << material << endl; cout << "tf "; for ( j = 0; j < (int)vertex_index.size(); ++j ) { - cout << vertex_index[j] << "/" << tex_index[j] << " "; + cout << vertex_index[j]; + if ( normal_index.size() ) { + cout << "/" << normal_index[j]; + } + cout << "/" << tex_index[j] << " "; } cout << endl; }