Skip to content

Instantly share code, notes, and snippets.

@Shilo
Created November 7, 2011 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shilo/1346529 to your computer and use it in GitHub Desktop.
Save Shilo/1346529 to your computer and use it in GitHub Desktop.
A simple pinch event extension for Sparrow
//
// SHPinchEvent.h
// Sparrow
//
// Created by Shilo White on 6/4/11.
// Copyright 2011 Shilocity Productions. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the Simplified BSD License.
//
#define SH_EVENT_TYPE_PINCH @"pinch"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "SPEvent.h"
#import "SPStage.h"
@class SPPoint;
@class SPDisplayObject;
@interface SHPinchEvent : SPEvent {
SPPoint *mLocation;
float mScale;
float mVelocity;
uint mNumberOfTouches;
}
@property (nonatomic, readonly) SPPoint *location;
@property (nonatomic, readonly) float scale;
@property (nonatomic, readonly) float velocity;
@property (nonatomic, readonly) uint numberOfTouches;
- (id)initWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches;
- (id)initWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches bubbles:(BOOL)bubbles;
+ (SHPinchEvent *)eventWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches;
+ (SHPinchEvent *)eventWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches bubbles:(BOOL)bubbles;
- (SPPoint *)locationInSpace:(SPDisplayObject *)space;
@end
@interface SPStage (pinch)
- (void)startPinchRecognizer;
- (void)stopPinchRecognizer;
@end
//
// SHPinchEvent.m
// Sparrow
//
// Created by Shilo White on 6/4/11.
// Copyright 2011 Shilocity Productions. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the Simplified BSD License.
//
#define SH_EXC_NATIVEVIEW_NIL @"NativeViewDoesNotExist"
#import "SHPinchEvent.h"
#import "SPPoint.h"
#import "SPDisplayObject.h"
#import "SPMatrix.h"
@implementation SHPinchEvent
@synthesize location = mLocation;
@synthesize scale = mScale;
@synthesize velocity = mVelocity;
@synthesize numberOfTouches = mNumberOfTouches;
- (id)initWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches {
return [self initWithType:type location:location scale:scale velocity:velocity numberOfTouches:numberOfTouches bubbles:YES];
}
- (id)initWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches bubbles:(BOOL)bubbles {
if ((self = [super initWithType:type bubbles:bubbles])) {
mLocation = location;
mScale = scale;
mVelocity = velocity;
mNumberOfTouches = numberOfTouches;
}
return self;
}
+ (SHPinchEvent *)eventWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches {
return [[[SHPinchEvent alloc] initWithType:type location:location scale:scale velocity:velocity numberOfTouches:numberOfTouches bubbles:YES] autorelease];
}
+ (SHPinchEvent *)eventWithType:(NSString *)type location:(SPPoint *)location scale:(float)scale velocity:(float)velocity numberOfTouches:(uint)numberOfTouches bubbles:(BOOL)bubbles {
return [[[SHPinchEvent alloc] initWithType:type location:location scale:scale velocity:velocity numberOfTouches:numberOfTouches bubbles:bubbles] autorelease];
}
- (SPPoint *)locationInSpace:(SPDisplayObject *)space {
SPDisplayObject *mTarget = (SPDisplayObject *)self.target;
SPPoint *point = [SPPoint pointWithX:mLocation.x y:mLocation.y];
SPMatrix *transformationMatrix = [mTarget.root transformationMatrixToSpace:space];
return [transformationMatrix transformPoint:point];
}
@end
@implementation SPStage (pinch)
static UIPinchGestureRecognizer *mPinchRecognizer;
- (void)startPinchRecognizer {
UIView *nativeView = self.nativeView;
if (!nativeView) [NSException raise:SH_EXC_NATIVEVIEW_NIL format:@"nativeView not linked to stage yet.", NSStringFromSelector(_cmd)];
if (mPinchRecognizer) return;
mPinchRecognizer = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(_onPinch:)];
mPinchRecognizer.cancelsTouchesInView = NO;
mPinchRecognizer.delaysTouchesBegan = NO;
mPinchRecognizer.delaysTouchesEnded = NO;
[nativeView addGestureRecognizer:mPinchRecognizer];
[mPinchRecognizer release];
}
- (void)stopPinchRecognizer {
UIView *nativeView = self.nativeView;
if (!nativeView) [NSException raise:SH_EXC_NATIVEVIEW_NIL format:@"nativeView not linked to stage yet.", NSStringFromSelector(_cmd)];
[nativeView removeGestureRecognizer:mPinchRecognizer];
mPinchRecognizer = nil;
}
- (void)_onPinch:(UIPinchGestureRecognizer *)pinchRecognizer {
CGPoint location = [pinchRecognizer locationInView:self.nativeView];
SPPoint *touchLocation = [SPPoint pointWithX:location.x y:location.y];
SPDisplayObject *object = [self hitTestPoint:touchLocation forTouch:YES];
if (!object) return;
SPMatrix *transformationMatrix = [self transformationMatrixToSpace:object];
SPPoint *localLocation = [transformationMatrix transformPoint:touchLocation];
SHPinchEvent *event = [[SHPinchEvent alloc] initWithType:SH_EVENT_TYPE_PINCH location:localLocation scale:pinchRecognizer.scale velocity:pinchRecognizer.velocity numberOfTouches:pinchRecognizer.numberOfTouches];
[object dispatchEvent:event];
[event release];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment