2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
/* projection.cpp */
|
2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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-04 23:50:27 +00:00
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
#include "projection.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
|
2022-02-04 12:28:02 +00:00
|
|
|
#include "core/math/aabb.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/math/math_funcs.h"
|
2022-02-04 12:28:02 +00:00
|
|
|
#include "core/math/plane.h"
|
|
|
|
#include "core/math/rect2.h"
|
|
|
|
#include "core/math/transform_3d.h"
|
2022-10-06 21:35:54 +00:00
|
|
|
#include "core/string/ustring.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2024-03-29 23:44:12 +00:00
|
|
|
real_t Projection::determinant() const {
|
2022-10-04 16:44:48 +00:00
|
|
|
return columns[0][3] * columns[1][2] * columns[2][1] * columns[3][0] - columns[0][2] * columns[1][3] * columns[2][1] * columns[3][0] -
|
|
|
|
columns[0][3] * columns[1][1] * columns[2][2] * columns[3][0] + columns[0][1] * columns[1][3] * columns[2][2] * columns[3][0] +
|
|
|
|
columns[0][2] * columns[1][1] * columns[2][3] * columns[3][0] - columns[0][1] * columns[1][2] * columns[2][3] * columns[3][0] -
|
|
|
|
columns[0][3] * columns[1][2] * columns[2][0] * columns[3][1] + columns[0][2] * columns[1][3] * columns[2][0] * columns[3][1] +
|
|
|
|
columns[0][3] * columns[1][0] * columns[2][2] * columns[3][1] - columns[0][0] * columns[1][3] * columns[2][2] * columns[3][1] -
|
|
|
|
columns[0][2] * columns[1][0] * columns[2][3] * columns[3][1] + columns[0][0] * columns[1][2] * columns[2][3] * columns[3][1] +
|
|
|
|
columns[0][3] * columns[1][1] * columns[2][0] * columns[3][2] - columns[0][1] * columns[1][3] * columns[2][0] * columns[3][2] -
|
|
|
|
columns[0][3] * columns[1][0] * columns[2][1] * columns[3][2] + columns[0][0] * columns[1][3] * columns[2][1] * columns[3][2] +
|
|
|
|
columns[0][1] * columns[1][0] * columns[2][3] * columns[3][2] - columns[0][0] * columns[1][1] * columns[2][3] * columns[3][2] -
|
|
|
|
columns[0][2] * columns[1][1] * columns[2][0] * columns[3][3] + columns[0][1] * columns[1][2] * columns[2][0] * columns[3][3] +
|
|
|
|
columns[0][2] * columns[1][0] * columns[2][1] * columns[3][3] - columns[0][0] * columns[1][2] * columns[2][1] * columns[3][3] -
|
|
|
|
columns[0][1] * columns[1][0] * columns[2][2] * columns[3][3] + columns[0][0] * columns[1][1] * columns[2][2] * columns[3][3];
|
2020-05-01 12:34:23 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_identity() {
|
2014-02-10 01:10:30 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
for (int j = 0; j < 4; j++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[i][j] = (i == j) ? 1 : 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_zero() {
|
2014-02-10 01:10:30 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
for (int j = 0; j < 4; j++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[i][j] = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Plane Projection::xform4(const Plane &p_vec4) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
Plane ret;
|
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
ret.normal.x = columns[0][0] * p_vec4.normal.x + columns[1][0] * p_vec4.normal.y + columns[2][0] * p_vec4.normal.z + columns[3][0] * p_vec4.d;
|
|
|
|
ret.normal.y = columns[0][1] * p_vec4.normal.x + columns[1][1] * p_vec4.normal.y + columns[2][1] * p_vec4.normal.z + columns[3][1] * p_vec4.d;
|
|
|
|
ret.normal.z = columns[0][2] * p_vec4.normal.x + columns[1][2] * p_vec4.normal.y + columns[2][2] * p_vec4.normal.z + columns[3][2] * p_vec4.d;
|
|
|
|
ret.d = columns[0][3] * p_vec4.normal.x + columns[1][3] * p_vec4.normal.y + columns[2][3] * p_vec4.normal.z + columns[3][3] * p_vec4.d;
|
2014-02-10 01:10:30 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Vector4 Projection::xform(const Vector4 &p_vec4) const {
|
|
|
|
return Vector4(
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][0] * p_vec4.x + columns[1][0] * p_vec4.y + columns[2][0] * p_vec4.z + columns[3][0] * p_vec4.w,
|
|
|
|
columns[0][1] * p_vec4.x + columns[1][1] * p_vec4.y + columns[2][1] * p_vec4.z + columns[3][1] * p_vec4.w,
|
|
|
|
columns[0][2] * p_vec4.x + columns[1][2] * p_vec4.y + columns[2][2] * p_vec4.z + columns[3][2] * p_vec4.w,
|
|
|
|
columns[0][3] * p_vec4.x + columns[1][3] * p_vec4.y + columns[2][3] * p_vec4.z + columns[3][3] * p_vec4.w);
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
}
|
|
|
|
Vector4 Projection::xform_inv(const Vector4 &p_vec4) const {
|
|
|
|
return Vector4(
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][0] * p_vec4.x + columns[0][1] * p_vec4.y + columns[0][2] * p_vec4.z + columns[0][3] * p_vec4.w,
|
|
|
|
columns[1][0] * p_vec4.x + columns[1][1] * p_vec4.y + columns[1][2] * p_vec4.z + columns[1][3] * p_vec4.w,
|
|
|
|
columns[2][0] * p_vec4.x + columns[2][1] * p_vec4.y + columns[2][2] * p_vec4.z + columns[2][3] * p_vec4.w,
|
|
|
|
columns[3][0] * p_vec4.x + columns[3][1] * p_vec4.y + columns[3][2] * p_vec4.z + columns[3][3] * p_vec4.w);
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Projection::adjust_perspective_znear(real_t p_new_znear) {
|
2021-01-17 16:25:38 +00:00
|
|
|
real_t zfar = get_z_far();
|
|
|
|
real_t znear = p_new_znear;
|
|
|
|
|
|
|
|
real_t deltaZ = zfar - znear;
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[2][2] = -(zfar + znear) / deltaZ;
|
|
|
|
columns[3][2] = -2 * znear * zfar / deltaZ;
|
2021-01-17 16:25:38 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection Projection::create_depth_correction(bool p_flip_y) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_depth_correction(p_flip_y);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_light_atlas_rect(const Rect2 &p_rect) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_light_atlas_rect(p_rect);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_perspective(real_t p_fovy_degrees, real_t p_aspect, real_t p_z_near, real_t p_z_far, bool p_flip_fov) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_perspective(p_fovy_degrees, p_aspect, p_z_near, p_z_far, p_flip_fov);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_perspective_hmd(real_t p_fovy_degrees, real_t p_aspect, real_t p_z_near, real_t p_z_far, bool p_flip_fov, int p_eye, real_t p_intraocular_dist, real_t p_convergence_dist) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_perspective(p_fovy_degrees, p_aspect, p_z_near, p_z_far, p_flip_fov, p_eye, p_intraocular_dist, p_convergence_dist);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_for_hmd(int p_eye, real_t p_aspect, real_t p_intraocular_dist, real_t p_display_width, real_t p_display_to_lens, real_t p_oversample, real_t p_z_near, real_t p_z_far) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_for_hmd(p_eye, p_aspect, p_intraocular_dist, p_display_width, p_display_to_lens, p_oversample, p_z_near, p_z_far);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_orthogonal(real_t p_left, real_t p_right, real_t p_bottom, real_t p_top, real_t p_znear, real_t p_zfar) {
|
|
|
|
Projection proj;
|
2022-12-15 17:03:33 +00:00
|
|
|
proj.set_orthogonal(p_left, p_right, p_bottom, p_top, p_znear, p_zfar);
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_orthogonal_aspect(real_t p_size, real_t p_aspect, real_t p_znear, real_t p_zfar, bool p_flip_fov) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_orthogonal(p_size, p_aspect, p_znear, p_zfar, p_flip_fov);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_frustum(real_t p_left, real_t p_right, real_t p_bottom, real_t p_top, real_t p_near, real_t p_far) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_frustum(p_left, p_right, p_bottom, p_top, p_near, p_far);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_frustum_aspect(real_t p_size, real_t p_aspect, Vector2 p_offset, real_t p_near, real_t p_far, bool p_flip_fov) {
|
|
|
|
Projection proj;
|
|
|
|
proj.set_frustum(p_size, p_aspect, p_offset, p_near, p_far, p_flip_fov);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::create_fit_aabb(const AABB &p_aabb) {
|
|
|
|
Projection proj;
|
|
|
|
proj.scale_translate_to_fit(p_aabb);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::perspective_znear_adjusted(real_t p_new_znear) const {
|
|
|
|
Projection proj = *this;
|
|
|
|
proj.adjust_perspective_znear(p_new_znear);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Plane Projection::get_projection_plane(Planes p_plane) const {
|
2022-09-29 09:53:28 +00:00
|
|
|
const real_t *matrix = (const real_t *)columns;
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
|
|
|
|
switch (p_plane) {
|
|
|
|
case PLANE_NEAR: {
|
|
|
|
Plane new_plane = Plane(matrix[3] + matrix[2],
|
|
|
|
matrix[7] + matrix[6],
|
|
|
|
matrix[11] + matrix[10],
|
|
|
|
matrix[15] + matrix[14]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
return new_plane;
|
2022-11-18 22:57:33 +00:00
|
|
|
}
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
case PLANE_FAR: {
|
|
|
|
Plane new_plane = Plane(matrix[3] - matrix[2],
|
|
|
|
matrix[7] - matrix[6],
|
|
|
|
matrix[11] - matrix[10],
|
|
|
|
matrix[15] - matrix[14]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
return new_plane;
|
2022-11-18 22:57:33 +00:00
|
|
|
}
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
case PLANE_LEFT: {
|
|
|
|
Plane new_plane = Plane(matrix[3] + matrix[0],
|
|
|
|
matrix[7] + matrix[4],
|
|
|
|
matrix[11] + matrix[8],
|
|
|
|
matrix[15] + matrix[12]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
return new_plane;
|
2022-11-18 22:57:33 +00:00
|
|
|
}
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
case PLANE_TOP: {
|
|
|
|
Plane new_plane = Plane(matrix[3] - matrix[1],
|
|
|
|
matrix[7] - matrix[5],
|
|
|
|
matrix[11] - matrix[9],
|
|
|
|
matrix[15] - matrix[13]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
return new_plane;
|
2022-11-18 22:57:33 +00:00
|
|
|
}
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
case PLANE_RIGHT: {
|
|
|
|
Plane new_plane = Plane(matrix[3] - matrix[0],
|
|
|
|
matrix[7] - matrix[4],
|
|
|
|
matrix[11] - matrix[8],
|
|
|
|
matrix[15] - matrix[12]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
return new_plane;
|
2022-11-18 22:57:33 +00:00
|
|
|
}
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
case PLANE_BOTTOM: {
|
|
|
|
Plane new_plane = Plane(matrix[3] + matrix[1],
|
|
|
|
matrix[7] + matrix[5],
|
|
|
|
matrix[11] + matrix[9],
|
|
|
|
matrix[15] + matrix[13]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
return new_plane;
|
2022-11-18 22:57:33 +00:00
|
|
|
}
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Plane();
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection::flipped_y() const {
|
|
|
|
Projection proj = *this;
|
|
|
|
proj.flip_y();
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Projection Projection ::jitter_offseted(const Vector2 &p_offset) const {
|
|
|
|
Projection proj = *this;
|
|
|
|
proj.add_jitter_offset(p_offset);
|
|
|
|
return proj;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Projection::set_perspective(real_t p_fovy_degrees, real_t p_aspect, real_t p_z_near, real_t p_z_far, bool p_flip_fov) {
|
2014-09-15 23:06:37 +00:00
|
|
|
if (p_flip_fov) {
|
|
|
|
p_fovy_degrees = get_fovy(p_fovy_degrees, 1.0 / p_aspect);
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-14 20:35:39 +00:00
|
|
|
real_t sine, cotangent, deltaZ;
|
2022-08-13 15:45:42 +00:00
|
|
|
real_t radians = Math::deg_to_rad(p_fovy_degrees / 2.0);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
deltaZ = p_z_far - p_z_near;
|
|
|
|
sine = Math::sin(radians);
|
|
|
|
|
|
|
|
if ((deltaZ == 0) || (sine == 0) || (p_aspect == 0)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cotangent = Math::cos(radians) / sine;
|
|
|
|
|
|
|
|
set_identity();
|
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][0] = cotangent / p_aspect;
|
|
|
|
columns[1][1] = cotangent;
|
|
|
|
columns[2][2] = -(p_z_far + p_z_near) / deltaZ;
|
|
|
|
columns[2][3] = -1;
|
|
|
|
columns[3][2] = -2 * p_z_near * p_z_far / deltaZ;
|
|
|
|
columns[3][3] = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_perspective(real_t p_fovy_degrees, real_t p_aspect, real_t p_z_near, real_t p_z_far, bool p_flip_fov, int p_eye, real_t p_intraocular_dist, real_t p_convergence_dist) {
|
2017-04-23 12:10:41 +00:00
|
|
|
if (p_flip_fov) {
|
|
|
|
p_fovy_degrees = get_fovy(p_fovy_degrees, 1.0 / p_aspect);
|
|
|
|
}
|
|
|
|
|
|
|
|
real_t left, right, modeltranslation, ymax, xmax, frustumshift;
|
|
|
|
|
2022-08-13 15:45:42 +00:00
|
|
|
ymax = p_z_near * tan(Math::deg_to_rad(p_fovy_degrees / 2.0));
|
2017-04-23 12:10:41 +00:00
|
|
|
xmax = ymax * p_aspect;
|
|
|
|
frustumshift = (p_intraocular_dist / 2.0) * p_z_near / p_convergence_dist;
|
|
|
|
|
|
|
|
switch (p_eye) {
|
|
|
|
case 1: { // left eye
|
|
|
|
left = -xmax + frustumshift;
|
|
|
|
right = xmax + frustumshift;
|
|
|
|
modeltranslation = p_intraocular_dist / 2.0;
|
2020-05-19 13:46:49 +00:00
|
|
|
} break;
|
2017-04-23 12:10:41 +00:00
|
|
|
case 2: { // right eye
|
|
|
|
left = -xmax - frustumshift;
|
|
|
|
right = xmax - frustumshift;
|
|
|
|
modeltranslation = -p_intraocular_dist / 2.0;
|
2020-05-19 13:46:49 +00:00
|
|
|
} break;
|
2017-04-23 12:10:41 +00:00
|
|
|
default: { // mono, should give the same result as set_perspective(p_fovy_degrees,p_aspect,p_z_near,p_z_far,p_flip_fov)
|
|
|
|
left = -xmax;
|
|
|
|
right = xmax;
|
|
|
|
modeltranslation = 0.0;
|
2020-05-19 13:46:49 +00:00
|
|
|
} break;
|
|
|
|
}
|
2017-04-23 12:10:41 +00:00
|
|
|
|
|
|
|
set_frustum(left, right, -ymax, ymax, p_z_near, p_z_far);
|
|
|
|
|
|
|
|
// translate matrix by (modeltranslation, 0.0, 0.0)
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection cm;
|
2017-04-23 12:10:41 +00:00
|
|
|
cm.set_identity();
|
2022-10-04 16:44:48 +00:00
|
|
|
cm.columns[3][0] = modeltranslation;
|
2017-04-23 12:10:41 +00:00
|
|
|
*this = *this * cm;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_for_hmd(int p_eye, real_t p_aspect, real_t p_intraocular_dist, real_t p_display_width, real_t p_display_to_lens, real_t p_oversample, real_t p_z_near, real_t p_z_far) {
|
2017-04-23 12:10:41 +00:00
|
|
|
// we first calculate our base frustum on our values without taking our lens magnification into account.
|
|
|
|
real_t f1 = (p_intraocular_dist * 0.5) / p_display_to_lens;
|
|
|
|
real_t f2 = ((p_display_width - p_intraocular_dist) * 0.5) / p_display_to_lens;
|
|
|
|
real_t f3 = (p_display_width / 4.0) / p_display_to_lens;
|
|
|
|
|
|
|
|
// now we apply our oversample factor to increase our FOV. how much we oversample is always a balance we strike between performance and how much
|
|
|
|
// we're willing to sacrifice in FOV.
|
|
|
|
real_t add = ((f1 + f2) * (p_oversample - 1.0)) / 2.0;
|
|
|
|
f1 += add;
|
|
|
|
f2 += add;
|
2017-12-03 11:32:42 +00:00
|
|
|
f3 *= p_oversample;
|
2017-04-23 12:10:41 +00:00
|
|
|
|
|
|
|
// always apply KEEP_WIDTH aspect ratio
|
2020-04-05 06:56:43 +00:00
|
|
|
f3 /= p_aspect;
|
2017-04-23 12:10:41 +00:00
|
|
|
|
|
|
|
switch (p_eye) {
|
|
|
|
case 1: { // left eye
|
|
|
|
set_frustum(-f2 * p_z_near, f1 * p_z_near, -f3 * p_z_near, f3 * p_z_near, p_z_near, p_z_far);
|
2020-05-19 13:46:49 +00:00
|
|
|
} break;
|
2017-04-23 12:10:41 +00:00
|
|
|
case 2: { // right eye
|
|
|
|
set_frustum(-f1 * p_z_near, f2 * p_z_near, -f3 * p_z_near, f3 * p_z_near, p_z_near, p_z_far);
|
2020-05-19 13:46:49 +00:00
|
|
|
} break;
|
2017-04-23 12:10:41 +00:00
|
|
|
default: { // mono, does not apply here!
|
2020-05-19 13:46:49 +00:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 12:10:41 +00:00
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_orthogonal(real_t p_left, real_t p_right, real_t p_bottom, real_t p_top, real_t p_znear, real_t p_zfar) {
|
2014-02-10 01:10:30 +00:00
|
|
|
set_identity();
|
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][0] = 2.0 / (p_right - p_left);
|
|
|
|
columns[3][0] = -((p_right + p_left) / (p_right - p_left));
|
|
|
|
columns[1][1] = 2.0 / (p_top - p_bottom);
|
|
|
|
columns[3][1] = -((p_top + p_bottom) / (p_top - p_bottom));
|
|
|
|
columns[2][2] = -2.0 / (p_zfar - p_znear);
|
|
|
|
columns[3][2] = -((p_zfar + p_znear) / (p_zfar - p_znear));
|
|
|
|
columns[3][3] = 1.0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_orthogonal(real_t p_size, real_t p_aspect, real_t p_znear, real_t p_zfar, bool p_flip_fov) {
|
2014-09-15 23:06:37 +00:00
|
|
|
if (!p_flip_fov) {
|
2014-02-10 01:10:30 +00:00
|
|
|
p_size *= p_aspect;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_orthogonal(-p_size / 2, +p_size / 2, -p_size / p_aspect / 2, +p_size / p_aspect / 2, p_znear, p_zfar);
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_frustum(real_t p_left, real_t p_right, real_t p_bottom, real_t p_top, real_t p_near, real_t p_far) {
|
2019-11-20 15:22:16 +00:00
|
|
|
ERR_FAIL_COND(p_right <= p_left);
|
|
|
|
ERR_FAIL_COND(p_top <= p_bottom);
|
|
|
|
ERR_FAIL_COND(p_far <= p_near);
|
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
real_t *te = &columns[0][0];
|
2017-01-14 20:35:39 +00:00
|
|
|
real_t x = 2 * p_near / (p_right - p_left);
|
|
|
|
real_t y = 2 * p_near / (p_top - p_bottom);
|
2015-03-02 03:54:10 +00:00
|
|
|
|
2017-01-14 20:35:39 +00:00
|
|
|
real_t a = (p_right + p_left) / (p_right - p_left);
|
|
|
|
real_t b = (p_top + p_bottom) / (p_top - p_bottom);
|
|
|
|
real_t c = -(p_far + p_near) / (p_far - p_near);
|
|
|
|
real_t d = -2 * p_far * p_near / (p_far - p_near);
|
2015-03-02 03:54:10 +00:00
|
|
|
|
2017-01-15 21:15:47 +00:00
|
|
|
te[0] = x;
|
|
|
|
te[1] = 0;
|
|
|
|
te[2] = 0;
|
|
|
|
te[3] = 0;
|
|
|
|
te[4] = 0;
|
|
|
|
te[5] = y;
|
|
|
|
te[6] = 0;
|
|
|
|
te[7] = 0;
|
|
|
|
te[8] = a;
|
|
|
|
te[9] = b;
|
|
|
|
te[10] = c;
|
|
|
|
te[11] = -1;
|
|
|
|
te[12] = 0;
|
|
|
|
te[13] = 0;
|
|
|
|
te[14] = d;
|
|
|
|
te[15] = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_frustum(real_t p_size, real_t p_aspect, Vector2 p_offset, real_t p_near, real_t p_far, bool p_flip_fov) {
|
2019-02-19 16:17:02 +00:00
|
|
|
if (!p_flip_fov) {
|
|
|
|
p_size *= p_aspect;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_frustum(-p_size / 2 + p_offset.x, +p_size / 2 + p_offset.x, -p_size / p_aspect / 2 + p_offset.y, +p_size / p_aspect / 2 + p_offset.y, p_near, p_far);
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
real_t Projection::get_z_far() const {
|
2022-09-29 09:53:28 +00:00
|
|
|
const real_t *matrix = (const real_t *)columns;
|
2014-02-10 01:10:30 +00:00
|
|
|
Plane new_plane = Plane(matrix[3] - matrix[2],
|
|
|
|
matrix[7] - matrix[6],
|
|
|
|
matrix[11] - matrix[10],
|
|
|
|
matrix[15] - matrix[14]);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
new_plane.normalize();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-05-10 14:47:11 +00:00
|
|
|
return new_plane.d;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2020-05-14 12:29:06 +00:00
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
real_t Projection::get_z_near() const {
|
2022-09-29 09:53:28 +00:00
|
|
|
const real_t *matrix = (const real_t *)columns;
|
2014-02-10 01:10:30 +00:00
|
|
|
Plane new_plane = Plane(matrix[3] + matrix[2],
|
|
|
|
matrix[7] + matrix[6],
|
|
|
|
matrix[11] + matrix[10],
|
|
|
|
-matrix[15] - matrix[14]);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
new_plane.normalize();
|
2020-05-10 14:47:11 +00:00
|
|
|
return new_plane.d;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Vector2 Projection::get_viewport_half_extents() const {
|
2022-09-29 09:53:28 +00:00
|
|
|
const real_t *matrix = (const real_t *)columns;
|
2014-02-10 01:10:30 +00:00
|
|
|
///////--- Near Plane ---///////
|
|
|
|
Plane near_plane = Plane(matrix[3] + matrix[2],
|
|
|
|
matrix[7] + matrix[6],
|
|
|
|
matrix[11] + matrix[10],
|
2017-01-16 09:32:44 +00:00
|
|
|
-matrix[15] - matrix[14]);
|
2017-01-15 21:15:47 +00:00
|
|
|
near_plane.normalize();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
///////--- Right Plane ---///////
|
|
|
|
Plane right_plane = Plane(matrix[3] - matrix[0],
|
|
|
|
matrix[7] - matrix[4],
|
|
|
|
matrix[11] - matrix[8],
|
2017-01-16 09:32:44 +00:00
|
|
|
-matrix[15] + matrix[12]);
|
2017-01-15 21:15:47 +00:00
|
|
|
right_plane.normalize();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Plane top_plane = Plane(matrix[3] - matrix[1],
|
|
|
|
matrix[7] - matrix[5],
|
|
|
|
matrix[11] - matrix[9],
|
2017-01-16 09:32:44 +00:00
|
|
|
-matrix[15] + matrix[13]);
|
2017-01-15 21:15:47 +00:00
|
|
|
top_plane.normalize();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector3 res;
|
|
|
|
near_plane.intersect_3(right_plane, top_plane, &res);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2020-01-21 18:39:16 +00:00
|
|
|
return Vector2(res.x, res.y);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Vector2 Projection::get_far_plane_half_extents() const {
|
2022-09-29 09:53:28 +00:00
|
|
|
const real_t *matrix = (const real_t *)columns;
|
2020-01-21 17:24:22 +00:00
|
|
|
///////--- Far Plane ---///////
|
|
|
|
Plane far_plane = Plane(matrix[3] - matrix[2],
|
|
|
|
matrix[7] - matrix[6],
|
|
|
|
matrix[11] - matrix[10],
|
|
|
|
-matrix[15] + matrix[14]);
|
|
|
|
far_plane.normalize();
|
|
|
|
|
|
|
|
///////--- Right Plane ---///////
|
|
|
|
Plane right_plane = Plane(matrix[3] - matrix[0],
|
|
|
|
matrix[7] - matrix[4],
|
|
|
|
matrix[11] - matrix[8],
|
|
|
|
-matrix[15] + matrix[12]);
|
|
|
|
right_plane.normalize();
|
|
|
|
|
|
|
|
Plane top_plane = Plane(matrix[3] - matrix[1],
|
|
|
|
matrix[7] - matrix[5],
|
|
|
|
matrix[11] - matrix[9],
|
|
|
|
-matrix[15] + matrix[13]);
|
|
|
|
top_plane.normalize();
|
|
|
|
|
|
|
|
Vector3 res;
|
|
|
|
far_plane.intersect_3(right_plane, top_plane, &res);
|
|
|
|
|
2020-08-13 01:21:01 +00:00
|
|
|
return Vector2(res.x, res.y);
|
2020-01-21 17:24:22 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
bool Projection::get_endpoints(const Transform3D &p_transform, Vector3 *p_8points) const {
|
2020-10-17 05:08:21 +00:00
|
|
|
Vector<Plane> planes = get_projection_planes(Transform3D());
|
2017-09-02 20:32:31 +00:00
|
|
|
const Planes intersections[8][3] = {
|
|
|
|
{ PLANE_FAR, PLANE_LEFT, PLANE_TOP },
|
|
|
|
{ PLANE_FAR, PLANE_LEFT, PLANE_BOTTOM },
|
|
|
|
{ PLANE_FAR, PLANE_RIGHT, PLANE_TOP },
|
|
|
|
{ PLANE_FAR, PLANE_RIGHT, PLANE_BOTTOM },
|
|
|
|
{ PLANE_NEAR, PLANE_LEFT, PLANE_TOP },
|
|
|
|
{ PLANE_NEAR, PLANE_LEFT, PLANE_BOTTOM },
|
|
|
|
{ PLANE_NEAR, PLANE_RIGHT, PLANE_TOP },
|
|
|
|
{ PLANE_NEAR, PLANE_RIGHT, PLANE_BOTTOM },
|
2017-09-07 21:00:47 +00:00
|
|
|
};
|
2017-04-23 12:10:41 +00:00
|
|
|
|
2017-09-02 20:32:31 +00:00
|
|
|
for (int i = 0; i < 8; i++) {
|
2017-09-07 21:00:47 +00:00
|
|
|
Vector3 point;
|
2022-10-06 21:35:54 +00:00
|
|
|
Plane a = planes[intersections[i][0]];
|
|
|
|
Plane b = planes[intersections[i][1]];
|
|
|
|
Plane c = planes[intersections[i][2]];
|
|
|
|
bool res = a.intersect_3(b, c, &point);
|
2017-04-23 12:10:41 +00:00
|
|
|
ERR_FAIL_COND_V(!res, false);
|
2017-09-02 20:32:31 +00:00
|
|
|
p_8points[i] = p_transform.xform(point);
|
2017-04-23 12:10:41 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Vector<Plane> Projection::get_projection_planes(const Transform3D &p_transform) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
/** Fast Plane Extraction from combined modelview/projection matrices.
|
|
|
|
* References:
|
2021-08-22 01:56:25 +00:00
|
|
|
* https://web.archive.org/web/20011221205252/https://www.markmorley.com/opengl/frustumculling.html
|
|
|
|
* https://web.archive.org/web/20061020020112/https://www2.ravensoft.com/users/ggribb/plane%20extraction.pdf
|
2014-02-10 01:10:30 +00:00
|
|
|
*/
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<Plane> planes;
|
2022-01-13 04:29:59 +00:00
|
|
|
planes.resize(6);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2022-09-29 09:53:28 +00:00
|
|
|
const real_t *matrix = (const real_t *)columns;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Plane new_plane;
|
|
|
|
|
|
|
|
///////--- Near Plane ---///////
|
|
|
|
new_plane = Plane(matrix[3] + matrix[2],
|
|
|
|
matrix[7] + matrix[6],
|
|
|
|
matrix[11] + matrix[10],
|
|
|
|
matrix[15] + matrix[14]);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
|
2022-01-13 04:29:59 +00:00
|
|
|
planes.write[0] = p_transform.xform(new_plane);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
///////--- Far Plane ---///////
|
|
|
|
new_plane = Plane(matrix[3] - matrix[2],
|
|
|
|
matrix[7] - matrix[6],
|
|
|
|
matrix[11] - matrix[10],
|
|
|
|
matrix[15] - matrix[14]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
|
2022-01-13 04:29:59 +00:00
|
|
|
planes.write[1] = p_transform.xform(new_plane);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
///////--- Left Plane ---///////
|
|
|
|
new_plane = Plane(matrix[3] + matrix[0],
|
|
|
|
matrix[7] + matrix[4],
|
|
|
|
matrix[11] + matrix[8],
|
|
|
|
matrix[15] + matrix[12]);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
|
2022-01-13 04:29:59 +00:00
|
|
|
planes.write[2] = p_transform.xform(new_plane);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
///////--- Top Plane ---///////
|
|
|
|
new_plane = Plane(matrix[3] - matrix[1],
|
|
|
|
matrix[7] - matrix[5],
|
|
|
|
matrix[11] - matrix[9],
|
|
|
|
matrix[15] - matrix[13]);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
|
2022-01-13 04:29:59 +00:00
|
|
|
planes.write[3] = p_transform.xform(new_plane);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
///////--- Right Plane ---///////
|
|
|
|
new_plane = Plane(matrix[3] - matrix[0],
|
|
|
|
matrix[7] - matrix[4],
|
|
|
|
matrix[11] - matrix[8],
|
|
|
|
matrix[15] - matrix[12]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2022-01-13 04:29:59 +00:00
|
|
|
planes.write[4] = p_transform.xform(new_plane);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
///////--- Bottom Plane ---///////
|
|
|
|
new_plane = Plane(matrix[3] + matrix[1],
|
|
|
|
matrix[7] + matrix[5],
|
|
|
|
matrix[11] + matrix[9],
|
|
|
|
matrix[15] + matrix[13]);
|
|
|
|
|
|
|
|
new_plane.normal = -new_plane.normal;
|
|
|
|
new_plane.normalize();
|
|
|
|
|
2022-01-13 04:29:59 +00:00
|
|
|
planes.write[5] = p_transform.xform(new_plane);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return planes;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection Projection::inverse() const {
|
|
|
|
Projection cm = *this;
|
2014-02-10 01:10:30 +00:00
|
|
|
cm.invert();
|
|
|
|
return cm;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::invert() {
|
2014-02-10 01:10:30 +00:00
|
|
|
int i, j, k;
|
|
|
|
int pvt_i[4], pvt_j[4]; /* Locations of pivot matrix */
|
2017-01-14 20:35:39 +00:00
|
|
|
real_t pvt_val; /* Value of current pivot element */
|
|
|
|
real_t hold; /* Temporary storage */
|
2022-02-24 18:19:16 +00:00
|
|
|
real_t determinant = 1.0f;
|
2014-02-10 01:10:30 +00:00
|
|
|
for (k = 0; k < 4; k++) {
|
|
|
|
/** Locate k'th pivot element **/
|
2022-10-04 16:44:48 +00:00
|
|
|
pvt_val = columns[k][k]; /** Initialize for search **/
|
2014-02-10 01:10:30 +00:00
|
|
|
pvt_i[k] = k;
|
|
|
|
pvt_j[k] = k;
|
|
|
|
for (i = k; i < 4; i++) {
|
|
|
|
for (j = k; j < 4; j++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
if (Math::abs(columns[i][j]) > Math::abs(pvt_val)) {
|
2014-02-10 01:10:30 +00:00
|
|
|
pvt_i[k] = i;
|
|
|
|
pvt_j[k] = j;
|
2022-10-04 16:44:48 +00:00
|
|
|
pvt_val = columns[i][j];
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Product of pivots, gives determinant when finished **/
|
2022-02-24 18:19:16 +00:00
|
|
|
determinant *= pvt_val;
|
|
|
|
if (Math::is_zero_approx(determinant)) {
|
|
|
|
return; /** Matrix is singular (zero determinant). **/
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** "Interchange" rows (with sign change stuff) **/
|
|
|
|
i = pvt_i[k];
|
|
|
|
if (i != k) { /** If rows are different **/
|
|
|
|
for (j = 0; j < 4; j++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
hold = -columns[k][j];
|
|
|
|
columns[k][j] = columns[i][j];
|
|
|
|
columns[i][j] = hold;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** "Interchange" columns **/
|
|
|
|
j = pvt_j[k];
|
|
|
|
if (j != k) { /** If columns are different **/
|
|
|
|
for (i = 0; i < 4; i++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
hold = -columns[i][k];
|
|
|
|
columns[i][k] = columns[i][j];
|
|
|
|
columns[i][j] = hold;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Divide column by minus pivot value **/
|
|
|
|
for (i = 0; i < 4; i++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (i != k) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[i][k] /= (-pvt_val);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Reduce the matrix **/
|
|
|
|
for (i = 0; i < 4; i++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
hold = columns[i][k];
|
2014-02-10 01:10:30 +00:00
|
|
|
for (j = 0; j < 4; j++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (i != k && j != k) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[i][j] += hold * columns[k][j];
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Divide row by pivot **/
|
|
|
|
for (j = 0; j < 4; j++) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (j != k) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[k][j] /= pvt_val;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Replace pivot by reciprocal (at last we can touch it). **/
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[k][k] = 1.0 / pvt_val;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* That was most of the work, one final pass of row/column interchange */
|
|
|
|
/* to finish */
|
|
|
|
for (k = 4 - 2; k >= 0; k--) { /* Don't need to work with 1 by 1 corner*/
|
|
|
|
i = pvt_j[k]; /* Rows to swap correspond to pivot COLUMN */
|
|
|
|
if (i != k) { /* If rows are different */
|
|
|
|
for (j = 0; j < 4; j++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
hold = columns[k][j];
|
|
|
|
columns[k][j] = -columns[i][j];
|
|
|
|
columns[i][j] = hold;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
j = pvt_i[k]; /* Columns to swap correspond to pivot ROW */
|
2020-05-14 14:41:43 +00:00
|
|
|
if (j != k) { /* If columns are different */
|
2014-02-10 01:10:30 +00:00
|
|
|
for (i = 0; i < 4; i++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
hold = columns[i][k];
|
|
|
|
columns[i][k] = -columns[i][j];
|
|
|
|
columns[i][j] = hold;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::flip_y() {
|
2019-08-20 20:54:03 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[1][i] = -columns[1][i];
|
2019-08-20 20:54:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection::Projection() {
|
2014-02-10 01:10:30 +00:00
|
|
|
set_identity();
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection Projection::operator*(const Projection &p_matrix) const {
|
|
|
|
Projection new_matrix;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
for (int j = 0; j < 4; j++) {
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
real_t ab = 0;
|
2020-05-14 14:41:43 +00:00
|
|
|
for (int k = 0; k < 4; k++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
ab += columns[k][i] * p_matrix.columns[j][k];
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2022-10-04 16:44:48 +00:00
|
|
|
new_matrix.columns[j][i] = ab;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new_matrix;
|
|
|
|
}
|
|
|
|
|
2024-02-14 13:39:39 +00:00
|
|
|
void Projection::set_depth_correction(bool p_flip_y, bool p_reverse_z, bool p_remap_z) {
|
|
|
|
// p_remap_z is used to convert from OpenGL-style clip space (-1 - 1) to Vulkan style (0 - 1).
|
2022-10-04 16:44:48 +00:00
|
|
|
real_t *m = &columns[0][0];
|
2019-09-07 01:51:27 +00:00
|
|
|
|
|
|
|
m[0] = 1;
|
|
|
|
m[1] = 0.0;
|
|
|
|
m[2] = 0.0;
|
|
|
|
m[3] = 0.0;
|
|
|
|
m[4] = 0.0;
|
2019-09-09 20:50:51 +00:00
|
|
|
m[5] = p_flip_y ? -1 : 1;
|
2019-09-07 01:51:27 +00:00
|
|
|
m[6] = 0.0;
|
|
|
|
m[7] = 0.0;
|
|
|
|
m[8] = 0.0;
|
|
|
|
m[9] = 0.0;
|
2024-02-14 13:39:39 +00:00
|
|
|
m[10] = p_remap_z ? (p_reverse_z ? -0.5 : 0.5) : (p_reverse_z ? -1.0 : 1.0);
|
2019-09-07 01:51:27 +00:00
|
|
|
m[11] = 0.0;
|
|
|
|
m[12] = 0.0;
|
|
|
|
m[13] = 0.0;
|
2024-02-14 13:39:39 +00:00
|
|
|
m[14] = p_remap_z ? 0.5 : 0.0;
|
2019-09-07 01:51:27 +00:00
|
|
|
m[15] = 1.0;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_light_bias() {
|
2022-10-04 16:44:48 +00:00
|
|
|
real_t *m = &columns[0][0];
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2019-07-01 10:59:42 +00:00
|
|
|
m[0] = 0.5;
|
|
|
|
m[1] = 0.0;
|
|
|
|
m[2] = 0.0;
|
|
|
|
m[3] = 0.0;
|
|
|
|
m[4] = 0.0;
|
|
|
|
m[5] = 0.5;
|
|
|
|
m[6] = 0.0;
|
|
|
|
m[7] = 0.0;
|
|
|
|
m[8] = 0.0;
|
|
|
|
m[9] = 0.0;
|
|
|
|
m[10] = 0.5;
|
|
|
|
m[11] = 0.0;
|
|
|
|
m[12] = 0.5;
|
|
|
|
m[13] = 0.5;
|
|
|
|
m[14] = 0.5;
|
2016-03-08 23:00:52 +00:00
|
|
|
m[15] = 1.0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::set_light_atlas_rect(const Rect2 &p_rect) {
|
2022-10-04 16:44:48 +00:00
|
|
|
real_t *m = &columns[0][0];
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2019-07-01 10:59:42 +00:00
|
|
|
m[0] = p_rect.size.width;
|
|
|
|
m[1] = 0.0;
|
|
|
|
m[2] = 0.0;
|
|
|
|
m[3] = 0.0;
|
|
|
|
m[4] = 0.0;
|
|
|
|
m[5] = p_rect.size.height;
|
|
|
|
m[6] = 0.0;
|
|
|
|
m[7] = 0.0;
|
|
|
|
m[8] = 0.0;
|
|
|
|
m[9] = 0.0;
|
|
|
|
m[10] = 1.0;
|
|
|
|
m[11] = 0.0;
|
|
|
|
m[12] = p_rect.position.x;
|
|
|
|
m[13] = p_rect.position.y;
|
|
|
|
m[14] = 0.0;
|
2016-11-10 02:55:06 +00:00
|
|
|
m[15] = 1.0;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection::operator String() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
String str;
|
2020-05-14 14:41:43 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
for (int j = 0; j < 4; j++) {
|
2022-10-04 16:44:48 +00:00
|
|
|
str += String((j > 0) ? ", " : "\n") + rtos(columns[i][j]);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
real_t Projection::get_aspect() const {
|
2020-01-21 18:39:16 +00:00
|
|
|
Vector2 vp_he = get_viewport_half_extents();
|
|
|
|
return vp_he.x / vp_he.y;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
int Projection::get_pixels_per_meter(int p_for_pixel_width) const {
|
2016-12-04 15:45:30 +00:00
|
|
|
Vector3 result = xform(Vector3(1, 0, -1));
|
|
|
|
|
|
|
|
return int((result.x * 0.5 + 0.5) * p_for_pixel_width);
|
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
bool Projection::is_orthogonal() const {
|
2022-10-04 16:44:48 +00:00
|
|
|
return columns[3][3] == 1.0;
|
2017-09-07 21:00:47 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
real_t Projection::get_fov() const {
|
2022-09-29 09:53:28 +00:00
|
|
|
const real_t *matrix = (const real_t *)columns;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Plane right_plane = Plane(matrix[3] - matrix[0],
|
|
|
|
matrix[7] - matrix[4],
|
|
|
|
matrix[11] - matrix[8],
|
2017-01-16 09:32:44 +00:00
|
|
|
-matrix[15] + matrix[12]);
|
2017-01-15 21:15:47 +00:00
|
|
|
right_plane.normalize();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-04-23 12:10:41 +00:00
|
|
|
if ((matrix[8] == 0) && (matrix[9] == 0)) {
|
2022-08-13 15:45:42 +00:00
|
|
|
return Math::rad_to_deg(Math::acos(Math::abs(right_plane.normal.x))) * 2.0;
|
2017-04-23 12:10:41 +00:00
|
|
|
} else {
|
2017-09-19 08:51:00 +00:00
|
|
|
// our frustum is asymmetrical need to calculate the left planes angle separately..
|
2017-04-23 12:10:41 +00:00
|
|
|
Plane left_plane = Plane(matrix[3] + matrix[0],
|
|
|
|
matrix[7] + matrix[4],
|
|
|
|
matrix[11] + matrix[8],
|
|
|
|
matrix[15] + matrix[12]);
|
|
|
|
left_plane.normalize();
|
|
|
|
|
2022-08-13 15:45:42 +00:00
|
|
|
return Math::rad_to_deg(Math::acos(Math::abs(left_plane.normal.x))) + Math::rad_to_deg(Math::acos(Math::abs(right_plane.normal.x)));
|
2017-04-23 12:10:41 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2024-03-29 23:44:12 +00:00
|
|
|
real_t Projection::get_lod_multiplier() const {
|
2020-12-17 18:56:59 +00:00
|
|
|
if (is_orthogonal()) {
|
|
|
|
return get_viewport_half_extents().x;
|
|
|
|
} else {
|
2024-03-29 23:44:12 +00:00
|
|
|
const real_t zn = get_z_near();
|
|
|
|
const real_t width = get_viewport_half_extents().x * 2.0f;
|
|
|
|
return 1.0f / (zn / width);
|
2020-12-17 18:56:59 +00:00
|
|
|
}
|
|
|
|
|
2022-10-06 03:00:15 +00:00
|
|
|
// Usage is lod_size / (lod_distance * multiplier) < threshold
|
2020-12-17 18:56:59 +00:00
|
|
|
}
|
2022-10-06 03:00:15 +00:00
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::make_scale(const Vector3 &p_scale) {
|
2014-02-10 01:10:30 +00:00
|
|
|
set_identity();
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][0] = p_scale.x;
|
|
|
|
columns[1][1] = p_scale.y;
|
|
|
|
columns[2][2] = p_scale.z;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::scale_translate_to_fit(const AABB &p_aabb) {
|
2017-06-06 18:33:51 +00:00
|
|
|
Vector3 min = p_aabb.position;
|
|
|
|
Vector3 max = p_aabb.position + p_aabb.size;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][0] = 2 / (max.x - min.x);
|
|
|
|
columns[1][0] = 0;
|
|
|
|
columns[2][0] = 0;
|
|
|
|
columns[3][0] = -(max.x + min.x) / (max.x - min.x);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][1] = 0;
|
|
|
|
columns[1][1] = 2 / (max.y - min.y);
|
|
|
|
columns[2][1] = 0;
|
|
|
|
columns[3][1] = -(max.y + min.y) / (max.y - min.y);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][2] = 0;
|
|
|
|
columns[1][2] = 0;
|
|
|
|
columns[2][2] = 2 / (max.z - min.z);
|
|
|
|
columns[3][2] = -(max.z + min.z) / (max.z - min.z);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0][3] = 0;
|
|
|
|
columns[1][3] = 0;
|
|
|
|
columns[2][3] = 0;
|
|
|
|
columns[3][3] = 1;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
void Projection::add_jitter_offset(const Vector2 &p_offset) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[3][0] += p_offset.x;
|
|
|
|
columns[3][1] += p_offset.y;
|
2022-04-04 14:10:22 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection::operator Transform3D() const {
|
2020-10-17 05:08:21 +00:00
|
|
|
Transform3D tr;
|
2022-10-04 16:44:48 +00:00
|
|
|
const real_t *m = &columns[0][0];
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-04-24 22:07:35 +00:00
|
|
|
tr.basis.rows[0][0] = m[0];
|
|
|
|
tr.basis.rows[1][0] = m[1];
|
|
|
|
tr.basis.rows[2][0] = m[2];
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-04-24 22:07:35 +00:00
|
|
|
tr.basis.rows[0][1] = m[4];
|
|
|
|
tr.basis.rows[1][1] = m[5];
|
|
|
|
tr.basis.rows[2][1] = m[6];
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-04-24 22:07:35 +00:00
|
|
|
tr.basis.rows[0][2] = m[8];
|
|
|
|
tr.basis.rows[1][2] = m[9];
|
|
|
|
tr.basis.rows[2][2] = m[10];
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
tr.origin.x = m[12];
|
|
|
|
tr.origin.y = m[13];
|
|
|
|
tr.origin.z = m[14];
|
|
|
|
|
|
|
|
return tr;
|
|
|
|
}
|
2022-10-04 16:44:48 +00:00
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection::Projection(const Vector4 &p_x, const Vector4 &p_y, const Vector4 &p_z, const Vector4 &p_w) {
|
2022-10-04 16:44:48 +00:00
|
|
|
columns[0] = p_x;
|
|
|
|
columns[1] = p_y;
|
|
|
|
columns[2] = p_z;
|
|
|
|
columns[3] = p_w;
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
}
|
2022-10-04 16:44:48 +00:00
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection::Projection(const Transform3D &p_transform) {
|
2020-10-17 05:08:21 +00:00
|
|
|
const Transform3D &tr = p_transform;
|
2022-10-04 16:44:48 +00:00
|
|
|
real_t *m = &columns[0][0];
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2022-04-24 22:07:35 +00:00
|
|
|
m[0] = tr.basis.rows[0][0];
|
|
|
|
m[1] = tr.basis.rows[1][0];
|
|
|
|
m[2] = tr.basis.rows[2][0];
|
2014-02-10 01:10:30 +00:00
|
|
|
m[3] = 0.0;
|
2022-04-24 22:07:35 +00:00
|
|
|
m[4] = tr.basis.rows[0][1];
|
|
|
|
m[5] = tr.basis.rows[1][1];
|
|
|
|
m[6] = tr.basis.rows[2][1];
|
2014-02-10 01:10:30 +00:00
|
|
|
m[7] = 0.0;
|
2022-04-24 22:07:35 +00:00
|
|
|
m[8] = tr.basis.rows[0][2];
|
|
|
|
m[9] = tr.basis.rows[1][2];
|
|
|
|
m[10] = tr.basis.rows[2][2];
|
2014-02-10 01:10:30 +00:00
|
|
|
m[11] = 0.0;
|
|
|
|
m[12] = tr.origin.x;
|
|
|
|
m[13] = tr.origin.y;
|
|
|
|
m[14] = tr.origin.z;
|
2016-03-08 23:00:52 +00:00
|
|
|
m[15] = 1.0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
Implement Vector4, Vector4i, Projection
Implement built-in classes Vector4, Vector4i and Projection.
* Two versions of Vector4 (float and integer).
* A Projection class, which is a 4x4 matrix specialized in projection types.
These types have been requested for a long time, but given they were very corner case they were not added before.
Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity.
**Q**: Why Projection and not Matrix4?
**A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
2022-07-19 23:11:13 +00:00
|
|
|
Projection::~Projection() {
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|