2017-03-05 15:47:28 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* resource_importer_obj.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-08 00:11:42 +02:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2017-03-05 15:47:28 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2017-02-03 04:08:50 +01:00
|
|
|
#include "resource_importer_obj.h"
|
|
|
|
|
|
|
|
#include "io/resource_saver.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "os/file_access.h"
|
2017-02-03 04:08:50 +01:00
|
|
|
#include "scene/resources/mesh.h"
|
|
|
|
#include "scene/resources/surface_tool.h"
|
|
|
|
|
|
|
|
String ResourceImporterOBJ::get_importer_name() const {
|
|
|
|
|
|
|
|
return "obj_mesh";
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String ResourceImporterOBJ::get_visible_name() const {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
return "OBJ As Mesh";
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterOBJ::get_recognized_extensions(List<String> *p_extensions) const {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
p_extensions->push_back("obj");
|
|
|
|
}
|
|
|
|
String ResourceImporterOBJ::get_save_extension() const {
|
2017-06-16 00:44:11 +02:00
|
|
|
return "mesh";
|
2017-02-03 04:08:50 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String ResourceImporterOBJ::get_resource_type() const {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-06-09 05:23:50 +02:00
|
|
|
return "ArrayMesh";
|
2017-02-03 04:08:50 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool ResourceImporterOBJ::get_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ResourceImporterOBJ::get_preset_count() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
String ResourceImporterOBJ::get_preset_name(int p_idx) const {
|
|
|
|
|
|
|
|
return String();
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterOBJ::get_import_options(List<ImportOption> *r_options, int p_preset) const {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "generate/tangents"), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "generate/normals"), true));
|
2017-02-03 04:08:50 +01:00
|
|
|
//not for nowp
|
|
|
|
//r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL,"import/materials")));
|
|
|
|
//r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL,"import/textures")));
|
2017-03-05 16:44:50 +01:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "force/flip_faces"), false));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "force/smooth_shading"), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "force/weld_vertices"), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::REAL, "force/weld_tolerance", PROPERTY_HINT_RANGE, "0.00001,16,0.00001"), 0.0001));
|
2017-02-03 04:08:50 +01:00
|
|
|
//r_options->push_back(PropertyInfo(Variant::INT,"compress/bitrate",PROPERTY_HINT_ENUM,"64,96,128,192"));
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Error ResourceImporterOBJ::import(const String &p_source_file, const String &p_save_path, const Map<StringName, Variant> &p_options, List<String> *r_platform_variants, List<String> *r_gen_files) {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
FileAccessRef f = FileAccess::open(p_source_file, FileAccess::READ);
|
|
|
|
ERR_FAIL_COND_V(!f, ERR_CANT_OPEN);
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-06-07 23:18:55 +02:00
|
|
|
Ref<ArrayMesh> mesh = Ref<ArrayMesh>(memnew(ArrayMesh));
|
2017-03-05 16:44:50 +01:00
|
|
|
Map<String, Ref<Material> > name_map;
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool generate_normals = p_options["generate/normals"];
|
|
|
|
bool generate_tangents = p_options["generate/tangents"];
|
|
|
|
bool flip_faces = p_options["force/flip_faces"];
|
|
|
|
bool force_smooth = p_options["force/smooth_shading"];
|
|
|
|
bool weld_vertices = p_options["force/weld_vertices"];
|
|
|
|
float weld_tolerance = p_options["force/weld_tolerance"];
|
2017-02-03 04:08:50 +01:00
|
|
|
Vector<Vector3> vertices;
|
|
|
|
Vector<Vector3> normals;
|
|
|
|
Vector<Vector2> uvs;
|
|
|
|
String name;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<SurfaceTool> surf_tool = memnew(SurfaceTool);
|
2017-02-03 04:08:50 +01:00
|
|
|
surf_tool->begin(Mesh::PRIMITIVE_TRIANGLES);
|
|
|
|
if (force_smooth)
|
|
|
|
surf_tool->add_smooth_group(true);
|
2017-03-05 16:44:50 +01:00
|
|
|
int has_index_data = false;
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
while (true) {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
String l = f->get_line().strip_edges();
|
|
|
|
|
|
|
|
if (l.begins_with("v ")) {
|
|
|
|
//vertex
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<String> v = l.split(" ", false);
|
|
|
|
ERR_FAIL_COND_V(v.size() < 4, ERR_INVALID_DATA);
|
2017-02-03 04:08:50 +01:00
|
|
|
Vector3 vtx;
|
2017-03-05 16:44:50 +01:00
|
|
|
vtx.x = v[1].to_float();
|
|
|
|
vtx.y = v[2].to_float();
|
|
|
|
vtx.z = v[3].to_float();
|
2017-02-03 04:08:50 +01:00
|
|
|
vertices.push_back(vtx);
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (l.begins_with("vt ")) {
|
2017-02-03 04:08:50 +01:00
|
|
|
//uv
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<String> v = l.split(" ", false);
|
|
|
|
ERR_FAIL_COND_V(v.size() < 3, ERR_INVALID_DATA);
|
2017-02-03 04:08:50 +01:00
|
|
|
Vector2 uv;
|
2017-03-05 16:44:50 +01:00
|
|
|
uv.x = v[1].to_float();
|
|
|
|
uv.y = 1.0 - v[2].to_float();
|
2017-02-03 04:08:50 +01:00
|
|
|
uvs.push_back(uv);
|
|
|
|
|
|
|
|
} else if (l.begins_with("vn ")) {
|
|
|
|
//normal
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<String> v = l.split(" ", false);
|
|
|
|
ERR_FAIL_COND_V(v.size() < 4, ERR_INVALID_DATA);
|
2017-02-03 04:08:50 +01:00
|
|
|
Vector3 nrm;
|
2017-03-05 16:44:50 +01:00
|
|
|
nrm.x = v[1].to_float();
|
|
|
|
nrm.y = v[2].to_float();
|
|
|
|
nrm.z = v[3].to_float();
|
2017-02-03 04:08:50 +01:00
|
|
|
normals.push_back(nrm);
|
2017-02-23 09:28:09 +01:00
|
|
|
} else if (l.begins_with("f ")) {
|
2017-03-05 16:44:50 +01:00
|
|
|
//vertex
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
has_index_data = true;
|
|
|
|
Vector<String> v = l.split(" ", false);
|
|
|
|
ERR_FAIL_COND_V(v.size() < 4, ERR_INVALID_DATA);
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
//not very fast, could be sped up
|
|
|
|
|
|
|
|
Vector<String> face[3];
|
|
|
|
face[0] = v[1].split("/");
|
|
|
|
face[1] = v[2].split("/");
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(face[0].size() == 0, ERR_PARSE_ERROR);
|
|
|
|
ERR_FAIL_COND_V(face[0].size() != face[1].size(), ERR_PARSE_ERROR);
|
|
|
|
for (int i = 2; i < v.size() - 1; i++) {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
face[2] = v[i + 1].split("/");
|
|
|
|
ERR_FAIL_COND_V(face[0].size() != face[2].size(), ERR_PARSE_ERROR);
|
|
|
|
for (int j = 0; j < 3; j++) {
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int idx = j;
|
2017-02-03 04:08:50 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (!flip_faces && idx < 2) {
|
|
|
|
idx = 1 ^ idx;
|
2017-02-03 04:08:50 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (face[idx].size() == 3) {
|
|
|
|
int norm = face[idx][2].to_int() - 1;
|
2017-04-27 10:24:09 +02:00
|
|
|
if (norm < 0)
|
|
|
|
norm += normals.size() + 1;
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_INDEX_V(norm, normals.size(), ERR_PARSE_ERROR);
|
2017-02-03 04:08:50 +01:00
|
|
|
surf_tool->add_normal(normals[norm]);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (face[idx].size() >= 2 && face[idx][1] != String()) {
|
|
|
|
int uv = face[idx][1].to_int() - 1;
|
2017-04-27 10:24:09 +02:00
|
|
|
if (uv < 0)
|
|
|
|
uv += uvs.size() + 1;
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_INDEX_V(uv, uvs.size(), ERR_PARSE_ERROR);
|
2017-02-03 04:08:50 +01:00
|
|
|
surf_tool->add_uv(uvs[uv]);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int vtx = face[idx][0].to_int() - 1;
|
2017-04-27 10:24:09 +02:00
|
|
|
if (vtx < 0)
|
|
|
|
vtx += vertices.size() + 1;
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_INDEX_V(vtx, vertices.size(), ERR_PARSE_ERROR);
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
Vector3 vertex = vertices[vtx];
|
|
|
|
if (weld_vertices)
|
2017-03-05 16:44:50 +01:00
|
|
|
vertex = vertex.snapped(weld_tolerance);
|
2017-02-03 04:08:50 +01:00
|
|
|
surf_tool->add_vertex(vertex);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
face[1] = face[2];
|
2017-02-03 04:08:50 +01:00
|
|
|
}
|
|
|
|
} else if (l.begins_with("s ") && !force_smooth) { //smoothing
|
2017-03-05 16:44:50 +01:00
|
|
|
String what = l.substr(2, l.length()).strip_edges();
|
|
|
|
if (what == "off")
|
2017-02-03 04:08:50 +01:00
|
|
|
surf_tool->add_smooth_group(false);
|
|
|
|
else
|
|
|
|
surf_tool->add_smooth_group(true);
|
|
|
|
|
|
|
|
} else if (l.begins_with("o ") || f->eof_reached()) { //new surface or done
|
|
|
|
|
|
|
|
if (has_index_data) {
|
|
|
|
//new object/surface
|
|
|
|
if (generate_normals || force_smooth)
|
|
|
|
surf_tool->generate_normals();
|
|
|
|
if (uvs.size() && (normals.size() || generate_normals) && generate_tangents)
|
|
|
|
surf_tool->generate_tangents();
|
|
|
|
|
|
|
|
surf_tool->index();
|
|
|
|
mesh = surf_tool->commit(mesh);
|
2017-03-05 16:44:50 +01:00
|
|
|
if (name == "")
|
|
|
|
name = vformat(TTR("Surface %d"), mesh->get_surface_count() - 1);
|
|
|
|
mesh->surface_set_name(mesh->get_surface_count() - 1, name);
|
|
|
|
name = "";
|
2017-02-03 04:08:50 +01:00
|
|
|
surf_tool->clear();
|
|
|
|
surf_tool->begin(Mesh::PRIMITIVE_TRIANGLES);
|
|
|
|
if (force_smooth)
|
|
|
|
surf_tool->add_smooth_group(true);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
has_index_data = false;
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
if (f->eof_reached())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l.begins_with("o ")) //name
|
2017-03-05 16:44:50 +01:00
|
|
|
name = l.substr(2, l.length()).strip_edges();
|
2017-02-03 04:08:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
/*
|
2017-02-03 04:08:50 +01:00
|
|
|
TODO, check existing materials and merge?
|
|
|
|
//re-apply materials if exist
|
|
|
|
for(int i=0;i<mesh->get_surface_count();i++) {
|
|
|
|
|
|
|
|
String n = mesh->surface_get_name(i);
|
|
|
|
if (name_map.has(n))
|
|
|
|
mesh->surface_set_material(i,name_map[n]);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2017-06-16 20:42:18 +02:00
|
|
|
Error err = ResourceSaver::save(p_save_path + ".mesh", mesh);
|
2017-02-03 04:08:50 +01:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceImporterOBJ::ResourceImporterOBJ() {
|
2017-02-03 04:08:50 +01:00
|
|
|
}
|