From 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 27 Jun 2017 06:07:23 +0000 Subject: webkitgtk-2.16.5 --- Source/WebCore/dom/DeviceMotionEvent.cpp | 67 +++++++++++++++++++++++++++++--- 1 file changed, 62 insertions(+), 5 deletions(-) (limited to 'Source/WebCore/dom/DeviceMotionEvent.cpp') diff --git a/Source/WebCore/dom/DeviceMotionEvent.cpp b/Source/WebCore/dom/DeviceMotionEvent.cpp index e0b49a8c3..d6c858ac8 100644 --- a/Source/WebCore/dom/DeviceMotionEvent.cpp +++ b/Source/WebCore/dom/DeviceMotionEvent.cpp @@ -10,10 +10,10 @@ * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY + * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR @@ -27,7 +27,6 @@ #include "DeviceMotionEvent.h" #include "DeviceMotionData.h" -#include "EventNames.h" namespace WebCore { @@ -46,13 +45,71 @@ DeviceMotionEvent::DeviceMotionEvent(const AtomicString& eventType, DeviceMotion { } -void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData) +static std::optional convert(const DeviceMotionData::Acceleration* acceleration) +{ + if (!acceleration) + return std::nullopt; + + return DeviceMotionEvent::Acceleration { acceleration->x(), acceleration->y(), acceleration->z() }; +} + +static std::optional convert(const DeviceMotionData::RotationRate* rotationRate) +{ + if (!rotationRate) + return std::nullopt; + + return DeviceMotionEvent::RotationRate { rotationRate->alpha(), rotationRate->beta(), rotationRate->gamma() }; +} + +static RefPtr convert(std::optional&& acceleration) +{ + if (!acceleration) + return nullptr; + + if (!acceleration->x && !acceleration->y && !acceleration->z) + return nullptr; + + return DeviceMotionData::Acceleration::create(acceleration->x, acceleration->y, acceleration->z); +} + +static RefPtr convert(std::optional&& rotationRate) +{ + if (!rotationRate) + return nullptr; + + if (!rotationRate->alpha && !rotationRate->beta && !rotationRate->gamma) + return nullptr; + + return DeviceMotionData::RotationRate::create(rotationRate->alpha, rotationRate->beta, rotationRate->gamma); +} + +std::optional DeviceMotionEvent::acceleration() const +{ + return convert(m_deviceMotionData->acceleration()); +} + +std::optional DeviceMotionEvent::accelerationIncludingGravity() const +{ + return convert(m_deviceMotionData->accelerationIncludingGravity()); +} + +std::optional DeviceMotionEvent::rotationRate() const +{ + return convert(m_deviceMotionData->rotationRate()); +} + +std::optional DeviceMotionEvent::interval() const +{ + return m_deviceMotionData->interval(); +} + +void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, std::optional&& acceleration, std::optional&& accelerationIncludingGravity, std::optional&& rotationRate, std::optional interval) { if (dispatched()) return; initEvent(type, bubbles, cancelable); - m_deviceMotionData = deviceMotionData; + m_deviceMotionData = DeviceMotionData::create(convert(WTFMove(acceleration)), convert(WTFMove(accelerationIncludingGravity)), convert(WTFMove(rotationRate)), interval); } EventInterface DeviceMotionEvent::eventInterface() const -- cgit v1.2.1