2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* camera.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2018-01-01 14:40:08 +01:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "camera.h"
|
|
|
|
|
|
|
|
#include "camera_matrix.h"
|
|
|
|
#include "scene/resources/material.h"
|
|
|
|
#include "scene/resources/surface_tool.h"
|
|
|
|
|
|
|
|
void Camera::_update_audio_listener_state() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::_request_camera_update() {
|
|
|
|
|
|
|
|
_update_camera();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::_update_camera_mode() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
force_change = true;
|
|
|
|
switch (mode) {
|
2014-02-10 02:10:30 +01:00
|
|
|
case PROJECTION_PERSPECTIVE: {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
set_perspective(fov, near, far);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
} break;
|
|
|
|
case PROJECTION_ORTHOGONAL: {
|
2017-03-05 16:44:50 +01:00
|
|
|
set_orthogonal(size, near, far);
|
2016-03-09 00:00:52 +01:00
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-07 07:31:03 +01:00
|
|
|
void Camera::_validate_property(PropertyInfo &p_property) const {
|
|
|
|
if (p_property.name == "fov") {
|
|
|
|
if (mode == PROJECTION_ORTHOGONAL) {
|
|
|
|
p_property.usage = PROPERTY_USAGE_NOEDITOR;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2017-12-07 07:31:03 +01:00
|
|
|
} else if (p_property.name == "size") {
|
|
|
|
if (mode == PROJECTION_PERSPECTIVE) {
|
|
|
|
p_property.usage = PROPERTY_USAGE_NOEDITOR;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::_update_camera() {
|
|
|
|
|
2017-12-24 17:31:28 +01:00
|
|
|
if (!is_inside_tree())
|
|
|
|
return;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Transform tr = get_camera_transform();
|
2017-03-05 16:44:50 +01:00
|
|
|
tr.origin += tr.basis.get_axis(1) * v_offset;
|
|
|
|
tr.origin += tr.basis.get_axis(0) * h_offset;
|
|
|
|
VisualServer::get_singleton()->camera_set_transform(camera, tr);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-14 12:26:56 +01:00
|
|
|
// here goes listener stuff
|
|
|
|
/*
|
|
|
|
if (viewport_ptr && is_inside_scene() && is_current())
|
|
|
|
get_viewport()->_camera_transform_changed_notify();
|
|
|
|
*/
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-24 17:31:28 +01:00
|
|
|
if (get_tree()->is_node_being_edited(this) || !is_current())
|
2017-12-07 16:13:20 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
get_viewport()->_camera_transform_changed_notify();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-07 16:13:20 +01:00
|
|
|
if (get_world().is_valid()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
get_world()->_update_camera(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::_notification(int p_what) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
switch (p_what) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
case NOTIFICATION_ENTER_WORLD: {
|
|
|
|
|
2016-01-31 19:09:52 +01:00
|
|
|
bool first_camera = get_viewport()->_camera_add(this);
|
2016-01-02 21:18:45 +01:00
|
|
|
if (!get_tree()->is_node_being_edited(this) && (current || first_camera))
|
2014-02-10 02:10:30 +01:00
|
|
|
make_current();
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
case NOTIFICATION_TRANSFORM_CHANGED: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
_request_camera_update();
|
2017-07-15 06:23:10 +02:00
|
|
|
if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
|
|
|
|
velocity_tracker->update_position(get_global_transform().origin);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case NOTIFICATION_EXIT_WORLD: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
if (!get_tree()->is_node_being_edited(this)) {
|
|
|
|
if (is_current()) {
|
|
|
|
clear_current();
|
2017-03-05 16:44:50 +01:00
|
|
|
current = true; //keep it true
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
current = false;
|
2016-01-02 21:18:45 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-01-02 21:18:45 +01:00
|
|
|
|
2016-01-31 19:09:52 +01:00
|
|
|
get_viewport()->_camera_remove(this);
|
2014-10-12 07:13:22 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case NOTIFICATION_BECAME_CURRENT: {
|
|
|
|
if (get_world().is_valid()) {
|
|
|
|
get_world()->_register_camera(this);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case NOTIFICATION_LOST_CURRENT: {
|
|
|
|
if (get_world().is_valid()) {
|
|
|
|
get_world()->_remove_camera(this);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Transform Camera::get_camera_transform() const {
|
|
|
|
|
2014-10-03 05:10:51 +02:00
|
|
|
return get_global_transform().orthonormalized();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::set_perspective(float p_fovy_degrees, float p_z_near, float p_z_far) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (!force_change && fov == p_fovy_degrees && p_z_near == near && p_z_far == far && mode == PROJECTION_PERSPECTIVE)
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
fov = p_fovy_degrees;
|
|
|
|
near = p_z_near;
|
|
|
|
far = p_z_far;
|
|
|
|
mode = PROJECTION_PERSPECTIVE;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
VisualServer::get_singleton()->camera_set_perspective(camera, fov, near, far);
|
2014-02-10 02:10:30 +01:00
|
|
|
update_gizmo();
|
2017-03-05 16:44:50 +01:00
|
|
|
force_change = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
void Camera::set_orthogonal(float p_size, float p_z_near, float p_z_far) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (!force_change && size == p_size && p_z_near == near && p_z_far == far && mode == PROJECTION_ORTHOGONAL)
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
size = p_size;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
near = p_z_near;
|
|
|
|
far = p_z_far;
|
|
|
|
mode = PROJECTION_ORTHOGONAL;
|
|
|
|
force_change = false;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
VisualServer::get_singleton()->camera_set_orthogonal(camera, size, near, far);
|
2014-02-10 02:10:30 +01:00
|
|
|
update_gizmo();
|
|
|
|
}
|
|
|
|
|
2017-12-07 07:31:03 +01:00
|
|
|
void Camera::set_projection(Camera::Projection p_mode) {
|
|
|
|
if (p_mode == PROJECTION_PERSPECTIVE || p_mode == PROJECTION_ORTHOGONAL) {
|
|
|
|
mode = p_mode;
|
|
|
|
_update_camera_mode();
|
|
|
|
_change_notify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
RID Camera::get_camera() const {
|
|
|
|
|
|
|
|
return camera;
|
|
|
|
};
|
|
|
|
|
|
|
|
void Camera::make_current() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
current = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree())
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
|
2016-01-31 19:09:52 +01:00
|
|
|
get_viewport()->_camera_set(this);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
//get_scene()->call_group(SceneMainLoop::GROUP_CALL_REALTIME,camera_group,"_camera_make_current",this);
|
|
|
|
}
|
|
|
|
|
2018-03-16 19:10:26 +01:00
|
|
|
void Camera::clear_current(bool p_enable_next) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
current = false;
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree())
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (get_viewport()->get_camera() == this) {
|
2016-01-31 19:09:52 +01:00
|
|
|
get_viewport()->_camera_set(NULL);
|
2018-03-16 19:10:26 +01:00
|
|
|
|
|
|
|
if (p_enable_next) {
|
|
|
|
get_viewport()->_camera_make_next_current(this);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-07 07:31:03 +01:00
|
|
|
void Camera::set_current(bool p_current) {
|
|
|
|
if (p_current) {
|
|
|
|
make_current();
|
|
|
|
} else {
|
|
|
|
clear_current();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
bool Camera::is_current() const {
|
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
if (is_inside_tree() && !get_tree()->is_node_being_edited(this)) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return get_viewport()->get_camera() == this;
|
2014-02-10 02:10:30 +01:00
|
|
|
} else
|
|
|
|
return current;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Camera::_can_gizmo_scale() const {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 Camera::project_ray_normal(const Point2 &p_pos) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector3 ray = project_local_ray_normal(p_pos);
|
|
|
|
return get_camera_transform().basis.xform(ray).normalized();
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 Camera::project_local_ray_normal(const Point2 &p_pos) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_EXPLAIN("Camera is not inside scene.");
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!is_inside_tree(), Vector3());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
Size2 viewport_size = get_viewport()->get_camera_rect_size();
|
|
|
|
Vector2 cpos = get_viewport()->get_camera_coords(p_pos);
|
2014-02-10 02:10:30 +01:00
|
|
|
Vector3 ray;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (mode == PROJECTION_ORTHOGONAL) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ray = Vector3(0, 0, -1);
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
|
|
|
CameraMatrix cm;
|
2017-03-05 16:44:50 +01:00
|
|
|
cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
|
|
|
|
float screen_w, screen_h;
|
|
|
|
cm.get_viewport_size(screen_w, screen_h);
|
|
|
|
ray = Vector3(((cpos.x / viewport_size.width) * 2.0 - 1.0) * screen_w, ((1.0 - (cpos.y / viewport_size.height)) * 2.0 - 1.0) * screen_h, -near).normalized();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ray;
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 Camera::project_ray_origin(const Point2 &p_pos) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_EXPLAIN("Camera is not inside scene.");
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!is_inside_tree(), Vector3());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
Size2 viewport_size = get_viewport()->get_camera_rect_size();
|
|
|
|
Vector2 cpos = get_viewport()->get_camera_coords(p_pos);
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(viewport_size.y == 0, Vector3());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (mode == PROJECTION_PERSPECTIVE) {
|
|
|
|
|
|
|
|
return get_camera_transform().origin;
|
|
|
|
} else {
|
|
|
|
|
2014-10-28 02:54:32 +01:00
|
|
|
Vector2 pos = cpos / viewport_size;
|
2017-03-05 16:44:50 +01:00
|
|
|
float vsize, hsize;
|
|
|
|
if (keep_aspect == KEEP_WIDTH) {
|
|
|
|
vsize = size / viewport_size.aspect();
|
2014-02-10 02:10:30 +01:00
|
|
|
hsize = size;
|
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
hsize = size * viewport_size.aspect();
|
2014-02-10 02:10:30 +01:00
|
|
|
vsize = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 ray;
|
2017-03-05 16:44:50 +01:00
|
|
|
ray.x = pos.x * (hsize)-hsize / 2;
|
|
|
|
ray.y = (1.0 - pos.y) * (vsize)-vsize / 2;
|
2014-02-10 02:10:30 +01:00
|
|
|
ray.z = -near;
|
|
|
|
ray = get_camera_transform().xform(ray);
|
|
|
|
return ray;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool Camera::is_position_behind(const Vector3 &p_pos) const {
|
2015-04-29 03:05:01 +02:00
|
|
|
|
|
|
|
Transform t = get_global_transform();
|
|
|
|
Vector3 eyedir = -get_global_transform().basis.get_axis(2).normalized();
|
2017-03-05 16:44:50 +01:00
|
|
|
return eyedir.dot(p_pos) < (eyedir.dot(t.origin) + near);
|
2015-04-29 03:05:01 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Point2 Camera::unproject_position(const Vector3 &p_pos) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_EXPLAIN("Camera is not inside scene.");
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!is_inside_tree(), Vector2());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
Size2 viewport_size = get_viewport()->get_visible_rect().size;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
CameraMatrix cm;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (mode == PROJECTION_ORTHOGONAL)
|
|
|
|
cm.set_orthogonal(size, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Plane p(get_camera_transform().xform_inv(p_pos), 1.0);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
p = cm.xform4(p);
|
|
|
|
p.normal /= p.d;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Point2 res;
|
2017-03-05 16:44:50 +01:00
|
|
|
res.x = (p.normal.x * 0.5 + 0.5) * viewport_size.x;
|
|
|
|
res.y = (-p.normal.y * 0.5 + 0.5) * viewport_size.y;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 Camera::project_position(const Point2 &p_point) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_EXPLAIN("Camera is not inside scene.");
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!is_inside_tree(), Vector3());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
Size2 viewport_size = get_viewport()->get_visible_rect().size;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
CameraMatrix cm;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (mode == PROJECTION_ORTHOGONAL)
|
|
|
|
cm.set_orthogonal(size, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Size2 vp_size;
|
2017-03-05 16:44:50 +01:00
|
|
|
cm.get_viewport_size(vp_size.x, vp_size.y);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector2 point;
|
2017-03-05 16:44:50 +01:00
|
|
|
point.x = (p_point.x / viewport_size.x) * 2.0 - 1.0;
|
|
|
|
point.y = (1.0 - (p_point.y / viewport_size.y)) * 2.0 - 1.0;
|
|
|
|
point *= vp_size;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 p(point.x, point.y, -near);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return get_camera_transform().xform(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
void Camera::_camera_make_current(Node *p_camera) {
|
|
|
|
|
|
|
|
|
|
|
|
if (p_camera==this) {
|
|
|
|
VisualServer::get_singleton()->viewport_attach_camera(viewport_id,camera);
|
|
|
|
active=true;
|
|
|
|
} else {
|
|
|
|
if (active && p_camera==NULL) {
|
|
|
|
//detech camera because no one else will claim it
|
|
|
|
VisualServer::get_singleton()->viewport_attach_camera(viewport_id,RID());
|
|
|
|
}
|
|
|
|
active=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void Camera::set_environment(const Ref<Environment> &p_environment) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
environment = p_environment;
|
2014-02-10 02:10:30 +01:00
|
|
|
if (environment.is_valid())
|
2017-03-05 16:44:50 +01:00
|
|
|
VS::get_singleton()->camera_set_environment(camera, environment->get_rid());
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
VS::get_singleton()->camera_set_environment(camera, RID());
|
2017-12-07 07:31:03 +01:00
|
|
|
_update_camera_mode();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Ref<Environment> Camera::get_environment() const {
|
|
|
|
|
|
|
|
return environment;
|
|
|
|
}
|
|
|
|
|
2014-09-16 01:06:37 +02:00
|
|
|
void Camera::set_keep_aspect_mode(KeepAspect p_aspect) {
|
2017-03-05 16:44:50 +01:00
|
|
|
keep_aspect = p_aspect;
|
|
|
|
VisualServer::get_singleton()->camera_set_use_vertical_aspect(camera, p_aspect == KEEP_WIDTH);
|
2017-12-07 07:31:03 +01:00
|
|
|
_update_camera_mode();
|
2014-09-16 01:06:37 +02:00
|
|
|
_change_notify();
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Camera::KeepAspect Camera::get_keep_aspect_mode() const {
|
2014-09-16 01:06:37 +02:00
|
|
|
|
|
|
|
return keep_aspect;
|
|
|
|
}
|
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
void Camera::set_doppler_tracking(DopplerTracking p_tracking) {
|
|
|
|
|
|
|
|
if (doppler_tracking == p_tracking)
|
|
|
|
return;
|
|
|
|
|
|
|
|
doppler_tracking = p_tracking;
|
|
|
|
if (p_tracking != DOPPLER_TRACKING_DISABLED) {
|
2017-09-30 16:19:07 +02:00
|
|
|
velocity_tracker->set_track_physics_step(doppler_tracking == DOPPLER_TRACKING_PHYSICS_STEP);
|
2017-07-15 06:23:10 +02:00
|
|
|
velocity_tracker->reset(get_global_transform().origin);
|
|
|
|
}
|
2017-12-07 07:31:03 +01:00
|
|
|
_update_camera_mode();
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Camera::DopplerTracking Camera::get_doppler_tracking() const {
|
|
|
|
return doppler_tracking;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void Camera::_bind_methods() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("project_ray_normal", "screen_point"), &Camera::project_ray_normal);
|
|
|
|
ClassDB::bind_method(D_METHOD("project_local_ray_normal", "screen_point"), &Camera::project_local_ray_normal);
|
|
|
|
ClassDB::bind_method(D_METHOD("project_ray_origin", "screen_point"), &Camera::project_ray_origin);
|
|
|
|
ClassDB::bind_method(D_METHOD("unproject_position", "world_point"), &Camera::unproject_position);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_position_behind", "world_point"), &Camera::is_position_behind);
|
|
|
|
ClassDB::bind_method(D_METHOD("project_position", "screen_point"), &Camera::project_position);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_perspective", "fov", "z_near", "z_far"), &Camera::set_perspective);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_orthogonal", "size", "z_near", "z_far"), &Camera::set_orthogonal);
|
|
|
|
ClassDB::bind_method(D_METHOD("make_current"), &Camera::make_current);
|
2018-03-16 19:10:26 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("clear_current", "enable_next"), &Camera::clear_current, DEFVAL(true));
|
2017-12-07 07:31:03 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_current"), &Camera::set_current);
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("is_current"), &Camera::is_current);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_camera_transform"), &Camera::get_camera_transform);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_fov"), &Camera::get_fov);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_size"), &Camera::get_size);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_zfar"), &Camera::get_zfar);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_znear"), &Camera::get_znear);
|
2017-12-07 07:31:03 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_fov"), &Camera::set_fov);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_size"), &Camera::set_size);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_zfar"), &Camera::set_zfar);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_znear"), &Camera::set_znear);
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("get_projection"), &Camera::get_projection);
|
2017-12-07 07:31:03 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_projection"), &Camera::set_projection);
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_h_offset", "ofs"), &Camera::set_h_offset);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_h_offset"), &Camera::get_h_offset);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_v_offset", "ofs"), &Camera::set_v_offset);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_v_offset"), &Camera::get_v_offset);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_cull_mask", "mask"), &Camera::set_cull_mask);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_cull_mask"), &Camera::get_cull_mask);
|
2017-08-09 13:19:41 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_environment", "env"), &Camera::set_environment);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_environment"), &Camera::get_environment);
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_keep_aspect_mode", "mode"), &Camera::set_keep_aspect_mode);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_keep_aspect_mode"), &Camera::get_keep_aspect_mode);
|
2017-07-15 06:23:10 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_doppler_tracking", "mode"), &Camera::set_doppler_tracking);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_doppler_tracking"), &Camera::get_doppler_tracking);
|
2017-02-13 12:47:24 +01:00
|
|
|
//ClassDB::bind_method(D_METHOD("_camera_make_current"),&Camera::_camera_make_current );
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-07 07:31:03 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "keep_aspect", PROPERTY_HINT_ENUM, "Keep Width,Keep Height"), "set_keep_aspect_mode", "get_keep_aspect_mode");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "cull_mask", PROPERTY_HINT_LAYERS_3D_RENDER), "set_cull_mask", "get_cull_mask");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "environment", PROPERTY_HINT_RESOURCE_TYPE, "Environment"), "set_environment", "get_environment");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "h_offset"), "set_h_offset", "get_h_offset");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "v_offset"), "set_v_offset", "get_v_offset");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "doppler_tracking", PROPERTY_HINT_ENUM, "Disabled,Idle,Physics"), "set_doppler_tracking", "get_doppler_tracking");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "projection", PROPERTY_HINT_ENUM, "Perspective,Orthogonal"), "set_projection", "get_projection");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "current"), "set_current", "is_current");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fov", PROPERTY_HINT_RANGE, "1,179,0.1"), "set_fov", "get_fov");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "size", PROPERTY_HINT_RANGE, "0.1,16384,0.01"), "set_size", "get_size");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "near"), "set_znear", "get_znear");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "far"), "set_zfar", "get_zfar");
|
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
BIND_ENUM_CONSTANT(PROJECTION_PERSPECTIVE);
|
|
|
|
BIND_ENUM_CONSTANT(PROJECTION_ORTHOGONAL);
|
2014-09-16 01:06:37 +02:00
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
BIND_ENUM_CONSTANT(KEEP_WIDTH);
|
|
|
|
BIND_ENUM_CONSTANT(KEEP_HEIGHT);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
BIND_ENUM_CONSTANT(DOPPLER_TRACKING_DISABLED)
|
|
|
|
BIND_ENUM_CONSTANT(DOPPLER_TRACKING_IDLE_STEP)
|
2017-09-30 16:19:07 +02:00
|
|
|
BIND_ENUM_CONSTANT(DOPPLER_TRACKING_PHYSICS_STEP)
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
float Camera::get_fov() const {
|
|
|
|
|
|
|
|
return fov;
|
|
|
|
}
|
|
|
|
|
|
|
|
float Camera::get_size() const {
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
float Camera::get_znear() const {
|
|
|
|
|
|
|
|
return near;
|
|
|
|
}
|
|
|
|
|
|
|
|
float Camera::get_zfar() const {
|
|
|
|
|
|
|
|
return far;
|
|
|
|
}
|
|
|
|
|
|
|
|
Camera::Projection Camera::get_projection() const {
|
|
|
|
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
2017-12-07 07:31:03 +01:00
|
|
|
void Camera::set_fov(float p_fov) {
|
|
|
|
fov = p_fov;
|
|
|
|
_update_camera_mode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::set_size(float p_size) {
|
|
|
|
size = p_size;
|
|
|
|
_update_camera_mode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::set_znear(float p_znear) {
|
|
|
|
near = p_znear;
|
|
|
|
_update_camera_mode();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-07 07:31:03 +01:00
|
|
|
void Camera::set_zfar(float p_zfar) {
|
|
|
|
far = p_zfar;
|
|
|
|
_update_camera_mode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::set_cull_mask(uint32_t p_layers) {
|
2017-03-05 16:44:50 +01:00
|
|
|
layers = p_layers;
|
|
|
|
VisualServer::get_singleton()->camera_set_cull_mask(camera, layers);
|
2017-12-07 07:31:03 +01:00
|
|
|
_update_camera_mode();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
uint32_t Camera::get_cull_mask() const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return layers;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector<Plane> Camera::get_frustum() const {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!is_inside_world(), Vector<Plane>());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-01-02 21:18:45 +01:00
|
|
|
Size2 viewport_size = get_viewport()->get_visible_rect().size;
|
2014-02-10 02:10:30 +01:00
|
|
|
CameraMatrix cm;
|
2017-03-05 16:44:50 +01:00
|
|
|
if (mode == PROJECTION_PERSPECTIVE)
|
|
|
|
cm.set_perspective(fov, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
cm.set_orthogonal(size, viewport_size.aspect(), near, far, keep_aspect == KEEP_WIDTH);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-10-03 05:10:51 +02:00
|
|
|
return cm.get_projection_planes(get_camera_transform());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-01-03 15:06:53 +01:00
|
|
|
void Camera::set_v_offset(float p_offset) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
v_offset = p_offset;
|
2017-01-14 18:03:38 +01:00
|
|
|
_update_camera();
|
2015-01-03 15:06:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
float Camera::get_v_offset() const {
|
|
|
|
|
|
|
|
return v_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Camera::set_h_offset(float p_offset) {
|
2017-03-05 16:44:50 +01:00
|
|
|
h_offset = p_offset;
|
2015-01-03 15:06:53 +01:00
|
|
|
_update_camera();
|
|
|
|
}
|
|
|
|
|
|
|
|
float Camera::get_h_offset() const {
|
|
|
|
|
|
|
|
return h_offset;
|
|
|
|
}
|
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
Vector3 Camera::get_doppler_tracked_velocity() const {
|
|
|
|
|
|
|
|
if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
|
|
|
|
return velocity_tracker->get_tracked_linear_velocity();
|
|
|
|
} else {
|
|
|
|
return Vector3();
|
|
|
|
}
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
Camera::Camera() {
|
|
|
|
|
|
|
|
camera = VisualServer::get_singleton()->camera_create();
|
2017-03-05 16:44:50 +01:00
|
|
|
size = 1;
|
|
|
|
fov = 0;
|
|
|
|
near = 0;
|
|
|
|
far = 0;
|
|
|
|
current = false;
|
|
|
|
force_change = false;
|
|
|
|
mode = PROJECTION_PERSPECTIVE;
|
2017-11-25 23:48:30 +01:00
|
|
|
set_perspective(70.0, 0.05, 100.0);
|
2017-03-05 16:44:50 +01:00
|
|
|
keep_aspect = KEEP_HEIGHT;
|
|
|
|
layers = 0xfffff;
|
|
|
|
v_offset = 0;
|
|
|
|
h_offset = 0;
|
|
|
|
VisualServer::get_singleton()->camera_set_cull_mask(camera, layers);
|
2014-02-10 02:10:30 +01:00
|
|
|
//active=false;
|
2017-07-15 06:23:10 +02:00
|
|
|
velocity_tracker.instance();
|
|
|
|
doppler_tracking = DOPPLER_TRACKING_DISABLED;
|
2017-01-13 00:35:46 +01:00
|
|
|
set_notify_transform(true);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Camera::~Camera() {
|
|
|
|
|
|
|
|
VisualServer::get_singleton()->free(camera);
|
|
|
|
}
|