Sha256: 9f98136f7e9b23a86fcbdddaa0e8b471a3c5e25c8fd444fba1dc948d2efa4f1f

Contents?: true

Size: 1.7 KB

Versions: 2

Compression:

Stored size: 1.7 KB

Contents

module Fusuma
  # pinch or swipe action
  class GestureAction
    def initialize(time, action, finger, directions)
      @time   = time.to_f
      @action = action
      @finger = finger
      @move_x = directions[:move][:x].to_f
      @move_y = directions[:move][:y].to_f
      @zoom   = directions[:zoom].to_f
    end
    attr_reader :time, :action, :finger,
                :move_x, :move_y, :zoom

    class << self
      def initialize_by(line, device_names)
        return if device_names.none? do |device_name|
          line.to_s =~ /^\s?#{device_name}/
        end
        return if line.to_s =~ /_BEGIN/
        return unless line.to_s =~ /GESTURE_SWIPE|GESTURE_PINCH/
        time, action, finger, directions = gesture_action_arguments(line)
        MultiLogger.debug(time: time, action: action,
                          finger: finger, directions: directions)
        GestureAction.new(time, action, finger, directions)
      end

      private

      def gesture_action_arguments(libinput_line)
        action, time, finger_directions = parse_libinput(libinput_line)
        finger, move_x, move_y, zoom =
          parse_finger_directions(finger_directions)
        directions = { move: { x: move_x, y: move_y }, zoom: zoom }
        [time, action, finger, directions]
      end

      def parse_libinput(line)
        _device, action_time, finger_directions = line.split("\t").map(&:strip)
        action, time = action_time.split
        [action, time, finger_directions]
      end

      def parse_finger_directions(finger_directions_line)
        finger_num, move_x, move_y, _, _, _, zoom =
          finger_directions_line.tr('/|(|)', ' ').split
        [finger_num, move_x, move_y, zoom]
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fusuma-0.2.6 lib/fusuma/gesture_action.rb
fusuma-0.2.5 lib/fusuma/gesture_action.rb