mouse_tracker.dart 16.6 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
import 'dart:collection' show LinkedHashMap;
6 7
import 'dart:ui';

8
import 'package:flutter/foundation.dart';
9
import 'package:flutter/gestures.dart';
10
import 'package:flutter/services.dart';
11

12 13
import 'package:vector_math/vector_math_64.dart' show Matrix4;

14 15
import 'object.dart';

16 17 18
export 'package:flutter/services.dart' show
  MouseCursor,
  SystemMouseCursors;
19

20
/// Signature for searching for [MouseTrackerAnnotation]s at the given offset.
21
///
22
/// It is used by the [MouseTracker] to fetch annotations for the mouse
23
/// position.
24
typedef MouseDetectorAnnotationFinder = HitTestResult Function(Offset offset);
25

26
// Various states of a connected mouse device used by [MouseTracker].
27 28
class _MouseState {
  _MouseState({
29
    required PointerEvent initialEvent,
30 31
  }) : assert(initialEvent != null),
       _latestEvent = initialEvent;
32

33
  // The list of annotations that contains this device.
34
  //
35 36 37
  // It uses [LinkedHashMap] to keep the insertion order.
  LinkedHashMap<MouseTrackerAnnotation, Matrix4> get annotations => _annotations;
  LinkedHashMap<MouseTrackerAnnotation, Matrix4> _annotations = LinkedHashMap<MouseTrackerAnnotation, Matrix4>();
38

39
  LinkedHashMap<MouseTrackerAnnotation, Matrix4> replaceAnnotations(LinkedHashMap<MouseTrackerAnnotation, Matrix4> value) {
40
    assert(value != null);
41
    final LinkedHashMap<MouseTrackerAnnotation, Matrix4> previous = _annotations;
42 43 44 45 46 47 48
    _annotations = value;
    return previous;
  }

  // The most recently processed mouse event observed from this device.
  PointerEvent get latestEvent => _latestEvent;
  PointerEvent _latestEvent;
49 50

  PointerEvent replaceLatestEvent(PointerEvent value) {
51
    assert(value != null);
52 53
    assert(value.device == _latestEvent.device);
    final PointerEvent previous = _latestEvent;
54
    _latestEvent = value;
55
    return previous;
56 57
  }

58
  int get device => latestEvent.device;
59 60 61

  @override
  String toString() {
62
    final String describeLatestEvent = 'latestEvent: ${describeIdentity(latestEvent)}';
63 64
    final String describeAnnotations = 'annotations: [list of ${annotations.length}]';
    return '${describeIdentity(this)}($describeLatestEvent, $describeAnnotations)';
65 66 67
  }
}

68 69 70 71 72 73
// The information in `MouseTracker._handleDeviceUpdate` to provide the details
// of an update of a mouse device.
//
// This class contains the information needed to handle the update that might
// change the state of a mouse device, or the [MouseTrackerAnnotation]s that
// the mouse device is hovering.
74
@immutable
75
class _MouseTrackerUpdateDetails with Diagnosticable {
76 77 78
  /// When device update is triggered by a new frame.
  ///
  /// All parameters are required.
79
  const _MouseTrackerUpdateDetails.byNewFrame({
80 81
    required this.lastAnnotations,
    required this.nextAnnotations,
82
    required PointerEvent this.previousEvent,
83 84 85 86 87 88 89 90 91
  }) : assert(previousEvent != null),
       assert(lastAnnotations != null),
       assert(nextAnnotations != null),
       triggeringEvent = null;

  /// When device update is triggered by a pointer event.
  ///
  /// The [lastAnnotations], [nextAnnotations], and [triggeringEvent] are
  /// required.
92
  const _MouseTrackerUpdateDetails.byPointerEvent({
93 94
    required this.lastAnnotations,
    required this.nextAnnotations,
95
    this.previousEvent,
96
    required PointerEvent this.triggeringEvent,
97 98 99 100 101 102 103
  }) : assert(triggeringEvent != null),
       assert(lastAnnotations != null),
       assert(nextAnnotations != null);

  /// The annotations that the device is hovering before the update.
  ///
  /// It is never null.
104
  final LinkedHashMap<MouseTrackerAnnotation, Matrix4> lastAnnotations;
105 106 107 108

  /// The annotations that the device is hovering after the update.
  ///
  /// It is never null.
109
  final LinkedHashMap<MouseTrackerAnnotation, Matrix4> nextAnnotations;
110 111 112 113 114 115 116 117 118

  /// The last event that the device observed before the update.
  ///
  /// If the update is triggered by a frame, the [previousEvent] is never null,
  /// since the pointer must have been added before.
  ///
  /// If the update is triggered by a pointer event, the [previousEvent] is not
  /// null except for cases where the event is the first event observed by the
  /// pointer (which is not necessarily a [PointerAddedEvent]).
119
  final PointerEvent? previousEvent;
120 121 122 123

