mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibWeb: Add initial implementation of DOMMatrix(ReadOnly)
This is currently missing a lot of functions and initialisation from a <transform-list> string, but is enough for Ruffle.
This commit is contained in:
parent
e3a9ed0c26
commit
a90667e79c
9 changed files with 1075 additions and 0 deletions
269
Userland/Libraries/LibWeb/Geometry/DOMMatrix.cpp
Normal file
269
Userland/Libraries/LibWeb/Geometry/DOMMatrix.cpp
Normal file
|
@ -0,0 +1,269 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Luke Wilde <lukew@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/Bindings/Intrinsics.h>
|
||||
#include <LibWeb/Geometry/DOMMatrix.h>
|
||||
#include <LibWeb/WebIDL/ExceptionOr.h>
|
||||
|
||||
namespace Web::Geometry {
|
||||
|
||||
WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMMatrix>> DOMMatrix::construct_impl(JS::Realm& realm, Optional<Variant<String, Vector<double>>> const& init)
|
||||
{
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrix-dommatrix
|
||||
if (init.has_value()) {
|
||||
// -> Otherwise
|
||||
// Throw a TypeError exception.
|
||||
// The only condition where this can be met is with a sequence type which doesn't have exactly 6 or 16 elements.
|
||||
if (auto* double_sequence = init.value().get_pointer<Vector<double>>(); double_sequence && (double_sequence->size() != 6 && double_sequence->size() != 16))
|
||||
return WebIDL::SimpleException { WebIDL::SimpleExceptionType::TypeError, DeprecatedString::formatted("Sequence must contain exactly 6 or 16 elements, got {} element(s)", double_sequence->size()) };
|
||||
}
|
||||
|
||||
return realm.heap().allocate<DOMMatrix>(realm, realm, init).release_allocated_value_but_fixme_should_propagate_errors();
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#create-a-dommatrix-from-the-2d-dictionary
|
||||
WebIDL::ExceptionOr<JS::NonnullGCPtr<DOMMatrix>> DOMMatrix::create_from_dom_matrix_2d_init(JS::Realm& realm, DOMMatrix2DInit& init)
|
||||
{
|
||||
// 1. Validate and fixup (2D) other.
|
||||
TRY(validate_and_fixup_dom_matrix_2d_init(init));
|
||||
|
||||
// These should all have values after calling `validate_and_fixup_dom_matrix_2d_init`
|
||||
VERIFY(init.m11.has_value());
|
||||
VERIFY(init.m12.has_value());
|
||||
VERIFY(init.m21.has_value());
|
||||
VERIFY(init.m22.has_value());
|
||||
VERIFY(init.m41.has_value());
|
||||
VERIFY(init.m42.has_value());
|
||||
|
||||
// 2. Return the result of invoking create a 2d matrix of type DOMMatrixReadOnly or DOMMatrix as appropriate, with a sequence of numbers,
|
||||
// the values being the 6 elements m11, m12, m21, m22, m41 and m42 of other in the given order.
|
||||
return realm.heap().allocate<DOMMatrix>(realm, realm, init.m11.value(), init.m12.value(), init.m21.value(), init.m22.value(), init.m41.value(), init.m42.value()).release_allocated_value_but_fixme_should_propagate_errors();
|
||||
}
|
||||
|
||||
JS::NonnullGCPtr<DOMMatrix> DOMMatrix::create_from_dom_matrix_read_only(JS::Realm& realm, DOMMatrixReadOnly const& read_only_matrix)
|
||||
{
|
||||
return realm.heap().allocate<DOMMatrix>(realm, realm, read_only_matrix).release_allocated_value_but_fixme_should_propagate_errors();
|
||||
}
|
||||
|
||||
DOMMatrix::DOMMatrix(JS::Realm& realm, double m11, double m12, double m21, double m22, double m41, double m42)
|
||||
: DOMMatrixReadOnly(realm, m11, m12, m21, m22, m41, m42)
|
||||
{
|
||||
}
|
||||
|
||||
DOMMatrix::DOMMatrix(JS::Realm& realm, Optional<Variant<String, Vector<double>>> const& init)
|
||||
: DOMMatrixReadOnly(realm, init)
|
||||
{
|
||||
}
|
||||
|
||||
DOMMatrix::DOMMatrix(JS::Realm& realm, DOMMatrixReadOnly const& read_only_matrix)
|
||||
: DOMMatrixReadOnly(realm, read_only_matrix)
|
||||
{
|
||||
}
|
||||
|
||||
DOMMatrix::~DOMMatrix() = default;
|
||||
|
||||
JS::ThrowCompletionOr<void> DOMMatrix::initialize(JS::Realm& realm)
|
||||
{
|
||||
MUST_OR_THROW_OOM(Base::initialize(realm));
|
||||
set_prototype(&Bindings::ensure_web_prototype<Bindings::DOMMatrixPrototype>(realm, "DOMMatrix"));
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m11
|
||||
void DOMMatrix::set_m11(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m11 or the a attribute must set the m11 element to the new value.
|
||||
m_matrix.elements()[0][0] = value;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m12
|
||||
void DOMMatrix::set_m12(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m12 or the b attribute must set the m12 element to the new value.
|
||||
m_matrix.elements()[0][1] = value;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m13
|
||||
void DOMMatrix::set_m13(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m13 attribute must set the m13 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[0][2] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m14
|
||||
void DOMMatrix::set_m14(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m14 attribute must set the m14 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[0][3] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m21
|
||||
void DOMMatrix::set_m21(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m21 or the c attribute must set the m21 element to the new value.
|
||||
m_matrix.elements()[1][0] = value;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m22
|
||||
void DOMMatrix::set_m22(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m22 or the d attribute must set the m22 element to the new value.
|
||||
m_matrix.elements()[1][1] = value;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m23
|
||||
void DOMMatrix::set_m23(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m23 attribute must set the m23 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[1][2] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m24
|
||||
void DOMMatrix::set_m24(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m24 attribute must set the m24 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[1][3] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m31
|
||||
void DOMMatrix::set_m31(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m31 attribute must set the m31 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[2][0] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m32
|
||||
void DOMMatrix::set_m32(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m32 attribute must set the m32 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[2][1] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m33
|
||||
void DOMMatrix::set_m33(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m33 attribute must set the m33 element to the new value and, if the new value is not 1, set is 2D to false.
|
||||
m_matrix.elements()[2][2] = value;
|
||||
if (value != 1.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m34
|
||||
void DOMMatrix::set_m34(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m34 attribute must set the m34 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[2][3] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m41
|
||||
void DOMMatrix::set_m41(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m41 or the e attribute must set the m41 element to the new value.
|
||||
m_matrix.elements()[3][0] = value;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m42
|
||||
void DOMMatrix::set_m42(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m42 or the f attribute must set the m42 element to the new value.
|
||||
m_matrix.elements()[3][1] = value;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m43
|
||||
void DOMMatrix::set_m43(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m43 attribute must set the m43 element to the new value and, if the new value is not 0 or -0, set is 2D to false.
|
||||
m_matrix.elements()[3][2] = value;
|
||||
if (value != 0.0 && value != -0.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-m44
|
||||
void DOMMatrix::set_m44(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m44 attribute must set the m44 element to the new value and, if the new value is not 1, set is 2D to false.
|
||||
m_matrix.elements()[3][3] = value;
|
||||
if (value != 1.0)
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-a
|
||||
void DOMMatrix::set_a(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m11 or the a attribute must set the m11 element to the new value.
|
||||
set_m11(value);
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-b
|
||||
void DOMMatrix::set_b(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m12 or the b attribute must set the m12 element to the new value.
|
||||
set_m12(value);
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-c
|
||||
void DOMMatrix::set_c(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m21 or the c attribute must set the m21 element to the new value.
|
||||
set_m21(value);
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-d
|
||||
void DOMMatrix::set_d(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m22 or the d attribute must set the m22 element to the new value.
|
||||
set_m22(value);
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-e
|
||||
void DOMMatrix::set_e(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m41 or the e attribute must set the m41 element to the new value.
|
||||
set_m41(value);
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrixreadonly-f
|
||||
void DOMMatrix::set_f(double value)
|
||||
{
|
||||
// For the DOMMatrix interface, setting the m42 or the f attribute must set the m42 element to the new value.
|
||||
set_m42(value);
|
||||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#dom-dommatrix-invertself
|
||||
JS::NonnullGCPtr<DOMMatrix> DOMMatrix::invert_self()
|
||||
{
|
||||
// 1. Invert the current matrix.
|
||||
m_matrix = m_matrix.inverse();
|
||||
|
||||
// 2. If the current matrix is not invertible set all attributes to NaN and set is 2D to false.
|
||||
if (!m_matrix.is_invertible()) {
|
||||
for (u8 i = 0; i < 4; i++) {
|
||||
for (u8 j = 0; j < 4; j++)
|
||||
m_matrix.elements()[i][j] = NAN;
|
||||
}
|
||||
m_is_2d = false;
|
||||
}
|
||||
|
||||
// 3. Return the current matrix.
|
||||
return *this;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue