Improve model creation.

This commit is contained in:
lzwdgc 2017-07-25 18:17:56 +03:00
parent faf3226a1b
commit eec6fb3ded
3 changed files with 241 additions and 94 deletions

View file

@ -56,7 +56,7 @@ void print(const block &b, const std::string &fn)
mtl += string(".") + b.name; mtl += string(".") + b.name;
o << "mtllib " << mtl << ".mtl\n"; o << "mtllib " << mtl << ".mtl\n";
o << "\n"; o << "\n";
o << b.printObj(mtl); //o << b.printObj(mtl);
auto mtl_fn = fn; auto mtl_fn = fn;
if (!printMaxPolygonBlock) if (!printMaxPolygonBlock)
@ -67,7 +67,7 @@ void print(const block &b, const std::string &fn)
m << "# A.I.M. Model Converter (ver. " << version() << ")\n"; m << "# A.I.M. Model Converter (ver. " << version() << ")\n";
m << "#" << "\n"; m << "#" << "\n";
m << "\n"; m << "\n";
m << b.printMtl(mtl); //m << b.printMtl(mtl);
} }
void convert_model(string fn) void convert_model(string fn)
@ -83,6 +83,10 @@ void convert_model(string fn)
throw std::logic_error(ss.str()); throw std::logic_error(ss.str());
} }
// write all
m.print(filename);
return;
// write obj and mtl // write obj and mtl
if (printMaxPolygonBlock) if (printMaxPolygonBlock)
{ {

View file

@ -20,6 +20,7 @@
#include <algorithm> #include <algorithm>
#include <fstream> #include <fstream>
#include <map>
#include <set> #include <set>
#include <string> #include <string>
@ -29,9 +30,112 @@
using namespace std; using namespace std;
const map<char, string> transliteration =
{
{ 'à',"a" },
{ 'á',"b" },
{ 'â',"v" },
{ 'ã',"g" },
{ 'ä',"d" },
{ 'å',"e" },
{ '¸',"yo" },
{ 'æ',"zh" },
{ 'ç',"z" },
{ 'è',"i" },
{ 'é',"y" },
{ 'ê',"k" },
{ 'ë',"l" },
{ 'ì',"m" },
{ 'í',"n" },
{ 'î',"o" },
{ 'ï',"p" },
{ 'ð',"r" },
{ 'ñ',"s" },
{ 'ò',"t" },
{ 'ó',"u" },
{ 'ô',"f" },
{ 'õ',"kh" },
{ 'ö',"ts" },
{ '÷',"ch" },
{ 'ø',"sh" },
{ 'ù',"shch" },
{ 'ú',"_" },
{ 'û',"y" },
{ 'ü',"_" },
{ 'ý',"e" },
{ 'þ',"yu" },
{ 'ÿ',"ya" },
{ 'À',"A" },
{ 'Á',"B" },
{ 'Â',"V" },
{ 'Ã',"G" },
{ 'Ä',"D" },
{ 'Å',"E" },
{ '¨',"Yo" },
{ 'Æ',"Zh" },
{ 'Ç',"Z" },
{ 'È',"I" },
{ 'É',"Y" },
{ 'Ê',"K" },
{ 'Ë',"L" },
{ 'Ì',"M" },
{ 'Í',"N" },
{ 'Î',"O" },
{ 'Ï',"P" },
{ 'Ð',"R" },
{ 'Ñ',"S" },
{ 'Ò',"T" },
{ 'Ó',"U" },
{ 'Ô',"F" },
{ 'Õ',"Kh" },
{ 'Ö',"Ts" },
{ '×',"Ch" },
{ 'Ø',"Sh" },
{ 'Ù',"Shch" },
{ 'Ú',"_" },
{ 'Û',"Y" },
{ 'Ü',"_" },
{ 'Ý',"E" },
{ 'Þ',"Yu" },
{ 'ß',"Ya" },
{ ' ',"_" },
}
;
std::string version(); std::string version();
std::string Vector4::print() const string translate(const string &s)
{
string o;
for (auto c : s)
{
auto i = transliteration.find(c);
if (i == transliteration.end())
o += c;
else
o += i->second;
}
return o;
}
template <typename T>
void aim_vector3<T>::load(const buffer &b)
{
READ(b, x);
READ(b, z);
READ(b, y);
}
void aim_vector4::load(const buffer &b, uint32_t flags)
{
aim_vector3::load(b);
if (flags & F_USE_W_COORDINATE)
READ(b, w);
}
std::string aim_vector4::print() const
{ {
string s; string s;
s += to_string(x) + " " + to_string(y) + " " + to_string(z); s += to_string(x) + " " + to_string(y) + " " + to_string(z);
@ -40,39 +144,29 @@ std::string Vector4::print() const
void vertex::load(const buffer &b, uint32_t flags) void vertex::load(const buffer &b, uint32_t flags)
{ {
READ(b, vX); coordinates.load(b, flags);
READ(b, vZ); READ(b, normal);
READ(b, vY); READ(b, texture_coordinates);
if (flags & F_UNK0)
READ(b, unk0);
READ(b, nX);
READ(b, nZ);
READ(b, nY);
READ(b, t1);
READ(b, t2);
} }
std::string vertex::printVertex() const std::string vertex::printVertex() const
{ {
string s; string s;
s = "v " + to_string(-vX) + " " + to_string(vY) + " " + to_string(-vZ); s = "v " + to_string(-coordinates.x) + " " + to_string(coordinates.y) + " " + to_string(-coordinates.z);
return s; return s;
} }
std::string vertex::printNormal() const std::string vertex::printNormal() const
{ {
string s; string s;
s = "vn " + to_string(-nX) + " " + to_string(nY) + " " + to_string(-nZ); s = "vn " + to_string(-normal.x) + " " + to_string(normal.y) + " " + to_string(-normal.z);
return s; return s;
} }
std::string vertex::printTex() const std::string vertex::printTex() const
{ {
string s; string s;
s = "vt " + to_string(t1) + " " + to_string(1 - t2) + " " + to_string(0); s = "vt " + to_string(texture_coordinates.u) + " " + to_string(1 - texture_coordinates.v);
return s; return s;
} }
@ -81,7 +175,7 @@ void damage_model::load(const buffer &b)
READ(b, n_polygons); READ(b, n_polygons);
model_polygons.resize(n_polygons); model_polygons.resize(n_polygons);
READ(b, unk8); READ(b, unk8);
READ(b, name); READ_STRING_N(b, name, 0x3C);
for (auto &t : model_polygons) for (auto &t : model_polygons)
READ(b, t); READ(b, t);
READ(b, unk6); READ(b, unk6);
@ -96,10 +190,19 @@ void damage_model::load(const buffer &b)
READ(b, t); READ(b, t);
} }
void material::load(const buffer &b)
{
READ(b, diffuse);
READ(b, ambient);
READ(b, specular);
READ(b, emissive);
READ(b, power);
}
void animation::load(const buffer &b) void animation::load(const buffer &b)
{ {
READ(b, type); READ(b, type);
READ(b, name); READ_STRING_N(b, name, 0xC);
for (auto &s : segments) for (auto &s : segments)
s.loadHeader(b); s.loadHeader(b);
//if (segments[0].n) //if (segments[0].n)
@ -129,10 +232,12 @@ void animation::segment::loadData(const buffer &b)
READ(b, unk); READ(b, unk);
} }
std::string block::printMtl(const std::string &mtl_name) const std::string block::printMtl() const
{ {
static const string ext = ".TM.bmp";
string s; string s;
s += "newmtl " + mtl_name + "\n"; s += "newmtl " + name + "\n";
s += "\n"; s += "\n";
s += "Ka " + material.ambient.print() + "\n"; s += "Ka " + material.ambient.print() + "\n";
s += "Kd " + material.diffuse.print() + "\n"; s += "Kd " + material.diffuse.print() + "\n";
@ -142,27 +247,27 @@ std::string block::printMtl(const std::string &mtl_name) const
// illum // illum
s += "\n"; s += "\n";
if (string(tex_mask) != "_DEFAULT_") if (string(tex_mask) != "_DEFAULT_")
s += "map_Ka " + string(tex_mask) + ".tga" + "\n"; s += "map_Ka " + string(tex_mask) + ext + "\n";
if (string(tex_mask) != "_DEFAULT_") if (string(tex_mask) != "_DEFAULT_")
s += "map_Kd " + string(tex_mask) + ".tga" + "\n"; s += "map_Kd " + string(tex_mask) + ext + "\n";
if (string(tex_spec) != "_DEFAULT_") if (string(tex_spec) != "_DEFAULT_")
s += "map_Ks " + string(tex_spec) + ".tga" + "\n"; s += "map_Ks " + string(tex_spec) + ext + "\n";
if (string(tex_spec) != "_DEFAULT_") if (string(tex_spec) != "_DEFAULT_")
s += "map_Ns " + string(tex_spec) + ".tga" + "\n"; s += "map_Ns " + string(tex_spec) + ext + "\n";
s += "\n"; s += "\n";
return s; return s;
} }
std::string block::printObj(const std::string &mtl_name) const std::string block::printObj() const
{ {
string s; string s;
s += "usemtl " + name + "\n";
s += "\n";
// UE does not recognize russian strings in .obj // UE does not recognize russian strings in .obj
//s += string("o ") + name + "\n"; //s += string("o ") + name + "\n";
//s += string("g ") + name + "\n"; //s += string("g ") + name + "\n";
s += "g group1\n"; s += "g " + name + "\n";
s += "s off\n"; s += "s 1\n";
s += "\n";
s += "usemtl " + mtl_name + "\n";
s += "\n"; s += "\n";
for (auto &v : vertices) for (auto &v : vertices)
@ -175,16 +280,16 @@ std::string block::printObj(const std::string &mtl_name) const
s += v.printTex() + "\n"; s += v.printTex() + "\n";
s += "\n"; s += "\n";
if (n_triangles) if (n_faces)
{ {
for (auto &t : triangles) for (auto &t : faces)
{ {
auto x = to_string(t.x + 1); auto x = to_string(t.x + 1);
auto y = to_string(t.y + 1); auto y = to_string(t.y + 1);
auto z = to_string(t.z + 1); auto z = to_string(t.z + 1);
x += "/" + x; x += "/" + x + "/" + x;
y += "/" + y; y += "/" + y + "/" + y;
z += "/" + z; z += "/" + z + "/" + z;
s += "f " + x + " " + y + " " + z + "\n"; s += "f " + x + " " + y + " " + z + "\n";
} }
} }
@ -199,6 +304,7 @@ void block::load(const buffer &b)
// header // header
READ(b, type); READ(b, type);
READ_STRING(b, name); READ_STRING(b, name);
name = translate(name);
READ_STRING(b, tex_mask); READ_STRING(b, tex_mask);
READ_STRING(b, tex_spec); READ_STRING(b, tex_spec);
READ_STRING(b, tex3); READ_STRING(b, tex3);
@ -221,7 +327,7 @@ void block::load(const buffer &b)
READ(data, n_animations); READ(data, n_animations);
animations.resize(n_animations); animations.resize(n_animations);
READ(data, material); material.load(data);
// unk // unk
READ(data, effect); READ(data, effect);
@ -243,13 +349,13 @@ void block::load(const buffer &b)
READ(data, flags); READ(data, flags);
READ(data, n_vertex); READ(data, n_vertex);
vertices.resize(n_vertex); vertices.resize(n_vertex);
READ(data, n_triangles); READ(data, n_faces);
if (triangles_mult_7 && (flags & F_UNK0) && !unk11) if (triangles_mult_7 && (flags & F_USE_W_COORDINATE) && !unk11)
n_triangles *= 7; n_faces *= 7;
triangles.resize(n_triangles / 3);
for (auto &v : vertices) for (auto &v : vertices)
v.load(data, flags); v.load(data, flags);
for (auto &t : triangles) faces.resize(n_faces / 3);
for (auto &t : faces)
READ(data, t); READ(data, t);
// animations // animations
@ -269,7 +375,7 @@ void block::load(const buffer &b)
if (!data.eof() && triangles_mult_7) if (!data.eof() && triangles_mult_7)
{ {
// unknown end of block // unknown end of block
auto triangles2 = triangles; auto triangles2 = faces;
triangles2.resize((data.size() - data.index()) / sizeof(triangle)); triangles2.resize((data.size() - data.index()) / sizeof(triangle));
for (auto &t : triangles2) for (auto &t : triangles2)
READ(data, t); READ(data, t);
@ -288,3 +394,31 @@ void model::load(const buffer &b)
for (auto &f : blocks) for (auto &f : blocks)
f.load(b); f.load(b);
} }
void model::print(const std::string &fn)
{
auto title = [](auto &o)
{
o << "#" << "\n";
o << "# A.I.M. Model Converter (ver. " << version() << ")\n";
o << "#" << "\n";
o << "\n";
};
auto obj_fn = fn + ".obj";
ofstream o(obj_fn);
title(o);
o << "mtllib " + fn + ".mtl\n\n";
o << "o " << fn << "\n\n";
auto mtl_fn = fn + ".mtl";
ofstream m(mtl_fn);
title(m);
for (auto &b : blocks)
{
if (b.type == BlockType::ParticleEmitter)
return;
o << b.printObj() << "\n";
m << b.printMtl() << "\n";
}
}

View file

@ -26,7 +26,7 @@ class buffer;
enum enum
{ {
F_UNK0 = 0x4, F_USE_W_COORDINATE = 0x4,
}; };
enum class AdditionalParameter : uint32_t enum class AdditionalParameter : uint32_t
@ -61,30 +61,35 @@ enum class EffectType : uint32_t
MaterialOnly = 0x14, MaterialOnly = 0x14,
}; };
struct Vector4 template <typename T>
struct aim_vector3
{ {
float x; T x;
float y; T y;
float z; T z;
float w;
void load(const buffer &b);
};
struct aim_vector4 : aim_vector3<float>
{
float w = 1.0f;
std::string print() const; std::string print() const;
void load(const buffer &b, uint32_t flags = 0);
};
struct uv
{
float u;
float v;
}; };
struct vertex struct vertex
{ {
float vX; aim_vector4 coordinates;
float vZ; aim_vector3<float> normal;
float vY; uv texture_coordinates;
float unk0;
float nX;
float nZ;
float nY;
float t1;
float t2;
void load(const buffer &b, uint32_t flags); void load(const buffer &b, uint32_t flags);
@ -93,12 +98,7 @@ struct vertex
std::string printTex() const; std::string printTex() const;
}; };
struct triangle using triangle = aim_vector3<uint16_t>;
{
uint16_t x;
uint16_t y;
uint16_t z;
};
struct animation struct animation
{ {
@ -111,10 +111,11 @@ struct animation
}; };
uint32_t n; uint32_t n;
std::vector<uint16_t> model_polygons;
// unk
uint32_t unk0; uint32_t unk0;
uint32_t unk1; uint32_t unk1;
std::vector<uint16_t> model_polygons;
std::vector<unk_float6> unk2; std::vector<unk_float6> unk2;
void loadHeader(const buffer &b); void loadHeader(const buffer &b);
@ -122,7 +123,7 @@ struct animation
}; };
uint32_t type; uint32_t type;
char name[0xC]; std::string name;
segment segments[4]; segment segments[4];
virtual void load(const buffer &b); virtual void load(const buffer &b);
@ -131,26 +132,29 @@ struct animation
struct damage_model struct damage_model
{ {
uint32_t n_polygons; uint32_t n_polygons;
float unk8[3]; std::string name;
char name[0x3C];
std::vector<uint16_t> model_polygons; std::vector<uint16_t> model_polygons;
uint8_t unk6;
uint32_t flags; uint32_t flags;
uint32_t n_vertex; uint32_t n_vertex;
uint32_t n_triangles; uint32_t n_triangles;
std::vector<vertex> vertices; std::vector<vertex> vertices;
std::vector<triangle> damage_triangles; std::vector<triangle> damage_triangles;
uint8_t unk6;
float unk8[3];
virtual void load(const buffer &b); virtual void load(const buffer &b);
}; };
struct material struct material
{ {
Vector4 diffuse; aim_vector4 ambient;
Vector4 ambient; aim_vector4 diffuse;
Vector4 specular; aim_vector4 specular;
Vector4 emissive; aim_vector4 emissive;
float power; float power;
void load(const buffer &b);
}; };
struct rotation struct rotation
@ -159,8 +163,8 @@ struct rotation
float speed; float speed;
// center of rotating axis // center of rotating axis
float x; float x;
float y; float y; // z?
float z; float z; // y?
}; };
struct additional_parameters struct additional_parameters
@ -190,10 +194,6 @@ struct block
} _; } _;
uint32_t LODs; uint32_t LODs;
}; };
uint32_t unk2[3];
uint32_t unk3;
uint32_t size;
uint32_t unk4[10];
// data // data
uint32_t n_animations; uint32_t n_animations;
@ -201,14 +201,8 @@ struct block
//unk (anim + transform settings?) //unk (anim + transform settings?)
EffectType effect; EffectType effect;
uint32_t unk7;
float unk9;
uint32_t unk10;
uint32_t auto_animation; uint32_t auto_animation;
float animation_cycle; float animation_cycle;
float unk8;
uint32_t unk11;
uint32_t unk12;
uint32_t triangles_mult_7; uint32_t triangles_mult_7;
// //
@ -217,17 +211,31 @@ struct block
rotation rot; rotation rot;
uint32_t flags; uint32_t flags;
uint32_t n_vertex; uint32_t n_vertex;
uint32_t n_triangles; uint32_t n_faces;
std::vector<vertex> vertices; std::vector<vertex> vertices;
std::vector<triangle> triangles; std::vector<triangle> faces;
// animations // animations
std::vector<animation> animations; std::vector<animation> animations;
std::vector<damage_model> damage_models; std::vector<damage_model> damage_models;
// stuff
uint32_t size;
// unk
uint32_t unk2[3];
uint16_t unk3[2];
uint32_t unk4[10];
uint32_t unk7;
float unk9;
uint32_t unk10;
float unk8;
uint32_t unk11;
uint32_t unk12;
void load(const buffer &b); void load(const buffer &b);
std::string printMtl(const std::string &mtl_name) const; std::string printMtl() const;
std::string printObj(const std::string &mtl_name) const; std::string printObj() const;
}; };
struct model struct model
@ -237,4 +245,5 @@ struct model
std::vector<block> blocks; std::vector<block> blocks;
void load(const buffer &b); void load(const buffer &b);
void print(const std::string &fn);
}; };