  /// The event that triggered this update.
  ///
  /// It is non-null if and only if the update is triggered by a pointer event.
124
  final PointerEvent? triggeringEvent;
125 126 127

  /// The pointing device of this update.
  int get device {
128
    final int result = (previousEvent ?? triggeringEvent)!.device;
129 130 131 132 133 134 135 136
    assert(result != null);
    return result;
  }

  /// The last event that the device observed after the update.
  ///
  /// The [latestEvent] is never null.
  PointerEvent get latestEvent {
137
    final PointerEvent result = triggeringEvent ?? previousEvent!;
138 139 140 141 142 143 144 145 146 147
    assert(result != null);
    return result;
  }

  @override
  void debugFillProperties(DiagnosticPropertiesBuilder properties) {
    super.debugFillProperties(properties);
    properties.add(IntProperty('device', device));
    properties.add(DiagnosticsProperty<PointerEvent>('previousEvent', previousEvent));
    properties.add(DiagnosticsProperty<PointerEvent>('triggeringEvent', triggeringEvent));
148 149
    properties.add(DiagnosticsProperty<Map<MouseTrackerAnnotation, Matrix4>>('lastAnnotations', lastAnnotations));
    properties.add(DiagnosticsProperty<Map<MouseTrackerAnnotation, Matrix4>>('nextAnnotations', nextAnnotations));
150 151 152
  }
}

153 154
/// Tracks the relationship between mouse devices and annotations, and
/// triggers mouse events and cursor changes accordingly.
155
///
156 157 158 159
/// The [MouseTracker] tracks the relationship between mouse devices and
/// [MouseTrackerAnnotation], notified by [updateWithEvent] and
/// [updateAllDevices]. At every update, [MouseTracker] triggers the following
/// changes if applicable:
160
///
161 162 163
///  * Dispatches mouse-related pointer events (pointer enter, hover, and exit).
///  * Changes mouse cursors.
///  * Notifies when [mouseIsConnected] changes.
164
///
165 166 167
/// This class is a [ChangeNotifier] that notifies its listeners if the value of
/// [mouseIsConnected] changes.
///
168 169 170 171
/// An instance of [MouseTracker] is owned by the global singleton
/// [RendererBinding].
class MouseTracker extends ChangeNotifier {
  final MouseCursorManager _mouseCursorMixin = MouseCursorManager(
172
    SystemMouseCursors.basic,
173
  );
174

175 176
  // Tracks the state of connected mouse devices.
  //
177
  // It is the source of truth for the list of connected mouse devices, and
178 179 180 181
  // consists of two parts:
  //
  //  * The mouse devices that are connected.
  //  * In which annotations each device is contained.
182 183
  final Map<int, _MouseState> _mouseStates = <int, _MouseState>{};

184 185 186 187 188 189 190 191 192 193 194 195
  // Used to wrap any procedure that might change `mouseIsConnected`.
  //
  // This method records `mouseIsConnected`, runs `task`, and calls
  // [notifyListeners] at the end if the `mouseIsConnected` has changed.
  void _monitorMouseConnection(VoidCallback task) {
    final bool mouseWasConnected = mouseIsConnected;
    task();
    if (mouseWasConnected != mouseIsConnected)
      notifyListeners();
  }

