2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* room_instance.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:11:45 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2020-08-13 20:58:13 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00: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. */
|
|
|
|
/*************************************************************************/
|
2020-08-13 20:58:13 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "room_instance.h"
|
|
|
|
|
|
|
|
#include "servers/visual_server.h"
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "geometry.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "scene/resources/surface_tool.h"
|
|
|
|
|
|
|
|
void Room::_notification(int p_what) {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
switch (p_what) {
|
2014-02-10 01:10:30 +00:00
|
|
|
case NOTIFICATION_ENTER_WORLD: {
|
|
|
|
// go find parent level
|
2017-03-18 23:36:26 +00:00
|
|
|
Node *parent_room = get_parent();
|
|
|
|
level = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
while (parent_room) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Room *r = parent_room->cast_to<Room>();
|
|
|
|
if (r) {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
level = r->level + 1;
|
2014-02-10 01:10:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
parent_room = parent_room->get_parent();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sound_enabled)
|
2017-03-18 23:36:26 +00:00
|
|
|
SpatialSoundServer::get_singleton()->room_set_space(sound_room, get_world()->get_sound_space());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
} break;
|
|
|
|
case NOTIFICATION_TRANSFORM_CHANGED: {
|
2017-03-18 23:36:26 +00:00
|
|
|
SpatialSoundServer::get_singleton()->room_set_transform(sound_room, get_global_transform());
|
2014-02-10 01:10:30 +00:00
|
|
|
} break;
|
|
|
|
case NOTIFICATION_EXIT_WORLD: {
|
|
|
|
|
|
|
|
if (sound_enabled)
|
2017-03-18 23:36:26 +00:00
|
|
|
SpatialSoundServer::get_singleton()->room_set_space(sound_room, RID());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
} break;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RES Room::_get_gizmo_geometry() const {
|
|
|
|
|
|
|
|
DVector<Face3> faces;
|
|
|
|
if (!room.is_null())
|
2017-03-18 23:36:26 +00:00
|
|
|
faces = room->get_geometry_hint();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
int count = faces.size();
|
|
|
|
if (count == 0)
|
2014-02-10 01:10:30 +00:00
|
|
|
return RES();
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
DVector<Face3>::Read facesr = faces.read();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
const Face3 *facesptr = facesr.ptr();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
DVector<Vector3> points;
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
Ref<SurfaceTool> surface_tool(memnew(SurfaceTool));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
Ref<FixedMaterial> mat(memnew(FixedMaterial));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
mat->set_parameter(FixedMaterial::PARAM_DIFFUSE, Color(0.2, 0.8, 0.9, 0.3));
|
2014-02-10 01:10:30 +00:00
|
|
|
mat->set_line_width(4);
|
2017-03-18 23:36:26 +00:00
|
|
|
mat->set_flag(Material::FLAG_DOUBLE_SIDED, true);
|
|
|
|
mat->set_flag(Material::FLAG_UNSHADED, true);
|
|
|
|
// mat->set_hint(Material::HINT_NO_DEPTH_DRAW,true);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
surface_tool->begin(Mesh::PRIMITIVE_LINES);
|
|
|
|
surface_tool->set_material(mat);
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
for (int i = 0; i < count; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
surface_tool->add_vertex(facesptr[i].vertex[0]);
|
|
|
|
surface_tool->add_vertex(facesptr[i].vertex[1]);
|
|
|
|
|
|
|
|
surface_tool->add_vertex(facesptr[i].vertex[1]);
|
|
|
|
surface_tool->add_vertex(facesptr[i].vertex[2]);
|
|
|
|
|
|
|
|
surface_tool->add_vertex(facesptr[i].vertex[2]);
|
|
|
|
surface_tool->add_vertex(facesptr[i].vertex[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return surface_tool->commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
AABB Room::get_aabb() const {
|
|
|
|
|
|
|
|
if (room.is_null())
|
|
|
|
return AABB();
|
|
|
|
|
|
|
|
return room->get_bounds().get_aabb();
|
|
|
|
}
|
|
|
|
DVector<Face3> Room::get_faces(uint32_t p_usage_flags) const {
|
|
|
|
|
|
|
|
return DVector<Face3>();
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void Room::set_room(const Ref<RoomBounds> &p_room) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
room = p_room;
|
2014-02-10 01:10:30 +00:00
|
|
|
update_gizmo();
|
|
|
|
|
|
|
|
if (room.is_valid()) {
|
|
|
|
|
|
|
|
set_base(room->get_rid());
|
|
|
|
} else {
|
|
|
|
set_base(RID());
|
|
|
|
}
|
|
|
|
|
2014-11-06 00:20:42 +00:00
|
|
|
if (!is_inside_tree())
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
propagate_notification(NOTIFICATION_AREA_CHANGED);
|
|
|
|
update_gizmo();
|
|
|
|
|
|
|
|
if (room.is_valid())
|
2017-03-18 23:36:26 +00:00
|
|
|
SpatialSoundServer::get_singleton()->room_set_bounds(sound_room, room->get_bounds());
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ref<RoomBounds> Room::get_room() const {
|
|
|
|
|
|
|
|
return room;
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
void Room::_parse_node_faces(DVector<Face3> &all_faces, const Node *p_node) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
const VisualInstance *vi = p_node->cast_to<VisualInstance>();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (vi) {
|
2017-03-18 23:36:26 +00:00
|
|
|
DVector<Face3> faces = vi->get_faces(FACES_ENCLOSING);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (faces.size()) {
|
2017-03-18 23:36:26 +00:00
|
|
|
int old_len = all_faces.size();
|
|
|
|
all_faces.resize(all_faces.size() + faces.size());
|
|
|
|
int new_len = all_faces.size();
|
|
|
|
DVector<Face3>::Write all_facesw = all_faces.write();
|
|
|
|
Face3 *all_facesptr = all_facesw.ptr();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
DVector<Face3>::Read facesr = faces.read();
|
|
|
|
const Face3 *facesptr = facesr.ptr();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
Transform tr = vi->get_relative_transform(this);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
for (int i = old_len; i < new_len; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
Face3 f = facesptr[i - old_len];
|
|
|
|
for (int j = 0; j < 3; j++)
|
|
|
|
f.vertex[j] = tr.xform(f.vertex[j]);
|
|
|
|
all_facesptr[i] = f;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
for (int i = 0; i < p_node->get_child_count(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
_parse_node_faces(all_faces, p_node->get_child(i));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Room::compute_room_from_subtree() {
|
|
|
|
|
|
|
|
DVector<Face3> all_faces;
|
2017-03-18 23:36:26 +00:00
|
|
|
_parse_node_faces(all_faces, this);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (all_faces.size() == 0)
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
|
|
|
float error;
|
2017-03-18 23:36:26 +00:00
|
|
|
DVector<Face3> wrapped_faces = Geometry::wrap_geometry(all_faces, &error);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (wrapped_faces.size() == 0)
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
BSP_Tree tree(wrapped_faces, error);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
Ref<RoomBounds> room(memnew(RoomBounds));
|
2014-02-10 01:10:30 +00:00
|
|
|
room->set_bounds(tree);
|
|
|
|
room->set_geometry_hint(wrapped_faces);
|
|
|
|
|
|
|
|
set_room(room);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Room::set_simulate_acoustics(bool p_enable) {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
if (sound_enabled == p_enable)
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
sound_enabled = p_enable;
|
2014-02-10 01:10:30 +00:00
|
|
|
if (!is_inside_world())
|
|
|
|
return; //nothing to do
|
|
|
|
|
|
|
|
if (sound_enabled)
|
2017-03-18 23:36:26 +00:00
|
|
|
SpatialSoundServer::get_singleton()->room_set_space(sound_room, get_world()->get_sound_space());
|
2014-02-10 01:10:30 +00:00
|
|
|
else
|
2017-03-18 23:36:26 +00:00
|
|
|
SpatialSoundServer::get_singleton()->room_set_space(sound_room, RID());
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Room::_bounds_changed() {
|
|
|
|
|
|
|
|
update_gizmo();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Room::is_simulating_acoustics() const {
|
|
|
|
|
|
|
|
return sound_enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
RID Room::get_sound_room() const {
|
|
|
|
|
|
|
|
return RID();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Room::_bind_methods() {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_room", "room:Room"), &Room::set_room);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_room:Room"), &Room::get_room);
|
|
|
|
ObjectTypeDB::bind_method(_MD("compute_room_from_subtree"), &Room::compute_room_from_subtree);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_simulate_acoustics", "enable"), &Room::set_simulate_acoustics);
|
|
|
|
ObjectTypeDB::bind_method(_MD("is_simulating_acoustics"), &Room::is_simulating_acoustics);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "room/room", PROPERTY_HINT_RESOURCE_TYPE, "Area"), _SCS("set_room"), _SCS("get_room"));
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "room/simulate_acoustics"), _SCS("set_simulate_acoustics"), _SCS("is_simulating_acoustics"));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Room::Room() {
|
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
sound_enabled = false;
|
|
|
|
sound_room = SpatialSoundServer::get_singleton()->room_create();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-18 23:36:26 +00:00
|
|
|
level = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Room::~Room() {
|
|
|
|
|
|
|
|
SpatialSoundServer::get_singleton()->free(sound_room);
|
|
|
|
}
|