2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2008-2023 Blender Authors
|
2023-06-14 23:30:43 +10:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-12-28 20:21:05 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup freestyle
|
|
|
|
|
* \brief Class to represent a light node
|
2012-12-28 20:21:05 +00:00
|
|
|
*/
|
|
|
|
|
|
2020-12-04 11:28:09 +01:00
|
|
|
#include <cmath>
|
|
|
|
|
#include <cstring> // for memcpy
|
2012-12-28 20:21:05 +00:00
|
|
|
|
2008-04-30 15:41:54 +00:00
|
|
|
#include "NodeCamera.h"
|
|
|
|
|
|
2013-04-09 00:46:49 +00:00
|
|
|
namespace Freestyle {
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
static void loadIdentity(double *matrix)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
// Build Identity matrix
|
|
|
|
|
for (i = 0; i < 16; ++i) {
|
|
|
|
|
double value;
|
2019-05-31 22:51:19 +10:00
|
|
|
if ((i % 5) == 0) {
|
2012-12-28 20:21:05 +00:00
|
|
|
value = 1.0;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
|
|
|
|
else {
|
2012-12-28 20:21:05 +00:00
|
|
|
value = 0;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2012-12-28 20:21:05 +00:00
|
|
|
matrix[i] = value;
|
|
|
|
|
}
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
NodeCamera::NodeCamera(CameraType camera_type) : camera_type_(camera_type)
|
|
|
|
|
{
|
|
|
|
|
loadIdentity(modelview_matrix_);
|
|
|
|
|
loadIdentity(projection_matrix_);
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
2013-04-04 11:47:48 +00:00
|
|
|
#if 0 /* UNUSED, gives warning in gcc */
|
2019-04-17 08:24:14 +02:00
|
|
|
NodeCamera::NodeCamera(const NodeCamera &iBrother) : camera_type_(iBrother.camera_type_)
|
2012-12-28 20:21:05 +00:00
|
|
|
{
|
2020-08-08 13:29:21 +10:00
|
|
|
memcpy(modelview_matrix_, iBrother.modelview_matrix_, sizeof(double[16]));
|
|
|
|
|
memcpy(projection_matrix_, iBrother.projection_matrix_, sizeof(double[16]));
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
2013-04-04 11:47:48 +00:00
|
|
|
#endif
|
2008-04-30 15:41:54 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
void NodeCamera::accept(SceneVisitor &v)
|
|
|
|
|
{
|
|
|
|
|
v.visitNodeCamera(*this);
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
void NodeCamera::setModelViewMatrix(double modelview_matrix[16])
|
|
|
|
|
{
|
2020-08-08 13:29:21 +10:00
|
|
|
memcpy(modelview_matrix_, modelview_matrix, sizeof(double[16]));
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
void NodeCamera::setProjectionMatrix(double projection_matrix[16])
|
|
|
|
|
{
|
2020-08-08 13:29:21 +10:00
|
|
|
memcpy(projection_matrix_, projection_matrix, sizeof(double[16]));
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NodeOrthographicCamera::NodeOrthographicCamera()
|
2012-12-28 20:21:05 +00:00
|
|
|
: NodeCamera(NodeCamera::ORTHOGRAPHIC),
|
|
|
|
|
left_(0),
|
|
|
|
|
right_(0),
|
|
|
|
|
bottom_(0),
|
|
|
|
|
top_(0),
|
|
|
|
|
zNear_(0),
|
|
|
|
|
zFar_(0)
|
|
|
|
|
{
|
|
|
|
|
loadIdentity(projection_matrix_);
|
|
|
|
|
loadIdentity(modelview_matrix_);
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
NodeOrthographicCamera::NodeOrthographicCamera(
|
|
|
|
|
double left, double right, double bottom, double top, double zNear, double zFar)
|
|
|
|
|
: NodeCamera(NodeCamera::ORTHOGRAPHIC),
|
|
|
|
|
left_(left),
|
|
|
|
|
right_(right),
|
|
|
|
|
bottom_(bottom),
|
|
|
|
|
top_(top),
|
|
|
|
|
zNear_(zNear),
|
|
|
|
|
zFar_(zFar)
|
|
|
|
|
{
|
|
|
|
|
loadIdentity(projection_matrix_);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
projection_matrix_[0] = 2.0 / (right - left);
|
|
|
|
|
projection_matrix_[3] = -(right + left) / (right - left);
|
|
|
|
|
projection_matrix_[5] = 2.0 / (top - bottom);
|
|
|
|
|
projection_matrix_[7] = -(top + bottom) / (top - bottom);
|
|
|
|
|
projection_matrix_[10] = -2.0 / (zFar - zNear);
|
|
|
|
|
projection_matrix_[11] = -(zFar + zNear) / (zFar - zNear);
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
2023-03-29 16:50:54 +02:00
|
|
|
NodePerspectiveCamera::NodePerspectiveCamera() : NodeCamera(NodeCamera::PERSPECTIVE) {}
|
2008-04-30 15:41:54 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
NodePerspectiveCamera::NodePerspectiveCamera(double fovy, double aspect, double zNear, double zFar)
|
|
|
|
|
: NodeCamera(NodeCamera::PERSPECTIVE)
|
|
|
|
|
{
|
|
|
|
|
loadIdentity(projection_matrix_);
|
2008-04-30 15:41:54 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
double f = cos(fovy / 2.0) / sin(fovy / 2.0); // cotangent
|
2008-04-30 15:41:54 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
projection_matrix_[0] = f / aspect;
|
|
|
|
|
projection_matrix_[5] = f;
|
|
|
|
|
projection_matrix_[10] = (zNear + zFar) / (zNear - zFar);
|
|
|
|
|
projection_matrix_[11] = (2.0 * zNear * zFar) / (zNear - zFar);
|
|
|
|
|
projection_matrix_[14] = -1.0;
|
|
|
|
|
projection_matrix_[15] = 0;
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
NodePerspectiveCamera::NodePerspectiveCamera(
|
|
|
|
|
double left, double right, double bottom, double top, double zNear, double zFar)
|
|
|
|
|
: NodeCamera(NodeCamera::PERSPECTIVE)
|
|
|
|
|
{
|
|
|
|
|
loadIdentity(projection_matrix_);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
projection_matrix_[0] = (2.0 * zNear) / (right - left);
|
|
|
|
|
projection_matrix_[2] = (right + left) / (right - left);
|
|
|
|
|
projection_matrix_[5] = (2.0 * zNear) / (top - bottom);
|
|
|
|
|
projection_matrix_[6] = (top + bottom) / (top - bottom);
|
|
|
|
|
projection_matrix_[10] = -(zFar + zNear) / (zFar - zNear);
|
|
|
|
|
projection_matrix_[11] = -(2.0 * zFar * zNear) / (zFar - zNear);
|
|
|
|
|
projection_matrix_[14] = -1.0;
|
|
|
|
|
projection_matrix_[15] = 0;
|
2008-04-30 15:41:54 +00:00
|
|
|
}
|
2013-04-09 00:46:49 +00:00
|
|
|
|
|
|
|
|
} /* namespace Freestyle */
|