mirror of
https://github.com/zydeco/minivmac4ios.git
synced 2024-11-08 21:04:32 +00:00
97 lines
3.4 KiB
Objective-C
97 lines
3.4 KiB
Objective-C
//
|
|
// TouchScreen.m
|
|
// Mini vMac for iOS
|
|
//
|
|
// Created by Jesús A. Álvarez on 18/04/2016.
|
|
// Copyright © 2016-2018 namedfork. All rights reserved.
|
|
//
|
|
|
|
#import "TouchScreen.h"
|
|
#import "AppDelegate.h"
|
|
#import "ScreenView.h"
|
|
|
|
@implementation TouchScreen
|
|
{
|
|
// when using absolute mouse mode, button events are processed before the position is updated
|
|
NSTimeInterval mouseButtonDelay;
|
|
CGPoint previousTouchLoc;
|
|
NSTimeInterval previousTouchTime;
|
|
NSTimeInterval touchTimeThreshold;
|
|
CGFloat touchDistanceThreshold;
|
|
NSMutableSet *currentTouches;
|
|
}
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame {
|
|
if ((self = [super initWithFrame:frame])) {
|
|
mouseButtonDelay = 0.05;
|
|
touchTimeThreshold = 0.25;
|
|
touchDistanceThreshold = 16;
|
|
currentTouches = [NSMutableSet setWithCapacity:4];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (Point)mouseLocForCGPoint:(CGPoint)point {
|
|
Point mouseLoc;
|
|
CGRect screenBounds = [ScreenView sharedScreenView].screenBounds;
|
|
CGSize screenSize = [ScreenView sharedScreenView].screenSize;
|
|
mouseLoc.h = (point.x - screenBounds.origin.x) * (screenSize.width/screenBounds.size.width);
|
|
mouseLoc.v = (point.y - screenBounds.origin.y) * (screenSize.height/screenBounds.size.height);
|
|
return mouseLoc;
|
|
}
|
|
|
|
- (void)mouseDown {
|
|
[[AppDelegate sharedEmulator] setMouseButton:YES];
|
|
}
|
|
|
|
- (void)mouseUp {
|
|
[[AppDelegate sharedEmulator] setMouseButton:NO];
|
|
}
|
|
|
|
- (CGPoint)effectiveTouchPointForEvent:(UIEvent *)event {
|
|
CGPoint touchLoc = [[event touchesForView:self].anyObject locationInView:self];
|
|
if (event.timestamp - previousTouchTime < touchTimeThreshold &&
|
|
fabs(previousTouchLoc.x - touchLoc.x) < touchDistanceThreshold &&
|
|
fabs(previousTouchLoc.y - touchLoc.y) < touchDistanceThreshold)
|
|
return previousTouchLoc;
|
|
previousTouchLoc = touchLoc;
|
|
previousTouchTime = event.timestamp;
|
|
return touchLoc;
|
|
}
|
|
|
|
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
|
|
[currentTouches unionSet:touches];
|
|
if (![AppDelegate sharedEmulator].running) return;
|
|
CGPoint touchLoc = [self effectiveTouchPointForEvent:event];
|
|
Point mouseLoc = [self mouseLocForCGPoint:touchLoc];
|
|
[[AppDelegate sharedEmulator] setMouseX:mouseLoc.h Y:mouseLoc.v];
|
|
[self performSelector:@selector(mouseDown) withObject:nil afterDelay:mouseButtonDelay];
|
|
previousTouchLoc = touchLoc;
|
|
previousTouchTime = event.timestamp;
|
|
}
|
|
|
|
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
|
|
if (![AppDelegate sharedEmulator].running) return;
|
|
CGPoint touchLoc = [self effectiveTouchPointForEvent:event];
|
|
Point mouseLoc = [self mouseLocForCGPoint:touchLoc];
|
|
[[AppDelegate sharedEmulator] setMouseX:mouseLoc.h Y:mouseLoc.v];
|
|
}
|
|
|
|
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
|
|
[currentTouches minusSet:touches];
|
|
if (![AppDelegate sharedEmulator].running) return;
|
|
if (currentTouches.count > 0) return;
|
|
CGPoint touchLoc = [self effectiveTouchPointForEvent:event];
|
|
Point mouseLoc = [self mouseLocForCGPoint:touchLoc];
|
|
[[AppDelegate sharedEmulator] setMouseX:mouseLoc.h Y:mouseLoc.v];
|
|
[self performSelector:@selector(mouseUp) withObject:nil afterDelay:mouseButtonDelay];
|
|
previousTouchLoc = touchLoc;
|
|
previousTouchTime = event.timestamp;
|
|
}
|
|
|
|
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
|
|
[self touchesEnded:touches withEvent:event];
|
|
}
|
|
|
|
@end
|