2018-08-11 06:40:44 +02:00
|
|
|
/**************************************************************************/
|
|
|
|
/* transform_2d.cpp */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
#include "transform_2d.h"
|
|
|
|
|
2022-02-04 13:28:02 +01:00
|
|
|
#include "core/string/ustring.h"
|
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
void Transform2D::invert() {
|
|
|
|
// FIXME: this function assumes the basis is a rotation matrix, with no scaling.
|
|
|
|
// Transform2D::affine_inverse can handle matrices with scaling, so GDScript should eventually use that.
|
2022-04-24 23:59:24 +02:00
|
|
|
SWAP(columns[0][1], columns[1][0]);
|
|
|
|
columns[2] = basis_xform(-columns[2]);
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Transform2D Transform2D::inverse() const {
|
|
|
|
Transform2D inv = *this;
|
|
|
|
inv.invert();
|
|
|
|
return inv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Transform2D::affine_invert() {
|
2023-04-21 08:21:59 +02:00
|
|
|
real_t det = determinant();
|
2018-08-11 06:40:44 +02:00
|
|
|
#ifdef MATH_CHECKS
|
|
|
|
ERR_FAIL_COND(det == 0);
|
|
|
|
#endif
|
2022-02-06 12:14:58 +01:00
|
|
|
real_t idet = 1.0f / det;
|
2018-08-11 06:40:44 +02:00
|
|
|
|
2022-04-24 23:59:24 +02:00
|
|
|
SWAP(columns[0][0], columns[1][1]);
|
|
|
|
columns[0] *= Vector2(idet, -idet);
|
|
|
|
columns[1] *= Vector2(-idet, idet);
|
2018-08-11 06:40:44 +02:00
|
|
|
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[2] = basis_xform(-columns[2]);
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Transform2D Transform2D::affine_inverse() const {
|
|
|
|
Transform2D inv = *this;
|
|
|
|
inv.affine_invert();
|
|
|
|
return inv;
|
|
|
|
}
|
|
|
|
|
2022-05-05 13:25:04 +02:00
|
|
|
void Transform2D::rotate(const real_t p_angle) {
|
|
|
|
*this = Transform2D(p_angle, Vector2()) * (*this);
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2020-05-01 18:38:04 +02:00
|
|
|
real_t Transform2D::get_skew() const {
|
2023-04-21 08:21:59 +02:00
|
|
|
real_t det = determinant();
|
2022-04-24 23:59:24 +02:00
|
|
|
return Math::acos(columns[0].normalized().dot(SIGN(det) * columns[1].normalized())) - (real_t)Math_PI * 0.5f;
|
2020-05-01 18:38:04 +02:00
|
|
|
}
|
|
|
|
|
2021-09-02 11:36:19 +02:00
|
|
|
void Transform2D::set_skew(const real_t p_angle) {
|
2023-04-21 08:21:59 +02:00
|
|
|
real_t det = determinant();
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[1] = SIGN(det) * columns[0].rotated(((real_t)Math_PI * 0.5f + p_angle)).normalized() * columns[1].length();
|
2020-05-01 18:38:04 +02:00
|
|
|
}
|
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
real_t Transform2D::get_rotation() const {
|
2022-04-24 23:59:24 +02:00
|
|
|
return Math::atan2(columns[0].y, columns[0].x);
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2021-09-02 11:36:19 +02:00
|
|
|
void Transform2D::set_rotation(const real_t p_rot) {
|
2019-02-12 18:55:46 +01:00
|
|
|
Size2 scale = get_scale();
|
2018-08-11 06:40:44 +02:00
|
|
|
real_t cr = Math::cos(p_rot);
|
|
|
|
real_t sr = Math::sin(p_rot);
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0][0] = cr;
|
|
|
|
columns[0][1] = sr;
|
|
|
|
columns[1][0] = -sr;
|
|
|
|
columns[1][1] = cr;
|
2019-02-12 18:55:46 +01:00
|
|
|
set_scale(scale);
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2021-09-02 11:36:19 +02:00
|
|
|
Transform2D::Transform2D(const real_t p_rot, const Vector2 &p_pos) {
|
2018-08-11 06:40:44 +02:00
|
|
|
real_t cr = Math::cos(p_rot);
|
|
|
|
real_t sr = Math::sin(p_rot);
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0][0] = cr;
|
|
|
|
columns[0][1] = sr;
|
|
|
|
columns[1][0] = -sr;
|
|
|
|
columns[1][1] = cr;
|
|
|
|
columns[2] = p_pos;
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2021-09-02 11:36:19 +02:00
|
|
|
Transform2D::Transform2D(const real_t p_rot, const Size2 &p_scale, const real_t p_skew, const Vector2 &p_pos) {
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0][0] = Math::cos(p_rot) * p_scale.x;
|
|
|
|
columns[1][1] = Math::cos(p_rot + p_skew) * p_scale.y;
|
|
|
|
columns[1][0] = -Math::sin(p_rot + p_skew) * p_scale.y;
|
|
|
|
columns[0][1] = Math::sin(p_rot) * p_scale.x;
|
|
|
|
columns[2] = p_pos;
|
2021-09-02 11:36:19 +02:00
|
|
|
}
|
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
Size2 Transform2D::get_scale() const {
|
2023-04-21 08:21:59 +02:00
|
|
|
real_t det_sign = SIGN(determinant());
|
2022-04-24 23:59:24 +02:00
|
|
|
return Size2(columns[0].length(), det_sign * columns[1].length());
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2019-04-19 20:54:33 +02:00
|
|
|
void Transform2D::set_scale(const Size2 &p_scale) {
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0].normalize();
|
|
|
|
columns[1].normalize();
|
|
|
|
columns[0] *= p_scale.x;
|
|
|
|
columns[1] *= p_scale.y;
|
2019-02-12 18:55:46 +01:00
|
|
|
}
|
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
void Transform2D::scale(const Size2 &p_scale) {
|
|
|
|
scale_basis(p_scale);
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[2] *= p_scale;
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
void Transform2D::scale_basis(const Size2 &p_scale) {
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0][0] *= p_scale.x;
|
|
|
|
columns[0][1] *= p_scale.y;
|
|
|
|
columns[1][0] *= p_scale.x;
|
|
|
|
columns[1][1] *= p_scale.y;
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2022-07-16 11:47:54 +02:00
|
|
|
void Transform2D::translate_local(const real_t p_tx, const real_t p_ty) {
|
|
|
|
translate_local(Vector2(p_tx, p_ty));
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2022-07-16 11:47:54 +02:00
|
|
|
void Transform2D::translate_local(const Vector2 &p_translation) {
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[2] += basis_xform(p_translation);
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Transform2D::orthonormalize() {
|
|
|
|
// Gram-Schmidt Process
|
|
|
|
|
2022-04-24 23:59:24 +02:00
|
|
|
Vector2 x = columns[0];
|
|
|
|
Vector2 y = columns[1];
|
2018-08-11 06:40:44 +02:00
|
|
|
|
|
|
|
x.normalize();
|
2023-02-01 10:49:05 +01:00
|
|
|
y = y - x * x.dot(y);
|
2018-08-11 06:40:44 +02:00
|
|
|
y.normalize();
|
|
|
|
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0] = x;
|
|
|
|
columns[1] = y;
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
2019-10-14 22:33:45 +02:00
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
Transform2D Transform2D::orthonormalized() const {
|
2023-02-01 10:49:05 +01:00
|
|
|
Transform2D ortho = *this;
|
|
|
|
ortho.orthonormalize();
|
|
|
|
return ortho;
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2023-09-07 16:43:22 +02:00
|
|
|
bool Transform2D::is_conformal() const {
|
|
|
|
// Non-flipped case.
|
|
|
|
if (Math::is_equal_approx(columns[0][0], columns[1][1]) && Math::is_equal_approx(columns[0][1], -columns[1][0])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Flipped case.
|
|
|
|
if (Math::is_equal_approx(columns[0][0], -columns[1][1]) && Math::is_equal_approx(columns[0][1], columns[1][0])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-14 22:33:45 +02:00
|
|
|
bool Transform2D::is_equal_approx(const Transform2D &p_transform) const {
|
2022-04-24 23:59:24 +02:00
|
|
|
return columns[0].is_equal_approx(p_transform.columns[0]) && columns[1].is_equal_approx(p_transform.columns[1]) && columns[2].is_equal_approx(p_transform.columns[2]);
|
2019-10-14 22:33:45 +02:00
|
|
|
}
|
|
|
|
|
2022-08-11 10:12:27 +02:00
|
|
|
bool Transform2D::is_finite() const {
|
|
|
|
return columns[0].is_finite() && columns[1].is_finite() && columns[2].is_finite();
|
|
|
|
}
|
|
|
|
|
New and improved IK system for Skeleton2D
This PR and commit adds a new IK system for 2D with the Skeleton2D node
that adds several new IK solvers, a way to control bones in a Skeleton2D
node similar to that in Skeleton3D. It also adds additional changes
and functionality.
This work was sponsored by GSoC 2020 and TwistedTwigleg.
Full list of changes:
* Adds a SkeletonModifier2D resource
* This resource is the base where all IK code is written and executed
* Has a function for clamping angles, since it is so commonly used
* Modifiers are unique when duplicated so it works with instancing
* Adds a SkeletonModifierStack2D resource
* This resource manages a series of SkeletonModification2Ds
* This is what the Skeleton2D directly interfaces with to make IK possible
* Adds SkeletonModifier2D resources for LookAt, CCDIK, FABRIK, Jiggle, and TwoBoneIK
* Each modification is in its own file
* There is also a SkeletonModifier2D resource that acts as a stack for using multiple stacks together
* Adds a PhysicalBone2D node
* Works similar to the PhysicalBone3D node, but uses a RigidBody2D node
* Changes to Skeleton2D listed below:
* Skeleton2D now holds a single SkeletonModificationStack2D for IK
* Skeleton2D now has a local_pose_override, which overrides the Bone2D position similar to how the overrides work in Skeleton3D
* Changes to Bone2D listed below:
* The default_length property has been changed to length. Length is the length of the bone to its child bone node
* New bone_angle property, which is the angle the bone has to its first child bone node
* Bone2D caches its transform when not modified by IK for IK interpolation purposes
* Bone2D draws its own editor gizmo, though this is stated to change in the future
* Changes to CanvasItemEditor listed below:
* Bone2D gizmo drawing code removed
* The 2D IK code is removed. Now Bone2D is the only bone system for 2D
* Transform2D now has a looking_at function for rotating to face a position
* Two new node notifications: NOTIFICATION_EDITOR_PRE_SAVE and NOTIFICATION_EDITOR_POST_SAVE
* These notifications only are called in the editor right before and after saving a scene
* Needed for not saving the IK position when executing IK in the editor
* Documentation for all the changes listed above.
2020-08-03 20:02:24 +02:00
|
|
|
Transform2D Transform2D::looking_at(const Vector2 &p_target) const {
|
|
|
|
Transform2D return_trans = Transform2D(get_rotation(), get_origin());
|
|
|
|
Vector2 target_position = affine_inverse().xform(p_target);
|
|
|
|
return_trans.set_rotation(return_trans.get_rotation() + (target_position * get_scale()).angle());
|
|
|
|
return return_trans;
|
|
|
|
}
|
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
bool Transform2D::operator==(const Transform2D &p_transform) const {
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2022-04-24 23:59:24 +02:00
|
|
|
if (columns[i] != p_transform.columns[i]) {
|
2018-08-11 06:40:44 +02:00
|
|
|
return false;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Transform2D::operator!=(const Transform2D &p_transform) const {
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2022-04-24 23:59:24 +02:00
|
|
|
if (columns[i] != p_transform.columns[i]) {
|
2018-08-11 06:40:44 +02:00
|
|
|
return true;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Transform2D::operator*=(const Transform2D &p_transform) {
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[2] = xform(p_transform.columns[2]);
|
2018-08-11 06:40:44 +02:00
|
|
|
|
|
|
|
real_t x0, x1, y0, y1;
|
|
|
|
|
2022-04-24 23:59:24 +02:00
|
|
|
x0 = tdotx(p_transform.columns[0]);
|
|
|
|
x1 = tdoty(p_transform.columns[0]);
|
|
|
|
y0 = tdotx(p_transform.columns[1]);
|
|
|
|
y1 = tdoty(p_transform.columns[1]);
|
2018-08-11 06:40:44 +02:00
|
|
|
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0][0] = x0;
|
|
|
|
columns[0][1] = x1;
|
|
|
|
columns[1][0] = y0;
|
|
|
|
columns[1][1] = y1;
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Transform2D Transform2D::operator*(const Transform2D &p_transform) const {
|
|
|
|
Transform2D t = *this;
|
|
|
|
t *= p_transform;
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2022-07-30 12:17:33 +02:00
|
|
|
Transform2D Transform2D::scaled(const Size2 &p_scale) const {
|
|
|
|
// Equivalent to left multiplication
|
2018-08-11 06:40:44 +02:00
|
|
|
Transform2D copy = *this;
|
2022-07-30 12:17:33 +02:00
|
|
|
copy.scale(p_scale);
|
2018-08-11 06:40:44 +02:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2022-07-30 12:17:33 +02:00
|
|
|
Transform2D Transform2D::scaled_local(const Size2 &p_scale) const {
|
|
|
|
// Equivalent to right multiplication
|
|
|
|
return Transform2D(columns[0] * p_scale.x, columns[1] * p_scale.y, columns[2]);
|
|
|
|
}
|
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
Transform2D Transform2D::untranslated() const {
|
|
|
|
Transform2D copy = *this;
|
2022-04-24 23:59:24 +02:00
|
|
|
copy.columns[2] = Vector2();
|
2018-08-11 06:40:44 +02:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2022-07-30 12:17:33 +02:00
|
|
|
Transform2D Transform2D::translated(const Vector2 &p_offset) const {
|
|
|
|
// Equivalent to left multiplication
|
|
|
|
return Transform2D(columns[0], columns[1], columns[2] + p_offset);
|
|
|
|
}
|
|
|
|
|
2022-07-16 11:47:54 +02:00
|
|
|
Transform2D Transform2D::translated_local(const Vector2 &p_offset) const {
|
2022-07-30 12:17:33 +02:00
|
|
|
// Equivalent to right multiplication
|
|
|
|
return Transform2D(columns[0], columns[1], columns[2] + basis_xform(p_offset));
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2022-05-05 13:25:04 +02:00
|
|
|
Transform2D Transform2D::rotated(const real_t p_angle) const {
|
2022-07-30 12:17:33 +02:00
|
|
|
// Equivalent to left multiplication
|
|
|
|
return Transform2D(p_angle, Vector2()) * (*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
Transform2D Transform2D::rotated_local(const real_t p_angle) const {
|
|
|
|
// Equivalent to right multiplication
|
|
|
|
return (*this) * Transform2D(p_angle, Vector2()); // Could be optimized, because origin transform can be skipped.
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2023-04-21 08:21:59 +02:00
|
|
|
real_t Transform2D::determinant() const {
|
2022-04-24 23:59:24 +02:00
|
|
|
return columns[0].x * columns[1].y - columns[0].y * columns[1].x;
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2023-01-29 00:27:32 +01:00
|
|
|
Transform2D Transform2D::interpolate_with(const Transform2D &p_transform, const real_t p_weight) const {
|
|
|
|
return Transform2D(
|
|
|
|
Math::lerp_angle(get_rotation(), p_transform.get_rotation(), p_weight),
|
|
|
|
get_scale().lerp(p_transform.get_scale(), p_weight),
|
|
|
|
Math::lerp_angle(get_skew(), p_transform.get_skew(), p_weight),
|
|
|
|
get_origin().lerp(p_transform.get_origin(), p_weight));
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|
|
|
|
|
2021-06-16 03:15:38 +02:00
|
|
|
void Transform2D::operator*=(const real_t p_val) {
|
2022-04-24 23:59:24 +02:00
|
|
|
columns[0] *= p_val;
|
|
|
|
columns[1] *= p_val;
|
|
|
|
columns[2] *= p_val;
|
2021-06-16 03:15:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Transform2D Transform2D::operator*(const real_t p_val) const {
|
|
|
|
Transform2D ret(*this);
|
|
|
|
ret *= p_val;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-08-11 06:40:44 +02:00
|
|
|
Transform2D::operator String() const {
|
2022-04-24 23:59:24 +02:00
|
|
|
return "[X: " + columns[0].operator String() +
|
|
|
|
", Y: " + columns[1].operator String() +
|
|
|
|
", O: " + columns[2].operator String() + "]";
|
2018-08-11 06:40:44 +02:00
|
|
|
}
|