2014-08-31 22:38:00 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 sts=2 et sw=2 tw=80: */
|
|
|
|
/* Copyright 2014 Mozilla Foundation and Mozilla contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GECKO_TOUCH_INPUT_DISPATCHER_h
|
|
|
|
#define GECKO_TOUCH_INPUT_DISPATCHER_h
|
|
|
|
|
|
|
|
#include "InputData.h"
|
|
|
|
#include "Units.h"
|
|
|
|
#include "mozilla/Mutex.h"
|
|
|
|
#include <vector>
|
2014-12-18 16:30:06 +00:00
|
|
|
#include "nsRefPtr.h"
|
2014-08-31 22:38:00 +00:00
|
|
|
|
|
|
|
class nsIWidget;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2014-12-18 16:30:06 +00:00
|
|
|
namespace layers {
|
|
|
|
class CompositorVsyncObserver;
|
|
|
|
}
|
|
|
|
|
2014-08-31 22:38:00 +00:00
|
|
|
// Used to resample touch events whenever a vsync event occurs. It batches
|
|
|
|
// touch moves and on every vsync, resamples the touch position to create smooth
|
|
|
|
// scrolls. We use the Android touch resample algorithm. It uses a combination of
|
|
|
|
// extrapolation and interpolation. The algorithm takes the vsync time and
|
|
|
|
// subtracts mVsyncAdjust time in ms and creates a sample time. All touch events are
|
|
|
|
// relative to this sample time. If the last touch event occurs AFTER this
|
|
|
|
// sample time, interpolate the last two touch events. If the last touch event occurs BEFORE
|
|
|
|
// this sample time, we extrapolate the last two touch events to the sample
|
|
|
|
// time. The magic numbers defined as constants are taken from android
|
|
|
|
// InputTransport.cpp.
|
|
|
|
class GeckoTouchDispatcher
|
|
|
|
{
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(GeckoTouchDispatcher)
|
|
|
|
|
|
|
|
public:
|
2015-02-24 20:52:16 +00:00
|
|
|
static GeckoTouchDispatcher* GetInstance();
|
2014-10-29 20:37:06 +00:00
|
|
|
void NotifyTouch(MultiTouchInput& aTouch, TimeStamp aEventTime);
|
2015-02-10 13:24:23 +00:00
|
|
|
void DispatchTouchEvent(MultiTouchInput aMultiTouch);
|
2014-10-29 20:37:06 +00:00
|
|
|
void DispatchTouchMoveEvents(TimeStamp aVsyncTime);
|
2015-02-24 20:52:16 +00:00
|
|
|
bool NotifyVsync(TimeStamp aVsyncTimestamp);
|
|
|
|
void SetCompositorVsyncObserver(layers::CompositorVsyncObserver* aObserver);
|
2014-08-31 22:38:00 +00:00
|
|
|
|
|
|
|
private:
|
2015-02-24 20:52:16 +00:00
|
|
|
GeckoTouchDispatcher();
|
2014-10-29 20:37:06 +00:00
|
|
|
void ResampleTouchMoves(MultiTouchInput& aOutTouch, TimeStamp vsyncTime);
|
2014-08-31 22:38:00 +00:00
|
|
|
void SendTouchEvent(MultiTouchInput& aData);
|
|
|
|
void DispatchMouseEvent(MultiTouchInput& aMultiTouch,
|
|
|
|
bool aForwardToChildren);
|
|
|
|
|
|
|
|
// mTouchQueueLock are used to protect the vector below
|
|
|
|
// as it is accessed on the vsync thread and main thread
|
|
|
|
Mutex mTouchQueueLock;
|
|
|
|
std::vector<MultiTouchInput> mTouchMoveEvents;
|
|
|
|
|
|
|
|
bool mResamplingEnabled;
|
|
|
|
bool mTouchEventsFiltered;
|
|
|
|
bool mEnabledUniformityInfo;
|
|
|
|
|
|
|
|
// All times below are in nanoseconds
|
2014-10-29 20:37:06 +00:00
|
|
|
TimeDuration mVsyncAdjust; // Time from vsync we create sample times from
|
|
|
|
TimeDuration mMaxPredict; // How far into the future we're allowed to extrapolate
|
2014-08-31 22:38:00 +00:00
|
|
|
|
|
|
|
// Amount of time between vsync and the last event that is required before we
|
|
|
|
// resample
|
2014-10-29 20:37:06 +00:00
|
|
|
TimeDuration mMinResampleTime;
|
2014-08-31 22:38:00 +00:00
|
|
|
|
2014-10-16 12:02:00 +00:00
|
|
|
// Threshold if a vsync event runs too far behind touch events
|
2014-10-29 20:37:06 +00:00
|
|
|
TimeDuration mDelayedVsyncThreshold;
|
2014-11-11 14:39:00 +00:00
|
|
|
|
|
|
|
// How far ahead can vsync events get ahead of touch events.
|
|
|
|
TimeDuration mOldTouchThreshold;
|
2014-12-18 16:30:06 +00:00
|
|
|
|
|
|
|
nsRefPtr<layers::CompositorVsyncObserver> mCompositorVsyncObserver;
|
2014-08-31 22:38:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // GECKO_TOUCH_INPUT_DISPATCHER_h
|