2017-03-05 15:47:28 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* resource_importer_scene.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2017-03-05 15:47:28 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* 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-04 13:48:04 +01:00
|
|
|
#include "resource_importer_scene.h"
|
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_node.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "io/resource_saver.h"
|
|
|
|
#include "scene/resources/packed_scene.h"
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
#include "scene/3d/collision_shape.h"
|
2017-02-04 13:48:04 +01:00
|
|
|
#include "scene/3d/mesh_instance.h"
|
|
|
|
#include "scene/3d/navigation.h"
|
|
|
|
#include "scene/3d/physics_body.h"
|
|
|
|
#include "scene/3d/portal.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/3d/room_instance.h"
|
2017-02-04 13:48:04 +01:00
|
|
|
#include "scene/3d/vehicle_body.h"
|
|
|
|
#include "scene/resources/box_shape.h"
|
|
|
|
#include "scene/resources/plane_shape.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/resources/ray_shape.h"
|
|
|
|
#include "scene/resources/sphere_shape.h"
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
void EditorScenePostImport::_bind_methods() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
BIND_VMETHOD(MethodInfo("post_import", PropertyInfo(Variant::OBJECT, "scene")));
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *EditorScenePostImport::post_import(Node *p_scene) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (get_script_instance())
|
2017-03-05 16:44:50 +01:00
|
|
|
return get_script_instance()->call("post_import", p_scene);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
return p_scene;
|
|
|
|
}
|
|
|
|
|
|
|
|
EditorScenePostImport::EditorScenePostImport() {
|
|
|
|
}
|
|
|
|
|
|
|
|
String ResourceImporterScene::get_importer_name() const {
|
|
|
|
|
|
|
|
return "scene";
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String ResourceImporterScene::get_visible_name() const {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
return "Scene";
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterScene::get_recognized_extensions(List<String> *p_extensions) const {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (Set<Ref<EditorSceneImporter> >::Element *E = importers.front(); E; E = E->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
E->get()->get_extensions(p_extensions);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String ResourceImporterScene::get_save_extension() const {
|
|
|
|
return "scn";
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String ResourceImporterScene::get_resource_type() const {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
return "PackedScene";
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool ResourceImporterScene::get_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (p_option.begins_with("animation/")) {
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_option != "animation/import" && !bool(p_options["animation/import"]))
|
2017-02-04 13:48:04 +01:00
|
|
|
return false;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_option.begins_with("animation/optimizer/") && p_option != "animation/optimizer/enabled" && !bool(p_options["animation/optimizer/enabled"]))
|
2017-02-04 13:48:04 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (p_option.begins_with("animation/clip_")) {
|
|
|
|
int max_clip = p_options["animation/clips/amount"];
|
2017-03-05 16:44:50 +01:00
|
|
|
int clip = p_option.get_slice("/", 1).get_slice("_", 1).to_int() - 1;
|
|
|
|
if (clip >= max_clip)
|
2017-02-04 13:48:04 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:02:43 +02:00
|
|
|
if (p_option == "materials/keep_on_reimport" && int(p_options["materials/storage"]) == 0) {
|
2017-07-23 23:48:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-04 13:48:04 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ResourceImporterScene::get_preset_count() const {
|
2017-07-23 23:48:05 +02:00
|
|
|
return 6;
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
String ResourceImporterScene::get_preset_name(int p_idx) const {
|
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
switch (p_idx) {
|
|
|
|
case PRESET_SINGLE_SCENE: return TTR("Import as Single Scene");
|
2017-07-23 23:55:08 +02:00
|
|
|
case PRESET_SEPARATE_MATERIALS: return TTR("Import with Separate Materials");
|
|
|
|
case PRESET_SEPARATE_MESHES: return TTR("Import with Separate Objects");
|
|
|
|
case PRESET_SEPARATE_MESHES_AND_MATERIALS: return TTR("Import with Separate Objects+Materials");
|
2017-07-23 23:48:05 +02:00
|
|
|
case PRESET_MULTIPLE_SCENES: return TTR("Import as Multiple Scenes");
|
|
|
|
case PRESET_MULTIPLE_SCENES_AND_MATERIALS: return TTR("Import as Multiple Scenes+Materials");
|
|
|
|
}
|
|
|
|
|
2017-02-04 13:48:04 +01:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
static bool _teststr(const String &p_what, const String &p_str) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_what.findn("$" + p_str) != -1) //blender and other stuff
|
2017-02-04 13:48:04 +01:00
|
|
|
return true;
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_what.to_lower().ends_with("-" + p_str)) //collada only supports "_" and "-" besides letters
|
2017-02-04 13:48:04 +01:00
|
|
|
return true;
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_what.to_lower().ends_with("_" + p_str)) //collada only supports "_" and "-" besides letters
|
2017-02-04 13:48:04 +01:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
static String _fixstr(const String &p_what, const String &p_str) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_what.findn("$" + p_str) != -1) //blender and other stuff
|
|
|
|
return p_what.replace("$" + p_str, "");
|
|
|
|
if (p_what.to_lower().ends_with("-" + p_str)) //collada only supports "_" and "-" besides letters
|
|
|
|
return p_what.substr(0, p_what.length() - (p_str.length() + 1));
|
|
|
|
if (p_what.to_lower().ends_with("_" + p_str)) //collada only supports "_" and "-" besides letters
|
|
|
|
return p_what.substr(0, p_what.length() - (p_str.length() + 1));
|
2017-02-04 13:48:04 +01:00
|
|
|
return p_what;
|
|
|
|
}
|
|
|
|
|
2017-06-07 23:18:55 +02:00
|
|
|
Node *ResourceImporterScene::_fix_node(Node *p_node, Node *p_root, Map<Ref<ArrayMesh>, Ref<Shape> > &collision_map) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
// children first..
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < p_node->get_child_count(); i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *r = _fix_node(p_node->get_child(i), p_root, collision_map);
|
2017-02-04 13:48:04 +01:00
|
|
|
if (!r) {
|
|
|
|
print_line("was erased..");
|
|
|
|
i--; //was erased
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String name = p_node->get_name();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool isroot = p_node == p_root;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (!isroot && _teststr(name, "noimp")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
memdelete(p_node);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
if (Object::cast_to<MeshInstance>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
MeshInstance *mi = Object::cast_to<MeshInstance>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-06-07 23:18:55 +02:00
|
|
|
Ref<ArrayMesh> m = mi->get_mesh();
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (m.is_valid()) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < m->get_surface_count(); i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
Ref<SpatialMaterial> mat = m->surface_get_material(i);
|
2017-02-04 13:48:04 +01:00
|
|
|
if (!mat.is_valid())
|
|
|
|
continue;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (_teststr(mat->get_name(), "alpha")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
mat->set_feature(SpatialMaterial::FEATURE_TRANSPARENT, true);
|
2017-03-05 16:44:50 +01:00
|
|
|
mat->set_name(_fixstr(mat->get_name(), "alpha"));
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
if (_teststr(mat->get_name(), "vcol")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-04-07 04:36:37 +02:00
|
|
|
mat->set_flag(SpatialMaterial::FLAG_ALBEDO_FROM_VERTEX_COLOR, true);
|
|
|
|
mat->set_flag(SpatialMaterial::FLAG_SRGB_VERTEX_COLOR, true);
|
2017-03-05 16:44:50 +01:00
|
|
|
mat->set_name(_fixstr(mat->get_name(), "vcol"));
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
if (Object::cast_to<AnimationPlayer>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
//remove animations referencing non-importable nodes
|
2017-08-24 22:58:51 +02:00
|
|
|
AnimationPlayer *ap = Object::cast_to<AnimationPlayer>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
List<StringName> anims;
|
|
|
|
ap->get_animation_list(&anims);
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<StringName>::Element *E = anims.front(); E; E = E->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<Animation> anim = ap->get_animation(E->get());
|
2017-02-04 13:48:04 +01:00
|
|
|
ERR_CONTINUE(anim.is_null());
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < anim->get_track_count(); i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
NodePath path = anim->track_get_path(i);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int j = 0; j < path.get_name_count(); j++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
String node = path.get_name(j);
|
2017-03-05 16:44:50 +01:00
|
|
|
if (_teststr(node, "noimp")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
anim->remove_track(i);
|
|
|
|
i--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (_teststr(name, "colonly")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
if (MeshInstance *mi = Object::cast_to<MeshInstance>(p_node)) {
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *col = mi->create_trimesh_collision_node();
|
|
|
|
ERR_FAIL_COND_V(!col, NULL);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
col->set_name(_fixstr(name, "colonly"));
|
2017-08-24 22:58:51 +02:00
|
|
|
Object::cast_to<Spatial>(col)->set_transform(mi->get_transform());
|
2017-02-04 13:48:04 +01:00
|
|
|
p_node->replace_by(col);
|
|
|
|
memdelete(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = col;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
StaticBody *sb = Object::cast_to<StaticBody>(col);
|
|
|
|
CollisionShape *colshape = Object::cast_to<CollisionShape>(sb->get_child(0));
|
2017-02-04 13:48:04 +01:00
|
|
|
colshape->set_name("shape");
|
|
|
|
colshape->set_owner(p_node->get_owner());
|
|
|
|
} else if (p_node->has_meta("empty_draw_type")) {
|
|
|
|
String empty_draw_type = String(p_node->get_meta("empty_draw_type"));
|
|
|
|
print_line(empty_draw_type);
|
2017-03-05 16:44:50 +01:00
|
|
|
StaticBody *sb = memnew(StaticBody);
|
|
|
|
sb->set_name(_fixstr(name, "colonly"));
|
2017-08-24 22:58:51 +02:00
|
|
|
Object::cast_to<Spatial>(sb)->set_transform(Object::cast_to<Spatial>(p_node)->get_transform());
|
2017-02-04 13:48:04 +01:00
|
|
|
p_node->replace_by(sb);
|
|
|
|
memdelete(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
CollisionShape *colshape = memnew(CollisionShape);
|
2017-02-04 13:48:04 +01:00
|
|
|
if (empty_draw_type == "CUBE") {
|
2017-03-05 16:44:50 +01:00
|
|
|
BoxShape *boxShape = memnew(BoxShape);
|
2017-02-04 13:48:04 +01:00
|
|
|
boxShape->set_extents(Vector3(1, 1, 1));
|
|
|
|
colshape->set_shape(boxShape);
|
|
|
|
colshape->set_name("BoxShape");
|
|
|
|
} else if (empty_draw_type == "SINGLE_ARROW") {
|
2017-03-05 16:44:50 +01:00
|
|
|
RayShape *rayShape = memnew(RayShape);
|
2017-02-04 13:48:04 +01:00
|
|
|
rayShape->set_length(1);
|
|
|
|
colshape->set_shape(rayShape);
|
|
|
|
colshape->set_name("RayShape");
|
2017-08-24 22:58:51 +02:00
|
|
|
Object::cast_to<Spatial>(sb)->rotate_x(Math_PI / 2);
|
2017-02-04 13:48:04 +01:00
|
|
|
} else if (empty_draw_type == "IMAGE") {
|
2017-03-05 16:44:50 +01:00
|
|
|
PlaneShape *planeShape = memnew(PlaneShape);
|
2017-02-04 13:48:04 +01:00
|
|
|
colshape->set_shape(planeShape);
|
|
|
|
colshape->set_name("PlaneShape");
|
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
SphereShape *sphereShape = memnew(SphereShape);
|
2017-02-04 13:48:04 +01:00
|
|
|
sphereShape->set_radius(1);
|
|
|
|
colshape->set_shape(sphereShape);
|
|
|
|
colshape->set_name("SphereShape");
|
|
|
|
}
|
|
|
|
sb->add_child(colshape);
|
|
|
|
colshape->set_owner(sb->get_owner());
|
|
|
|
}
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
} else if (_teststr(name, "rigid") && Object::cast_to<MeshInstance>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
|
|
|
// get mesh instance and bounding box
|
2017-08-24 22:58:51 +02:00
|
|
|
MeshInstance *mi = Object::cast_to<MeshInstance>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
Rect3 aabb = mi->get_aabb();
|
|
|
|
|
|
|
|
// create a new rigid body collision node
|
2017-03-05 16:44:50 +01:00
|
|
|
RigidBody *rigid_body = memnew(RigidBody);
|
|
|
|
Node *col = rigid_body;
|
|
|
|
ERR_FAIL_COND_V(!col, NULL);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
// remove node name postfix
|
2017-03-05 16:44:50 +01:00
|
|
|
col->set_name(_fixstr(name, "rigid"));
|
2017-02-04 13:48:04 +01:00
|
|
|
// get mesh instance xform matrix to the rigid body collision node
|
2017-08-24 22:58:51 +02:00
|
|
|
Object::cast_to<Spatial>(col)->set_transform(mi->get_transform());
|
2017-02-04 13:48:04 +01:00
|
|
|
// save original node by duplicating it into a new instance and correcting the name
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *mesh = p_node->duplicate();
|
|
|
|
mesh->set_name(_fixstr(name, "rigid"));
|
2017-02-04 13:48:04 +01:00
|
|
|
// reset the xform matrix of the duplicated node so it can inherit parent node xform
|
2017-08-24 22:58:51 +02:00
|
|
|
Object::cast_to<Spatial>(mesh)->set_transform(Transform(Basis()));
|
2017-02-04 13:48:04 +01:00
|
|
|
// reparent the new mesh node to the rigid body collision node
|
|
|
|
p_node->add_child(mesh);
|
|
|
|
mesh->set_owner(p_node->get_owner());
|
|
|
|
// replace the original node with the rigid body collision node
|
|
|
|
p_node->replace_by(col);
|
|
|
|
memdelete(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = col;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
// create an alias for the rigid body collision node
|
2017-08-24 22:58:51 +02:00
|
|
|
RigidBody *rb = Object::cast_to<RigidBody>(col);
|
2017-02-04 13:48:04 +01:00
|
|
|
// create a new Box collision shape and set the right extents
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<BoxShape> shape = memnew(BoxShape);
|
2017-02-04 13:48:04 +01:00
|
|
|
shape->set_extents(aabb.get_size() * 0.5);
|
2017-03-05 16:44:50 +01:00
|
|
|
CollisionShape *colshape = memnew(CollisionShape);
|
2017-02-04 13:48:04 +01:00
|
|
|
colshape->set_name("shape");
|
|
|
|
colshape->set_shape(shape);
|
|
|
|
// reparent the new collision shape to the rigid body collision node
|
|
|
|
rb->add_child(colshape);
|
|
|
|
colshape->set_owner(p_node->get_owner());
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
} else if (_teststr(name, "col") && Object::cast_to<MeshInstance>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
MeshInstance *mi = Object::cast_to<MeshInstance>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
mi->set_name(_fixstr(name, "col"));
|
|
|
|
Node *col = mi->create_trimesh_collision_node();
|
|
|
|
ERR_FAIL_COND_V(!col, NULL);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
col->set_name("col");
|
|
|
|
p_node->add_child(col);
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
StaticBody *sb = Object::cast_to<StaticBody>(col);
|
|
|
|
CollisionShape *colshape = Object::cast_to<CollisionShape>(sb->get_child(0));
|
2017-02-04 13:48:04 +01:00
|
|
|
colshape->set_name("shape");
|
|
|
|
col->add_child(colshape);
|
|
|
|
colshape->set_owner(p_node->get_owner());
|
|
|
|
sb->set_owner(p_node->get_owner());
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
} else if (_teststr(name, "navmesh") && Object::cast_to<MeshInstance>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
MeshInstance *mi = Object::cast_to<MeshInstance>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-06-07 23:18:55 +02:00
|
|
|
Ref<ArrayMesh> mesh = mi->get_mesh();
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(mesh.is_null(), NULL);
|
|
|
|
NavigationMeshInstance *nmi = memnew(NavigationMeshInstance);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
nmi->set_name(_fixstr(name, "navmesh"));
|
|
|
|
Ref<NavigationMesh> nmesh = memnew(NavigationMesh);
|
2017-02-04 13:48:04 +01:00
|
|
|
nmesh->create_from_mesh(mesh);
|
|
|
|
nmi->set_navigation_mesh(nmesh);
|
2017-08-24 22:58:51 +02:00
|
|
|
Object::cast_to<Spatial>(nmi)->set_transform(mi->get_transform());
|
2017-02-04 13:48:04 +01:00
|
|
|
p_node->replace_by(nmi);
|
|
|
|
memdelete(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = nmi;
|
|
|
|
} else if (_teststr(name, "vehicle")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
|
|
|
Node *owner = p_node->get_owner();
|
2017-08-24 22:58:51 +02:00
|
|
|
Spatial *s = Object::cast_to<Spatial>(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
VehicleBody *bv = memnew(VehicleBody);
|
|
|
|
String n = _fixstr(p_node->get_name(), "vehicle");
|
2017-02-04 13:48:04 +01:00
|
|
|
bv->set_name(n);
|
|
|
|
p_node->replace_by(bv);
|
|
|
|
p_node->set_name(n);
|
|
|
|
bv->add_child(p_node);
|
|
|
|
bv->set_owner(owner);
|
|
|
|
p_node->set_owner(owner);
|
|
|
|
bv->set_transform(s->get_transform());
|
|
|
|
s->set_transform(Transform());
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = bv;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (_teststr(name, "wheel")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
|
|
|
Node *owner = p_node->get_owner();
|
2017-08-24 22:58:51 +02:00
|
|
|
Spatial *s = Object::cast_to<Spatial>(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
VehicleWheel *bv = memnew(VehicleWheel);
|
|
|
|
String n = _fixstr(p_node->get_name(), "wheel");
|
2017-02-04 13:48:04 +01:00
|
|
|
bv->set_name(n);
|
|
|
|
p_node->replace_by(bv);
|
|
|
|
p_node->set_name(n);
|
|
|
|
bv->add_child(p_node);
|
|
|
|
bv->set_owner(owner);
|
|
|
|
p_node->set_owner(owner);
|
|
|
|
bv->set_transform(s->get_transform());
|
|
|
|
s->set_transform(Transform());
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = bv;
|
2017-08-26 05:40:45 +02:00
|
|
|
#if 0
|
2017-08-24 22:58:51 +02:00
|
|
|
} else if (_teststr(name, "room") && Object::cast_to<MeshInstance>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
MeshInstance *mi = Object::cast_to<MeshInstance>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
PoolVector<Face3> faces = mi->get_faces(VisualInstance::FACES_SOLID);
|
|
|
|
|
|
|
|
BSP_Tree bsptree(faces);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<RoomBounds> area = memnew(RoomBounds);
|
2017-02-04 13:48:04 +01:00
|
|
|
//area->set_bounds(faces);
|
|
|
|
//area->set_geometry_hint(faces);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Room *room = memnew(Room);
|
|
|
|
room->set_name(_fixstr(name, "room"));
|
2017-02-04 13:48:04 +01:00
|
|
|
room->set_transform(mi->get_transform());
|
|
|
|
room->set_room(area);
|
|
|
|
|
|
|
|
p_node->replace_by(room);
|
|
|
|
memdelete(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = room;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (_teststr(name, "room")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
Spatial *dummy = Object::cast_to<Spatial>(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!dummy, NULL);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Room *room = memnew(Room);
|
|
|
|
room->set_name(_fixstr(name, "room"));
|
2017-02-04 13:48:04 +01:00
|
|
|
room->set_transform(dummy->get_transform());
|
|
|
|
|
|
|
|
p_node->replace_by(room);
|
|
|
|
memdelete(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = room;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
//room->compute_room_from_subtree();
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
} else if (_teststr(name, "portal") && Object::cast_to<MeshInstance>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (isroot)
|
|
|
|
return p_node;
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
MeshInstance *mi = Object::cast_to<MeshInstance>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
PoolVector<Face3> faces = mi->get_faces(VisualInstance::FACES_SOLID);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(faces.size() == 0, NULL);
|
2017-02-04 13:48:04 +01:00
|
|
|
//step 1 compute the plane
|
|
|
|
Set<Vector3> points;
|
|
|
|
Plane plane;
|
|
|
|
|
|
|
|
Vector3 center;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < faces.size(); i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Face3 f = faces.get(i);
|
|
|
|
Plane p = f.get_plane();
|
2017-03-05 16:44:50 +01:00
|
|
|
plane.normal += p.normal;
|
|
|
|
plane.d += p.d;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < 3; i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-06-30 20:47:17 +02:00
|
|
|
Vector3 v = f.vertex[i].snapped(Vector3(0.01, 0.01, 0.01));
|
2017-02-04 13:48:04 +01:00
|
|
|
if (!points.has(v)) {
|
|
|
|
points.insert(v);
|
2017-03-05 16:44:50 +01:00
|
|
|
center += v;
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plane.normal.normalize();
|
2017-03-05 16:44:50 +01:00
|
|
|
plane.d /= faces.size();
|
|
|
|
center /= points.size();
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
//step 2, create points
|
|
|
|
|
|
|
|
Transform t;
|
|
|
|
t.basis.from_z(plane.normal);
|
|
|
|
t.basis.transpose();
|
2017-03-05 16:44:50 +01:00
|
|
|
t.origin = center;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Vector<Point2> portal_points;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (Set<Vector3>::Element *E = points.front(); E; E = E->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Vector3 local = t.xform_inv(E->get());
|
2017-03-05 16:44:50 +01:00
|
|
|
portal_points.push_back(Point2(local.x, local.y));
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
// step 3 bubbly sort points
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int swaps = 0;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
do {
|
2017-03-05 16:44:50 +01:00
|
|
|
swaps = 0;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < portal_points.size() - 1; i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
float a = portal_points[i].angle();
|
2017-03-05 16:44:50 +01:00
|
|
|
float b = portal_points[i + 1].angle();
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (a > b) {
|
|
|
|
SWAP(portal_points[i], portal_points[i + 1]);
|
2017-02-04 13:48:04 +01:00
|
|
|
swaps++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
} while (swaps);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Portal *portal = memnew(Portal);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
portal->set_shape(portal_points);
|
2017-03-05 16:44:50 +01:00
|
|
|
portal->set_transform(mi->get_transform() * t);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
p_node->replace_by(portal);
|
|
|
|
memdelete(p_node);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node = portal;
|
2017-08-26 05:40:45 +02:00
|
|
|
#endif
|
2017-08-24 22:58:51 +02:00
|
|
|
} else if (Object::cast_to<MeshInstance>(p_node)) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
//last attempt, maybe collision insde the mesh data
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
MeshInstance *mi = Object::cast_to<MeshInstance>(p_node);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-06-07 23:18:55 +02:00
|
|
|
Ref<ArrayMesh> mesh = mi->get_mesh();
|
2017-02-04 13:48:04 +01:00
|
|
|
if (!mesh.is_null()) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (_teststr(mesh->get_name(), "col")) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
mesh->set_name(_fixstr(mesh->get_name(), "col"));
|
2017-02-04 13:48:04 +01:00
|
|
|
Ref<Shape> shape;
|
|
|
|
|
|
|
|
if (collision_map.has(mesh)) {
|
|
|
|
shape = collision_map[mesh];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
shape = mesh->create_trimesh_shape();
|
|
|
|
if (!shape.is_null())
|
2017-03-05 16:44:50 +01:00
|
|
|
collision_map[mesh] = shape;
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return p_node;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterScene::_create_clips(Node *scene, const Array &p_clips, bool p_bake_all) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (!scene->has_node(String("AnimationPlayer")))
|
|
|
|
return;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *n = scene->get_node(String("AnimationPlayer"));
|
2017-02-04 13:48:04 +01:00
|
|
|
ERR_FAIL_COND(!n);
|
2017-08-24 22:58:51 +02:00
|
|
|
AnimationPlayer *anim = Object::cast_to<AnimationPlayer>(n);
|
2017-02-04 13:48:04 +01:00
|
|
|
ERR_FAIL_COND(!anim);
|
|
|
|
|
|
|
|
if (!anim->has_animation("default"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
Ref<Animation> default_anim = anim->get_animation("default");
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < p_clips.size(); i += 4) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String name = p_clips[i];
|
2017-03-05 16:44:50 +01:00
|
|
|
float from = p_clips[i + 1];
|
|
|
|
float to = p_clips[i + 2];
|
|
|
|
bool loop = p_clips[i + 3];
|
|
|
|
if (from >= to)
|
2017-02-04 13:48:04 +01:00
|
|
|
continue;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<Animation> new_anim = memnew(Animation);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int j = 0; j < default_anim->get_track_count(); j++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
List<float> keys;
|
|
|
|
int kc = default_anim->track_get_key_count(j);
|
2017-03-05 16:44:50 +01:00
|
|
|
int dtrack = -1;
|
|
|
|
for (int k = 0; k < kc; k++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
float kt = default_anim->track_get_key_time(j, k);
|
|
|
|
if (kt >= from && kt < to) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
//found a key within range, so create track
|
2017-03-05 16:44:50 +01:00
|
|
|
if (dtrack == -1) {
|
2017-02-04 13:48:04 +01:00
|
|
|
new_anim->add_track(default_anim->track_get_type(j));
|
2017-03-05 16:44:50 +01:00
|
|
|
dtrack = new_anim->get_track_count() - 1;
|
|
|
|
new_anim->track_set_path(dtrack, default_anim->track_get_path(j));
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (kt > (from + 0.01) && k > 0) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (default_anim->track_get_type(j) == Animation::TYPE_TRANSFORM) {
|
2017-02-04 13:48:04 +01:00
|
|
|
Quat q;
|
|
|
|
Vector3 p;
|
|
|
|
Vector3 s;
|
2017-03-05 16:44:50 +01:00
|
|
|
default_anim->transform_track_interpolate(j, from, &p, &q, &s);
|
|
|
|
new_anim->transform_track_insert_key(dtrack, 0, p, q, s);
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (default_anim->track_get_type(j) == Animation::TYPE_TRANSFORM) {
|
2017-02-04 13:48:04 +01:00
|
|
|
Quat q;
|
|
|
|
Vector3 p;
|
|
|
|
Vector3 s;
|
2017-03-05 16:44:50 +01:00
|
|
|
default_anim->transform_track_get_key(j, k, &p, &q, &s);
|
|
|
|
new_anim->transform_track_insert_key(dtrack, kt - from, p, q, s);
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (dtrack != -1 && kt >= to) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (default_anim->track_get_type(j) == Animation::TYPE_TRANSFORM) {
|
2017-02-04 13:48:04 +01:00
|
|
|
Quat q;
|
|
|
|
Vector3 p;
|
|
|
|
Vector3 s;
|
2017-03-05 16:44:50 +01:00
|
|
|
default_anim->transform_track_interpolate(j, to, &p, &q, &s);
|
|
|
|
new_anim->transform_track_insert_key(dtrack, to - from, p, q, s);
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (dtrack == -1 && p_bake_all) {
|
2017-02-04 13:48:04 +01:00
|
|
|
new_anim->add_track(default_anim->track_get_type(j));
|
2017-03-05 16:44:50 +01:00
|
|
|
dtrack = new_anim->get_track_count() - 1;
|
|
|
|
new_anim->track_set_path(dtrack, default_anim->track_get_path(j));
|
|
|
|
if (default_anim->track_get_type(j) == Animation::TYPE_TRANSFORM) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Quat q;
|
|
|
|
Vector3 p;
|
|
|
|
Vector3 s;
|
2017-03-05 16:44:50 +01:00
|
|
|
default_anim->transform_track_interpolate(j, from, &p, &q, &s);
|
|
|
|
new_anim->transform_track_insert_key(dtrack, 0, p, q, s);
|
|
|
|
default_anim->transform_track_interpolate(j, to, &p, &q, &s);
|
|
|
|
new_anim->transform_track_insert_key(dtrack, to - from, p, q, s);
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
new_anim->set_loop(loop);
|
2017-03-05 16:44:50 +01:00
|
|
|
new_anim->set_length(to - from);
|
|
|
|
anim->add_animation(name, new_anim);
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
anim->remove_animation("default"); //remove default (no longer needed)
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterScene::_filter_anim_tracks(Ref<Animation> anim, Set<String> &keep) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Ref<Animation> a = anim;
|
|
|
|
ERR_FAIL_COND(!a.is_valid());
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
print_line("From Anim " + anim->get_name() + ":");
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int j = 0; j < a->get_track_count(); j++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String path = a->track_get_path(j);
|
|
|
|
|
|
|
|
if (!keep.has(path)) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
print_line("Remove: " + path);
|
2017-02-04 13:48:04 +01:00
|
|
|
a->remove_track(j);
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterScene::_filter_tracks(Node *scene, const String &p_text) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (!scene->has_node(String("AnimationPlayer")))
|
|
|
|
return;
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *n = scene->get_node(String("AnimationPlayer"));
|
2017-02-04 13:48:04 +01:00
|
|
|
ERR_FAIL_COND(!n);
|
2017-08-24 22:58:51 +02:00
|
|
|
AnimationPlayer *anim = Object::cast_to<AnimationPlayer>(n);
|
2017-02-04 13:48:04 +01:00
|
|
|
ERR_FAIL_COND(!anim);
|
|
|
|
|
|
|
|
Vector<String> strings = p_text.split("\n");
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < strings.size(); i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
strings[i] = strings[i].strip_edges();
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
List<StringName> anim_names;
|
|
|
|
anim->get_animation_list(&anim_names);
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<StringName>::Element *E = anim_names.front(); E; E = E->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String name = E->get();
|
2017-03-05 16:44:50 +01:00
|
|
|
bool valid_for_this = false;
|
|
|
|
bool valid = false;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Set<String> keep;
|
|
|
|
Set<String> keep_local;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < strings.size(); i++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (strings[i].begins_with("@")) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
valid_for_this = false;
|
|
|
|
for (Set<String>::Element *F = keep_local.front(); F; F = F->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
keep.insert(F->get());
|
|
|
|
}
|
|
|
|
keep_local.clear();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<String> filters = strings[i].substr(1, strings[i].length()).split(",");
|
|
|
|
for (int j = 0; j < filters.size(); j++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String fname = filters[j].strip_edges();
|
2017-03-05 16:44:50 +01:00
|
|
|
if (fname == "")
|
2017-02-04 13:48:04 +01:00
|
|
|
continue;
|
|
|
|
int fc = fname[0];
|
|
|
|
bool plus;
|
2017-03-05 16:44:50 +01:00
|
|
|
if (fc == '+')
|
|
|
|
plus = true;
|
|
|
|
else if (fc == '-')
|
|
|
|
plus = false;
|
2017-02-04 13:48:04 +01:00
|
|
|
else
|
|
|
|
continue;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String filter = fname.substr(1, fname.length()).strip_edges();
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (!name.matchn(filter))
|
|
|
|
continue;
|
2017-03-05 16:44:50 +01:00
|
|
|
valid_for_this = plus;
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (valid_for_this)
|
2017-03-05 16:44:50 +01:00
|
|
|
valid = true;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
} else if (valid_for_this) {
|
|
|
|
|
|
|
|
Ref<Animation> a = anim->get_animation(name);
|
|
|
|
if (!a.is_valid())
|
|
|
|
continue;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int j = 0; j < a->get_track_count(); j++) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String path = a->track_get_path(j);
|
|
|
|
|
|
|
|
String tname = strings[i];
|
2017-03-05 16:44:50 +01:00
|
|
|
if (tname == "")
|
2017-02-04 13:48:04 +01:00
|
|
|
continue;
|
|
|
|
int fc = tname[0];
|
|
|
|
bool plus;
|
2017-03-05 16:44:50 +01:00
|
|
|
if (fc == '+')
|
|
|
|
plus = true;
|
|
|
|
else if (fc == '-')
|
|
|
|
plus = false;
|
2017-02-04 13:48:04 +01:00
|
|
|
else
|
|
|
|
continue;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String filter = tname.substr(1, tname.length()).strip_edges();
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (!path.matchn(filter))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (plus)
|
|
|
|
keep_local.insert(path);
|
|
|
|
else if (!keep.has(path)) {
|
|
|
|
keep_local.erase(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (valid) {
|
2017-03-05 16:44:50 +01:00
|
|
|
for (Set<String>::Element *F = keep_local.front(); F; F = F->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
keep.insert(F->get());
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
_filter_anim_tracks(anim->get_animation(name), keep);
|
2017-02-04 13:48:04 +01:00
|
|
|
} else {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterScene::_optimize_animations(Node *scene, float p_max_lin_error, float p_max_ang_error, float p_max_angle) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (!scene->has_node(String("AnimationPlayer")))
|
|
|
|
return;
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *n = scene->get_node(String("AnimationPlayer"));
|
2017-02-04 13:48:04 +01:00
|
|
|
ERR_FAIL_COND(!n);
|
2017-08-24 22:58:51 +02:00
|
|
|
AnimationPlayer *anim = Object::cast_to<AnimationPlayer>(n);
|
2017-02-04 13:48:04 +01:00
|
|
|
ERR_FAIL_COND(!anim);
|
|
|
|
|
|
|
|
List<StringName> anim_names;
|
|
|
|
anim->get_animation_list(&anim_names);
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<StringName>::Element *E = anim_names.front(); E; E = E->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Ref<Animation> a = anim->get_animation(E->get());
|
2017-03-05 16:44:50 +01:00
|
|
|
a->optimize(p_max_lin_error, p_max_ang_error, Math::deg2rad(p_max_angle));
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
static String _make_extname(const String &p_str) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String ext_name = p_str.replace(".", "_");
|
|
|
|
ext_name = ext_name.replace(":", "_");
|
|
|
|
ext_name = ext_name.replace("\"", "_");
|
|
|
|
ext_name = ext_name.replace("<", "_");
|
|
|
|
ext_name = ext_name.replace(">", "_");
|
|
|
|
ext_name = ext_name.replace("/", "_");
|
|
|
|
ext_name = ext_name.replace("|", "_");
|
|
|
|
ext_name = ext_name.replace("\\", "_");
|
|
|
|
ext_name = ext_name.replace("?", "_");
|
|
|
|
ext_name = ext_name.replace("*", "_");
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
return ext_name;
|
|
|
|
}
|
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
void ResourceImporterScene::_make_external_resources(Node *p_node, const String &p_base_path, bool p_make_materials, bool p_keep_materials, bool p_make_meshes, Map<Ref<Material>, Ref<Material> > &p_materials, Map<Ref<ArrayMesh>, Ref<ArrayMesh> > &p_meshes) {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
List<PropertyInfo> pi;
|
|
|
|
|
2017-08-18 13:25:04 +02:00
|
|
|
print_line("node: " + String(p_node->get_name()));
|
|
|
|
|
2017-02-05 00:31:15 +01:00
|
|
|
p_node->get_property_list(&pi);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<PropertyInfo>::Element *E = pi.front(); E; E = E->next()) {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (E->get().type == Variant::OBJECT) {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
Ref<Material> mat = p_node->get(E->get().name);
|
2017-08-18 13:25:04 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_make_materials && mat.is_valid() && mat->get_name() != "") {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
if (!p_materials.has(mat)) {
|
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
String ext_name = p_base_path.plus_file(_make_extname(mat->get_name()) + ".material");
|
|
|
|
if (p_keep_materials && FileAccess::exists(ext_name)) {
|
2017-02-05 00:31:15 +01:00
|
|
|
//if exists, use it
|
|
|
|
Ref<Material> existing = ResourceLoader::load(ext_name);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_materials[mat] = existing;
|
2017-02-05 00:31:15 +01:00
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceSaver::save(ext_name, mat, ResourceSaver::FLAG_CHANGE_PATH);
|
|
|
|
p_materials[mat] = mat;
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_materials[mat] != mat) {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
p_node->set(E->get().name, p_materials[mat]);
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
2017-06-07 23:18:55 +02:00
|
|
|
Ref<ArrayMesh> mesh = p_node->get(E->get().name);
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
if (mesh.is_valid()) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool mesh_just_added = false;
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
if (p_make_meshes) {
|
|
|
|
|
|
|
|
if (!p_meshes.has(mesh)) {
|
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
//meshes are always overwritten, keeping them is not practical
|
|
|
|
String ext_name = p_base_path.plus_file(_make_extname(mesh->get_name()) + ".mesh");
|
2017-02-05 00:31:15 +01:00
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
ResourceSaver::save(ext_name, mesh, ResourceSaver::FLAG_CHANGE_PATH);
|
|
|
|
p_meshes[mesh] = mesh;
|
|
|
|
mesh_just_added = true;
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_make_materials) {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
if (mesh_just_added || !p_meshes.has(mesh)) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < mesh->get_surface_count(); i++) {
|
|
|
|
mat = mesh->surface_get_material(i);
|
|
|
|
if (!mat.is_valid() || mat->get_name() == "")
|
2017-02-05 00:31:15 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!p_materials.has(mat)) {
|
|
|
|
|
2017-08-18 13:25:04 +02:00
|
|
|
String ext_name = p_base_path.plus_file(_make_extname(mat->get_name()) + ".material");
|
|
|
|
;
|
2017-02-05 00:31:15 +01:00
|
|
|
if (FileAccess::exists(ext_name)) {
|
|
|
|
//if exists, use it
|
|
|
|
Ref<Material> existing = ResourceLoader::load(ext_name);
|
2017-03-05 16:44:50 +01:00
|
|
|
p_materials[mat] = existing;
|
2017-02-05 00:31:15 +01:00
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceSaver::save(ext_name, mat, ResourceSaver::FLAG_CHANGE_PATH);
|
|
|
|
p_materials[mat] = mat;
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_materials[mat] != mat) {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
mesh->surface_set_material(i, p_materials[mat]);
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (!p_make_meshes) {
|
2017-06-07 23:18:55 +02:00
|
|
|
p_meshes[mesh] = Ref<ArrayMesh>(); //save it anyway, so it won't be checked again
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < p_node->get_child_count(); i++) {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
_make_external_resources(p_node->get_child(i), p_base_path, p_make_materials, p_keep_materials, p_make_meshes, p_materials, p_meshes);
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void ResourceImporterScene::get_import_options(List<ImportOption> *r_options, int p_preset) const {
|
2017-02-05 00:31:15 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::STRING, "nodes/root_type", PROPERTY_HINT_TYPE_STRING, "Node"), "Spatial"));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::STRING, "nodes/root_name"), "Scene Root"));
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
List<String> script_extentions;
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceLoader::get_recognized_extensions_for_type("Script", &script_extentions);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String script_ext_hint;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<String>::Element *E = script_extentions.front(); E; E = E->next()) {
|
|
|
|
if (script_ext_hint != "")
|
|
|
|
script_ext_hint += ",";
|
|
|
|
script_ext_hint += "*." + E->get();
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
bool materials_out = p_preset == PRESET_SEPARATE_MATERIALS || p_preset == PRESET_SEPARATE_MESHES_AND_MATERIALS || p_preset == PRESET_MULTIPLE_SCENES_AND_MATERIALS;
|
|
|
|
bool meshes_out = p_preset == PRESET_SEPARATE_MESHES || p_preset == PRESET_SEPARATE_MESHES_AND_MATERIALS;
|
|
|
|
bool scenes_out = p_preset == PRESET_MULTIPLE_SCENES || p_preset == PRESET_MULTIPLE_SCENES_AND_MATERIALS;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::STRING, "nodes/custom_script", PROPERTY_HINT_FILE, script_ext_hint), ""));
|
2017-07-23 23:48:05 +02:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "nodes/storage", PROPERTY_HINT_ENUM, "Single Scene,Instanced Sub-Scenes"), scenes_out ? 1 : 0));
|
2017-08-30 02:54:26 +02:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "materials/location", PROPERTY_HINT_ENUM, "Node,Mesh"), (meshes_out || materials_out) ? 1 : 0));
|
2017-08-08 06:11:14 +02:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "materials/storage", PROPERTY_HINT_ENUM, "Built-In,Files", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED), materials_out ? 1 : 0));
|
2017-08-17 22:02:43 +02:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "materials/keep_on_reimport"), materials_out ? true : false));
|
2017-08-18 13:25:04 +02:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "meshes/compress"), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "meshes/ensure_tangents"), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "meshes/storage", PROPERTY_HINT_ENUM, "Built-In,Files"), meshes_out ? true : false));
|
2017-08-30 02:54:26 +02:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "external_files/store_in_subdir"), false));
|
2017-03-05 16:44:50 +01:00
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "animation/import", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::REAL, "animation/fps", PROPERTY_HINT_RANGE, "1,120,1"), 15));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::STRING, "animation/filter_script", PROPERTY_HINT_MULTILINE_TEXT), ""));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "animation/optimizer/enabled", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::REAL, "animation/optimizer/max_linear_error"), 0.05));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::REAL, "animation/optimizer/max_angular_error"), 0.01));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::REAL, "animation/optimizer/max_angle"), 22));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "animation/optimizer/remove_unused_tracks"), true));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "animation/clips/amount", PROPERTY_HINT_RANGE, "0,256,1", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED), 0));
|
|
|
|
for (int i = 0; i < 256; i++) {
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::STRING, "animation/clip_" + itos(i + 1) + "/name"), ""));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "animation/clip_" + itos(i + 1) + "/start_frame"), 0));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "animation/clip_" + itos(i + 1) + "/end_frame"), 0));
|
|
|
|
r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "animation/clip_" + itos(i + 1) + "/loops"), false));
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
2017-02-05 00:31:15 +01:00
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
void ResourceImporterScene::_replace_owner(Node *p_node, Node *p_scene, Node *p_new_owner) {
|
|
|
|
|
|
|
|
if (p_node != p_new_owner && p_node->get_owner() == p_scene) {
|
|
|
|
p_node->set_owner(p_new_owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < p_node->get_child_count(); i++) {
|
|
|
|
Node *n = p_node->get_child(i);
|
|
|
|
_replace_owner(n, p_scene, p_new_owner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Error ResourceImporterScene::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-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
String src_path = p_source_file;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
Ref<EditorSceneImporter> importer;
|
2017-03-05 16:44:50 +01:00
|
|
|
String ext = src_path.get_extension().to_lower();
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
EditorProgress progress("import", TTR("Import Scene"), 104);
|
|
|
|
progress.step(TTR("Importing Scene.."), 0);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (Set<Ref<EditorSceneImporter> >::Element *E = importers.front(); E; E = E->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
List<String> extensions;
|
|
|
|
E->get()->get_extensions(&extensions);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (List<String>::Element *F = extensions.front(); F; F = F->next()) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (F->get().to_lower() == ext) {
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
importer = E->get();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (importer.is_valid())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!importer.is_valid(), ERR_FILE_UNRECOGNIZED);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
float fps = p_options["animation/fps"];
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
int import_flags = EditorSceneImporter::IMPORT_ANIMATION_DETECT_LOOP;
|
2017-02-04 13:48:04 +01:00
|
|
|
if (!bool(p_options["animation/optimizer/remove_unused_tracks"]))
|
2017-03-05 16:44:50 +01:00
|
|
|
import_flags |= EditorSceneImporter::IMPORT_ANIMATION_FORCE_ALL_TRACKS_IN_ALL_CLIPS;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (bool(p_options["animation/import"]))
|
2017-03-05 16:44:50 +01:00
|
|
|
import_flags |= EditorSceneImporter::IMPORT_ANIMATION;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-08-18 13:25:04 +02:00
|
|
|
if (bool(p_options["meshes/ensure_tangents"]))
|
2017-03-05 16:44:50 +01:00
|
|
|
import_flags |= EditorSceneImporter::IMPORT_GENERATE_TANGENT_ARRAYS;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (int(p_options["materials/location"]) == 0)
|
|
|
|
import_flags |= EditorSceneImporter::IMPORT_MATERIALS_IN_INSTANCES;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Error err = OK;
|
2017-02-04 13:48:04 +01:00
|
|
|
List<String> missing_deps; // for now, not much will be done with this
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *scene = importer->import_scene(src_path, import_flags, fps, &missing_deps, &err);
|
|
|
|
if (!scene || err != OK) {
|
2017-02-04 13:48:04 +01:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
String root_type = p_options["nodes/root_type"];
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (scene->get_class() != root_type) {
|
2017-08-24 22:58:51 +02:00
|
|
|
Node *base_node = base_node = Object::cast_to<Node>(ClassDB::instance(root_type));
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (base_node) {
|
|
|
|
|
|
|
|
scene->replace_by(base_node);
|
|
|
|
memdelete(scene);
|
2017-03-05 16:44:50 +01:00
|
|
|
scene = base_node;
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scene->set_name(p_options["nodes/root_name"]);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
err = OK;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String animation_filter = String(p_options["animation/filter_script"]).strip_edges();
|
|
|
|
|
|
|
|
bool use_optimizer = p_options["animation/optimizer/enabled"];
|
2017-03-05 16:44:50 +01:00
|
|
|
float anim_optimizer_linerr = p_options["animation/optimizer/max_linear_error"];
|
|
|
|
float anim_optimizer_angerr = p_options["animation/optimizer/max_angular_error"];
|
|
|
|
float anim_optimizer_maxang = p_options["animation/optimizer/max_angle"];
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-06-07 23:18:55 +02:00
|
|
|
Map<Ref<ArrayMesh>, Ref<Shape> > collision_map;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
scene = _fix_node(scene, scene, collision_map);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
if (use_optimizer) {
|
2017-03-05 16:44:50 +01:00
|
|
|
_optimize_animations(scene, anim_optimizer_linerr, anim_optimizer_angerr, anim_optimizer_maxang);
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Array animation_clips;
|
|
|
|
{
|
|
|
|
|
|
|
|
int clip_count = p_options["animation/clips/amount"];
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < clip_count; i++) {
|
|
|
|
String name = p_options["animation/clip_" + itos(i + 1) + "/name"];
|
|
|
|
int from_frame = p_options["animation/clip_" + itos(i + 1) + "/start_frame"];
|
|
|
|
int end_frame = p_options["animation/clip_" + itos(i + 1) + "/end_frame"];
|
|
|
|
bool loop = p_options["animation/clip_" + itos(i + 1) + "/loops"];
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
animation_clips.push_back(name);
|
2017-03-05 16:44:50 +01:00
|
|
|
animation_clips.push_back(from_frame / fps);
|
|
|
|
animation_clips.push_back(end_frame / fps);
|
2017-02-04 13:48:04 +01:00
|
|
|
animation_clips.push_back(loop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (animation_clips.size()) {
|
2017-03-05 16:44:50 +01:00
|
|
|
_create_clips(scene, animation_clips, !bool(p_options["animation/optimizer/remove_unused_tracks"]));
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (animation_filter != "") {
|
|
|
|
_filter_tracks(scene, animation_filter);
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|
|
|
|
|
2017-02-05 00:31:15 +01:00
|
|
|
bool external_materials = p_options["materials/storage"];
|
2017-08-18 13:25:04 +02:00
|
|
|
bool external_meshes = p_options["meshes/storage"];
|
2017-07-23 23:48:05 +02:00
|
|
|
bool external_scenes = int(p_options["nodes/storage"]) == 1;
|
|
|
|
|
|
|
|
String base_path = p_source_file.get_base_dir();
|
|
|
|
|
|
|
|
if (external_materials || external_meshes || external_scenes) {
|
|
|
|
|
|
|
|
if (bool(p_options["external_files/store_in_subdir"])) {
|
|
|
|
String subdir_name = p_source_file.get_file().get_basename();
|
|
|
|
DirAccess *da = DirAccess::open(base_path);
|
|
|
|
print_line("at path " + da->get_current_dir() + " making " + subdir_name);
|
|
|
|
Error err = da->make_dir(subdir_name);
|
|
|
|
memdelete(da);
|
|
|
|
ERR_FAIL_COND_V(err != OK && err != ERR_ALREADY_EXISTS, err);
|
|
|
|
base_path = base_path.plus_file(subdir_name);
|
|
|
|
}
|
|
|
|
}
|
2017-02-05 00:31:15 +01:00
|
|
|
|
|
|
|
if (external_materials || external_meshes) {
|
|
|
|
Map<Ref<Material>, Ref<Material> > mat_map;
|
2017-06-07 23:18:55 +02:00
|
|
|
Map<Ref<ArrayMesh>, Ref<ArrayMesh> > mesh_map;
|
2017-07-23 23:48:05 +02:00
|
|
|
|
2017-08-17 22:02:43 +02:00
|
|
|
bool keep_materials = bool(p_options["materials/keep_on_reimport"]);
|
2017-07-23 23:48:05 +02:00
|
|
|
|
|
|
|
_make_external_resources(scene, base_path, external_materials, keep_materials, external_meshes, mat_map, mesh_map);
|
2017-02-05 00:31:15 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
progress.step(TTR("Running Custom Script.."), 2);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
String post_import_script_path = p_options["nodes/custom_script"];
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<EditorScenePostImport> post_import_script;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (post_import_script_path != "") {
|
2017-02-04 13:48:04 +01:00
|
|
|
Ref<Script> scr = ResourceLoader::load(post_import_script_path);
|
|
|
|
if (!scr.is_valid()) {
|
2017-03-05 16:44:50 +01:00
|
|
|
EditorNode::add_io_error(TTR("Couldn't load post-import script:") + " " + post_import_script_path);
|
2017-02-04 13:48:04 +01:00
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
post_import_script = Ref<EditorScenePostImport>(memnew(EditorScenePostImport));
|
2017-02-04 13:48:04 +01:00
|
|
|
post_import_script->set_script(scr.get_ref_ptr());
|
|
|
|
if (!post_import_script->get_script_instance()) {
|
2017-03-05 16:44:50 +01:00
|
|
|
EditorNode::add_io_error(TTR("Invalid/broken script for post-import (check console):") + " " + post_import_script_path);
|
2017-02-04 13:48:04 +01:00
|
|
|
post_import_script.unref();
|
|
|
|
return ERR_CANT_CREATE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (post_import_script.is_valid()) {
|
|
|
|
scene = post_import_script->post_import(scene);
|
|
|
|
if (!scene) {
|
2017-03-05 16:44:50 +01:00
|
|
|
EditorNode::add_io_error(TTR("Error running post-import script:") + " " + post_import_script_path);
|
2017-02-04 13:48:04 +01:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
progress.step(TTR("Saving.."), 104);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-07-23 23:48:05 +02:00
|
|
|
if (external_scenes) {
|
|
|
|
//save sub-scenes as instances!
|
|
|
|
for (int i = 0; i < scene->get_child_count(); i++) {
|
|
|
|
Node *child = scene->get_child(i);
|
|
|
|
if (child->get_owner() != scene)
|
|
|
|
continue; //not a real child probably created by scene type (ig, a scrollbar)
|
|
|
|
_replace_owner(child, scene, child);
|
|
|
|
|
|
|
|
String cn = String(child->get_name()).strip_edges().replace(".", "_").replace(":", "_");
|
|
|
|
if (cn == String()) {
|
|
|
|
cn = "ChildNode" + itos(i);
|
|
|
|
}
|
|
|
|
String path = base_path.plus_file(cn + ".scn");
|
|
|
|
child->set_filename(path);
|
|
|
|
|
|
|
|
Ref<PackedScene> packer = memnew(PackedScene);
|
|
|
|
packer->pack(child);
|
|
|
|
err = ResourceSaver::save(path, packer); //do not take over, let the changed files reload themselves
|
|
|
|
ERR_FAIL_COND_V(err != OK, err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Ref<PackedScene> packer = memnew(PackedScene);
|
2017-02-04 13:48:04 +01:00
|
|
|
packer->pack(scene);
|
2017-03-05 16:44:50 +01:00
|
|
|
print_line("SAVING TO: " + p_save_path + ".scn");
|
|
|
|
err = ResourceSaver::save(p_save_path + ".scn", packer); //do not take over, let the changed files reload themselves
|
2017-07-23 23:48:05 +02:00
|
|
|
ERR_FAIL_COND_V(err != OK, err);
|
2017-02-04 13:48:04 +01:00
|
|
|
|
|
|
|
memdelete(scene);
|
|
|
|
|
|
|
|
EditorNode::get_singleton()->reload_scene(p_source_file);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceImporterScene *ResourceImporterScene::singleton = NULL;
|
2017-02-04 13:48:04 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ResourceImporterScene::ResourceImporterScene() {
|
|
|
|
singleton = this;
|
2017-02-04 13:48:04 +01:00
|
|
|
}
|