Skip to content

darktable/GestureKit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GestureKit

GestureKit aims to make touch handling in Unity more sane. Touches in GestureKit are actual objects as opposed to Structs like Unity uses by default. The advantage to this is that touch tracking becomes orders of magnitude more simple. You can retain a touch that began and since you are only holding on to a pointer (as opposed to a Struct) the properites of that touch will be updating as the touch changes. GestureKit is not all the useful for simple, single-tap processing. It's usefulness is in detecting and managing gestures (hence the name GestureKit).

GestureKit also allows gesture recognizers to define a Rect in which to do detection. If a touch doesn't orginate in the Rect the touches won't be passed on to the recognizer.

Included Gesture Recognizers

GestureKit comes with a few built in recognizers to get you started and to serve as an example for how to make your own. Included are the following:

  • Tap Recognizer: detects one or more taps from one or more fingers
  • Long Press Recognizer: detects long-presses with configurable duration and allowed movement. Fires when the duration passes.
  • Press Recognizer: detects a press with optional minimum duration and fires an event when it starts and ends
  • Pan Recognizer: detects a pan gesture (one or more fingers down and moving around the screen)
  • Swipe Recognizer: detects swipes in the four cardinal directions
  • Pinch Recognizer: detects pinches and reports back the delta scale
  • Rotation Recognizer: detects two finger rotation and reports back the delta rotation
  • One Finger Rotation Recognizer: pass it a target object's center position and it will report back the delta rotation of a single finger

How Do I Use GestureKit?

If you are just using the built in recognizers, check out the demo scene which shows how to use them. If you want to make your own (and feel free to send pull requests if you make any generic recognizers!) all you have to do is subclass GKAbstractGestureRecognizer and implement the three methods: touchesBegan, touchesMoved and touchesEnded. Recognizers can be discrete (they only complete once like a tap or long touch) or continous (they can fire continuously like a pan). Recognizers use the state veriable to determine if they are still active, completed or failed. If you set the state to Recognized, the completion event is fired automatically for you and the recognizer is reset in preparation for the next set of touches.

Starting with touchesBegan, if you find a touch that look interesting you can add it to the _trackingTouches List and set the state to Began. By adding the touch to the _trackingTouches List you are telling GestureKit that you want to receive all future touch events that happen with that touch. As the touch moves, touchesMoved will be called where you can look at the touches and decide if the gesture is still possible. If it isn't, set the state to Failed and GestureKit will reset the recognizer for you.

Using the Tap recognizer as an example, the flow would be like the following:

  • touchesBegan: add the touch to _trackingTouches signifying we are watching it. Set the state to Began and record the current time (we don't want a press that is too long to be considered a tap)
  • touchesMoved: check the deltaMovement of the touch and if it moves too far set the state to Failed signifying we the gesture failed and we are done with the touch
  • touchesEnded: if not too much time has elapsed we successfully recognized the gesture so we set state to Recognized which will fire the event for us. If too much time elapsed we set state to Failed

License

For any developers just wanting to use GestureKit in their games go right ahead. You can use GoKit in any and all games either modified or unmodified. In order to keep the spirit of this open source project it is expressly forbid to sell or commercially distribute GestureKit outside of your games. You can freely use it in as many games as you would like but you cannot commercially distribute the source code either directly or compiled into a library outside of your game.

Feel free to include a "prime31 inside" logo on your about page, web page, splash page or anywhere else your game might show up if you would like.
small or larger or huge

About

Gestures and input handling made sane for Unity

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published