  bool _debugDuringDeviceUpdate = false;
196
  // Used to wrap any procedure that might call `_handleDeviceUpdate`.
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  //
  // In debug mode, this method uses `_debugDuringDeviceUpdate` to prevent
  // `_deviceUpdatePhase` being recursively called.
  void _deviceUpdatePhase(VoidCallback task) {
    assert(!_debugDuringDeviceUpdate);
    assert(() {
      _debugDuringDeviceUpdate = true;
      return true;
    }());
    task();
    assert(() {
      _debugDuringDeviceUpdate = false;
      return true;
    }());
  }

213
  // Whether an observed event might update a device.
214
  static bool _shouldMarkStateDirty(_MouseState? state, PointerEvent event) {
215 216
    if (state == null)
      return true;
217
    assert(event != null);
218
    final PointerEvent lastEvent = state.latestEvent;
219
    assert(event.device == lastEvent.device);
220 221
    // An Added can only follow a Removed, and a Removed can only be followed
    // by an Added.
222
    assert((event is PointerAddedEvent) == (lastEvent is PointerRemovedEvent));
223 224

    // Ignore events that are unrelated to mouse tracking.
225
    if (event is PointerSignalEvent)
226 227
      return false;
    return lastEvent is PointerAddedEvent
228 229 230 231
      || event is PointerRemovedEvent
      || lastEvent.position != event.position;
  }

232 233 234 235 236 237
  LinkedHashMap<MouseTrackerAnnotation, Matrix4> _hitTestResultToAnnotations(HitTestResult result) {
    assert(result != null);
    final LinkedHashMap<MouseTrackerAnnotation, Matrix4> annotations = <MouseTrackerAnnotation, Matrix4>{}
        as LinkedHashMap<MouseTrackerAnnotation, Matrix4>;
    for (final HitTestEntry entry in result.path) {
      if (entry.target is MouseTrackerAnnotation) {
238
        annotations[entry.target as MouseTrackerAnnotation] = entry.transform!;
239 240 241 242 243
      }
    }
    return annotations;
  }

244 245
  // Find the annotations that is hovered by the device of the `state`, and
  // their respective global transform matrices.
246
  //
247
  // If the device is not connected or not a mouse, an empty map is returned
248 249 250 251
  // without calling `hitTest`.
  LinkedHashMap<MouseTrackerAnnotation, Matrix4> _findAnnotations(_MouseState state, MouseDetectorAnnotationFinder hitTest) {
    assert(state != null);
    assert(hitTest != null);
252 253
    final Offset globalPosition = state.latestEvent.position;
    final int device = state.device;
254 255
    if (!_mouseStates.containsKey(device))
      return <MouseTrackerAnnotation, Matrix4>{} as LinkedHashMap<MouseTrackerAnnotation, Matrix4>;
256 257

    return _hitTestResultToAnnotations(hitTest(globalPosition));
258 259
  }

260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
  // A callback that is called on the update of a device.
  //
  // An event (not necessarily a pointer event) that might change the
  // relationship between mouse devices and [MouseTrackerAnnotation]s is called
  // a _device update_. This method should be called at each such update.
  //
  // The update can be caused by two kinds of triggers:
  //
  //  * Triggered by the addition, movement, or removal of a pointer. Such calls
  //    occur during the handler of the event, indicated by
  //    `details.triggeringEvent` being non-null.
  //  * Triggered by the appearance, movement, or disappearance of an annotation.
  //    Such calls occur after each new frame, during the post-frame callbacks,
  //    indicated by `details.triggeringEvent` being null.
  //
  // Calls of this method must be wrapped in `_deviceUpdatePhase`.
  void _handleDeviceUpdate(_MouseTrackerUpdateDetails details) {
277
    assert(_debugDuringDeviceUpdate);
278 279 280 281
    _handleDeviceUpdateMouseEvents(details);
    _mouseCursorMixin.handleDeviceCursorUpdate(
      details.device,
      details.triggeringEvent,
282
      details.nextAnnotations.keys.map((MouseTrackerAnnotation annotation) => annotation.cursor),
283
    );
284 285
  }

286 287 288
  /// Whether or not at least one mouse is connected and has produced events.
  bool get mouseIsConnected => _mouseStates.isNotEmpty;

289 290 291
  /// Trigger a device update with a new event and its corresponding hit test
  /// result.
  ///
292 293 294 295 296 297 298 299
  /// The [updateWithEvent] indicates that an event has been observed, and is
  /// called during the handler of the event.  It is typically called by
  /// [RendererBinding], and should be called with all events received, and let
  /// [MouseTracker] filter which to react to.
  ///
  /// The `getResult` is a function to return the hit test result at the
  /// position of the event. It should not simply return cached hit test
  /// result, because the cache does not change throughout a tap sequence.
300
  void updateWithEvent(PointerEvent event, ValueGetter<HitTestResult> getResult) {
301 302 303
    if (event.kind != PointerDeviceKind.mouse)
      return;
    if (event is PointerSignalEvent)
304
      return;
305
    final HitTestResult result = event is PointerRemovedEvent ? HitTestResult() : getResult();
306
    final int device = event.device;
307
    final _MouseState? existingState = _mouseStates[device];
308 309
    if (!_shouldMarkStateDirty(existingState, event))
      return;
310

311 312 313 314 315 316
    _monitorMouseConnection(() {
      _deviceUpdatePhase(() {
        // Update mouseState to the latest devices that have not been removed,
        // so that [mouseIsConnected], which is decided by `_mouseStates`, is
        // correct during the callbacks.
        if (existingState == null) {
317
          assert(event is! PointerRemovedEvent);
318 319 320 321 322 323
          _mouseStates[device] = _MouseState(initialEvent: event);
        } else {
          assert(event is! PointerAddedEvent);
          if (event is PointerRemovedEvent)
            _mouseStates.remove(event.device);
        }
324
        final _MouseState targetState = _mouseStates[device] ?? existingState!;
325 326

        final PointerEvent lastEvent = targetState.replaceLatestEvent(event);
327 328 329
        final LinkedHashMap<MouseTrackerAnnotation, Matrix4> nextAnnotations = event is PointerRemovedEvent ?
            <MouseTrackerAnnotation, Matrix4>{} as LinkedHashMap<MouseTrackerAnnotation, Matrix4> :
            _hitTestResultToAnnotations(result);
330
        final LinkedHashMap<MouseTrackerAnnotation, Matrix4> lastAnnotations = targetState.replaceAnnotations(nextAnnotations);
331

332
        _handleDeviceUpdate(_MouseTrackerUpdateDetails.byPointerEvent(
333 334 335 336 337 338 339
          lastAnnotations: lastAnnotations,
          nextAnnotations: nextAnnotations,
          previousEvent: lastEvent,
          triggeringEvent: event,
        ));
      });
    });
340 341
  }

342 343 344 345
  /// Trigger a device update for all detected devices.
  ///
  /// The [updateAllDevices] is typically called during the post frame phase,
  /// indicating a frame has passed and all objects have potentially moved. The
346
  /// `hitTest` is a function that acquires the hit test result at a given
347 348 349
  /// position, and must not be empty.
  ///
  /// For each connected device, the [updateAllDevices] will make a hit test on
350 351
  /// the device's last seen position, and check if necessary changes need to be
  /// made.
352
  void updateAllDevices(MouseDetectorAnnotationFinder hitTest) {
353 354 355
    _deviceUpdatePhase(() {
      for (final _MouseState dirtyState in _mouseStates.values) {
        final PointerEvent lastEvent = dirtyState.latestEvent;
356
        final LinkedHashMap<MouseTrackerAnnotation, Matrix4> nextAnnotations = _findAnnotations(dirtyState, hitTest);
357
        final LinkedHashMap<MouseTrackerAnnotation, Matrix4> lastAnnotations = dirtyState.replaceAnnotations(nextAnnotations);
358

359
        _handleDeviceUpdate(_MouseTrackerUpdateDetails.byNewFrame(
360 361 362 363
          lastAnnotations: lastAnnotations,
          nextAnnotations: nextAnnotations,
          previousEvent: lastEvent,
        ));
364
      }
365
    });
366 367
  }

368 369 370 371 372 373 374 375 376 377 378 379
  /// Returns the active mouse cursor for a device.
  ///
  /// The return value is the last [MouseCursor] activated onto this device, even
  /// if the activation failed.
  ///
  /// This function is only active when asserts are enabled. In release builds,
  /// it always returns null.
  @visibleForTesting
  MouseCursor? debugDeviceActiveCursor(int device) {
    return _mouseCursorMixin.debugDeviceActiveCursor(device);
  }

380
  // Handles device update and dispatches mouse event callbacks.
381
  static void _handleDeviceUpdateMouseEvents(_MouseTrackerUpdateDetails details) {
382 383
    final PointerEvent latestEvent = details.latestEvent;

384 385
    final LinkedHashMap<MouseTrackerAnnotation, Matrix4> lastAnnotations = details.lastAnnotations;
    final LinkedHashMap<MouseTrackerAnnotation, Matrix4> nextAnnotations = details.nextAnnotations;
386

387 388 389 390
    // Order is important for mouse event callbacks. The
    // `_hitTestResultToAnnotations` returns annotations in the visual order
    // from front to back, called the "hit-test order". The algorithm here is
    // explained in https://github.com/flutter/flutter/issues/41420
391

392
    // Send exit events to annotations that are in last but not in next, in
393
    // hit-test order.
394 395 396
    final PointerExitEvent baseExitEvent = PointerExitEvent.fromMouseEvent(latestEvent);
    lastAnnotations.forEach((MouseTrackerAnnotation annotation, Matrix4 transform) {
      if (!nextAnnotations.containsKey(annotation))
397
        if (annotation.validForMouseTracker && annotation.onExit != null)
398
          annotation.onExit!(baseExitEvent.transformed(lastAnnotations[annotation]));
399
    });
400

401
    // Send enter events to annotations that are not in last but in next, in
402
    // reverse hit-test order.
403 404 405 406 407
    final List<MouseTrackerAnnotation> enteringAnnotations = nextAnnotations.keys.where(
      (MouseTrackerAnnotation annotation) => !lastAnnotations.containsKey(annotation),
    ).toList();
    final PointerEnterEvent baseEnterEvent = PointerEnterEvent.fromMouseEvent(latestEvent);
    for (final MouseTrackerAnnotation annotation in enteringAnnotations.reversed) {
408
      if (annotation.validForMouseTracker && annotation.onEnter != null)
409
        annotation.onEnter!(baseEnterEvent.transformed(nextAnnotations[annotation]));
410 411 412
    }
  }
}